/* ============================================================================
   FORVERD — main stylesheet
   Mobile-first, editorial, refined for a consulting-grade brand presence.
   ============================================================================ */

/* ----------------------------------------------------------------- TOKENS */
:root {
  --indigo:        #34307e;
  --indigo-deep:   #221f54;
  --indigo-soft:   #f1f0f9;
  --ink:           #0a0a14;
  --ink-soft:      #4a4a5c;
  --ink-mute:      #707085;
  --cream:         #faf8f3;
  --paper:         #f7f5f0;
  --white:         #ffffff;
  --rule:          rgba(10, 10, 20, 0.10);
  --rule-light:    rgba(10, 10, 20, 0.06);
  --rule-dark:     rgba(255, 255, 255, 0.14);

  --font-display:  'Instrument Serif', 'Times New Roman', serif;
  --font-sans:     'Manrope', system-ui, -apple-system, sans-serif;

  --container:     1240px;
  --container-narrow: 880px;
  --gutter:        clamp(20px, 5vw, 48px);

  --radius-sm:     8px;
  --radius:        16px;
  --radius-lg:     28px;

  --ease:          cubic-bezier(.2, .7, .2, 1);
}

/* ------------------------------------------------------------------ RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* WordPress block / admin alignment */
.alignleft  { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px; width: 1px;
  overflow: hidden;
}

/* ----------------------------------------------------------------- LAYOUT */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.wrap-narrow { max-width: var(--container-narrow); }
section { position: relative; }

/* ----------------------------------------------------------- TYPOGRAPHY */
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--indigo);
  display: inline-block;
}
.eyebrow.solo::before { display: none; }
.eyebrow-light { color: rgba(255,255,255,0.7); }
.eyebrow-light::before { background: rgba(255,255,255,0.7); }

h1, h2, h3, h4, h5 { margin: 0; font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }

.h-display {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(48px, 10vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.038em;
}
.h-display em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--indigo);
  letter-spacing: -0.005em;
}

.h-section {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(34px, 5.5vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.h-section em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--indigo);
}

.h-medium {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.h-medium em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--indigo);
}

.lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  font-weight: 400;
}

.kicker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--indigo);
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1;
}

/* ----------------------------------------------------------------- BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--indigo);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(52,48,126,.15), 0 8px 24px rgba(52,48,126,.18);
}
.btn-primary:hover { background: var(--indigo-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-large { padding: 18px 28px; font-size: 16px; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:hover svg { transform: translateX(4px); }
.btn svg { transition: transform .3s var(--ease); }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--indigo);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.btn-link:hover .arrow { transform: translateX(4px); }
.btn-link .arrow { transition: transform .25s var(--ease); }

/* ----------------------------------------------------------------- HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header.scrolled {
  border-bottom-color: var(--rule);
  background: rgba(255,255,255,0.94);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { display: inline-block; height: 32px; }
.logo img { height: 100%; width: auto; }
.nav-desktop { display: none; align-items: center; gap: 32px; }
.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s var(--ease);
  position: relative;
}
.nav-desktop a:hover { color: var(--indigo); }
.nav-desktop a.current::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--indigo);
}
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 10px 18px; font-size: 14px; }

.nav-toggle {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid var(--rule);
}
.nav-toggle svg { width: 18px; height: 18px; }

.nav-mobile {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 200;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
  display: flex; flex-direction: column;
  padding: 24px var(--gutter);
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 48px;
}
.nav-mobile a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-sans); font-weight: 400; font-size: 28px;
  letter-spacing: -0.02em; color: var(--ink);
}
.nav-mobile a .arrow { color: var(--indigo); }
.nav-mobile-cta { margin-top: auto; padding-bottom: 24px; }
.nav-mobile-cta .btn { width: 100%; justify-content: space-between; }

/* ------------------------------------------------------------------- HERO */
.hero {
  padding: clamp(56px, 10vw, 128px) 0 clamp(40px, 7vw, 72px);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
.hero h1 { margin-bottom: 28px; }
.hero-eyebrow { margin-bottom: 28px; }
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 36px;
}
.hero-meta {
  margin-top: clamp(48px, 8vw, 80px);
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
.hero-meta-item .lab {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--ink-mute);
  margin-bottom: 8px;
}
.hero-meta-item .val {
  font-family: var(--font-sans); font-weight: 400;
  font-size: 17px; letter-spacing: -0.015em;
  color: var(--ink);
}

