/* ==========================================================================
   GROWTH YOGI — Website Design System  ·  v2
   Design language: Floka (CaseThemes)  ·  Structure: 3mindsdigital.com
   Brand: Growth Yogi

   Floka fidelity notes
   - Light-first: body #F5F5F5, headings #0A0A0A (from Floka _options.scss)
   - Funnel Display headings, weight 400, letter-spacing -.03em, lh 1.208
   - Inter body, 18px, lh 1.5556, #666
   - Radii 10 / 20 / 100px · pill buttons · uppercase Funnel Display labels
   - Bento grids, marquees, rotating circle-text badges, counters
   - Growth Yogi orange #FF6D33 replaces Floka's coral #FE6462
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --orange:      #FF6D33;
  --orange-dark: #E4551C;
  --orange-soft: rgba(255, 109, 51, .10);
  --green:       #94D96B;   /* Floka "third" — used for accents/badges */
  --yellow:      #FEC51B;

  /* Surfaces */
  --ink:        #0A0A0A;
  --ink-2:      #1E2227;
  --ink-3:      #2A2E34;
  --body-bg:    #F5F5F5;
  --surface:    #FFFFFF;
  --surface-2:  #EDEDEA;

  /* Text */
  --heading:    #0A0A0A;
  --text:       #666666;
  --text-soft:  #9B9B9B;
  --on-dark:    #FFFFFF;
  --on-dark-mute: rgba(255,255,255,.64);

  /* Lines */
  --line:      #D7D7D7;
  --line-soft: rgba(10,10,10,.08);
  --line-dark: rgba(255,255,255,.12);

  /* Type */
  --font-display: 'Funnel Display', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;

  --fs-display: clamp(3rem, 9vw, 8.5rem);
  --fs-h1:      clamp(2.5rem, 6vw, 5.25rem);
  --fs-h2:      clamp(2.1rem, 4.4vw, 4rem);
  --fs-h3:      clamp(1.5rem, 2.4vw, 2rem);
  --fs-h4:      clamp(1.25rem, 1.7vw, 1.5rem);
  --fs-body:    clamp(1rem, 1.05vw, 1.125rem);
  --fs-lead:    clamp(1.125rem, 1.5vw, 1.375rem);
  --fs-label:   .8125rem;

  /* Space */
  --gutter:    clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --maxw:      1400px;

  /* Shape */
  --r-sm:  10px;
  --r:     20px;
  --r-lg:  30px;
  --r-xl:  40px;
  --pill:  100px;

  /* Motion */
  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5556;
  color: var(--text);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--heading);
  line-height: 1.208;
  letter-spacing: -.03em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

::selection { background: var(--orange); color: #fff; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: .8rem 1.4rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); z-index: 999; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

/* Dark sections — Floka inverts to near-black slabs for contrast */
.section--dark { background: var(--ink); color: var(--on-dark-mute); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5 { color: var(--on-dark); }
.section--dark .lead, .section--dark .sec-intro { color: var(--on-dark-mute); }

.section--white { background: var(--surface); }

.grid { display: grid; gap: clamp(.75rem, 1.4vw, 1.25rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   4. TYPE HELPERS
   -------------------------------------------------------------------------- */
/* Floka label: Funnel Display, uppercase, small, tracked */
.label {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-size: var(--fs-label); font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--heading);
}
.label::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex: none;
}
.section--dark .label { color: var(--on-dark); }
.label--plain::before { display: none; }

/* Pill chip label, Floka style */
.label-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: var(--pill);
  border: 1px solid var(--line);
  font-family: var(--font-display); font-size: var(--fs-label);
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--heading); background: var(--surface);
}
.label-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.section--dark .label-pill { background: transparent; border-color: var(--line-dark); color: var(--on-dark); }

.display { font-size: var(--fs-display); line-height: 1.02; letter-spacing: -.045em; }
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }
.h4 { font-size: var(--fs-h4); }

.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--text); max-width: 60ch; }
.sec-intro { color: var(--text); max-width: 64ch; margin-top: 1.25rem; }

.sec-head { margin-bottom: clamp(2.25rem, 4vw, 3.75rem); }
.sec-head .label { margin-bottom: 1.35rem; }
.sec-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

.accent { color: var(--orange); }
.mute { color: var(--text-soft); }

