/* ============================================================================
   iKULUTU.com — shared design system
   Every value here was measured off the live Duda site with tools/probe.js and
   tools/capture.js, not eyeballed. Layout mirrors Duda's structure: a 960px
   centred container on a 12-column grid with 7.1875px gutters.
   ========================================================================== */

:root {
  /* Brand */
  --gold: #d9b230;          /* nav bar background */
  --gold-btn: #b59421;      /* button fill */
  --gold-btn-hover: #c9a52a;
  --ink: #2e2e2e;           /* top bar + footer */
  --ink-deep: #1a1a1a;
  --body-text: #565656;
  --muted: #b8b8b8;         /* top bar text */
  --drawer-link: #9b9b9b;
  --white: #fff;
  --page-bg: #eee;
  --band-light: #f2f2f2;
  --rule: #7897af;

  /* Type */
  --font-body: Arial, "Helvetica Neue", Helvetica, "Liberation Sans", sans-serif;
  --font-display: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Duda names this family with no @font-face, so it resolves to the system
     font and already falls back on non-Mac platforms. Matching that stack
     reproduces the live behaviour, fallback included. */
  --font-rounded: "Arial Rounded MT Bold", "Helvetica Rounded", "Arial Rounded MT", Arial, sans-serif;

  /* Layout — Duda's grid, reproduced */
  --container: 960px;
  --row-pad-x: 15px;
  --col-gutter: 7.1875px;
  --header-h: 119px;
  --header-h-mini: 80px;
  --header-h-mobile: 75px;
  --topbar-h: 39px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--page-bg);
  color: var(--body-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
img { border: 0; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--ink); color: var(--white); padding: 10px 16px;
}
.skip-link:focus { left: 0; }

/* ---------- Duda-equivalent grid ---------- */
.cols {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  position: relative;
}
/* Measured across the live pages, column content sits flush to its column edge
   (body text at x=240, footer copyright at x=480, legal links at x=960 — all
   exact twelfths of the 960px container with no gutter). Duda only applies its
   7.1875px column padding in a few header rows, so zero is the right default
   and .cols--gutter opts in where it is genuinely needed. */
.col { position: relative; padding: 0; min-width: 0; }
.cols--gutter > .col { padding: 0 var(--col-gutter); }
.cols--gutter > .col:first-child { padding-left: 0; }
.cols--gutter > .col:last-child { padding-right: 0; }
.c1  { width: 8.3333%; }  .c2  { width: 16.6667%; }
.c3  { width: 25%; }      .c4  { width: 33.3333%; }
.c5  { width: 41.6667%; } .c6  { width: 50%; }
.c7  { width: 58.3333%; } .c8  { width: 66.6667%; }
.c9  { width: 75%; }      .c10 { width: 83.3333%; }
.c11 { width: 91.6667%; } .c12 { width: 100%; }

main { background: var(--white); display: block; }
.section { position: relative; padding: 57px 40px; }
.section--tight { padding: 40px; }
.section--dark { background: #000; color: var(--white); }
.section--band { background: var(--band-light); }

/* ---------- shared typography ----------
   Named so 24 page builds reuse one scale instead of inventing 24. */
.h-display {
  font-family: var(--font-rounded);
  font-size: 48px; font-weight: 500; line-height: normal;
  color: #383838; text-align: center;
}
.h-inter-lg { font-family: var(--font-display); font-size: 40px; font-weight: 700; line-height: 1.22; }
.h-inter-md { font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 1.22; }
.h-inter-sm { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.22; }
.body-text  { font-size: 16px; color: var(--body-text); line-height: normal; }
.body-text p + p { margin-top: 18px; }
.body-list { list-style: disc; padding-left: 32px; margin: 18px 0; }
.body-list li { font-size: 16px; color: var(--body-text); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold-btn);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  padding: 10px 7px;
  border: 1px solid var(--gold-btn);
  border-radius: 4px;
  transition: background-color .15s ease;
}
.btn:hover, .btn:focus-visible { background: var(--gold-btn-hover); }

/* ============================================================================
   HEADER — fixed, 119px, collapsing to 80px on scroll by hiding the top bar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--gold);
  width: 100%;
}
.header-spacer { height: var(--header-h); }

/* ---------- dark utility bar ---------- */
.topbar {
  background: var(--ink);
  padding: 5px var(--row-pad-x);
  height: var(--topbar-h);
  color: var(--muted);
}
.site-header.is-mini .topbar { display: none; }
.topbar .cols { align-items: flex-start; }

.topbar__social-col { padding-right: 0; }
.topbar__social { display: flex; align-items: center; }
.topbar__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 25px; margin-right: 7px; color: var(--white);
}
.topbar__social svg { width: 15px; height: 15px; fill: currentColor; }

.topbar__icon-col { display: flex; justify-content: flex-end; }
.topbar__icon-col a { display: block; }
.topbar__phone-icon { width: 35px; height: 29px; color: var(--white); display: block; }