/* ------------------------------------------------------------- FEATURED INSIGHT */
.featured-insight {
  padding: clamp(56px, 8vw, 88px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.fi-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
}
.fi-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--ink-mute);
  margin-bottom: 16px;
}
.fi-meta .tag {
  background: var(--indigo);
  color: var(--white);
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.1em;
}
.fi-headline {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.15; letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.fi-headline em {
  font-family: var(--font-display); font-style: italic;
  color: var(--indigo); font-weight: 400;
}
.fi-meta-author {
  font-size: 14px; color: var(--ink-soft);
  margin-bottom: 24px;
}

/* ------------------------------------------------------------------- STATS */
.stats {
  background: var(--indigo); color: var(--white);
  padding: clamp(56px, 9vw, 96px) 0;
  overflow: hidden; position: relative;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.08), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.04), transparent 50%);
  pointer-events: none;
}
.stats-head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 32ch; }
.stats-head .h-section { color: var(--white); }
.stats-head .h-section em { color: var(--white); opacity: 0.85; }
.stats-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.stat {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.stat-num {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(56px, 12vw, 120px); line-height: 1;
  letter-spacing: -0.045em;
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 14px;
}
.stat-num small {
  font-size: 0.4em; font-weight: 400;
  color: rgba(255,255,255,0.7); letter-spacing: 0;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,0.78); max-width: 40ch; }

/* --------------------------------------------------------------- SECTION */
.section { padding: clamp(72px, 12vw, 140px) 0; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-dark  { background: var(--ink); color: var(--white); }
.section-dark .h-section { color: var(--white); }
.section-dark .h-section em { color: rgba(255,255,255,0.65); }
.section-dark .lead { color: rgba(255,255,255,0.78); }

.section-head {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  margin-bottom: clamp(48px, 7vw, 80px);
  align-items: end;
}
.section-head .lead { margin: 0; }

/* ----------------------------------------------------------- CAPABILITIES (services) */
.capabilities {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--rule);
}
.capability {
  display: grid;
  grid-template-columns: 36px 1fr 18px;
  gap: 18px; align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left .35s var(--ease);
}
.capability:hover { padding-left: 8px; }
.capability-num {
  font-family: var(--font-display); font-style: italic;
  color: var(--indigo); font-size: 22px; line-height: 1;
  padding-top: 4px;
}
.capability-body h3 {
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(22px, 3.2vw, 30px); letter-spacing: -0.02em;
  margin-bottom: 8px; line-height: 1.15;
}
.capability-body p {
  margin: 0; color: var(--ink-soft);
  font-size: 15px; max-width: 56ch;
}
.capability-arrow {
  color: var(--ink-soft);
  transition: color .25s var(--ease), transform .25s var(--ease);
  padding-top: 8px;
}
.capability:hover .capability-arrow { color: var(--indigo); transform: translateX(4px); }

/* ------------------------------------------------------- APPROACH (methodology) */
.approach-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.approach-step {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 36px);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.approach-step:hover {
  transform: translateY(-2px);
  border-color: var(--indigo);
}
.approach-step .num {
  font-family: var(--font-display); font-style: italic;
  color: var(--indigo); font-size: 28px; line-height: 1;
}
.approach-step h3 {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(20px, 2.8vw, 24px);
  letter-spacing: -0.02em; line-height: 1.2;
}
.approach-step p {
  color: var(--ink-soft); font-size: 15px;
  line-height: 1.55; margin: 0;
}