/* Outline / stroked type — a Floka signature for secondary display words */
.outline {
  -webkit-text-stroke: 1.5px var(--heading);
  color: transparent;
}
.section--dark .outline { -webkit-text-stroke-color: var(--on-dark); }

/* --------------------------------------------------------------------------
   5. BUTTONS  (Floka: pill, uppercase Funnel Display, 14px)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  padding: 1.1rem 1.9rem;
  font-family: var(--font-display); font-size: .875rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--ink); color: #fff;
  border: 1px solid var(--ink); border-radius: var(--pill);
  cursor: pointer; position: relative; overflow: hidden; z-index: 1;
  transition: color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
}
/* Floka hover: colour sweeps in from the bottom */
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--orange);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .45s var(--ease-out);
}
.btn:hover { border-color: var(--orange); color: #fff; }
.btn:hover::before { transform: scaleY(1); }
.btn .arw { transition: transform .35s var(--ease); flex: none; }
.btn:hover .arw { transform: translate(3px,-3px); }

.btn--accent { background: var(--orange); border-color: var(--orange); }
.btn--accent::before { background: var(--ink); }
.btn--accent:hover { border-color: var(--ink); }

.btn--outline { background: transparent; color: var(--heading); border-color: var(--line); }
.btn--outline::before { background: var(--ink); }
.btn--outline:hover { color: #fff; border-color: var(--ink); }

.section--dark .btn--outline { color: #fff; border-color: var(--line-dark); }
.section--dark .btn--outline::before { background: var(--orange); }
.section--dark .btn--outline:hover { border-color: var(--orange); }

.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light::before { background: var(--orange); }
.btn--light:hover { color: #fff; border-color: var(--orange); }

.btn--sm { padding: .8rem 1.4rem; font-size: .8125rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-size: .875rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; color: var(--heading);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow:hover { gap: .95rem; color: var(--orange); }
.section--dark .link-arrow { color: #fff; }

/* --------------------------------------------------------------------------
   6. CIRCLE TEXT BADGE  (Floka pxl_circle_text)
   -------------------------------------------------------------------------- */
.circle-badge {
  position: relative; width: 140px; height: 140px; flex: none;
  display: grid; place-items: center;
}
.circle-badge__ring { position: absolute; inset: 0; animation: spin 18s linear infinite; }
.circle-badge__ring text {
  font-family: var(--font-display); font-size: 11.5px;
  letter-spacing: .22em; text-transform: uppercase; fill: var(--heading);
}
.section--dark .circle-badge__ring text { fill: #fff; }
.circle-badge__core {
  width: 62px; height: 62px; border-radius: 50%; background: var(--orange);
  display: grid; place-items: center; color: #fff;
}
.circle-badge__core svg { width: 22px; height: 22px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .circle-badge__ring { animation: none; } }

/* --------------------------------------------------------------------------
   7. MARQUEE  (Floka pxl_marquee)
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden; padding-block: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--ink); --marquee-duration: 40s;
}
.marquee--soft { background: transparent; border-block: 1px solid var(--line); }
.marquee__track { display: flex; width: max-content; animation: marquee var(--marquee-duration) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 3rem; padding-right: 3rem; flex: none; }
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 3.25rem); font-weight: 400;
  letter-spacing: -.03em; color: #fff;
  display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap;
}
.marquee__item::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); flex: none; }
.marquee__item--outline { -webkit-text-stroke: 1.2px #fff; color: transparent; }
.marquee--soft .marquee__item { color: var(--heading); font-size: clamp(1.05rem, 1.6vw, 1.4rem); gap: 2.25rem; }
.marquee--soft .marquee__item::after { width: 7px; height: 7px; }
.marquee--soft .marquee__group { gap: 2.25rem; padding-right: 2.25rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   8. BENTO GRID  (Floka signature layout)
   -------------------------------------------------------------------------- */
.bento {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(.75rem, 1.2vw, 1.15rem);
}
.bento > * { min-width: 0; }
.b-2 { grid-column: span 2; }
.b-3 { grid-column: span 3; }
.b-4 { grid-column: span 4; }
.b-r2 { grid-row: span 2; }
@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-3, .b-4 { grid-column: span 2; }
  .b-r2 { grid-row: span 1; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .b-2, .b-3, .b-4 { grid-column: span 1; }
}

/* Tile — the base Floka card */
.tile {
  background: var(--surface); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  display: flex; flex-direction: column; gap: .9rem;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .5s var(--ease-out), background .4s var(--ease);
}
.tile:hover { transform: translateY(-4px); }
.tile h3 { font-size: var(--fs-h4); }
.tile p { color: var(--text); font-size: .975rem; }
.tile__foot { margin-top: auto; padding-top: .75rem; }

.tile--ink { background: var(--ink); }
.tile--ink h3, .tile--ink h2 { color: #fff; }
.tile--ink p { color: var(--on-dark-mute); }
.tile--orange { background: var(--orange); }
.tile--orange h2, .tile--orange h3 { color: #fff; }
.tile--orange p { color: rgba(255,255,255,.88); }
.tile--green { background: var(--green); }
.tile--outline { background: transparent; border: 1px solid var(--line); }
.section--dark .tile--outline { border-color: var(--line-dark); }
.section--dark .tile--outline h3 { color: #fff; }
.section--dark .tile--outline p { color: var(--on-dark-mute); }

/* --------------------------------------------------------------------------
   9. STAT / COUNTER  (Floka pxl_counter + stats_box)
   -------------------------------------------------------------------------- */
.stat__num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 5rem); line-height: .95;
  letter-spacing: -.05em; color: var(--heading);
  display: flex; align-items: baseline;
}
.tile--ink .stat__num, .tile--orange .stat__num { color: #fff; }
.stat__label { font-size: .9rem; color: var(--text); }
.tile--ink .stat__label { color: var(--on-dark-mute); }
.tile--orange .stat__label { color: rgba(255,255,255,.88); }

/* --------------------------------------------------------------------------
   10. SERVICE GROUP CARD (ATL / BTL / TTL)
   -------------------------------------------------------------------------- */
.svc-card {
  display: flex; flex-direction: column; gap: 1rem;
  background: var(--surface); border-radius: var(--r-lg);
  padding: clamp(1.75rem, 2.8vw, 2.5rem);
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .5s var(--ease-out), background .45s var(--ease), color .45s var(--ease);
}
.svc-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--ink);
  transform: scaleY(0); transform-origin: bottom; transition: transform .55s var(--ease-out);
}
.svc-card:hover { transform: translateY(-6px); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-card:hover h3, .svc-card:hover .svc-card__tag { color: #fff; }
.svc-card:hover p, .svc-card:hover .svc-card__full { color: var(--on-dark-mute); }
.svc-card:hover .chip { border-color: var(--line-dark); color: var(--on-dark-mute); }
.svc-card:hover .link-arrow { color: var(--orange); }

.svc-card__tag {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3rem, 6vw, 4.75rem); line-height: .9;
  letter-spacing: -.055em; color: var(--orange);
  transition: color .45s var(--ease);
}
.svc-card__full {
  font-family: var(--font-display); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft);
  transition: color .45s var(--ease);
}
.svc-card h3 { font-size: var(--fs-h3); transition: color .45s var(--ease); }
.svc-card p { color: var(--text); font-size: .975rem; transition: color .45s var(--ease); }
.svc-card__foot { margin-top: auto; padding-top: .5rem; }

/* --------------------------------------------------------------------------
   11. CHIPS
   -------------------------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
  font-family: var(--font-body); font-size: .8125rem;
  padding: .38rem .8rem; border-radius: var(--pill);
  border: 1px solid var(--line); color: var(--text);
  background: transparent; white-space: nowrap;
  transition: border-color .35s var(--ease), color .35s var(--ease), background .35s var(--ease);
}
.section--dark .chip { border-color: var(--line-dark); color: var(--on-dark-mute); }
.chip--btn { cursor: pointer; }
.chip--btn:hover { border-color: var(--ink); color: var(--heading); }
.chip--on { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip--on:hover { color: #fff; }

/* --------------------------------------------------------------------------
   12. WORK CARD  (Floka showcase — image-dominant, reveal on hover)
   -------------------------------------------------------------------------- */
.work-card { display: block; position: relative; }
.work-card__media {
  aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface-2); position: relative;
  display: grid; place-items: center;
}
.work-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(255,109,51,.16), transparent 62%);
}
.work-card__ph {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 400; letter-spacing: -.04em; color: rgba(10,10,10,.16);
  text-align: center; padding: 1rem; position: relative; z-index: 1;
  transition: transform .6s var(--ease-out);
}
.work-card:hover .work-card__ph { transform: scale(1.06); }
.work-card__cat {
  font-family: var(--font-display); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange);
  display: block; margin: 1.25rem 0 .6rem;
}
.work-card h3 { font-size: 1.3rem; line-height: 1.25; margin-bottom: .9rem; }
.section--dark .work-card__media { background: var(--ink-2); }
.section--dark .work-card__ph { color: rgba(255,255,255,.14); }

/* --------------------------------------------------------------------------
   13. SERVICE ROWS (inner service pages)
   -------------------------------------------------------------------------- */
.svc-rows { border-top: 1px solid var(--line); }
.section--dark .svc-rows { border-color: var(--line-dark); }
.svc-row {
  display: grid; grid-template-columns: 4.5rem 1fr minmax(0, 32rem);
  gap: clamp(1rem, 3vw, 3rem); align-items: start;
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease);
}
.section--dark .svc-row { border-color: var(--line-dark); }
.svc-row:hover { background: rgba(10,10,10,.02); }
.section--dark .svc-row:hover { background: rgba(255,255,255,.03); }
.svc-row__num {
  font-family: var(--font-display); font-size: .875rem; font-weight: 500;
  letter-spacing: .08em; color: var(--orange); padding-top: .55rem;
}
.svc-row h3 { font-size: var(--fs-h3); }
.svc-row__desc { color: var(--text); font-size: .975rem; }
.section--dark .svc-row__desc { color: var(--on-dark-mute); }
.svc-row__tags { margin-top: 1rem; }
@media (max-width: 940px) {
  .svc-row { grid-template-columns: 3rem 1fr; }
  .svc-row__desc-wrap { grid-column: 2; }
}
@media (max-width: 560px) {
  .svc-row { grid-template-columns: 1fr; gap: .7rem; }
  .svc-row__desc-wrap { grid-column: 1; }
}

/* --------------------------------------------------------------------------
   14. PROCESS STEPS
   -------------------------------------------------------------------------- */
.steps { border-top: 1px solid var(--line); }
.section--dark .steps { border-color: var(--line-dark); }
.step {
  display: grid; grid-template-columns: 7rem 1fr; gap: clamp(1rem, 3vw, 3rem);
  padding-block: clamp(1.6rem, 2.8vw, 2.4rem);
  border-bottom: 1px solid var(--line); align-items: start;
  transition: background .4s var(--ease);
}
.section--dark .step { border-color: var(--line-dark); }
.step:hover { background: rgba(10,10,10,.02); }
.section--dark .step:hover { background: rgba(255,255,255,.03); }
.step__num {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 400; letter-spacing: -.04em; color: var(--orange); line-height: 1;
}
.step__body { display: grid; gap: .55rem; }
.step h3 { font-size: var(--fs-h3); }
.step p { color: var(--text); max-width: 64ch; }
.section--dark .step p { color: var(--on-dark-mute); }
@media (max-width: 620px) { .step { grid-template-columns: 1fr; gap: .6rem; } }

/* --------------------------------------------------------------------------
   15. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.15rem;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease),
              padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(245,245,245,.88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: .7rem;
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.logo {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 400; font-size: 1.4rem;
  letter-spacing: -.045em; color: var(--heading);
}
.logo-mark {
  width: 34px; height: 34px; border-radius: var(--r-sm); flex: none;
  background: var(--orange); display: grid; place-items: center;
}
.logo-mark svg { width: 19px; height: 19px; }
.logo span i { font-style: normal; color: var(--orange); }
.site-footer .logo { color: #fff; }

.nav-list { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-display); font-size: .9375rem; font-weight: 500;
  letter-spacing: -.005em; color: var(--heading); padding-block: .5rem;
  transition: color .25s var(--ease);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--orange); }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: .15rem; width: 100%; height: 1px;
  background: var(--orange); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-link .chev { width: 10px; height: 10px; transition: transform .3s var(--ease); }
.has-mega:hover .chev { transform: rotate(180deg); }

.nav-actions { display: flex; align-items: center; gap: .75rem; }

/* Mega menu */
.has-mega { position: static; }
.mega {
  position: absolute; left: 50%; top: calc(100% + .4rem);
  transform: translate(-50%, 12px);
  width: min(1200px, calc(100vw - 2.5rem));
  background: var(--surface); border-radius: var(--r-lg);
  padding: 1.15rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .3s;
  box-shadow: 0 30px 70px -24px rgba(10,10,10,.28);
}
.has-mega:hover .mega, .has-mega:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.mega-col {
  padding: 1.5rem; border-radius: var(--r);
  background: var(--body-bg);
  transition: background .35s var(--ease);
}
.mega-col:hover { background: var(--orange-soft); }
.mega-tag {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  letter-spacing: -.05em; color: var(--orange); display: block; line-height: 1;
}
.mega-name {
  font-family: var(--font-display); font-size: .75rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft);
  margin: .35rem 0 1rem; display: block;
}
.mega-links { display: grid; gap: .25rem; }
.mega-links a {
  font-size: .9rem; color: var(--text); padding: .3rem 0;
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}
.mega-links a:hover { color: var(--heading); padding-left: .35rem; }

/* Mobile nav */
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: transparent; border-radius: 50%; cursor: pointer; place-items: center;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--heading); position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--heading);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: grid; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(420px, 90vw);
    background: var(--surface); padding: 6.5rem 1.75rem 2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .45s var(--ease-out); display: block;
    box-shadow: -20px 0 60px -20px rgba(10,10,10,.25);
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-link { padding-block: 1.05rem; font-size: 1.1rem; justify-content: space-between; }
  .nav-link::after { display: none; }

  /* Reset desktop dropdown positioning. Must match the specificity of the
     :hover / :focus-within rules or translate(-50%) survives on touch. */
  .mega,
  .has-mega:hover .mega,
  .has-mega:focus-within .mega {
    position: static; transform: none; left: auto; top: auto;
    width: 100%; opacity: 1; visibility: visible; pointer-events: auto;
    grid-template-columns: 1fr; padding: 0 0 1rem; gap: .5rem;
    background: transparent; box-shadow: none; display: none;
  }
  .has-mega.is-open .mega,
  .has-mega.is-open:hover .mega,
  .has-mega.is-open:focus-within .mega { display: grid; }
  .nav-actions .btn { display: none; }
  .nav-menu .btn { display: inline-flex; width: 100%; margin-top: 1.5rem; }
}
@media (min-width: 1081px) { .nav-menu .btn--mobile { display: none; } }