.topbar__num-col { display: flex; align-items: center; }
.topbar__num {
  color: var(--muted);
  font-size: 16px;
  line-height: 17px;
  text-decoration: underline;
  padding-top: 3px;
}

/* ---------- gold brand + nav bar ---------- */
.headerbar { height: var(--header-h-mini); }
.headerbar .cols { height: var(--header-h-mini); }
.headerbar__brand-col { padding-top: 15px; }
.site-logo { display: inline-block; }
.site-logo img { width: 160px; height: 40px; display: block; object-fit: contain; }

.headerbar__nav-col { display: flex; align-items: center; justify-content: flex-end; }

/* The live nav ends at x=1185, 15px short of the 1200 container edge. */
.nav { display: flex; justify-content: flex-end; align-items: center; padding-right: 15px; }
.nav__list { display: flex; align-items: center; }
.nav__item { position: relative; display: flex; align-items: center; }

/* Duda renders a small interpunct between top-level items. */
.nav__item:not(:last-child)::after {
  content: "·";
  color: var(--body-text);
  font-size: 14px;
  line-height: 26px;
  width: 4.4px;
  text-align: center;
  flex: 0 0 4.4px;
}

.nav__link {
  position: relative;
  display: flex; align-items: center; height: 26px;
  padding: 0 15px;
  font-size: 14px; font-weight: 400; letter-spacing: .42px;
  color: var(--body-text); white-space: nowrap;
}
.nav__link:hover, .nav__link:focus-visible { text-decoration: underline; }
.nav__link.is-active, .nav__item.is-active > .nav__link { text-decoration: underline; }

/* The caret sits inline after the label and occupies 19px of layout width
   (measured: live "TESTIMONIALS" span is 127px, the text alone is 108px). */
.nav__caret {
  display: inline-block;
  position: relative;
  width: 8px; height: 5px;
  margin-left: 11px;
  vertical-align: middle;
}
/* Duda draws this as a stroked "angle-down" chevron, not a filled triangle.
   A rotated 5px box with two borders matches the live glyph (~7x4 of ink). */
.nav__caret::before {
  content: "";
  position: absolute;
  left: 1px; top: -1px;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.nav__sub {
  position: absolute; top: 100%; left: 0;
  display: none; flex-direction: column;
  min-width: 262px;
  background: var(--gold);
  z-index: 10;
}
.nav__item--has-sub:hover > .nav__sub,
.nav__item--has-sub:focus-within > .nav__sub,
.nav__item--has-sub.is-open > .nav__sub { display: flex; }
.nav__sub a {
  display: flex; align-items: center;
  padding: 15px 23px;
  height: 46px;
  font-size: 14px; letter-spacing: .42px; color: var(--body-text);
  white-space: nowrap;
}
.nav__sub a:hover { text-decoration: underline; }

/* ---------- mobile bar (hidden on desktop) ---------- */
.mobilebar { display: none; background: var(--white); padding: 15px var(--row-pad-x); }
.mobilebar .cols { align-items: center; }
.mobilebar__col { display: flex; align-items: center; padding: 0 var(--row-pad-x); }
.mobilebar__col--left { width: 16.6667%; justify-content: flex-start; }
.mobilebar__col--logo { width: 66.6667%; justify-content: center; }
.mobilebar__col--phone { width: 16.6667%; justify-content: flex-end; }
.mobilebar__col--phone svg { width: 30px; height: 27px; color: var(--ink); }

.mobile-wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #333;
  letter-spacing: -.2px;
  white-space: nowrap;
}
.mobile-wordmark__i { color: var(--gold); }

.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  width: 40px; height: 40px; padding: 0;
}
.hamburger__slice {
  display: block; width: 26px; height: 2px; background: var(--ink);
  margin: 3px 0; transition: transform .2s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] .hamburger__slice:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__slice:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__slice:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- mobile drawer ---------- */