/* ------------------------------------------------------------- CASE STUDIES */
.work-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.case {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  display: flex; flex-direction: column; gap: 24px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.case:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(10,10,20,0.06);
}
.case-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--indigo); background: var(--indigo-soft);
  padding: 6px 12px; border-radius: 999px;
}
.case-name {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em; line-height: 1.05;
}
.case-name em {
  font-family: var(--font-display); font-style: italic;
  color: var(--indigo);
}
.case-context {
  color: var(--ink-soft); font-size: 15px;
  line-height: 1.55; max-width: 60ch;
}
.case-results {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--rule); padding-top: 24px;
}
.case-results li {
  display: inline-block; padding-bottom: 5px;
  font-size: 15px; line-height: 1.5;
}
.case-results li::before {
  content: "›"; color: var(--indigo);
  font-size: 22px; line-height: 1;
  flex-shrink: 0; transform: translateY(-2px); font-weight: 600;
}

/* ------------------------------------------------------------------- TEAM */
.team-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 48px);
}
.team-card { display: flex; flex-direction: column; }
.team-photo {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5; margin-bottom: 24px;
  background: var(--paper);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-name {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(24px, 3vw, 28px);
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 6px;
}
.team-role {
  font-family: var(--font-display); font-style: italic;
  color: var(--indigo); font-size: 18px;
  margin-bottom: 16px;
}
.team-bio {
  color: var(--ink-soft); font-size: 15px;
  line-height: 1.6; max-width: 50ch;
  margin: 0 0 14px;
}
.team-links { display: flex; gap: 12px; }
.team-links a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule); border-radius: 999px;
  color: var(--ink-soft);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.team-links a:hover { color: var(--indigo); border-color: var(--indigo); }
.team-links svg { width: 16px; height: 16px; }

/* ----------------------------------------------------------------- INSIGHTS */
/* .insights-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
} */
.insight {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}
.insight:last-child { border-bottom: 1px solid var(--rule); }
.insight-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--ink-mute);
}
.insight-meta .tag {
  font-size: 11px; padding: 4px 10px;text-align: center;
}
.insight-headline {
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(22px, 3.2vw, 30px);
  letter-spacing: -0.02em; line-height: 1.15;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.insight:hover .insight-headline { color: var(--indigo); }
.insight-excerpt {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
    max-width: 70ch;
    margin: 0;
}

/* ------------------------------------------------------------ TESTIMONIALS */
.voices-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.quote {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 36px);
  display: flex; flex-direction: column; gap: 24px;
  background: rgba(255,255,255,0.02);
}
.quote-mark {
  font-family: var(--font-display); font-style: italic;
  color: rgba(255,255,255,0.4);
  font-size: 56px; line-height: 0.6; height: 32px;
}
.quote-text {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.45; letter-spacing: -0.015em;
  margin: 0;
}
.quote-attr {
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 2px;
}
.quote-name { font-size: 15px; font-weight: 600; color: var(--white); }
.quote-role { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ---------------------------------------------------------- CLIENTS / TRUSTED BY */
.clients {
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}
.clients-label {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--ink-soft);
  margin-bottom: 40px; text-align: center;
}
.clients-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px clamp(20px, 5vw, 56px);
  align-items: center; justify-items: center;
}
.client {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; color: var(--ink); opacity: 0.55;
  transition: opacity .3s var(--ease), color .3s var(--ease), filter .3s var(--ease);
  filter: grayscale(100%);
}
.client:hover { opacity: 1; color: var(--indigo); filter: grayscale(0%); }
.client img { max-height: 100%; width: auto; }

/* Per-brand wordmark styles tuned to each brand's category vibe */
.logo-fibe        { font-family: var(--font-sans); font-weight: 800; font-size: 30px; letter-spacing: -0.045em; text-transform: lowercase; line-height: 1; }
.logo-fittr       { font-family: var(--font-sans); font-weight: 800; font-style: italic; font-size: 22px; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1; }
.logo-sofknit     { font-family: var(--font-sans); font-weight: 300; font-size: 20px; letter-spacing: 0.18em; text-transform: lowercase; line-height: 1; }
.logo-famli       { font-family: var(--font-sans); font-weight: 700; font-size: 26px; letter-spacing: -0.025em; line-height: 1; }
.logo-marzi       { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 32px; letter-spacing: -0.005em; line-height: 1; }
.logo-cutecouture { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 23px; letter-spacing: 0.005em; line-height: 1; }