/* --------------------------------------------------------------------------
   16. HERO
   -------------------------------------------------------------------------- */
.hero { padding-top: clamp(8rem, 14vw, 11rem); padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.hero__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.hero h1 { margin-block: 1.5rem 0; }
.hero__meta { display: flex; flex-direction: column; gap: 1.5rem; max-width: 32rem; }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero { padding-top: clamp(8.5rem, 14vw, 12rem); padding-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero .lead { margin-top: 1.5rem; }
.breadcrumb {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem;
  font-family: var(--font-display); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft);
}
.breadcrumb a:hover { color: var(--orange); }

/* --------------------------------------------------------------------------
   17. LOGO WALL
   -------------------------------------------------------------------------- */
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.5rem,.9vw,.85rem); }
.logo-wall__item {
  background: var(--surface); border-radius: var(--r); aspect-ratio: 16/9;
  display: grid; place-items: center; padding: 1rem; text-align: center;
  font-family: var(--font-display); font-weight: 400; font-size: 1rem;
  letter-spacing: -.02em; color: var(--text-soft);
  transition: color .35s var(--ease), background .35s var(--ease), transform .4s var(--ease-out);
}
.logo-wall__item:hover { color: #fff; background: var(--ink); transform: translateY(-3px); }
.section--dark .logo-wall__item { background: var(--ink-2); }
.section--dark .logo-wall__item:hover { background: var(--orange); }
@media (max-width: 1000px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px)  { .logo-wall { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   18. TESTIMONIALS
   -------------------------------------------------------------------------- */
.quote-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: clamp(1.75rem, 2.8vw, 2.4rem);
  display: flex; flex-direction: column; gap: 1.5rem; height: 100%;
}
.section--dark .quote-card { background: var(--ink-2); }
.quote-card blockquote {
  font-family: var(--font-display); font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.4; letter-spacing: -.02em; color: var(--heading);
}
.section--dark .quote-card blockquote { color: #fff; }
.quote-card__who { margin-top: auto; display: flex; align-items: center; gap: .85rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.section--dark .quote-card__who { border-color: var(--line-dark); }
.quote-card__av {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--orange); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1rem;
}
.quote-card__name { font-weight: 600; font-size: .95rem; color: var(--heading); }
.section--dark .quote-card__name { color: #fff; }
.quote-card__role { font-size: .85rem; color: var(--text-soft); }

/* --------------------------------------------------------------------------
   19. FAQ  (Floka pxl_accordion)
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .75rem; }
.faq-item {
  background: var(--surface); border-radius: var(--r);
  transition: background .35s var(--ease);
}
.section--dark .faq-item { background: var(--ink-2); }
.faq-item.is-open { background: var(--surface); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2.2vw, 2rem);
  font-family: var(--font-display); font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 400; letter-spacing: -.025em; line-height: 1.3; color: var(--heading);
  transition: color .3s var(--ease);
}
.section--dark .faq-q { color: #fff; }
.faq-q:hover { color: var(--orange); }
.faq-ico {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center; position: relative;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.section--dark .faq-ico { border-color: var(--line-dark); }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; background: currentColor; transition: transform .35s var(--ease), opacity .3s var(--ease); }
.faq-ico::before { width: 13px; height: 1.5px; }
.faq-ico::after  { width: 1.5px; height: 13px; }
.faq-item.is-open .faq-ico { background: var(--orange); border-color: var(--orange); color: #fff; }
.faq-item.is-open .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease-out); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { color: var(--text); max-width: 80ch; padding: 0 clamp(1.25rem, 2.2vw, 2rem) clamp(1.25rem, 2vw, 1.75rem); }

/* --------------------------------------------------------------------------
   20. POST CARD
   -------------------------------------------------------------------------- */
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card__media {
  aspect-ratio: 16/10; border-radius: var(--r); overflow: hidden;
  background: var(--surface-2); position: relative;
}
.post-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(255,109,51,.18), transparent 60%);
}
.section--dark .post-card__media { background: var(--ink-2); }
.post-card__body { padding-top: 1.25rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.post-card__meta {
  display: flex; gap: .55rem; align-items: center;
  font-family: var(--font-display); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange);
}
.post-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .55; }
.post-card h3 { font-size: 1.25rem; line-height: 1.28; transition: color .3s var(--ease); }
.post-card:hover h3 { color: var(--orange); }
.post-card p { color: var(--text); font-size: .95rem; }
.post-card__foot { margin-top: auto; padding-top: .6rem; }

/* --------------------------------------------------------------------------
   21. TEAM CARD
   -------------------------------------------------------------------------- */
.team-card__photo {
  aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden;
  background: var(--surface-2); display: grid; place-items: center;
  margin-bottom: 1rem; position: relative;
  transition: background .4s var(--ease);
}
.team-card:hover .team-card__photo { background: var(--orange); }
.team-card__initials {
  font-family: var(--font-display); font-size: 2.75rem; font-weight: 400;
  letter-spacing: -.05em; color: rgba(10,10,10,.18); transition: color .4s var(--ease);
}
.team-card:hover .team-card__initials { color: rgba(255,255,255,.85); }
.team-card h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.team-card p { font-size: .875rem; color: var(--text-soft); }
.section--dark .team-card__photo { background: var(--ink-2); }
.section--dark .team-card__initials { color: rgba(255,255,255,.2); }

/* --------------------------------------------------------------------------
   22. BARRIER PILLS
   -------------------------------------------------------------------------- */
.barrier-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.barrier {
  padding: .85rem 1.4rem; border-radius: var(--pill);
  border: 1px solid var(--line); background: var(--surface);
  font-size: .95rem; color: var(--text); cursor: default;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.barrier:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); }