.drawer {
  display: none;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(2px);
  max-height: calc(100vh - var(--header-h-mobile));
  overflow-y: auto;
}
.drawer.is-open { display: block; }
.drawer__list > li > a,
.drawer__toggle {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  min-height: 55px;
  padding: 20px 15px;
  font-size: 14px; letter-spacing: .42px; text-align: center;
  color: var(--drawer-link);
}
.drawer__list > li > a.is-active { background: #e5e5e5; }
.drawer__caret {
  display: inline-block; position: relative;
  width: 8px; height: 5px; margin-left: 10px;
  vertical-align: middle;
}
.drawer__caret::before {
  content: "";
  position: absolute;
  left: 1px; top: -1px;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.drawer__sub { display: none; background: #e5e5e5; }
.drawer__sub.is-open { display: block; }
.drawer__sub a {
  display: block; padding: 20px 30px; min-height: 53px;
  font-size: 12.8px; color: #9c9c9c; text-align: left;
}

/* ============================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--white); }
/* Measured from the live footer (footer top = y614, page y in brackets):
   title +95 [709], subtitle +169 [783], "find us here" +109 [723] at x=1010,
   social row +144 [758] flush right to x=1200, nav +229 [843],
   CTA +294 [908] 374x47, rule +384 [998], legal +422 [1036]. */
.footer-main { padding: 95px 40px 0; }
.footer-title { font-family: var(--font-display); font-size: 40px; font-weight: 700; line-height: 1.22; color: var(--white); }
.footer-sub { font-size: 16px; color: var(--white); margin-top: 25px; }
.footer-main__right { text-align: right; }
.footer-find { font-size: 16px; color: var(--white); padding-right: 6px; margin-top: 14px; }
.footer-social { display: flex; justify-content: flex-end; margin-top: 18px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 43px; height: 48px; margin-left: 19px; color: var(--white); }
.footer-social a:first-child { margin-left: 0; }
/* Measured against the live footer: Duda's glyph ink is 1.40x ours at 24px
   (live Facebook ink 14x29 vs 10x18), so the icons scale to 34px. */
.footer-social svg { width: 34px; height: 34px; fill: currentColor; }

.footer-nav-wrap { margin-top: 37px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }
.footer-nav > li { position: relative; display: flex; align-items: center; }
.footer-nav > li:not(:last-child)::after {
  content: "·"; color: var(--white); font-size: 16px; width: 4px; text-align: center; flex: 0 0 4px;
}
.footer-nav .nav__caret { color: var(--white); }
.footer-nav > li > a { display: flex; align-items: center; height: 28px; padding: 0 15px; font-size: 16px; letter-spacing: .48px; color: var(--white); white-space: nowrap; }
.footer-nav > li > a:hover, .footer-nav > li > a.is-active { text-decoration: underline; }
.footer-nav .nav__sub { background: #faf9f9; top: auto; bottom: 100%; }
.footer-nav .nav__sub a { color: #999; height: auto; padding: 15px 30px 15px 15px; }

.footer-cta-wrap { margin-top: 37px; text-align: center; }
/* The footer CTA is NOT the standard .btn: the live spec gives it a 3px black
   border, 10px radius and a drop shadow (measured from reference/spec). */
.footer-cta {
  display: inline-flex; align-items: center; justify-content: center;
  width: 374px; height: 47px; padding: 0 7px;
  border: 3px solid #000;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, .25) 0 3px 11px 0;
}

/* The live hr paints a 1px line inside a 3px box (1px border + 2px height),
   not a 3px line. Painting 3px was the single largest desktop diff band on
   every page. */
.footer-rule { border: 0; border-top: 1px solid var(--rule); height: 2px; max-width: var(--container); margin: 43px auto 0; }
.footer-legal { padding: 35px 40px 136px; font-size: 13px; color: var(--white); }
.footer-legal .cols { align-items: flex-start; }
.footer-legal a { color: var(--white); }
.footer-legal a:hover { text-decoration: underline; }
.footer-legal__logo img { width: 160px; height: 32px; object-fit: contain; display: block; }
/* The year and the rest of the line are separate elements; without a gap they
   render as "© 2026All Rights Reserved". */
.footer-legal__copy { display: flex; gap: 4px; padding-top: 11px; }
.footer-legal__links { display: flex; flex-direction: column; gap: 20px; padding-top: 1px; }

/* ============================================================================
   RESPONSIVE — content is identical to desktop; it stacks rather than changes.
   ========================================================================== */
@media (max-width: 1023px) {
  .nav__link { padding: 0 10px; font-size: 13px; }
}

@media (max-width: 767px) {
  :root { --header-h: var(--header-h-mobile); }
  .topbar, .headerbar { display: none; }
  .mobilebar { display: block; }
  .site-header { background: var(--white); }
  .header-spacer { height: var(--header-h-mobile); }

  /* Stack page columns, but NOT the mobile bar — its three columns carry the
     .col class and must stay in one row (logo centred, hamburger and phone
     flanking it). A blanket .col{width:100%} stacks the whole header. */
  .col:not(.mobilebar__col) { width: 100%; }
  .section { padding: 40px 20px; }

  .footer-main { padding: 48px 20px; }
  .footer-main__left { padding-top: 0; text-align: center; }
  .footer-title { font-size: 32px; text-align: center; }
  .footer-sub { text-align: center; }
  .footer-main__right { margin-top: 32px; }
  .footer-nav { flex-direction: column; align-items: center; }
  .footer-nav > li:not(:last-child)::after { display: none; }
  /* Live does not expose the footer dropdown children on mobile; flattening
     them to static added five links the real site never shows. */
  .footer-nav .nav__sub { display: none; }
  .footer-cta { min-width: 0; width: 100%; }
  .footer-legal { padding: 24px 20px 32px; text-align: center; }
  .footer-legal__logo img { margin: 0 auto; }
  .footer-legal__copy { justify-content: center; padding-top: 16px; }
  .footer-legal__links { align-items: center; gap: 10px; padding-top: 16px; }
}