/* ------------------------------------------------------------------- FAQ */
.faq-list { border-top: 1px solid var(--rule); }
details.faq-item { border-bottom: 1px solid var(--rule); }
details.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(18px, 2.6vw, 22px);
  letter-spacing: -0.02em; line-height: 1.3;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 999px; border: 1px solid var(--rule);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .35s var(--ease);
  color: var(--ink);
}
.faq-icon svg { width: 12px; height: 12px; transition: transform .35s var(--ease); }
details[open] .faq-icon { background: var(--indigo); border-color: var(--indigo); color: var(--white); }
details[open] .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 28px 0;
  color: var(--ink-soft);
  font-size: 16px; line-height: 1.6;
  max-width: 70ch;
}

/* ------------------------------------------------------------------ CTA */
.cta {
  background: var(--indigo); color: var(--white);
  padding: clamp(80px, 14vw, 160px) 0;
  text-align: left; position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute;
  top: 0; right: -10%; width: 60%; height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta h2 {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(40px, 8vw, 88px); line-height: 1;
  letter-spacing: -0.035em;
  color: var(--white); margin-bottom: 36px;
}
.cta h2 em {
  font-family: var(--font-display); font-style: italic;
  font-weight: 400; color: rgba(255,255,255,0.65);
}
.cta .lead { color: rgba(255,255,255,0.78); margin-bottom: 40px; }
.cta .btn-primary {
  background: var(--white); color: var(--indigo);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.cta .btn-primary:hover { background: var(--cream); }

/* ---------------------------------------------------------------- FOOTER */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: clamp(56px, 8vw, 80px) 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-logo { height: 32px; margin-bottom: 20px; display: inline-block; }
.footer-logo img { height: 100%; }
.footer-tag { font-size: 14px; line-height: 1.5; max-width: 36ch; }
.footer h4 {
  color: var(--white); font-family: var(--font-sans);
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 600;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer a { font-size: 15px; color: rgba(255,255,255,0.7); transition: color .2s var(--ease); }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
  justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.5);
}

/* ------------------------------------------------------------------ SERVICE PAGE STYLES */
.service-hero {
  padding: clamp(48px, 9vw, 120px) 0 clamp(48px, 8vw, 96px);
  border-bottom: 1px solid var(--rule);
  position: relative; overflow: hidden;
}
.service-hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
.service-num-large {
  font-family: var(--font-display); font-style: italic;
  color: var(--indigo);
  font-size: clamp(64px, 14vw, 160px); line-height: 0.9;
  letter-spacing: -0.04em; margin-bottom: 8px;
  display: block;
}
.service-hero h1 {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(40px, 9vw, 88px); line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.service-hero h1 em {
  font-family: var(--font-display); font-style: italic;
  font-weight: 400; color: var(--indigo);
}
.service-hero .lead { margin-bottom: 32px; max-width: 56ch; }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 32px;
  transition: color .2s var(--ease);
}
.breadcrumb:hover { color: var(--indigo); }
.breadcrumb svg { width: 12px; height: 12px; }

.service-section {
  padding: clamp(64px, 10vw, 120px) 0;
  border-bottom: 1px solid var(--rule);
}
.service-section.alt { background: var(--cream); border-bottom: 0; }

.problem-statement {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(22px, 3.6vw, 34px);
  line-height: 1.3; letter-spacing: -0.02em;
  max-width: 32ch; color: var(--ink);
}
.problem-statement em {
  font-family: var(--font-display); font-style: italic;
  color: var(--indigo); font-weight: 400;
}
.problem-detail {
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: 16px; line-height: 1.6;
  max-width: 60ch;
}

.deliverables {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.deliverable {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 32px);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.deliverable:hover { transform: translateY(-2px); border-color: var(--indigo); }
.deliverable-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--indigo-soft); color: var(--indigo);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.deliverable-icon svg { width: 20px; height: 20px; }
.deliverable h3 {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(19px, 2.6vw, 22px);
  letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 10px;
}
.deliverable p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin: 0; }