.section--dark .barrier { background: transparent; border-color: var(--line-dark); color: var(--on-dark-mute); }
.section--dark .barrier:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* --------------------------------------------------------------------------
   23. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band { background: var(--ink); color: var(--on-dark-mute); text-align: center; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band .lead { color: var(--on-dark-mute); margin: 1.5rem auto 0; }
.cta-band__actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.cta-band .label { color: #fff; justify-content: center; }

/* --------------------------------------------------------------------------
   24. FORM
   -------------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: .5rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--heading);
}
.field input, .field select, .field textarea {
  background: var(--body-bg); border: 1px solid transparent; border-radius: var(--r-sm);
  padding: .95rem 1.1rem; width: 100%;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--text); }
.consent input { width: 18px; height: 18px; flex: none; margin-top: .2rem; accent-color: var(--orange); }

.contact-split { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 940px) { .contact-split { grid-template-columns: 1fr; } }
.contact-block { display: grid; gap: .4rem; padding-block: 1.3rem; border-bottom: 1px solid var(--line); }
.contact-block:first-of-type { border-top: 1px solid var(--line); }
.contact-block dt {
  font-family: var(--font-display); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange);
}
.contact-block dd { font-size: 1.05rem; color: var(--heading); }
.contact-block dd a:hover { color: var(--orange); }

/* --------------------------------------------------------------------------
   25. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark-mute); padding-top: clamp(3.5rem, 6vw, 5.5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: clamp(2rem, 4vw, 3rem); padding-bottom: 3.5rem; }
@media (max-width: 940px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--on-dark-mute); font-size: .95rem; max-width: 34ch; margin-top: 1.15rem; }
.footer-col h4 {
  font-family: var(--font-display); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.15rem;
}
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a, .footer-col span { font-size: .95rem; color: var(--on-dark-mute); transition: color .25s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding-block: 1.75rem; border-top: 1px solid var(--line-dark);
  font-size: .875rem; color: var(--on-dark-mute);
}
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a:hover { color: #fff; }
.socials { display: flex; gap: .55rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark);
  display: grid; place-items: center; color: #fff;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.socials a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   26. REVEAL
   -------------------------------------------------------------------------- */
/* Scoped to .js so content stays visible if JavaScript fails or is disabled. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .07s; }
.reveal-d2 { transition-delay: .14s; }
.reveal-d3 { transition-delay: .21s; }
.reveal-d4 { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   27. UTILITIES
   -------------------------------------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-1 { margin-top: .75rem; } .mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; } .mt-4 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1.5rem; } .mb-3 { margin-bottom: 2.25rem; }
.center-x { display: flex; justify-content: center; }

/* --------------------------------------------------------------------------
   28. SUPPORTING PATTERNS
   -------------------------------------------------------------------------- */
/* Stat row — bordered band variant used on About */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.75rem, 1.2vw, 1.15rem); }
.stat { background: var(--surface); border-radius: var(--r-lg); padding: clamp(1.5rem, 2.6vw, 2.5rem); }
.section--dark .stat { background: var(--ink-2); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .stats { grid-template-columns: 1fr; } }