.process-steps { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--rule); }
.process-step {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 20px; padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.process-step-num {
  font-family: var(--font-display); font-style: italic;
  color: var(--indigo); font-size: clamp(28px, 5vw, 44px);
  line-height: 1;
}
.process-step h3 {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(20px, 2.8vw, 24px);
  letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 8px;
}
.process-step p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 0; max-width: 56ch; }

.other-services {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--rule);
}
.other-service {
  display: block;
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left .35s var(--ease);
}
.other-service:hover { padding-left: 8px; }
.other-service .pn {
  font-family: var(--font-display); font-style: italic;
  color: var(--indigo); font-size: 14px; margin-bottom: 8px;
}
.other-service h4 {
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(18px, 2.4vw, 22px);
  letter-spacing: -0.02em;
  margin-bottom: 6px; line-height: 1.2;
  color: var(--ink);
}
.other-service p { color: var(--ink-soft); font-size: 14px; line-height: 1.5; margin: 0; }

/* --------------------------------------------------------- REVEAL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .65s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .75s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------ RESPONSIVE */
@media (min-width: 720px) {
  .hero-grid { grid-template-columns: 1.3fr 1fr; gap: 60px; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .fi-grid { grid-template-columns: 1.2fr 1fr; gap: 60px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,0.18); }
  .stat { padding: 0; padding-right: 32px; border-bottom: 0; border-right: 1px solid rgba(255,255,255,0.18); }
  .stat:last-child { border-right: 0; padding-right: 0; }
  .stat-num { padding-top: 32px; }

  .section-head { grid-template-columns: 1.1fr 1fr; gap: 60px; }
  .clients-row { grid-template-columns: repeat(3, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: repeat(3, 1fr); }
  .deliverables { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-step { grid-template-columns: 120px 1fr 2fr; gap: 32px; }
  .process-step h3 { margin-bottom: 0; }
  .other-services { grid-template-columns: repeat(2, 1fr); }
  .other-services > a { border-right: 1px solid var(--rule); }
  .other-services > a:nth-child(2n) { border-right: 0; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: row; align-items: center; }
}
@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .nav-desktop { display: inline-flex; }
  .logo { height: 36px; }
  .approach-grid { grid-template-columns: repeat(4, 1fr); }
  .clients-row { grid-template-columns: repeat(6, 1fr); gap: 0 clamp(20px, 4vw, 56px); }
  .other-services { grid-template-columns: repeat(3, 1fr); }
  .other-services > a:nth-child(2n) { border-right: 1px solid var(--rule); }
  .other-services > a:nth-child(3n) { border-right: 0; }
}
/* 12-05-2026 */
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.audit-banner {
  background: #f1f0f9;
  border: 1px solid rgba(52, 48, 126, 0.16);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-top: clamp(40px, 6vw, 60px);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
}

.audit-banner .h-medium {
  color: #34307e;
}

.audit-banner p {
  color: #4a4a5c;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 60ch;
}

.audit-banner .btn-large {
  padding: 18px 28px;
  font-size: 16px;
}

.audit-banner .btn-primary {
  background: #34307e;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(52, 48, 126, .15), 0 8px 24px rgba(52, 48, 126, .18);
}

.audit-banner .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s cubic-bezier(.2, .7, .2, 1), background .25s cubic-bezier(.2, .7, .2, 1), color .25s cubic-bezier(.2, .7, .2, 1), box-shadow .25s cubic-bezier(.2, .7, .2, 1);
  white-space: nowrap;
}
.about-intro p em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--indigo);
    font-weight: 400;
}
.audit-banner .btn .arrow {
  transition: transform .3s cubic-bezier(.2, .7, .2, 1);
}
.team-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: clamp(48px, 8vw, 72px);
    padding: clamp(28px, 5vw, 40px);
    border: 1px solid rgba(10, 10, 20, 0.10);
    border-radius: 16px;
    background: #fff;
}
.team-stat .lab {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #0a0a14;
    margin-bottom: 6px;
}
.team-stat .val {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 300;
    font-size: clamp(28px, 4vw, 36px);
    letter-spacing: -0.025em;
    line-height: 1;
}
.team-stat .val em {
    font-family: 'Instrument Serif', 'Times New Roman', serif;
    font-style: italic;
    color: #34307e;
    font-weight: 400;
}
.insight-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
    transition: padding-left .3s cubic-bezier(.2, .7, .2, 1);
    cursor: pointer;
}
.insight-row:hover {
    padding-left: 8px;
}
.section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: clamp(48px, 7vw, 80px);
}
section.featured-insight {
    display: none;
}
.engagements {
    padding: clamp(72px, 12vw, 140px) 0;
    background: #fff;
}
.eng-card {
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: clamp(28px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--white);
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.eng-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--indigo-soft);
    color: var(--indigo);
}
.eng-name {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(24px, 3.4vw, 30px);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0;
}
.eng-price {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(34px, 5vw, 44px);
    letter-spacing: -0.035em;
    line-height: 1;
    margin: 0;
}
.eng-pitch {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}
.eng-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.eng-card ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
}
.eng-card .btn {
    margin-top: auto;
    align-self: flex-start;
}
.eng-card.featured {
    background: var(--indigo);
    color: var(--white);
    border-color: var(--indigo);
}
.eng-card.featured .eng-tag {
    background: rgba(255,255,255,0.18);
    color: var(--white);
}
.eng-card.featured .eng-name, .eng-card.featured .eng-price, .eng-card.featured h4 {
    color: var(--white);
}
.eng-card.featured .eng-name, .eng-card.featured .eng-price, .eng-card.featured h4 {
    color: var(--white);
}
.eng-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.eng-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(10,10,20,0.06);
}
.eng-card.featured .eng-pitch {
    color: rgba(255,255,255,0.8);
}
.eng-card.featured ul li {
    color: rgba(255,255,255,0.86);
}
.eng-card.featured .btn-ghost {
    background: var(--white);
    color: var(--indigo);
    border-color: var(--white);
}
.about {
    padding: clamp(72px, 12vw, 140px) 0;
}
.about-intro {
    max-width: 60ch;
    margin-bottom: clamp(48px, 7vw, 80px);
}
.about-intro p {
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.45;
    color: var(--ink);
    font-weight: 300;
    letter-spacing: -0.01em;
}
.pillar-num {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--indigo);
    font-size: 20px;
    margin-bottom: 12px;
}
#team {
    border-top: 1px solid var(--rule);
}
.pillar h3 {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.pillar p {
    color: var(--ink-soft);
    font-size: 15px;
    margin: 0;
    max-width: 50ch;
}
.pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--rule);
}
.pillar {
    padding: 32px 0;
    border-bottom: 1px solid var(--rule);
}
.footer .lab {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.5);
    display: block;
}
.team-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.cred-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--rule);
    padding: 6px 10px;
    border-radius: 999px;
}
.nav-mobile-cta  a {
    color: #fff;
    justify-content: center!important;
}
@media (min-width: 720px) {
  .pillar {
    padding: 40px 32px 40px 0;
    border-bottom: 0;
    border-right: 1px solid var(--rule);
}
  .pillars {
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rule);
}
  .audit-banner {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
  .audit-banner .audit-text {
    flex: 1;
  }
  .team-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.section-head {
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: end;
}
.eng-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}
.pillar:last-child {
    border-right: 0;
}
}
@media (min-width: 980px) {
    .insight-row {
        grid-template-columns: 240px 1fr;
        gap: 40px;
        align-items: start;
    }
}