/* Tile index label */
.tile__idx {
  font-family: var(--font-display); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange);
}

/* Work card body wrapper */
.work-card__body { padding-top: .25rem; }

/* Buttons sitting on dark slabs default to light so they never go ink-on-ink */
.section--dark .btn:not(.btn--outline):not(.btn--accent),
.cta-band .btn:not(.btn--outline):not(.btn--accent) {
  background: #fff; color: var(--ink); border-color: #fff;
}
.section--dark .btn:not(.btn--outline):not(.btn--accent)::before,
.cta-band .btn:not(.btn--outline):not(.btn--accent)::before { background: var(--orange); }
.section--dark .btn:not(.btn--outline):not(.btn--accent):hover,
.cta-band .btn:not(.btn--outline):not(.btn--accent):hover { color: #fff; border-color: var(--orange); }

/* Arrow links inside inverted tiles — otherwise they inherit near-black on black */
.tile--ink .link-arrow, .tile--orange .link-arrow { color: #fff; }
.tile--ink .link-arrow:hover { color: var(--orange); }
.tile--orange .link-arrow:hover { color: var(--ink); }
.tile--ink .tile__idx { color: var(--orange); }
.tile--orange .tile__idx { color: #fff; }

/* Tiles sitting on a white slab need a tinted fill, or they vanish */
.section--white .tile:not(.tile--ink):not(.tile--orange):not(.tile--outline),
.section--white .quote-card,
.section--white .faq-item,
.section--white .logo-wall__item,
.section--white .stat,
.section--white .barrier { background: var(--body-bg); }
.section--white .work-card__media,
.section--white .post-card__media,
.section--white .team-card__photo { background: var(--surface-2); }
.section--white .field input,
.section--white .field select,
.section--white .field textarea { background: var(--body-bg); }
.section--white .svc-card { background: var(--body-bg); }
.section--white .mega-col { background: var(--surface); }
