/* ---------------------------------------------------------------------------
   JAI Development — design system v3.2
   Editorial cinematic register · D6 Cinematic Cover direction
   Coral · Cream · Deep Indigo
   --------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,300..700,0..100;1,9..144,300..700,0..100&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand palette */
  --coral: #FF6B35;
  --coral-deep: #E8541F;
  --cream: #FFF3EC;
  --cream-alt: #FFF8F2;
  --indigo: #1F2A44;
  --indigo-soft: #2C3754;
  --ink: #1A1A1A;
  --muted: #6E5C50;
  --hairline: #E8D2C2;

  /* Type system */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, system-ui, sans-serif;

  /* Type scale */
  --t-display-xl: clamp(3.5rem, 7vw, 6rem);
  --t-display-lg: clamp(2.5rem, 5vw, 4rem);
  --t-display-md: clamp(2rem, 3.5vw, 2.75rem);
  --t-h2: clamp(1.75rem, 2.5vw, 2.25rem);
  --t-h3: 1.375rem;
  --t-h4: 1.125rem;
  --t-body-lg: 1.125rem;
  --t-body: 1rem;
  --t-small: 0.875rem;
  --t-eyebrow: 0.75rem;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 960px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --shadow-soft: 0 1px 2px rgba(31, 42, 68, 0.04), 0 4px 16px rgba(31, 42, 68, 0.06);
  --shadow-lift: 0 2px 4px rgba(31, 42, 68, 0.06), 0 12px 32px rgba(31, 42, 68, 0.10);
}

/* ---------------------------------------------------------------------------
   Reset + base
   --------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--indigo);
  background: var(--cream);
  font-feature-settings: "ss01", "cv01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--indigo);
}

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

::selection { background: var(--coral); color: var(--cream); }

/* ---------------------------------------------------------------------------
   Layout helpers
   --------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--coral);
  margin-bottom: var(--s-4);
}

.lede {
  font-size: var(--t-body-lg);
  color: var(--indigo);
  max-width: 50ch;
}

.muted { color: var(--muted); }

/* ---------------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.95rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}
.btn-coral {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.30);
}
.btn-coral:hover {
  /* Option B color-swap system: coral fill → indigo fill on hover. */
  background: var(--indigo);
  color: var(--cream);
  border-color: var(--indigo);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 42, 68, 0.40);
}
.btn-coral:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 3px;
}
.btn-ghost {
  background: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
}
.btn-ghost:hover { background: var(--indigo); color: var(--cream); }
.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-cream:hover { background: var(--cream); color: var(--indigo); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--coral);
  font-weight: 600;
  font-size: var(--t-small);
  letter-spacing: 0.01em;
}
.text-link::after {
  content: "→";
  transition: transform 200ms ease;
}
.text-link:hover::after { transform: translateX(4px); }

/* ---------------------------------------------------------------------------
   Nav (sticky, site-wide)  — V10: dark indigo banner, cream-outline CTA + dot
   --------------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(31, 42, 68, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease, padding 200ms ease;
}
/* Backdrop blur only on devices with a real pointer. On iOS, a backdrop-filter on
   the sticky nav swallows the first tap on links inside it (the logo, menu links),
   so you had to tap twice. The nav background is near-opaque, so dropping the blur
   on touch is visually negligible. */
@media (hover: hover) {
  .site-nav {
    background: rgba(31, 42, 68, 0.94);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
  }
}
.site-nav.scrolled {
  background: rgba(31, 42, 68, 0.98);
  border-bottom-color: rgba(255, 243, 236, 0.10);
}
.site-nav__inner {
  /* 4-column grid: logo (auto) | menu (1fr) | CTA (auto) | toggle (auto).
     Menu inside its 1fr column spreads items via space-around so the space
     between logo-end and CTA-start is filled evenly. */
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--s-6);
  padding: var(--s-4) 0;
  transition: padding 200ms ease;
}
.site-nav.scrolled .site-nav__inner { padding: 12px 0; }
.site-nav__logo {
  display: inline-flex;
  align-items: center;
  padding-left: var(--s-3);
  flex-shrink: 0;          /* don't allow grid to squeeze the logo column */
  min-width: max-content;  /* always reserve space for the natural-width logo */
}
.site-nav__logo img {
  height: 48px;
  width: auto;
  max-width: none;         /* override global img { max-width: 100% } which distorted the logo when the column got squeezed */
  flex-shrink: 0;
  transition: height 200ms ease;
}
.site-nav.scrolled .site-nav__logo img { height: 38px; }

.site-nav__menu {
  /* Spread items across the 1fr column between logo-end and CTA-start.
     space-around gives equal padding around each item including edges,
     so the menu visually fills the available middle space evenly. */
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0;                         /* gaps come from space-around, not flex gap */
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;                    /* fill the 1fr grid column */
}
.site-nav__menu li { white-space: nowrap; }   /* prevent text from wrapping */
.site-nav__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding: 0.4rem 0;
  letter-spacing: 0.01em;
  transition: color 150ms ease;
}
.site-nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-nav__menu a:hover::after,
.site-nav__menu a.is-active::after { transform: scaleX(1); }
.site-nav__menu a:hover { color: var(--coral); }

/* Persistent CTA pill — cream outline + coral pulsing dot on dark nav */
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255, 243, 236, 0.55);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease, transform 180ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.site-nav__cta:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 107, 53, 0.35);
}
.site-nav__cta .dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}
.site-nav__cta .dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.45;
  animation: site-nav-pulse 1.8s ease-out infinite;
}
.site-nav__cta:hover .dot,
.site-nav__cta:hover .dot::after { background: var(--cream); }
.site-nav__cta::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease;
}
.site-nav__cta:hover::after { transform: translateX(3px); }
@keyframes site-nav-pulse {
  0%   { transform: scale(0.85); opacity: 0.55; }
  80%  { transform: scale(2.0); opacity: 0; }
  100% { transform: scale(2.0); opacity: 0; }
}

/* Hamburger toggle (mobile) — animates to ✕ when open */
.site-nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 1px solid rgba(255, 243, 236, 0.30);
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: border-color 180ms ease, background 180ms ease;
}
.site-nav__toggle:hover {
  border-color: var(--coral);
  background: rgba(255, 107, 53, 0.10);
}
.site-nav__toggle .ham {
  position: relative;
  width: 18px;
  height: 12px;
  display: inline-block;
}
.site-nav__toggle .ham::before,
.site-nav__toggle .ham::after,
.site-nav__toggle .ham span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 220ms ease, opacity 180ms ease, top 220ms ease;
}
.site-nav__toggle .ham::before { top: 0; }
.site-nav__toggle .ham span { top: 50%; transform: translateY(-50%); display: block; }
.site-nav__toggle .ham::after { bottom: 0; top: auto; }
.site-nav__toggle.is-open .ham::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.site-nav__toggle.is-open .ham::after { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }
.site-nav__toggle.is-open .ham span { opacity: 0; }

@media (max-width: 1080px) {
  .site-nav__menu { gap: var(--s-6); }
  .site-nav__menu a { font-size: 0.86rem; }
}

@media (max-width: 1024px) {
  /* Collapse to the hamburger at <=1024 so the full desktop nav (logo + 6 links +
     the long "Book a free 30-min consultation" CTA) never overflows the viewport.
     Between ~900 and ~1000px the desktop CTA used to push past the edge, flickering
     a horizontal scrollbar and making the sticky nav twitch. */
  .site-nav__inner { display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); }  /* flex on mobile: drops the empty menu grid-column + its gaps that overflowed the toggle */
  .site-nav__menu { display: none; }        /* hidden by default */
  .site-nav__menu.is-open {
    /* Mobile dropdown — overrides desktop's absolute centering */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-4);
    position: absolute;
    top: 100%;          /* below the nav */
    left: 0;
    right: 0;
    transform: none;    /* clear desktop's translate(-50%, -50%) */
    padding: var(--s-6) var(--gutter) var(--s-8);
    background: var(--indigo);
    border-bottom: 1px solid rgba(255, 243, 236, 0.10);
  }
  .site-nav__menu.is-open a { color: var(--cream); }
  .site-nav__toggle { display: inline-flex; }
  .site-nav__cta {
    padding: 9px 18px;
    font-size: 0.82rem;
    gap: 8px;
    /* Arrow is now SHOWN on mobile (was previously hidden). The CTA copy
       "Book a free 30-min consultation" benefits from a clear action mark. */
  }
  .site-nav__cta .dot { width: 7px; height: 7px; }
  /* Slightly smaller arrow on mobile for proportion */
  .site-nav__cta::after { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .site-nav__logo img { height: 38px; }
  .site-nav__cta { padding: 9px 16px; font-size: 0.78rem; }
}

/* ---------------------------------------------------------------------------
   Hero (full-bleed cinematic)
   --------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--cream);
}
.hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 540px;
  max-height: 88vh;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(255, 243, 236, 0.96) 0%, rgba(255, 243, 236, 0.85) 30%, rgba(255, 243, 236, 0.4) 50%, rgba(255, 243, 236, 0) 65%);
}
/* Stronger gradient for the production-ops hero (darker base imagery) */
.hero[data-hero="production-ops"] .hero__gradient {
  background:
    linear-gradient(95deg, rgba(255, 243, 236, 0.98) 0%, rgba(255, 243, 236, 0.92) 35%, rgba(255, 243, 236, 0.55) 55%, rgba(255, 243, 236, 0) 72%);
}
.hero__content {
  position: absolute;
  left: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  max-width: min(640px, 50%);
  z-index: 2;
}
.hero__h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--indigo);
  margin: 0 0 var(--s-6);
}
.hero__h1 br { display: inline; }
.hero__sub {
  font-size: var(--t-body-lg);
  color: var(--indigo);
  max-width: 46ch;
  width: 100%;
  margin: 0 0 var(--s-8);
  overflow-wrap: break-word;
}
.hero__cta {
  display: inline-flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 var(--s-6);
}

@media (max-width: 800px) {
  /* Stack hero on mobile: photo on top, content below in normal flow */
  .hero { display: flex; flex-direction: column; }
  .hero__media { aspect-ratio: 4/5; min-height: 0; max-height: 70vh; position: relative; }
  .hero__gradient { display: none; }
  .hero__content {
    position: static;
    max-width: 100%;
    margin: 0;
    padding: var(--s-12) var(--gutter);
    background: var(--cream);
  }
  .hero__h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); line-height: 1.08; overflow-wrap: anywhere; }
  .hero__eyebrow { letter-spacing: 0.12em; font-size: 0.6875rem; }
  .hero__sub { font-size: 0.95rem; }
  .hero__cta { gap: var(--s-2); }
  .hero__cta .btn { padding: 0.85rem 1.25rem; font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .hero__h1 { font-size: 1.625rem; }
  .hero__sub { font-size: 0.9rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
}

/* ---------------------------------------------------------------------------
   Hero — HOME page modifier (HA14 spec)
   Full-bleed wide cinematic image, type CENTERED on top, view-port height.
   Applied via class="hero hero--home" on index.html only — keeps formulation
   and production-ops heroes on the canonical type-LEFT split layout.
   --------------------------------------------------------------------------- */
.hero--home {
  /* Override canonical .hero — full viewport-height container with grid centering */
  width: 100%;
  /* Grow if content is taller than the viewport so nothing overlaps the next section */
  min-height: max(560px, calc(100vh - 80px));
  padding: clamp(32px, 6vh, 72px) 0;
  display: grid;
  place-items: center;
  color: var(--indigo);
}
.hero--home .hero__media {
  /* Override canonical .hero__media — fill the grid cell absolutely */
  position: absolute;
  inset: 0;
  z-index: -2;
  aspect-ratio: auto;             /* override 16/10 */
  min-height: 0;
  max-height: none;
}
.hero--home .hero__media picture {
  /* Critical: <picture> wrapper must fill the media container so img can
     correctly use object-fit. */
  display: block;
  width: 100%;
  height: 100%;
}
.hero--home .hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero--home .hero__veil {
  /* Cream radial veil so type reads cleanly over the photo */
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 243, 236, 0.96) 0%, rgba(255, 243, 236, 0.88) 38%, rgba(255, 243, 236, 0.42) 62%, rgba(255, 243, 236, 0.04) 100%);
}
.hero--home .hero__content {
  /* Override canonical type-LEFT — center the type stack.
     inset:0 fills the entire .hero; max-width + margin:0 auto centers
     horizontally; flex justify-content centers vertically. */
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(32px, 6vh, 56px) var(--gutter);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transform: none;                /* override translateY(-50%) from canonical */
  /* DO NOT set top/left to auto — that breaks the inset:0 fill.
     The previous version had top:auto/left:auto which anchored content
     to bottom-right and pushed copy too high near the nav. */
}
/* Constrain the type to a left column so the photo reads on the right */
.hero--home .hero__content > * { max-width: 620px; }
/* Eyebrow with coral hairlines on either side */
.hero--home .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--indigo);
  margin: 0 0 24px;
  text-shadow: 0 1px 2px rgba(255, 243, 236, 0.6);
}
.hero--home .hero__eyebrow::before,
.hero--home .hero__eyebrow::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}
/* H1 — Fraunces, 4-line stack with explicit <br>s */
.hero--home .hero__h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  color: var(--indigo);
  margin: 0 0 22px;
  max-width: none;            /* override the 620px column cap so each <br> line stays intact */
  white-space: nowrap;        /* keep "Production Operations." (and every line) on one line */
  text-shadow: 0 2px 6px rgba(255, 243, 236, 0.55);
}
/* Sub — bigger, bold, brand name in indigo weight 800, coral hairline above */
.hero--home .hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--indigo);
  max-width: 33rem;
  margin: 0 0 28px;
  padding-top: 18px;
  position: relative;
  text-shadow:
    0 1px 1px rgba(255, 243, 236, 1),
    0 0 6px rgba(255, 243, 236, 1),
    0 0 14px rgba(255, 243, 236, 0.85),
    0 0 28px rgba(255, 243, 236, 0.55),
    0 0 48px rgba(255, 243, 236, 0.30);
}
.hero--home .hero__sub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: 48px;
  height: 2px;
  background: var(--coral);
}
.hero--home .hero__sub strong {
  font-weight: 800;
  color: var(--indigo);
}
/* CTA wrapper — keep flex but center; the .btn-coral inside picks up the
   global Option B color-swap hover system. */
.hero--home .hero__cta {
  display: inline-flex;
  gap: var(--s-3);
  justify-content: center;
}
/* Buttons carry no trailing arrow, site-wide — keeps every CTA visually
   consistent (the hero's former one-off arrow was the only exception). */

/* Mobile (≤800px): STACK the hero — text on a cream block, the full packaging
   image directly below it. No overlay, so the CTA never covers the products
   (an overlay can't fit the type inside the image's cream zone on a phone). */
@media (max-width: 800px) {
  .hero--home {
    min-height: 0;
    display: flex;
    flex-direction: column-reverse;   /* DOM order is media, veil, content -> content lands on top */
    padding: 0;
  }
  .hero--home .hero__media {
    position: relative;               /* in-flow, below the text */
    inset: auto;
    z-index: auto;
    width: 100%;
    aspect-ratio: 1 / 1;              /* crop the empty top wall, keep the full packaging band */
    min-height: 0;
    max-height: none;
  }
  .hero--home .hero__media picture { display: block; height: 100%; }
  .hero--home .hero__img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;   /* anchor on the products + ingredients */
  }
  .hero--home .hero__veil { display: none; }   /* no overlay needed in the stacked layout */
  .hero--home .hero__content {
    position: relative;
    inset: auto;
    z-index: auto;
    max-width: none;
    margin: 0;
    padding: clamp(28px, 5vh, 48px) 18px clamp(24px, 4vh, 36px);
    background: var(--cream);
    justify-content: flex-start;
    transform: none;
  }
  .hero--home .hero__content > * { max-width: none; }
  .hero--home .hero__eyebrow { font-size: 0.72rem; gap: 10px; letter-spacing: 0.26em; text-shadow: none; }
  .hero--home .hero__eyebrow::before,
  .hero--home .hero__eyebrow::after { width: 22px; }
  .hero--home .hero__h1 {
    font-size: clamp(30px, 9.6vw, 54px);
    line-height: 1.04;
    margin: 0 0 18px;
    overflow-wrap: normal;            /* explicit <br>s only */
    text-shadow: none;                /* sits on solid cream now */
  }
  .hero--home .hero__sub { font-size: 1.12rem; max-width: 100%; margin: 0 0 24px; text-shadow: none; }
  .hero--home .hero__cta { margin-top: 4px; }
}
@media (max-width: 480px) {
  .hero--home .hero__content { padding: clamp(24px, 4.5vh, 38px) 14px clamp(20px, 3.5vh, 30px); }
  .hero--home .hero__h1 { font-size: 1.625rem; }
  .hero--home .hero__sub { font-size: 1.06rem; }
}

/* ---------------------------------------------------------------------------
   Founder Story (canonical FS6 — locked 5/7)
   Two-column on cream: italic-coral H2 + letter-style body left, square-mask
   founder photo with coral hairline corner accent right. Sized to feel like
   a calm second beat after the cinematic hero — not a second hero. Lives
   immediately after the .hero--home and before the indigo journey section.
   See /web/explorations/founder-story/ for full iteration archive (FS1-FS6).
   --------------------------------------------------------------------------- */
.founder-story {
  background: var(--cream);
  color: var(--indigo);
  padding: clamp(48px, 6vh, 80px) 0;
  position: relative;
}
.founder-story__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.founder-story__eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 clamp(14px, 2vh, 22px);
}
.founder-story__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--indigo);
  margin: 0 0 clamp(20px, 2.4vh, 28px);
}
.founder-story__br { display: none; }            /* break before "Founder and CEO" on mobile only */
@media (max-width: 800px) { .founder-story__br { display: inline; } }
.founder-story__body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  color: var(--indigo);
  margin: 0 0 clamp(20px, 2.6vh, 28px);
  max-width: 64ch;
}
.founder-story__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.4;
  color: var(--indigo);
  margin: clamp(20px, 2.6vh, 28px) 0 14px;
  padding-left: clamp(16px, 2vw, 24px);
  border-left: 3px solid var(--coral);
  max-width: 44ch;
}
/* Positioning override only — visual styling inherits from .btn .btn-coral */
.founder-story__cta {
  margin-top: 22px;
  align-self: flex-start;
}

.founder-story__byline {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0;
}
.founder-story__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: var(--indigo);
  box-shadow: 0 30px 60px -20px rgba(31, 42, 68, 0.30);
}
.founder-story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Original PDF deck image — focus right side (Matt + cart + warehouse),
     push the slide's left-edge wave-cutout off-frame */
  object-position: 72% center;
  display: block;
  /* override global img { max-width: 100% } isn't needed here, but keep
     a defensive max-width: none pattern for canonical photo containers */
}
.founder-story__photo::after {
  /* Coral hairline corner accent — top-right */
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 64px;
  height: 64px;
  border-top: 3px solid var(--coral);
  border-right: 3px solid var(--coral);
  border-radius: 0 6px 0 0;
}
@media (max-width: 800px) {
  .founder-story__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .founder-story__photo {
    order: -1;
    max-width: 280px;
    aspect-ratio: 1 / 1;
  }
  .founder-story__body { font-size: 1.02rem; }
  .founder-story__cta { display: flex; width: -moz-fit-content; width: fit-content; margin-left: auto; margin-right: auto; align-self: center; }
}

/* ---------------------------------------------------------------------------
   How We Work (canonical HW11 — locked 5/8)
   Sticky-pin scrubbing on indigo. Two-column desktop layout: left panel is
   sticky and pinned, holding 8 stacked stage photos that cross-fade based on
   scroll position. Right column is a list of 8 entries (number + title + flat
   coral icon) — the entry closest to viewport center 55% is "active" and its
   matching photo fades in on the left. Sticky H2 band stays visible during
   the entire scroll through the section. On mobile (<=900px) the panel
   becomes a 36vh sticky band at top of viewport, entries scroll below.
   See /web/explorations/how-we-work/ for the full iteration archive
   (HW1-HW14, with HW11 being the locked direction).
   --------------------------------------------------------------------------- */
.hw11 {
  background: var(--indigo);
  color: var(--cream);
  padding: clamp(64px, 8vh, 96px) 0 clamp(80px, 10vh, 128px);
  position: relative;
}
/* STICKY INTRO BAND — pins HIGHER (top: 60px) so its solid indigo bg
   slides UNDER the V10 nav and fills the gap created by the nav's
   94%-opacity background. Padding-top compensates so the band's content
   still visually clears the nav when stuck. */
.hw11__intro {
  position: sticky;
  top: 60px;
  z-index: 20;
  background: #1F2A44;
  padding: 38px var(--gutter) 22px;
  border-bottom: 1px solid rgba(255, 243, 236, 0.12);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.45);
  margin: 0 0 48px;
}
.hw11__intro-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hw11__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 10px;
}
.hw11__eyebrow::before {
  content: ''; width: 32px; height: 2px; background: var(--coral); flex-shrink: 0;
}
.hw11__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0;
}
.hw11__lede {
  font-family: var(--font-body);
  font-size: clamp(0.94rem, 1.05vw, 1.04rem);
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.78;
  margin: 0;
}

.hw11__split {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* PINNED PANEL (left) — pure image, swaps with active stage */
.hw11__pinned {
  position: sticky;
  top: 268px;
  align-self: start;
}
.hw11__panel {
  position: relative;
  aspect-ratio: 1 / 1;
  background: rgba(255, 243, 236, 0.04);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
}
.hw11__panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: none;
  opacity: 0;
  transition: opacity 480ms cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
  transform: scale(1.0);
}
.hw11__panel-img.is-active {
  opacity: 1;
  transform: scale(1.06);
}

/* SCROLLING LIST (right) — 18vh bottom buffer + the CTAs (now inside this
   list, after entry 08) together keep the panel pinned past stage 08 activation */
.hw11__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 18vh;
}

/* PHASE HEADER — clean two-line UPRIGHT display-serif pair */
.hw11__phase {
  padding: 8px 0 28px;
  border-bottom: 2px solid var(--coral);
  margin-bottom: 8px;
}
.hw11__phase--second { margin-top: 56px; }
.hw11__phase-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0;
}
.hw11__phase-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--coral);
  margin: 6px 0 0;
}

/* ENTRY — italic giant numeral + title + 88px AI-gen flat coral icon */
.hw11__entry {
  padding: clamp(36px, 4.5vh, 56px) 0;
  border-bottom: 1px solid rgba(255, 243, 236, 0.10);
  display: grid;
  grid-template-columns: 88px 1fr 96px;
  gap: 28px;
  align-items: center;
  transition: opacity 280ms ease;
  opacity: 0.42;
}
.hw11__entry.is-active { opacity: 1; }
.hw11__entry-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(3rem, 4.4vw, 4.4rem);
  line-height: 1;
  color: var(--coral);
  margin: 0;
}
.hw11__entry-content { min-width: 0; }
.hw11__entry-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 1.9vw, 1.8rem);
  line-height: 1.18;
  color: var(--cream);
  margin: 0;
}
.hw11__entry-icon {
  width: 88px;
  height: 88px;
  display: block;
  justify-self: end;
  flex-shrink: 0;
}
.hw11__entry-icon img,
.hw11__entry-icon svg { width: 100%; height: 100%; max-width: none; display: block; }

/* CTAs — two markup instances exist (--inline inside the right column for
   desktop, --mobile outside .hw11__split for mobile). Both stack vertically
   so the pills are always equal width and the long labels never overflow. */
.hw11__ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hw11__ctas .btn {
  flex: none;
  width: 100%;
  min-width: 0;
  justify-content: center;
}

/* Desktop inline variant — stacked in the right column under entry 08, with
   generous breathing room from the entry-08 divider line so the pair sits
   visually centered between that line and the bottom of the pinned image. */
.hw11__ctas--inline {
  margin: 60px 0 0;
}

/* Mobile variant — hidden by default; shown only at <=900px */
.hw11__ctas--mobile {
  display: none;
}
.hw11__ctas .btn {
  background: var(--coral);
  color: #fff;
  border: 1px solid var(--coral);
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 180ms ease, box-shadow 200ms ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.hw11__ctas .btn:hover {
  background: var(--cream); color: var(--indigo); border-color: var(--cream);
  transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 243, 236, 0.20);
}
.hw11__ctas .btn::after { content: '→'; transition: transform 180ms ease; }
.hw11__ctas .btn:hover::after { transform: translateX(4px); }

@media (max-width: 900px) {
  /* Mobile: drop sticky intro, keep image panel sticky as 36vh band */
  .hw11__intro {
    position: relative;
    top: 0;
    padding: 18px var(--gutter) 22px;
    margin-bottom: 18px;
  }
  .hw11__intro-grid { grid-template-columns: 1fr; gap: 8px; }
  .hw11__h2 { font-size: clamp(24px, 6vw, 32px); }
  .hw11__lede { font-size: 0.96rem; }
  .hw11__split { grid-template-columns: 1fr; gap: 0; }
  .hw11__pinned {
    position: sticky;
    top: 64px;
    z-index: 4;
    margin: 0 calc(var(--gutter) * -1) 24px;
    background: var(--indigo);
    padding: 8px 0;
  }
  .hw11__panel {
    aspect-ratio: auto;
    height: 36vh;
    min-height: 240px;
    max-width: 100%;
    border-radius: 0;
  }
  .hw11__entry {
    grid-template-columns: 56px 1fr 64px;
    gap: 16px;
    padding: 26px 0;
  }
  .hw11__entry-num { font-size: 2.2rem; }
  .hw11__entry-icon { width: 64px; height: 64px; }
  .hw11__phase-name { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
  .hw11__phase-sub { font-size: 1rem; }
  /* On mobile the panel is sticky-banded at top of viewport (not
     column-pinned), so no bottom buffer needed in the list. */
  .hw11__list { padding-bottom: 0; }
  /* Hide the inline desktop CTAs; show the mobile-only block that lives
     OUTSIDE .hw11__split — that way the sticky image panel releases
     before the user reaches the CTAs. */
  .hw11__ctas--inline { display: none; }
  .hw11__ctas--mobile {
    display: flex;
    gap: 12px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px var(--gutter) 8px;
  }
}

/* ---------------------------------------------------------------------------
   What We Develop (canonical WD13 — locked 5/8)
   Bold static card grid on cream. Two groups:
     1. Ready to Drink and Concentrates (8 cards, coral 8px top stripe)
     2. Ready-to-Mix Powders (6 cards, indigo 8px top stripe)
   Each card: 88px AI-gen flat coral icon + Fraunces 600 ~2rem name on top
   row, then a one-sentence blurb. No format chips, no numerals.
   Iteration archive: /web/explorations/what-we-develop/ (WD1-WD13).
   --------------------------------------------------------------------------- */
.wd13 {
  background: var(--cream);
  color: var(--indigo);
  padding: clamp(56px, 8vh, 112px) 0 clamp(64px, 9vh, 128px);
}
.wd13__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wd13__head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.wd13__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 14px;
}
.wd13__eyebrow::before, .wd13__eyebrow::after {
  content: ''; width: 32px; height: 2px; background: var(--coral); flex-shrink: 0;
}
.wd13__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--indigo);
  margin: 0 0 16px;
}
.wd13__lede {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.55;
  color: var(--indigo);
  opacity: 0.78;
  margin: 0;
}
.wd13__group {
  margin: 0 0 28px;
  padding: 0 0 12px;
  border-bottom: 2px solid var(--coral);
}
.wd13__group--rtm {
  border-bottom-color: var(--indigo);
  margin-top: 88px;
}
.wd13__group-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--indigo);
  margin: 0;
}
.wd13__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.wd13__card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(31, 42, 68, 0.08);
  border-radius: 14px;
  padding: 36px 32px 28px;
  overflow: hidden;
  transition: border-color 220ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 240ms ease;
}
.wd13__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: var(--coral);
  transition: height 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.wd13__card--rtm::before { background: var(--indigo); }
.wd13__card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -12px rgba(31, 42, 68, 0.18);
}
.wd13__card:hover::before { height: 14px; }
.wd13__card-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 18px;
}
.wd13__card-icon { width: 88px; height: 88px; flex-shrink: 0; display: block; }
.wd13__card-icon img {
  width: 100%; height: 100%;
  max-width: none;
  display: block;
}
.wd13__card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--indigo);
  margin: 0;
}
.wd13__card-blurb {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--indigo);
  opacity: 0.82;
  margin: 0;
}
@media (max-width: 800px) {
  .wd13__grid { grid-template-columns: 1fr; gap: 16px; }
  .wd13__card { padding: 28px 24px 24px; }
  .wd13__card-icon { width: 64px; height: 64px; }
  .wd13__card-name { font-size: clamp(1.3rem, 6vw, 1.6rem); }
  .wd13__group-name { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .wd13__group--rtm { margin-top: 56px; }
}

/* ---------------------------------------------------------------------------
   Process Timeline (canonical — used on /formulation and /production-operations)
   Vertical scrolling timeline. Each stage = full-width row, image on one side,
   content on the other (alternating). Sticky phase header + scroll-triggered
   fade-up + ken-burns on photo. Modeled on HW10 (see exploration archive).
   --------------------------------------------------------------------------- */
.process-timeline {
  background: var(--cream);
  color: var(--indigo);
  position: relative;
}
.process-timeline__intro {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(56px, 8vh, 96px) var(--gutter) clamp(32px, 5vh, 56px);
  text-align: center;
}
.process-timeline__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--indigo);
  margin: 0 0 18px;
}
.process-timeline__eyebrow::before,
.process-timeline__eyebrow::after {
  content: ''; width: 32px; height: 2px; background: var(--coral); flex-shrink: 0;
}
.process-timeline__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--indigo);
  margin: 0 auto 14px;
  max-width: 22ch;
}
.process-timeline__h2 em { font-style: italic; color: var(--coral); }
.process-timeline__lede {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.55;
  color: var(--indigo);
  opacity: 0.78;
  margin: 0 auto;
  max-width: 56ch;
}
.process-timeline__phase {
  position: sticky;
  top: 80px;
  z-index: 5;
  background: rgba(255, 243, 236, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(31, 42, 68, 0.10);
  padding: 14px 0;
}
.process-timeline__phase-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; gap: 18px;
}
.process-timeline__phase-tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--coral); flex-shrink: 0;
}
.process-timeline__phase-name {
  font-family: var(--font-display);
  font-weight: 600; font-style: italic;
  font-size: 1.1rem; letter-spacing: -0.01em;
  color: var(--indigo); margin: 0; flex-shrink: 0;
}
.process-timeline__phase-rule {
  flex: 1; height: 1px; background: rgba(31, 42, 68, 0.18);
}
.process-timeline__phase-count {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; opacity: 0.6;
  color: var(--indigo);
}
.process-timeline__stages {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.process-timeline__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(56px, 8vh, 112px) 0;
  border-bottom: 1px solid rgba(31, 42, 68, 0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.process-timeline__stage.is-visible { opacity: 1; transform: translateY(0); }
.process-timeline__stage:nth-child(even) .process-timeline__media { order: 2; }
.process-timeline__stage:nth-child(even) .process-timeline__content { order: 1; }
.process-timeline__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.18) 0%, rgba(31, 42, 68, 0.10) 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(31, 42, 68, 0.20);
}
.process-timeline__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  max-width: none;
  transition: transform 8s ease-out;
}
.process-timeline__stage.is-visible .process-timeline__media img {
  transform: scale(1.06);
}
.process-timeline__media::after {
  content: attr(data-num);
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.85;
  color: var(--cream);
  text-shadow: 0 2px 16px rgba(31, 42, 68, 0.55);
  pointer-events: none;
}
.process-timeline__stage-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 18px;
}
.process-timeline__stage-num::before {
  content: ''; width: 28px; height: 1.5px; background: var(--coral);
}
.process-timeline__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--indigo);
  margin: 0 0 22px;
}
.process-timeline__body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.65;
  color: var(--indigo);
  margin: 0 0 18px;
  max-width: 52ch;
}
.process-timeline__cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: clamp(40px, 6vh, 80px) var(--gutter) clamp(56px, 8vh, 112px);
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .process-timeline__stage {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }
  .process-timeline__stage:nth-child(even) .process-timeline__media { order: 0; }
  .process-timeline__stage:nth-child(even) .process-timeline__content { order: 0; }
  .process-timeline__phase { top: 64px; }
  .process-timeline__h2 { font-size: clamp(28px, 7vw, 40px); }
  .process-timeline__title { font-size: clamp(22px, 5.5vw, 30px); }
}

/* ---------------------------------------------------------------------------
   Section
   --------------------------------------------------------------------------- */
.section {
  padding: var(--s-32) 0;
  position: relative;
}
.section--alt { background: var(--cream-alt); }
.section--indigo { background: var(--indigo); color: var(--cream); }
.section--indigo h1, .section--indigo h2, .section--indigo h3 { color: var(--cream); }
.section--indigo .eyebrow { color: var(--coral); }
.section--indigo .section__lede { color: rgba(255, 243, 236, 0.78); }
.section--coral { background: var(--coral); color: var(--cream); }
.section--coral h1, .section--coral h2, .section--coral h3 { color: var(--cream); }
.section--coral .eyebrow { color: var(--cream); opacity: 0.9; }
.section--coral .section__lede { color: rgba(255, 243, 236, 0.92); }

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-16);
  max-width: 720px;
}
.section__title {
  font-size: var(--t-display-md);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.05;
}
.section__lede {
  font-size: var(--t-body-lg);
  color: var(--muted);
  max-width: 60ch;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--coral);
  border: 0;
  margin: 0 0 var(--s-6);
}

@media (max-width: 800px) {
  .section { padding: var(--s-20) 0; }
  .section__head { margin-bottom: var(--s-12); }
  .section__title { font-size: clamp(1.625rem, 6vw, 2rem); }
  .eyebrow { letter-spacing: 0.12em; font-size: 0.6875rem; }
  .pullquote__text { font-size: clamp(1.25rem, 5vw, 1.75rem); }
  .cta-band { padding: var(--s-20) 0; }
  .cta-band__title { font-size: clamp(2rem, 7vw, 3rem); }
}

/* ---------------------------------------------------------------------------
   Services / two-card section
   --------------------------------------------------------------------------- */
.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
}
.card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.card__media {
  aspect-ratio: 4 / 3;
  background: var(--cream-alt);
  overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: var(--s-8); display: flex; flex-direction: column; gap: var(--s-4); }
.card__title { font-size: var(--t-display-md); font-weight: 500; }
.card__copy { color: var(--muted); }
.card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.card__list li {
  position: relative;
  padding-left: var(--s-6);
  font-size: var(--t-small);
  color: var(--ink);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 1px;
  background: var(--coral);
}
.card__footer { margin-top: auto; padding-top: var(--s-4); }

@media (max-width: 800px) {
  .cards-2 { grid-template-columns: 1fr; gap: var(--s-6); }
}

/* ---------------------------------------------------------------------------
   6-stage horizontal journey
   --------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------
   Phase group labels (above journey row)
   FORMULATION spans cols 1-4 · PRODUCTION OPERATIONS spans cols 5-6
   --------------------------------------------------------------------------- */
.journey-phases {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.journey-phases__label {
  font-family: var(--font-body);
  font-size: var(--t-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  text-align: center;
  padding-bottom: var(--s-3);
  border-bottom: 1.5px solid var(--coral);
}
.journey-phases__label--formulation { grid-column: 1 / span 4; }
.journey-phases__label--ops { grid-column: 5 / span 2; }
@media (max-width: 1100px) {
  /* On the 3-col journey, phase labels go full width */
  .journey-phases { grid-template-columns: 1fr 1fr; }
  .journey-phases__label--formulation { grid-column: 1 / 2; }
  .journey-phases__label--ops { grid-column: 2 / 3; }
}
@media (max-width: 600px) {
  .journey-phases { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
}

.journey {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-3);
  position: relative;
}
.journey::before { display: none; } /* hairline replaced by card borders + arrows */
.journey__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-3);
  z-index: 1;
  padding: var(--s-6) var(--s-4) var(--s-6);
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.journey__stage:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.journey__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--coral);
  border: none;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
}
.journey__label {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--indigo);
  margin-top: var(--s-2);
  line-height: 1.25;
}
.journey__desc {
  font-size: var(--t-small);
  color: var(--muted);
  line-height: 1.55;
}
.journey__phase-tag {
  font-size: var(--t-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--coral);
}
/* Indigo-background variant: cream cards on indigo bg keep their indigo text. */
.section--indigo .journey__stage { background: var(--cream); border-color: rgba(255, 243, 236, 0.18); }
.section--indigo .journey__label { color: var(--indigo); }
.section--indigo .journey__desc { color: var(--muted); }
.section--indigo .journey__num { background: var(--coral); color: var(--cream); border: none; }
.section--indigo .journey__icon { color: var(--indigo); }
.section--indigo .journey__phase-tag { color: var(--coral); }
.section--indigo .text-link { color: var(--coral); }
.section--indigo .text-link:hover { color: var(--cream); }
/* SVG icons in each stage — bigger coral filled silhouettes */
.journey__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: var(--s-3) 0 var(--s-2);
  color: var(--coral);
}
.journey__icon svg { width: 100%; height: 100%; display: block; }
@media (max-width: 1100px) {
  .journey__icon { width: 64px; height: 64px; }
}

/* Prominent coral SVG arrow in the gutter between cards.
   Bold, clearly visible — sized to read from across the page. */
.journey__stage:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * var(--s-3) - 18px);
  top: calc(var(--s-6) + 12px); /* aligned with numbered circle */
  width: 36px;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24' fill='none' stroke='%23FF6B35' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='3' y1='12' x2='32' y2='12'/><polyline points='24,4 32,12 24,20'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(31, 42, 68, 0.4));
}
/* Dashed divider replaces the arrow between stage 4 and stage 5 — marks the
   FORMULATION → PRODUCTION OPS boundary. */
.journey__stage:nth-child(4)::after {
  background-image: none;
  width: 0;
  height: calc(100% + var(--s-12));
  top: calc(-1 * var(--s-6));
  right: calc(-1 * var(--s-3) / 2 - 1px);
  border-left: 2px dashed rgba(255, 243, 236, 0.55);
  filter: none;
}
@media (max-width: 1100px) {
  /* Hide arrows + divider when journey wraps to 3 cols */
  .journey__stage::after { display: none; }
}

/* Two coral-button CTAs at the bottom (replace previous text-link CTAs) */
.journey__cta-row {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  margin-top: var(--s-16);
  flex-wrap: wrap;
}
.journey__cta-row .btn { padding: 1rem 1.5rem; font-size: 0.95rem; }
/* When CTA sits on indigo bg, swapping to indigo on hover would disappear.
   Swap to cream instead — same Option B "color-swap" principle, context-aware. */
.section--indigo .journey__cta-row .btn-coral:hover {
  background: var(--cream);
  color: var(--indigo);
  border-color: var(--cream);
  box-shadow: 0 12px 28px rgba(255, 243, 236, 0.30);
}
@media (max-width: 700px) {
  .journey__cta-row { flex-direction: column; align-items: stretch; }
  .journey__cta-row .btn { justify-content: center; }
}

@media (max-width: 1100px) {
  .journey { grid-template-columns: 1fr 1fr 1fr; }
  .journey::before { display: none; }
}
@media (max-width: 600px) {
  .journey { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------------------------
   TR1b — Trusted by founders (infinite carousel with side peek)
   Cards rendered in 3 copies for seamless infinite loop. Active card stays
   in the middle copy via instant wrap after every animated transition.
   Auto-advance every 5500ms (first one at 1100ms). Hover pauses (mouse only).
   Dots + prev/next arrows. Touch and reduced-motion safe.
   --------------------------------------------------------------------------- */
.tr1b { background: var(--coral); color: #fff; min-height: 88vh; padding: clamp(48px, 6vh, 72px) 0 clamp(48px, 6vh, 72px); position: relative; overflow: hidden; }
.tr1b__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); display: flex; flex-direction: column; align-items: center; }
.tr1b__head { text-align: center; max-width: 760px; margin: 0 0 clamp(36px, 5vh, 64px); }
.tr1b__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: #fff;
  margin: 0 0 18px;
}
.tr1b__eyebrow::before, .tr1b__eyebrow::after { content: ''; width: 32px; height: 2px; background: #fff; }
.tr1b__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04; letter-spacing: -0.022em;
  color: #fff; margin: 0;
}
.tr1b__stage {
  position: relative; width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 22px 0;
}
.tr1b__rail {
  display: flex; align-items: stretch; gap: 32px;
  will-change: transform;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.tr1b__rail.is-instant { transition: none !important; }
.tr1b__rail.is-instant .tr1b__card { transition: none !important; }
.tr1b__card {
  flex-shrink: 0;
  width: clamp(300px, 30vw, 360px);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.30);
  display: flex; flex-direction: column;
  transform: scale(0.74);
  opacity: 0.42;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1), opacity 600ms ease;
}
.tr1b__card.is-active { transform: scale(1); opacity: 1; }
.tr1b__card.is-adjacent { transform: scale(0.85); opacity: 0.66; }
.tr1b__photo {
  flex: 0 0 300px;
  min-height: 0;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
}
.tr1b__photo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.tr1b__photo.is-leilo {
  background: var(--indigo); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem); letter-spacing: -0.02em;
}
.tr1b__brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--coral);
  margin: 0;
  padding: 18px 26px 10px;
  border-top: 1px solid rgba(31, 42, 68, 0.08);
}
.tr1b__quote {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: 1rem; line-height: 1.5;
  color: var(--indigo);
  margin: 0;
  padding: 0 26px 24px;
  flex: 1;
}
.tr1b__nav {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin: clamp(28px, 4vh, 44px) 0 0;
}
.tr1b__arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.40);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 1.4rem; line-height: 1;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  padding: 0;
}
.tr1b__arrow:hover { background: rgba(255,255,255,0.30); border-color: #fff; transform: scale(1.06); }
.tr1b__arrow:active { transform: scale(0.94); }
.tr1b__dots { display: flex; gap: 12px; align-items: center; }
.tr1b__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.32);
  border: 0; padding: 0; cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
}
.tr1b__dot:hover { background: rgba(255,255,255,0.55); }
.tr1b__dot.is-active { background: #fff; transform: scale(1.4); }
@media (max-width: 700px) {
  .tr1b__card { width: 76vw; }
  .tr1b__photo { flex: 0 0 220px; }
  .tr1b__quote { font-size: 0.95rem; }
  /* Fit the controls on small screens: prev arrow + 17 dots + next arrow used to
     overflow the viewport and get clipped, so the arrows weren't tappable. Shrink
     them; swipe (see scripts) is the primary gesture for changing brands on mobile. */
  .tr1b__nav { gap: 10px; max-width: 100%; }
  .tr1b__arrow { width: 36px; height: 36px; font-size: 1.25rem; flex-shrink: 0; }
  .tr1b__dots { gap: 6px; flex-wrap: wrap; justify-content: center; }
  .tr1b__dot { width: 7px; height: 7px; }
  .tr1b__dot.is-active { transform: scale(1.5); }
}
@media (prefers-reduced-motion: reduce) {
  .tr1b__rail { transition: none !important; }
  .tr1b__card { transition: opacity 200ms ease; }
}

/* ---------------------------------------------------------------------------
   Logo wall — animated marquee on coral background
   --------------------------------------------------------------------------- */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-marquee__track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
  gap: var(--s-16);
  align-items: center;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
.logo-marquee__item {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.85;
  white-space: nowrap;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 800px) {
  .logo-marquee__item { font-size: 1.5rem; }
  .logo-marquee__track { gap: var(--s-12); animation-duration: 24s; }
}

/* ---------------------------------------------------------------------------
   Rotating quotes (3 quotes, 8s each, fade transition)
   --------------------------------------------------------------------------- */
.quote-rotator {
  position: relative;
  margin: var(--s-16) auto 0;
  max-width: 880px;
  text-align: center;
  min-height: 280px;
}
.quote-rotator__item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  opacity: 0;
  transition: opacity 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.quote-rotator__item.is-active { opacity: 1; }
.quote-rotator__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.012em;
  line-height: 1.22;
  color: var(--cream);
  margin: 0;
}
.quote-rotator__attribution {
  font-size: var(--t-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  margin: 0;
}
.quote-rotator__dots {
  display: flex;
  gap: var(--s-2);
  justify-content: center;
  margin-top: var(--s-8);
}
.quote-rotator__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 243, 236, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, transform 200ms ease;
}
.quote-rotator__dot.is-active { background: var(--cream); transform: scale(1.2); }
@media (max-width: 800px) { .quote-rotator { min-height: 320px; } }

/* ---------------------------------------------------------------------------
   Pull quote
   --------------------------------------------------------------------------- */
.pullquote {
  display: grid;
  gap: var(--s-6);
  padding: var(--s-16) 0;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}
.pullquote__text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: var(--indigo);
}
.pullquote__attribution {
  font-size: var(--t-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------------------------------------------------------------------
   Case studies — CS-A (hero + side-stack)
   60% featured hero card on the left with photo + 3 metric numerals + summary.
   40% right column with 2 stacked smaller cards using the same metric system.
   No chip pills — all cards use italic Fraunces numerals + mono caps labels.
   --------------------------------------------------------------------------- */
/* Subtle warm-sand tint to separate Case Studies from the cream "What we develop" section above
   (keeps the section's coral accents intact, unlike a full coral bg). */
.csa { background: #F6E7D7; color: var(--indigo); padding: clamp(48px, 5.5vh, 72px) 0; }
.csa__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.csa__head { max-width: 720px; margin: 0 0 clamp(32px, 4vh, 56px); }
.csa__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 18px;
}
.csa__eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.csa__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--indigo); margin: 0;
}
.csa__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 36px);
  align-items: stretch;
}
@media (max-width: 900px) { .csa__grid { grid-template-columns: 1fr; } }

/* HERO CARD */
.csa__hero {
  background: #fff;
  border: 1px solid rgba(31, 42, 68, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  text-decoration: none; color: inherit;
}
.csa__hero:hover {
  transform: translateY(-3px);
  border-color: var(--coral);
  box-shadow: 0 24px 48px -16px rgba(31, 42, 68, 0.18);
}
.csa__hero-photo {
  aspect-ratio: 16 / 7;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.csa__hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
.csa__hero-body { padding: clamp(20px, 2.4vw, 30px); display: flex; flex-direction: column; gap: 14px; }
.csa__hero-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--coral); margin: 0;
}
.csa__hero-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.06; letter-spacing: -0.02em;
  color: var(--indigo); margin: 0;
}
.csa__hero-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(31, 42, 68, 0.08);
  border-bottom: 1px solid rgba(31, 42, 68, 0.08);
}
.csa__metric { text-align: left; }
.csa__metric-num {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem); line-height: 1; letter-spacing: -0.03em;
  color: var(--coral); margin: 0 0 3px;
}
.csa__metric-label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--indigo); opacity: 0.72;
  margin: 0;
}
.csa__hero-summary {
  font-family: var(--font-body); font-size: 0.96rem; line-height: 1.5;
  color: var(--indigo); opacity: 0.86; margin: 0;
}
.csa__hero-cta {
  align-self: flex-start;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  color: var(--coral); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 2px;
}
.csa__hero-cta::after { content: '→'; transition: transform 220ms ease; }
.csa__hero:hover .csa__hero-cta::after { transform: translateX(4px); }

/* SIDE-STACK COLUMN */
.csa__side { display: flex; flex-direction: column; gap: clamp(16px, 2vw, 24px); }
.csa__side-card {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(31, 42, 68, 0.08);
  border-radius: 18px;
  padding: clamp(20px, 2.2vw, 26px);
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.csa__side-card:hover {
  transform: translateY(-3px);
  border-color: var(--coral);
  box-shadow: 0 24px 48px -16px rgba(31, 42, 68, 0.18);
}
.csa__side-head { display: flex; align-items: center; gap: 12px; }
.csa__side-logo {
  width: 48px; height: 48px;
  background: var(--cream); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 6px; flex-shrink: 0;
}
.csa__side-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.csa__side-logo.is-leilo { background: var(--indigo); color: #fff; font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: 0.95rem; }
.csa__side-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(20px, 2vw, 24px); line-height: 1.08; letter-spacing: -0.018em;
  color: var(--indigo); margin: 0;
}
.csa__side-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral);
  margin: 3px 0 0;
}
.csa__side-metrics {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(31, 42, 68, 0.08);
  border-bottom: 1px solid rgba(31, 42, 68, 0.08);
}
.csa__side-metric-num {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem); line-height: 1; letter-spacing: -0.03em;
  color: var(--coral); margin: 0 0 3px;
}
.csa__side-metric-label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--indigo); opacity: 0.72;
  margin: 0;
}
.csa__side-summary {
  font-family: var(--font-body); font-size: 0.92rem; line-height: 1.5;
  color: var(--indigo); opacity: 0.8; margin: 0;
  flex: 1;
}
.csa__side-cta {
  margin-top: 2px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.88rem;
  color: var(--coral); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
}
.csa__side-cta::after { content: '→'; transition: transform 220ms ease; }
.csa__side-card:hover .csa__side-cta::after { transform: translateX(4px); }
/* Coming-soon side card: non-clickable, no hover affordance, no arrow */
.csa__side-card--soon { cursor: default; }
.csa__side-card--soon:hover { transform: none; box-shadow: none; border-color: rgba(31, 42, 68, 0.08); }
.csa__side-card--soon .csa__side-cta { color: var(--indigo); opacity: 0.6; }
.csa__side-card--soon .csa__side-cta::after { content: none; }
.csa__see-all { text-align: center; margin-top: clamp(32px, 4.5vh, 56px); }
/* Home case-study cards reuse the .po-case__card pattern, stacked full-width. */
.csa__cards { display: grid; gap: clamp(24px, 3vw, 36px); }
.po-case__card--soon { cursor: default; }
.po-case__card--soon:hover { transform: none; box-shadow: none; }
.po-case__card--soon .po-case__cta { color: var(--indigo); opacity: 0.55; }

/* ---------------------------------------------------------------------------
   Team strip
   --------------------------------------------------------------------------- */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
  align-items: start;
}
.team__person { display: grid; gap: var(--s-3); }
.team__photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--cream-alt), var(--hairline));
  border-radius: 50%;
  width: 88px;
  height: 88px;
  border: 2px solid var(--coral);
}
.team__name { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; }
.team__role { font-size: var(--t-small); color: var(--muted); }
.team__bio { font-size: var(--t-small); color: var(--muted); }

@media (max-width: 800px) { .team { grid-template-columns: 1fr; gap: var(--s-6); } }

/* ---------------------------------------------------------------------------
   Tools (lead magnets) section
   --------------------------------------------------------------------------- */
.tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
}
.tool {
  background: var(--cream-alt);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.tool__badge {
  display: inline-block;
  font-size: var(--t-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--coral);
  border-radius: 999px;
  align-self: flex-start;
}
.tool__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.tool__copy { color: var(--muted); }
@media (max-width: 800px) { .tools { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------------
   Final CTA band
   --------------------------------------------------------------------------- */
.cta-band {
  background: var(--indigo);
  color: var(--cream);
  padding: var(--s-32) 0;
  text-align: center;
}
.cta-band__title {
  font-size: var(--t-display-lg);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--cream);
  letter-spacing: -0.02em;
  max-width: 28ch;
  margin: 0 auto var(--s-6);
}
.cta-band__lede {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.92;
  max-width: 56ch;
  margin: 0 auto var(--s-8);
}

/* ---------------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------------- */
.site-footer {
  background: var(--indigo);
  color: var(--cream);
  padding: var(--s-20) 0 var(--s-12);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-12);
  margin-bottom: var(--s-12);
}
.site-footer__brand img { height: 44px; }
.site-footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  margin: var(--s-4) 0 var(--s-2);
  color: var(--cream);
  opacity: 0.92;
}
.site-footer__location {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 243, 236, 0.62);
  margin: 0;
  max-width: 32ch;
}
.site-footer__col h5 {
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 var(--s-4);
  font-family: var(--font-body);
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.site-footer__col a { color: var(--cream); opacity: 0.8; font-size: var(--t-small); }
.site-footer__col a:hover { opacity: 1; color: var(--coral); }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 243, 236, 0.12);
  padding-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--t-small);
  color: rgba(255, 243, 236, 0.6);
}
.site-footer__bottom a { transition: color 200ms ease; }
.site-footer__bottom a:hover { color: var(--coral); }
@media (max-width: 800px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .site-footer__brand { grid-column: 1 / -1; }
}

/* ---------------------------------------------------------------------------
   Page-specific: Formulation
   --------------------------------------------------------------------------- */
.phases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
}
.phase {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s-4);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--hairline);
}
.phase__num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--coral);
  line-height: 1;
}
.phase__title { font-family: var(--font-display); font-size: 1.375rem; font-weight: 500; margin-bottom: var(--s-2); }
.phase__copy { color: var(--muted); font-size: var(--t-small); }
@media (max-width: 800px) { .phases { grid-template-columns: 1fr; } }

.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4) var(--s-12);
}
.deliverables li {
  list-style: none;
  padding: var(--s-4) 0;
  padding-left: var(--s-8);
  border-top: 1px solid var(--hairline);
  position: relative;
  font-size: 0.95rem;
}
.deliverables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1.05rem;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.85rem;
}
.deliverables b { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; margin-bottom: 0.15rem; color: var(--indigo); }
.deliverables span { color: var(--muted); font-size: 0.85rem; }
@media (max-width: 800px) { .deliverables { grid-template-columns: 1fr; } }

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
}
.format-grid h3 { font-size: 1.25rem; margin-bottom: var(--s-3); }
.format-grid p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
@media (max-width: 800px) { .format-grid { grid-template-columns: 1fr; gap: var(--s-8); } }

/* Formulation estimate-form preview card */
.estimate-form {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: var(--s-12);
  margin-top: var(--s-12);
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-12);
  align-items: start;
}
.estimate-form__intro h3 {
  font-size: 1.5rem;
  margin-bottom: var(--s-3);
}
.estimate-form__intro p { color: var(--muted); font-size: 0.95rem; }
.estimate-form__badge {
  position: absolute;
  top: var(--s-6);
  right: var(--s-6);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(255, 107, 53, 0.08);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
.estimate-form__fields { display: flex; flex-direction: column; gap: var(--s-3); }
.estimate-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.estimate-form__field label {
  font-size: var(--t-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}
.estimate-form__field input,
.estimate-form__field select {
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: var(--cream-alt);
  color: var(--indigo);
}
.estimate-form__field input:focus,
.estimate-form__field select:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--cream);
}
.estimate-form__submit { margin-top: var(--s-3); }
@media (max-width: 800px) {
  .estimate-form { grid-template-columns: 1fr; padding: var(--s-8); gap: var(--s-6); }
}

/* Add-on services */
.addons {
  background: var(--cream-alt);
  border-left: 3px solid var(--coral);
  padding: var(--s-8);
  border-radius: 0 4px 4px 0;
}
.addons p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* FAQ */
.faq {
  display: grid;
  gap: 0;
}
.faq__item {
  border-top: 1px solid var(--hairline);
  padding: var(--s-6) 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--hairline); }
.faq__q {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  color: var(--indigo);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--coral);
  transition: transform 200ms ease;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding-top: var(--s-3); color: var(--muted); font-size: 0.95rem; line-height: 1.7; max-width: 70ch; }

/* ---------------------------------------------------------------------------
   Page-specific: Production Operations
   --------------------------------------------------------------------------- */
.engagement-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
}
.engagement {
  padding: var(--s-8);
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--coral);
  border-radius: 4px;
}
.engagement__tag {
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--s-3);
}
.engagement h3 { margin-bottom: var(--s-3); }
.engagement p { color: var(--muted); font-size: 0.95rem; }

.engagement-callout {
  margin-top: var(--s-8);
  background: var(--cream-alt);
  padding: var(--s-6);
  border-radius: 4px;
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  font-size: var(--t-small);
  color: var(--ink);
}
.engagement-callout strong { color: var(--coral); font-weight: 700; }
.engagement-callout::before {
  content: "↻";
  font-size: 1.5rem;
  color: var(--coral);
  line-height: 1;
}

.sub-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.sub-service {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color 200ms ease;
}
.sub-service:hover { border-color: var(--coral); }
.sub-service h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }
.sub-service p { color: var(--muted); font-size: 0.875rem; }
@media (max-width: 800px) { .sub-services { grid-template-columns: 1fr; } }

.cross-link-strip {
  background: var(--cream-alt);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: var(--s-8);
  display: flex;
  gap: var(--s-6);
  align-items: center;
  justify-content: space-between;
}
.cross-link-strip__copy { font-size: 0.95rem; color: var(--muted); }
.cross-link-strip strong { color: var(--indigo); font-weight: 600; }
@media (max-width: 700px) { .cross-link-strip { flex-direction: column; align-items: flex-start; } }

/* ---------------------------------------------------------------------------
   What we develop — full-bleed product image + product-first chips
   --------------------------------------------------------------------------- */
.develop {
  margin-top: var(--s-12);
}
.develop__hero {
  /* Full-bleed: extend beyond the container by negating the gutter padding. */
  width: calc(100% + var(--gutter) * 2);
  margin-left: calc(var(--gutter) * -1);
  aspect-ratio: 16 / 8;
  background-size: cover;
  background-position: center;
  border-radius: 0;
}
.develop__categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  margin-top: var(--s-16);
}
.develop__group h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--s-4);
}
.develop__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  list-style: none;
  padding: 0;
  margin: 0;
}
.develop__chips li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--indigo);
  background: var(--cream);
  border: 1px solid var(--hairline);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
}
@media (max-width: 800px) {
  .develop__categories { grid-template-columns: 1fr; gap: var(--s-8); }
  .develop__hero { aspect-ratio: 4/5; }
}

/* ---------------------------------------------------------------------------
   IN-B — Insights (auto-cycling hero on indigo)
   One large featured card crossfades through 4 articles every 5500ms.
   Thumbnail nav strip below; click a thumb to jump. Hover (mouse only) on
   the active card pauses. Touch and reduced-motion safe.
   --------------------------------------------------------------------------- */
.inb { background: var(--indigo); color: var(--cream); padding: clamp(56px, 8vh, 96px) 0; }
.inb__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.inb__head { max-width: 720px; margin: 0 0 clamp(36px, 5vh, 56px); }
.inb__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 18px;
}
.inb__eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.inb__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--cream); margin: 0;
}
.inb__stage {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: clamp(420px, 56vh, 540px);
  background: var(--indigo-soft);
}
.inb__card {
  position: absolute; inset: 0;
  display: block; text-decoration: none; color: inherit;
  opacity: 0;
  transition: opacity 700ms ease;
  pointer-events: none;
}
.inb__card.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.inb__card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.inb__card-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(31,42,68,0.10) 0%,
    rgba(31,42,68,0.40) 50%,
    rgba(31,42,68,0.92) 100%);
}
.inb__card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(24px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 14px;
  max-width: 800px;
}
.inb__card-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--coral);
  margin: 0;
}
.inb__card-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02; letter-spacing: -0.026em;
  color: #fff; margin: 0;
}
.inb__card.is-featured .inb__card-title { font-style: italic; }
.inb__card-lede {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.5;
  color: rgba(255,243,236,0.92); margin: 0; max-width: 56ch;
}
.inb__card-cta {
  align-self: flex-start;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  color: #fff; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--coral);
  margin-top: 4px;
}
.inb__card-cta::after { content: '→'; transition: transform 220ms ease; }
.inb__card:hover .inb__card-cta::after { transform: translateX(4px); }
.inb__thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: clamp(24px, 3vh, 36px);
}
.inb__thumb {
  background: transparent;
  border: 0; padding: 16px 0 0; cursor: pointer;
  text-align: left;
  border-top: 2px solid rgba(255,243,236,0.18);
  transition: border-color 240ms ease;
  display: flex; flex-direction: column; gap: 6px;
}
.inb__thumb:hover { border-top-color: rgba(255,243,236,0.5); }
.inb__thumb.is-active { border-top-color: var(--coral); }
.inb__thumb-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--coral); margin: 0;
}
.inb__thumb-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 0.95rem; line-height: 1.2; color: var(--cream); margin: 0;
}
@media (max-width: 700px) {
  .inb__thumbs { grid-template-columns: repeat(2, 1fr); }
}
.inb__see-all { margin-top: clamp(36px, 4.5vh, 56px); text-align: center; }
/* The Insights band is indigo, so the global coral->indigo hover would make this
   button blend into the dark background. Hover to cream instead — matches the
   HW11 "How we work" CTAs on the same indigo register. */
.inb__see-all .btn-coral:hover {
  background: var(--cream);
  color: var(--indigo);
  border-color: var(--cream);
  box-shadow: 0 12px 26px rgba(255, 243, 236, 0.20);
}
@media (prefers-reduced-motion: reduce) {
  .inb__card { transition: opacity 200ms ease; }
}

/* Coral-band Trusted by needs different padding rhythm */
.section--coral .section__head { max-width: 800px; margin-bottom: var(--s-12); }
.section--coral .eyebrow { color: rgba(255, 243, 236, 0.85); }

/* Indigo team — adjust portraits */
.section--indigo .team__photo {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.4), rgba(255, 243, 236, 0.15));
  border-color: var(--coral);
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
}
.section--indigo .team__name { color: var(--cream); }
.section--indigo .team__role { color: var(--coral); }
.section--indigo .team__bio { color: rgba(255, 243, 236, 0.78); }

/* Final CTA on coral background */
.cta-band--coral { background: var(--coral); color: var(--cream); }
.cta-band--coral .cta-band__title { color: var(--cream); }
/* CTA inside coral band: same Option B principle — start cream/coral,
   swap to indigo on hover for a clear color flip. */
.cta-band--coral .btn-coral { background: var(--cream); color: var(--coral); border-color: var(--cream); }
.cta-band--coral .btn-coral:hover {
  background: var(--indigo);
  color: var(--cream);
  border-color: var(--indigo);
  box-shadow: 0 12px 28px rgba(31, 42, 68, 0.40);
}

/* ---------------------------------------------------------------------------
   Utilities
   --------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: var(--s-8); }
.mt-12 { margin-top: var(--s-12); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: var(--s-4); }


/* =============================================================================
   FORMULATION PAGE v3.3
   Sections: hero / trust strip / handoff (8 cards on indigo) / how we work
   (alternating cards) / categories / featured case / add-ons / FAQ / final CTA.
   Palette: cream -> cream -> INDIGO -> cream -> cream -> CORAL -> cream -> cream -> INDIGO.
   ========================================================================== */

/* 1. HERO — cinematic full-bleed with cream gradient overlay for type legibility */
.fp-hero {
  position: relative;
  /* Fill viewport minus V10 nav (80px), but GROW if content is taller so the
     CTA never collides with the next section (long H1 wraps on wide viewports). */
  min-height: max(560px, calc(100vh - 80px));
  background: var(--cream);
  overflow: hidden;
  display: flex; align-items: flex-start;
  padding: clamp(24px, 4vh, 52px) 0;
}
.fp-hero__media { position: absolute; inset: 0; }
.fp-hero__media picture { display: block; width: 100%; height: 100%; }
.fp-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(255,243,236,0.92) 0%,
    rgba(255,243,236,0.70) 40%,
    rgba(255,243,236,0.30) 65%,
    rgba(255,243,236,0.05) 100%);
}
.fp-hero__content {
  position: relative;
  max-width: 1240px; width: 100%;
  margin: 0 auto; padding: 0 var(--gutter);
  z-index: 2;
  display: flex; flex-direction: column; gap: clamp(16px, 2vh, 24px);
  max-width: 720px;
  margin-left: max(var(--gutter), calc(50% - 620px));
}
.fp-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--indigo);
  margin: 0 0 24px;
  text-shadow:
    0 1px 2px rgba(255, 243, 236, 1),
    0 0 8px rgba(255, 243, 236, 0.95),
    0 0 18px rgba(255, 243, 236, 0.7),
    0 0 30px rgba(255, 243, 236, 0.45);
}
.fp-hero__eyebrow::before,
.fp-hero__eyebrow::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}
.fp-hero__h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 3.7vw, 52px); line-height: 1.08; letter-spacing: -0.022em;
  color: var(--indigo); margin: 0 0 22px;
  text-shadow:
    0 1px 2px rgba(255, 243, 236, 1),
    0 0 14px rgba(255, 243, 236, 0.85),
    0 0 30px rgba(255, 243, 236, 0.55),
    0 0 50px rgba(255, 243, 236, 0.3);
}
.fp-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--indigo);
  max-width: 56ch;
  margin: 0;
  padding-top: 18px;
  position: relative;
  overflow-wrap: break-word;
  text-shadow:
    0 1px 1px rgba(255, 243, 236, 1),
    0 0 6px rgba(255, 243, 236, 1),
    0 0 14px rgba(255, 243, 236, 0.85),
    0 0 28px rgba(255, 243, 236, 0.55),
    0 0 48px rgba(255, 243, 236, 0.30);
}
.fp-hero__sub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--coral);
}
.fp-hero__sub strong { font-weight: 800; color: var(--indigo); }
.fp-hero__cta { margin-top: 6px; }
@media (max-width: 800px) {
  .fp-hero__content { margin-left: 0; padding: 0 var(--gutter); }
  /* Mobile uses a dedicated PORTRAIT hero with blank labels + blank notebook
     and cream negative space at top. Light veil only — photo is the protagonist. */
  .fp-hero__veil {
    background: linear-gradient(180deg,
      rgba(255,243,236,0.58) 0%,
      rgba(255,243,236,0.70) 45%,
      rgba(255,243,236,0.46) 78%,
      rgba(255,243,236,0.10) 100%);
  }
  /* Object-position keeps the H1 area aligned with the cream negative space of the photo */
  .fp-hero__img { object-position: center top; }
  /* Eyebrow shrinks proportionally on mobile, matches home hero treatment */
  .fp-hero__eyebrow { font-size: 0.72rem; gap: 10px; letter-spacing: 0.26em; }
  .fp-hero__eyebrow::before,
  .fp-hero__eyebrow::after { width: 22px; }
}

/* 2. CLIENTS MARQUEE — moving ticker, CORAL bg, logos in white panels */
.fp-clients {
  background: var(--coral);
  padding: clamp(48px, 6.5vh, 76px) 0;
  overflow: hidden;
}
.fp-clients__inner { max-width: 100%; margin: 0 auto; }
.fp-clients__eyebrow {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream);
  text-align: center; margin: 0 0 clamp(28px, 4vh, 40px);
  opacity: 0.92;
}
.fp-clients__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.fp-clients__track {
  display: inline-flex;
  align-items: stretch;
  gap: clamp(20px, 2vw, 32px);
  animation: fp-clients-marquee 64s linear infinite;
  white-space: nowrap;
}
.fp-clients__marquee:hover .fp-clients__track { animation-play-state: paused; }
.fp-clients__item {
  flex-shrink: 0;
  width: clamp(180px, 18vw, 240px);
  height: clamp(96px, 11vw, 128px);
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: 8px;
  padding: clamp(16px, 2vw, 24px);
  box-shadow: 0 6px 18px rgba(31, 42, 68, 0.10);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.fp-clients__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.16);
}
.fp-clients__item img {
  max-height: 100%; max-width: 100%;
  object-fit: contain;
}
.fp-clients__item--text span {
  font-family: var(--font-display);
  font-weight: 600; font-style: italic;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--indigo);
  letter-spacing: -0.02em;
  line-height: 1;
}
@keyframes fp-clients-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 800px) {
  .fp-clients__track { gap: 14px; animation-duration: 50s; }
  .fp-clients__item { width: 150px; height: 84px; padding: 14px; }
  .fp-clients__item--text span { font-size: 1.3rem; }
}

/* 6b. AWARDS MARQUEE — moving ticker, INDIGO bg, white cards pop */
.fp-awards {
  background: var(--indigo);
  padding: clamp(64px, 9vh, 104px) 0;
  overflow: hidden;
}
.fp-awards__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.fp-awards__eyebrow {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--coral);
  text-align: center; margin: 0 0 clamp(28px, 4vh, 44px);
}
.fp-awards__marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.fp-awards__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  align-items: stretch;
  gap: clamp(20px, 2.4vw, 32px);
  animation: fp-awards-marquee 56s linear infinite;
}
.fp-awards__marquee:hover .fp-awards__track { animation-play-state: paused; }
.fp-awards__card {
  flex-shrink: 0;
  width: clamp(208px, 21vw, 248px);
  height: clamp(168px, 19vh, 196px);
  padding: clamp(24px, 2.6vh, 32px) clamp(22px, 1.9vw, 28px) clamp(18px, 2vh, 22px);
  background: #fff;
  border: 1px solid rgba(31, 42, 68, 0.10);
  border-top: 3px solid var(--coral);
  border-radius: 6px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(14px, 1.8vh, 20px);
}
.fp-awards__logo {
  max-width: 100%;
  max-height: clamp(70px, 9vh, 92px);
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.fp-awards__logo--dark { border-radius: 6px; }
.fp-awards__cap {
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(31, 42, 68, 0.64);
  line-height: 1.3;
  margin: 0;
}
.fp-awards__brand {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--coral);
  margin: 0;
}
.fp-awards__name {
  font-family: var(--font-display);
  font-weight: 500; font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--indigo);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
}
.fp-awards__year {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(31, 42, 68, 0.6);
  margin: 0;
}
@keyframes fp-awards-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 800px) {
  .fp-awards__track { gap: 16px; }
  .fp-awards__card { width: 196px; height: 168px; padding: 24px 20px 18px; }
  .fp-awards__logo { max-height: 70px; }
  .fp-awards__cap { font-size: 0.72rem; }
}
@media (prefers-reduced-motion: reduce) {
  .fp-awards__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .fp-awards__marquee { -webkit-mask-image: none; mask-image: none; }
}

/* 3. WHAT YOU WALK AWAY WITH — INDIGO 8-card grid */
.fp-handoff {
  background: var(--indigo); color: var(--cream);
  padding: clamp(64px, 9vh, 112px) 0;
}
.fp-handoff__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.fp-handoff__head { max-width: 800px; margin: 0 0 clamp(40px, 6vh, 64px); }
.fp-handoff__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 18px;
}
.fp-handoff__eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.fp-handoff__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--cream); margin: 0;
}
.fp-handoff__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1100px) { .fp-handoff__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .fp-handoff__grid { grid-template-columns: 1fr; } }
.fp-handoff__card {
  position: relative;
  background: rgba(255, 243, 236, 0.04);
  border: 1px solid rgba(255, 243, 236, 0.10);
  border-radius: 14px;
  padding: clamp(22px, 2.5vw, 28px);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 240ms ease, background 240ms ease;
}
.fp-handoff__card:hover { border-color: rgba(255, 107, 53, 0.50); background: rgba(255, 243, 236, 0.06); }
.fp-handoff__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--coral);
  border-radius: 14px 14px 0 0;
}
.fp-handoff__num {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem); line-height: 1;
  color: var(--coral); margin: 0;
}
.fp-handoff__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem); line-height: 1.18; letter-spacing: -0.018em;
  color: #fff; margin: 0;
}
.fp-handoff__desc {
  font-family: var(--font-body); font-size: 0.92rem; line-height: 1.5;
  color: rgba(255, 243, 236, 0.78); margin: 0;
}

/* 4. HOW WE WORK — alternating cards */
.fp-how {
  background: var(--cream); color: var(--indigo);
  padding: clamp(64px, 9vh, 112px) 0;
}
.fp-how__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.fp-how__head { max-width: 800px; margin: 0 0 clamp(40px, 6vh, 64px); }
.fp-how__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 18px;
}
.fp-how__eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.fp-how__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--indigo); margin: 0;
}
.fp-how__phases {
  display: flex; flex-direction: column; gap: clamp(36px, 5vh, 64px);
}
.fp-how__phase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.fp-how__phase--reverse { direction: rtl; }
.fp-how__phase--reverse > * { direction: ltr; }
.fp-how__photo {
  aspect-ratio: 1 / 1;
  background: var(--cream-alt);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 56px -18px rgba(31, 42, 68, 0.22);
}
.fp-how__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-how__text { display: flex; flex-direction: column; gap: 14px; }
.fp-how__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--coral); margin: 0;
}
.fp-how__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem); line-height: 1.06; letter-spacing: -0.02em;
  color: var(--indigo); margin: 0;
}
.fp-how__desc {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.55;
  color: var(--indigo); opacity: 0.84; margin: 0; max-width: 56ch;
}
.fp-how__deliv {
  font-family: var(--font-body); font-size: 0.92rem; line-height: 1.5;
  color: var(--indigo); margin: 6px 0 0;
  padding-top: 12px; border-top: 1px solid rgba(31, 42, 68, 0.10);
}
.fp-how__deliv strong { color: var(--coral); letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.74rem; font-weight: 700; }
@media (max-width: 900px) {
  .fp-how__phase, .fp-how__phase--reverse { grid-template-columns: 1fr; direction: ltr; }
  .fp-how__phase--reverse > * { direction: ltr; }
}
/* 3b. ACCELERATED PATH — CORAL mini-band, sits between How we work and Production-ready */
.fp-accel {
  background: var(--coral);
  color: var(--cream);
  padding: clamp(48px, 7vh, 88px) 0;
}
.fp-accel__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
.fp-accel__star {
  font-family: var(--font-body);
  font-size: clamp(56px, 8vw, 88px);
  line-height: 0.9;
  color: var(--cream);
  opacity: 0.95;
  font-weight: 400;
}
.fp-accel__body { max-width: 760px; }
.fp-accel__eyebrow {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream);
  opacity: 0.92; margin: 0 0 clamp(14px, 1.6vh, 20px);
}
.fp-accel__h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.06; letter-spacing: -0.022em;
  color: var(--cream); margin: 0 0 clamp(16px, 2vh, 24px);
}
.fp-accel__text {
  font-family: var(--font-body); font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.55; color: var(--cream); margin: 0 0 clamp(20px, 2.6vh, 28px);
  opacity: 0.96;
}
.fp-accel__cta {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 0.95rem 1.5rem;
  background: var(--cream); color: var(--coral);
  border: 1px solid var(--cream);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.005em; text-decoration: none;
  border-radius: 999px;
  transition: all 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fp-accel__cta:hover {
  background: var(--indigo); color: var(--cream); border-color: var(--indigo);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 42, 68, 0.40);
}
@media (max-width: 720px) {
  .fp-accel__inner { grid-template-columns: 1fr; gap: 16px; }
  .fp-accel__star { font-size: 56px; }
}

/* 5. WHAT WE FORMULATE — 2 category cards */
.fp-cats {
  background: var(--cream); color: var(--indigo);
  padding: clamp(64px, 9vh, 112px) 0;
  border-top: 1px solid rgba(31, 42, 68, 0.06);
}
.fp-cats__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.fp-cats__head { max-width: 800px; margin: 0 0 clamp(40px, 6vh, 64px); }
.fp-cats__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 18px;
}
.fp-cats__eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.fp-cats__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--indigo); margin: 0;
}
.fp-cats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.5vw, 36px); }
@media (max-width: 900px) { .fp-cats__grid { grid-template-columns: 1fr; } }
.fp-cats__card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(31, 42, 68, 0.08);
  border-radius: 14px;
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
}
.fp-cats__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
}
.fp-cats__card--bev::before { background: var(--coral); }
.fp-cats__card--rtm::before { background: var(--indigo); }
.fp-cats__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.1; letter-spacing: -0.018em;
  color: var(--indigo); margin: 8px 0 18px;
}
.fp-cats__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
}
.fp-cats__list li {
  font-family: var(--font-body); font-size: 0.95rem; line-height: 1.4;
  color: var(--indigo); opacity: 0.86;
  padding-left: 14px; position: relative;
}
.fp-cats__list li::before {
  content: '·'; color: var(--coral); position: absolute; left: 0; top: 0;
  font-weight: 700; font-size: 1.2rem;
}
@media (max-width: 480px) { .fp-cats__list { grid-template-columns: 1fr; } }

/* 6. FEATURED CASE STUDY — CS-A on CORAL */
.fp-case {
  background: var(--coral); color: #fff;
  padding: clamp(64px, 9vh, 112px) 0;
}
.fp-case__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.fp-case__head { max-width: 800px; margin: 0 0 clamp(40px, 6vh, 64px); }
.fp-case__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: #fff;
  margin: 0 0 18px;
}
.fp-case__eyebrow::before { content: ''; width: 32px; height: 2px; background: #fff; }
.fp-case__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  color: #fff; margin: 0;
}
.fp-case__card {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  background: #fff; color: var(--indigo);
  border-radius: 18px; overflow: hidden;
  text-decoration: none;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.fp-case__card:hover { transform: translateY(-3px); box-shadow: 0 28px 56px -16px rgba(0,0,0,0.30); }
@media (max-width: 900px) { .fp-case__card { grid-template-columns: 1fr; } }
.fp-case__photo {
  aspect-ratio: 16 / 12;
  background: var(--cream);
  overflow: hidden;
}
.fp-case__photo img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: center 35%; }
.fp-case__body { padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 14px; }
.fp-case__tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--coral); margin: 0;
}
.fp-case__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem); line-height: 1.06; letter-spacing: -0.02em;
  color: var(--indigo); margin: 0;
}
.fp-case__metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  padding: 16px 0; border-top: 1px solid rgba(31, 42, 68, 0.08); border-bottom: 1px solid rgba(31, 42, 68, 0.08);
}
.fp-case__metrics > div p:first-child { font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: clamp(1.8rem, 2.6vw, 2.4rem); line-height: 1; letter-spacing: -0.03em; color: var(--coral); margin: 0 0 3px; }
.fp-case__metrics > div p:last-child { font-family: 'JetBrains Mono', monospace; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--indigo); opacity: 0.72; margin: 0; }
.fp-case__num {}
.fp-case__label {}
.fp-case__summary {
  font-family: var(--font-body); font-size: 0.98rem; line-height: 1.5;
  color: var(--indigo); opacity: 0.86; margin: 0;
}
.fp-case__cta {
  align-self: flex-start;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  color: var(--coral);
}

/* 7. ADD-ON SERVICES */
.fp-addons {
  background: var(--cream); color: var(--indigo);
  padding: clamp(64px, 9vh, 112px) 0;
}
.fp-addons__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.fp-addons__head { max-width: 800px; margin: 0 0 clamp(40px, 6vh, 64px); }
.fp-addons__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 18px;
}
.fp-addons__eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.fp-addons__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--indigo); margin: 0;
}
.fp-addons__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1100px) { .fp-addons__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .fp-addons__grid { grid-template-columns: 1fr; } }
.fp-addons__card {
  background: #fff;
  border: 1px solid rgba(31, 42, 68, 0.08);
  border-radius: 12px;
  padding: clamp(20px, 2.2vw, 26px);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 240ms ease, transform 240ms ease;
}
.fp-addons__card:hover { border-color: var(--coral); transform: translateY(-2px); }
.fp-addons__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.1rem; line-height: 1.2; letter-spacing: -0.018em;
  color: var(--indigo); margin: 0;
}
.fp-addons__desc {
  font-family: var(--font-body); font-size: 0.9rem; line-height: 1.5;
  color: var(--indigo); opacity: 0.78; margin: 0;
}

/* 8. FAQ */
.fp-faq {
  background: var(--cream); color: var(--indigo);
  padding: clamp(64px, 9vh, 112px) 0;
  border-top: 1px solid rgba(31, 42, 68, 0.06);
}
.fp-faq__inner { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.fp-faq__head { margin: 0 0 clamp(36px, 5vh, 56px); text-align: center; }
.fp-faq__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--indigo); margin: 0;
}
.fp-faq__list { display: flex; flex-direction: column; gap: 0; }
.fp-faq__item {
  border-top: 1px solid rgba(31, 42, 68, 0.12);
  padding: clamp(18px, 2.2vw, 24px) 0;
}
.fp-faq__item:last-child { border-bottom: 1px solid rgba(31, 42, 68, 0.12); }
.fp-faq__item summary {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.2; letter-spacing: -0.018em;
  color: var(--indigo);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.fp-faq__item summary::-webkit-details-marker { display: none; }
.fp-faq__item summary::after {
  content: '+';
  font-family: var(--font-body); font-weight: 700; font-size: 1.6rem;
  color: var(--coral); line-height: 1;
  transition: transform 240ms ease;
}
.fp-faq__item[open] summary::after { transform: rotate(45deg); }
.fp-faq__a {
  font-family: var(--font-body); font-size: 0.98rem; line-height: 1.55;
  color: var(--indigo); opacity: 0.86;
  margin: 14px 0 0; max-width: 70ch;
}

/* 9. FINAL CTA — INDIGO band */
.fp-finalcta {
  background: var(--indigo); color: var(--cream);
  padding: clamp(72px, 10vh, 128px) 0;
  text-align: center;
}
.fp-finalcta .container { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.fp-finalcta__h2 {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--cream); margin: 0 0 var(--s-6);
}
.fp-finalcta__sub {
  font-family: var(--font-body); font-size: 1.1rem; line-height: 1.55;
  color: var(--cream); opacity: 0.92; max-width: 56ch;
  margin: 0 auto var(--s-8);
}


/* ============================================================================
   PRODUCTION OPERATIONS PAGE (.po-*) — clone of .fp-* structure (Phase 7)
   Sections in scroll order:
     1.  HERO                (.po-hero)
     2.  MEET JAMIE          (.po-bio)       — NEW indigo band, see block below
     3.  JAI PRODUCTION METHOD (.po-how)     — 4 phases, stage_05–08
     3b. CO-PACKER KIT       (.po-kit)       — coral mini-band (was .fp-accel)
     4.  DELIVERABLES        (.po-handoff)   — indigo 8-card grid
     5.  ADD-ONS             (.po-addons)    — 3 cards
     6.  CASE STUDY          (.po-case)      — Stillers Soda
     7.  SERVICE SPECIALTIES (.po-cats)      — 3 sub-services
     8.  FAQ                 (.po-faq)       — 14 Q&As
     9.  FINAL CTA           (.po-finalcta)
   ============================================================================ */

/* 1. HERO — cinematic full-bleed with cream gradient overlay for type legibility */
.po-hero {
  position: relative;
  /* Fill viewport minus V10 nav (80px), but grow if content is taller so the CTA never collides with the next section. */
  min-height: max(560px, calc(100vh - 80px));
  background: var(--cream);
  overflow: hidden;
  display: flex; align-items: flex-start;
  padding: clamp(24px, 4vh, 52px) 0;
}
.po-hero__media { position: absolute; inset: 0; }
.po-hero__media picture { display: block; width: 100%; height: 100%; }
.po-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.po-hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(255,243,236,0.92) 0%,
    rgba(255,243,236,0.70) 40%,
    rgba(255,243,236,0.30) 65%,
    rgba(255,243,236,0.05) 100%);
}
.po-hero__content {
  position: relative;
  max-width: 1240px; width: 100%;
  margin: 0 auto; padding: 0 var(--gutter);
  z-index: 2;
  display: flex; flex-direction: column; gap: clamp(16px, 2vh, 24px);
  max-width: 720px;
  margin-left: max(var(--gutter), calc(50% - 620px));
}
.po-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--indigo);
  margin: 0 0 24px;
  text-shadow:
    0 1px 2px rgba(255, 243, 236, 1),
    0 0 8px rgba(255, 243, 236, 0.95),
    0 0 18px rgba(255, 243, 236, 0.7),
    0 0 30px rgba(255, 243, 236, 0.45);
}
.po-hero__eyebrow::before,
.po-hero__eyebrow::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}
.po-hero__h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(38px, 5.5vw, 80px); line-height: 1.05; letter-spacing: -0.024em;
  color: var(--indigo); margin: 0 0 22px;
  text-shadow:
    0 1px 2px rgba(255, 243, 236, 1),
    0 0 14px rgba(255, 243, 236, 0.85),
    0 0 30px rgba(255, 243, 236, 0.55),
    0 0 50px rgba(255, 243, 236, 0.3);
}
.po-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--indigo);
  max-width: 56ch;
  margin: 0;
  padding-top: 18px;
  position: relative;
  overflow-wrap: break-word;
  text-shadow:
    0 1px 1px rgba(255, 243, 236, 1),
    0 0 6px rgba(255, 243, 236, 1),
    0 0 14px rgba(255, 243, 236, 0.85),
    0 0 28px rgba(255, 243, 236, 0.55),
    0 0 48px rgba(255, 243, 236, 0.30);
}
.po-hero__sub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--coral);
}
.po-hero__sub strong { font-weight: 800; color: var(--indigo); }
.po-hero__cta { margin-top: 6px; }
@media (max-width: 800px) {
  .po-hero__content { margin-left: 0; padding: 0 var(--gutter); }
  /* Mobile uses a dedicated PORTRAIT hero with blank labels + blank notebook
     and cream negative space at top. Light veil only — photo is the protagonist. */
  .po-hero__veil {
    background: linear-gradient(180deg,
      rgba(255,243,236,0.58) 0%,
      rgba(255,243,236,0.70) 45%,
      rgba(255,243,236,0.46) 78%,
      rgba(255,243,236,0.10) 100%);
  }
  /* Object-position keeps the H1 area aligned with the cream negative space of the photo */
  .po-hero__img { object-position: center top; }
  /* Eyebrow shrinks proportionally on mobile, matches home hero treatment */
  .po-hero__eyebrow { font-size: 0.72rem; gap: 10px; letter-spacing: 0.26em; }
  .po-hero__eyebrow::before,
  .po-hero__eyebrow::after { width: 22px; }
}

/* 3. WHAT YOU WALK AWAY WITH — INDIGO 8-card grid */
.po-handoff {
  background: var(--indigo); color: var(--cream);
  padding: clamp(64px, 9vh, 112px) 0;
}
.po-handoff__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.po-handoff__head { max-width: 800px; margin: 0 0 clamp(40px, 6vh, 64px); }
.po-handoff__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 18px;
}
.po-handoff__eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.po-handoff__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--cream); margin: 0;
}
.po-handoff__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1100px) { .po-handoff__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .po-handoff__grid { grid-template-columns: 1fr; } }
.po-handoff__card {
  position: relative;
  background: rgba(255, 243, 236, 0.04);
  border: 1px solid rgba(255, 243, 236, 0.10);
  border-radius: 14px;
  padding: clamp(22px, 2.5vw, 28px);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 240ms ease, background 240ms ease;
}
.po-handoff__card:hover { border-color: rgba(255, 107, 53, 0.50); background: rgba(255, 243, 236, 0.06); }
.po-handoff__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--coral);
  border-radius: 14px 14px 0 0;
}
.po-handoff__num {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem); line-height: 1;
  color: var(--coral); margin: 0;
}
.po-handoff__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem); line-height: 1.18; letter-spacing: -0.018em;
  color: #fff; margin: 0;
}
.po-handoff__desc {
  font-family: var(--font-body); font-size: 0.92rem; line-height: 1.5;
  color: rgba(255, 243, 236, 0.78); margin: 0;
}

/* 4. HOW WE WORK — alternating cards */
.po-how {
  background: var(--cream); color: var(--indigo);
  padding: clamp(64px, 9vh, 112px) 0;
}
.po-how__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.po-how__head { max-width: 800px; margin: 0 0 clamp(40px, 6vh, 64px); }
.po-how__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 18px;
}
.po-how__eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.po-how__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--indigo); margin: 0;
}
.po-how__phases {
  display: flex; flex-direction: column; gap: clamp(36px, 5vh, 64px);
}
.po-how__phase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.po-how__phase--reverse { direction: rtl; }
.po-how__phase--reverse > * { direction: ltr; }
.po-how__photo {
  aspect-ratio: 1 / 1;
  background: var(--cream-alt);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 56px -18px rgba(31, 42, 68, 0.22);
}
.po-how__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.po-how__text { display: flex; flex-direction: column; gap: 14px; }
.po-how__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--coral); margin: 0;
}
.po-how__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem); line-height: 1.06; letter-spacing: -0.02em;
  color: var(--indigo); margin: 0;
}
.po-how__desc {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.55;
  color: var(--indigo); opacity: 0.84; margin: 0; max-width: 56ch;
}
.po-how__deliv {
  font-family: var(--font-body); font-size: 0.92rem; line-height: 1.5;
  color: var(--indigo); margin: 6px 0 0;
  padding-top: 12px; border-top: 1px solid rgba(31, 42, 68, 0.10);
}
.po-how__deliv strong { color: var(--coral); letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.74rem; font-weight: 700; }
@media (max-width: 900px) {
  .po-how__phase, .po-how__phase--reverse { grid-template-columns: 1fr; direction: ltr; }
  .po-how__phase--reverse > * { direction: ltr; }
}
/* 3b. ACCELERATED PATH — CORAL mini-band, sits between How we work and Production-ready */
.po-kit {
  background: var(--coral);
  color: var(--cream);
  padding: clamp(48px, 7vh, 88px) 0;
}
.po-kit__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
.po-kit__star {
  font-family: var(--font-body);
  font-size: clamp(56px, 8vw, 88px);
  line-height: 0.9;
  color: var(--cream);
  opacity: 0.95;
  font-weight: 400;
}
.po-kit__body { max-width: 760px; }
.po-kit__eyebrow {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream);
  opacity: 0.92; margin: 0 0 clamp(14px, 1.6vh, 20px);
}
.po-kit__h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.06; letter-spacing: -0.022em;
  color: var(--cream); margin: 0 0 clamp(16px, 2vh, 24px);
}
.po-kit__text {
  font-family: var(--font-body); font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.55; color: var(--cream); margin: 0 0 clamp(20px, 2.6vh, 28px);
  opacity: 0.96;
}
.po-kit__cta {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 0.95rem 1.5rem;
  background: var(--cream); color: var(--coral);
  border: 1px solid var(--cream);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.005em; text-decoration: none;
  border-radius: 999px;
  transition: all 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.po-kit__cta:hover {
  background: var(--indigo); color: var(--cream); border-color: var(--indigo);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 42, 68, 0.40);
}
@media (max-width: 720px) {
  .po-kit__inner { grid-template-columns: 1fr; gap: 16px; }
  .po-kit__star { font-size: 56px; }
  .po-kit__cta {
    font-size: 0.80rem; padding: 12px 20px; letter-spacing: 0.02em;
  }
}

/* 5. WHAT WE FORMULATE — 2 category cards */
.po-cats {
  background: var(--cream); color: var(--indigo);
  padding: clamp(64px, 9vh, 112px) 0;
  border-top: 1px solid rgba(31, 42, 68, 0.06);
}
.po-cats__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.po-cats__head { max-width: 800px; margin: 0 0 clamp(40px, 6vh, 64px); }
.po-cats__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 18px;
}
.po-cats__eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.po-cats__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--indigo); margin: 0;
}
.po-cats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.5vw, 36px); }
@media (max-width: 900px) { .po-cats__grid { grid-template-columns: 1fr; } }
.po-cats__card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(31, 42, 68, 0.08);
  border-radius: 14px;
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
}
.po-cats__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
}
.po-cats__card--bev::before { background: var(--coral); }
.po-cats__card--rtm::before { background: var(--indigo); }
.po-cats__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.1; letter-spacing: -0.018em;
  color: var(--indigo); margin: 8px 0 18px;
}
.po-cats__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
}
.po-cats__list li {
  font-family: var(--font-body); font-size: 0.95rem; line-height: 1.4;
  color: var(--indigo); opacity: 0.86;
  padding-left: 14px; position: relative;
}
.po-cats__list li::before {
  content: '·'; color: var(--coral); position: absolute; left: 0; top: 0;
  font-weight: 700; font-size: 1.2rem;
}
@media (max-width: 480px) { .po-cats__list { grid-template-columns: 1fr; } }

/* 6. FEATURED CASE STUDY — CS-A on CORAL */
.po-case {
  background: var(--coral); color: #fff;
  padding: clamp(64px, 9vh, 112px) 0;
}
.po-case__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.po-case__head { max-width: 800px; margin: 0 0 clamp(40px, 6vh, 64px); }
.po-case__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: #fff;
  margin: 0 0 18px;
}
.po-case__eyebrow::before { content: ''; width: 32px; height: 2px; background: #fff; }
.po-case__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  color: #fff; margin: 0;
}
.po-case__card {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  background: #fff; color: var(--indigo);
  border-radius: 18px; overflow: hidden;
  text-decoration: none;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.po-case__card:hover { transform: translateY(-3px); box-shadow: 0 28px 56px -16px rgba(0,0,0,0.30); }
@media (max-width: 900px) { .po-case__card { grid-template-columns: 1fr; } .po-case__photo { aspect-ratio: 16 / 12; } }
.po-case__photo {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.po-case__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; object-position: center 35%; }
.po-case__body { padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 14px; }
.po-case__tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--coral); margin: 0;
}
.po-case__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem); line-height: 1.06; letter-spacing: -0.02em;
  color: var(--indigo); margin: 0;
}
.po-case__metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  padding: 16px 0; border-top: 1px solid rgba(31, 42, 68, 0.08); border-bottom: 1px solid rgba(31, 42, 68, 0.08);
}
.po-case__metrics > div p:first-child { font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: clamp(1.8rem, 2.6vw, 2.4rem); line-height: 1; letter-spacing: -0.03em; color: var(--coral); margin: 0 0 3px; }
.po-case__metrics > div p:last-child { font-family: 'JetBrains Mono', monospace; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--indigo); opacity: 0.72; margin: 0; }
.po-case__num {}
.po-case__label {}
.po-case__summary {
  font-family: var(--font-body); font-size: 0.98rem; line-height: 1.5;
  color: var(--indigo); opacity: 0.86; margin: 0;
}
.po-case__cta {
  align-self: flex-start;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  color: var(--coral);
}

/* 7. ADD-ON SERVICES */
.po-addons {
  background: var(--cream); color: var(--indigo);
  padding: clamp(64px, 9vh, 112px) 0;
}
.po-addons__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.po-addons__head { max-width: 800px; margin: 0 0 clamp(40px, 6vh, 64px); }
.po-addons__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 18px;
}
.po-addons__eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.po-addons__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--indigo); margin: 0;
}
.po-addons__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1100px) { .po-addons__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .po-addons__grid { grid-template-columns: 1fr; } }
.po-addons__card {
  background: #fff;
  border: 1px solid rgba(31, 42, 68, 0.08);
  border-radius: 12px;
  padding: clamp(20px, 2.2vw, 26px);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 240ms ease, transform 240ms ease;
}
.po-addons__card:hover { border-color: var(--coral); transform: translateY(-2px); }
.po-addons__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.1rem; line-height: 1.2; letter-spacing: -0.018em;
  color: var(--indigo); margin: 0;
}
.po-addons__desc {
  font-family: var(--font-body); font-size: 0.9rem; line-height: 1.5;
  color: var(--indigo); opacity: 0.78; margin: 0;
}

/* 8. FAQ */
.po-faq {
  background: var(--cream); color: var(--indigo);
  padding: clamp(64px, 9vh, 112px) 0;
  border-top: 1px solid rgba(31, 42, 68, 0.06);
}
.po-faq__inner { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.po-faq__head { margin: 0 0 clamp(36px, 5vh, 56px); text-align: center; }
.po-faq__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--indigo); margin: 0;
}
.po-faq__list { display: flex; flex-direction: column; gap: 0; }
.po-faq__item {
  border-top: 1px solid rgba(31, 42, 68, 0.12);
  padding: clamp(18px, 2.2vw, 24px) 0;
}
.po-faq__item:last-child { border-bottom: 1px solid rgba(31, 42, 68, 0.12); }
.po-faq__item summary {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.2; letter-spacing: -0.018em;
  color: var(--indigo);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.po-faq__item summary::-webkit-details-marker { display: none; }
.po-faq__item summary::after {
  content: '+';
  font-family: var(--font-body); font-weight: 700; font-size: 1.6rem;
  color: var(--coral); line-height: 1;
  transition: transform 240ms ease;
}
.po-faq__item[open] summary::after { transform: rotate(45deg); }
.po-faq__a {
  font-family: var(--font-body); font-size: 0.98rem; line-height: 1.55;
  color: var(--indigo); opacity: 0.86;
  margin: 14px 0 0; max-width: 70ch;
}

/* 9. FINAL CTA — INDIGO band */
.po-finalcta {
  background: var(--indigo); color: var(--cream);
  padding: clamp(72px, 10vh, 128px) 0;
  text-align: center;
}
.po-finalcta .container { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.po-finalcta__h2 {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--cream); margin: 0 0 var(--s-6);
}
.po-finalcta__sub {
  font-family: var(--font-body); font-size: 1.1rem; line-height: 1.55;
  color: var(--cream); opacity: 0.92; max-width: 56ch;
  margin: 0 auto var(--s-8);
}

/* ============================================================================
   PRODUCTION OPERATIONS PAGE (.po-*) — clone of .fp-* with renames
   Section: MEET JAMIE CARPENTER — indigo band, two-column portrait + bio
   ============================================================================ */

/* 2. MEET JAMIE — INDIGO band, photo left + bio right, coral pull-quote */
.po-bio {
  background: var(--indigo);
  color: var(--cream);
  padding: clamp(64px, 9vh, 120px) 0;
  border-top: 1px solid rgba(255, 107, 53, 0.18);
  border-bottom: 1px solid rgba(255, 107, 53, 0.18);
}
.po-bio__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.po-bio__photo {
  position: relative;
}
.po-bio__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.po-bio__photo--placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 53, 0.18) 0%, rgba(31, 42, 68, 0.92) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(255, 107, 53, 0.30);
}
.po-bio__photo--placeholder .po-bio__placeholder-name {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 2rem); color: var(--cream); margin: 0 0 8px;
}
.po-bio__photo--placeholder .po-bio__placeholder-title {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral); margin: 0;
}
.po-bio__body {
  display: flex; flex-direction: column;
}
.po-bio__eyebrow {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 clamp(14px, 2vh, 22px);
}
.po-bio__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: 1.06;
  letter-spacing: -0.022em; color: var(--cream);
  margin: 0 0 clamp(20px, 2.4vh, 28px);
}
.po-bio__desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.6;
  color: var(--cream); opacity: 0.92;
  margin: 0 0 clamp(20px, 2.6vh, 28px);
  max-width: 64ch;
}
.po-bio__quote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem); line-height: 1.4;
  color: var(--cream);
  margin: 0;
  padding-left: clamp(16px, 2vw, 24px);
  border-left: 3px solid var(--coral);
}
.po-bio__quote-attr {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral);
  display: block; margin-top: 12px; font-style: normal;
}
@media (max-width: 820px) {
  .po-bio__inner { grid-template-columns: 1fr; gap: clamp(24px, 5vw, 40px); }
  .po-bio__photo { max-width: 320px; margin: 0 auto; }
}


/* ============================================================================
   PRODUCTION OPERATIONS — Section 5 ADD-ONS center override
   The cloned .po-addons CSS uses grid-template-columns: repeat(5, 1fr) from the
   formulation 5-card layout. Production has only 3 cards, so they bunched left
   in columns 1-3. Override to a centered 3-card layout with centered header.
   ============================================================================ */
.po-addons__head {
  max-width: 880px;
  margin: 0 auto clamp(40px, 6vh, 64px);
  text-align: center;
}
.po-addons__eyebrow {
  justify-content: center;
}
.po-addons__grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .po-addons__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .po-addons__grid { grid-template-columns: 1fr; }
}


/* ============================================================================
   FINAL-CTA HOVER FIX (indigo bg) — fp-finalcta + po-finalcta
   The default .btn-coral:hover swaps coral fill → indigo fill. On an indigo
   background that makes the button disappear. Use the same context-aware
   pattern that .section--indigo .journey__cta-row already uses: swap to
   cream fill with coral text instead, so the hover state stays visible.
   ============================================================================ */
.fp-finalcta .btn-coral:hover,
.po-finalcta .btn-coral:hover,
.ab-finalcta .btn-coral:hover {
  background: var(--cream);
  color: var(--coral);
  border-color: var(--cream);
  box-shadow: 0 12px 28px rgba(255, 243, 236, 0.30);
}


/* ============================================================================
   GLOBAL BREADCRUMB BAR (.crumbs-bar) — shared across all inner pages
   Sits directly under the V10 nav, above each page's hero. Cream bg, thin band,
   coral monospace caps. Consistent treatment on formulation, production-ops, about.
   ============================================================================ */
.crumbs-bar {
  background: var(--cream);
  border-bottom: 1px solid rgba(31, 42, 68, 0.08);
}
.crumbs-bar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(14px, 1.8vh, 22px) var(--gutter);
  display: flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.crumbs-bar__inner a {
  color: var(--indigo); text-decoration: none; opacity: 0.62;
  transition: opacity 180ms ease, color 180ms ease;
}
.crumbs-bar__inner a:hover { opacity: 1; color: var(--coral); }
.crumbs-bar__inner span[aria-hidden] { color: var(--indigo); opacity: 0.32; }
.crumbs-bar__inner span[aria-current] { color: var(--coral); font-weight: 700; }


/* ============================================================================
   ABOUT PAGE (.ab-*) — clone of .fp-* / .po-* with renames (Phase 8 — 5/27)
   Sections in scroll order:
     1.  HERO            (.ab-hero)        — cream, breadcrumb + H1 + sub + 7-avatar collage
     2.  MATT'S SPREAD   (.ab-founder)     — INDIGO band, 60/40 photo + editorial bio (scaled .po-bio)
     3.  THE TEAM        (.ab-team)        — cream, 4+3 grid, 7 cards
     4.  WHAT WE BELIEVE (.ab-values)      — INDIGO 6-card grid (cloned .po-handoff)
     5.  BROOKLYN HOME   (.ab-home)        — CORAL mini-band (cloned .po-kit)
     6.  CASE STUDY      reuses .fp-case   — no new CSS needed
     7.  FINAL CTA       (.ab-finalcta)    — INDIGO (cloned .po-finalcta)
   ============================================================================ */

/* 1. HERO — cream, type centered with 7 floating polaroid avatars scattered across the hero */
.ab-hero {
  position: relative;
  background: var(--cream);
  color: var(--indigo);
  /* Grow if content is taller than the viewport so nothing overlaps the next section */
  min-height: max(620px, calc(100vh - 80px - 50px)); /* viewport minus nav (80) and crumbs-bar (~50) */
  display: flex; align-items: center; justify-content: center;
  padding: clamp(40px, 6vh, 64px) var(--gutter);
  overflow: hidden;
  border-bottom: 1px solid rgba(31, 42, 68, 0.08);
}
.ab-hero__avatars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.ab-hero__avatar {
  position: absolute;
  border-radius: 6px;
  border: 5px solid #fff;
  box-shadow: 0 14px 32px rgba(31, 42, 68, 0.18);
  object-fit: cover;
  object-position: center 30%;
  background: linear-gradient(135deg, rgba(31, 42, 68, 0.12) 0%, rgba(255, 107, 53, 0.12) 100%);
  display: block;
  transition: transform 320ms ease;
}
.ab-hero__avatar--placeholder {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  color: var(--indigo); opacity: 0.7;
  font-size: clamp(1.2rem, 2vw, 1.8rem); letter-spacing: 0.04em;
  background: linear-gradient(135deg, rgba(31, 42, 68, 0.10) 0%, rgba(255, 107, 53, 0.14) 100%);
}
/* Scattered positions — left column, then right column. Avoids the center type zone. */
.ab-hero__avatar--1 { top: 7%;    left: 3%;    width: clamp(110px, 11vw, 175px); aspect-ratio: 1; transform: rotate(-9deg); }
.ab-hero__avatar--2 { top: 38%;   left: 1%;    width: clamp(90px,  9vw, 145px); aspect-ratio: 1; transform: rotate(6deg); }
.ab-hero__avatar--3 { bottom: 6%; left: 7%;    width: clamp(110px, 11vw, 170px); aspect-ratio: 1; transform: rotate(-6deg); }
.ab-hero__avatar--4 { top: 5%;    right: 4%;   width: clamp(100px, 10vw, 160px); aspect-ratio: 1; transform: rotate(7deg); }
.ab-hero__avatar--5 { top: 32%;   right: 1%;   width: clamp(115px, 12vw, 185px); aspect-ratio: 1; transform: rotate(-5deg); }
.ab-hero__avatar--6 { bottom: 8%; right: 4%;   width: clamp(90px,  9vw, 150px); aspect-ratio: 1; transform: rotate(8deg); }
.ab-hero__avatar--7 { bottom: 10%; right: 22%; width: clamp(80px,  8vw, 130px); aspect-ratio: 1; transform: rotate(-4deg); }
/* Tablet: simplify to 4 corner avatars only */
@media (max-width: 1100px) and (min-width: 721px) {
  .ab-hero__avatar--2,
  .ab-hero__avatar--5,
  .ab-hero__avatar--7 { display: none; }
}
/* Mobile: avatars become a compact 4+3 grid below the type (not absolute, in flow) */
@media (max-width: 720px) {
  .ab-hero {
    height: auto;
    min-height: 0;
    flex-direction: column;
    gap: clamp(28px, 4.5vh, 44px);
    padding: clamp(40px, 6vh, 64px) var(--gutter);
  }
  .ab-hero__avatars {
    position: static;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    pointer-events: auto;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .ab-hero__avatar {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    border-width: 4px;
  }
  /* Subtle rotations preserved for polaroid character */
  .ab-hero__avatar--1 { transform: rotate(-4deg) !important; }
  .ab-hero__avatar--2 { transform: rotate(3deg) !important; }
  .ab-hero__avatar--3 { transform: rotate(-2deg) !important; }
  .ab-hero__avatar--4 { transform: rotate(4deg) !important; }
  .ab-hero__avatar--5 { transform: rotate(-3deg) !important; }
  .ab-hero__avatar--6 { transform: rotate(2deg) !important; }
  .ab-hero__avatar--7 { transform: rotate(-4deg) !important; }
  .ab-hero__avatar--placeholder {
    font-size: 1rem;
  }
}
.ab-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
/* Center the eyebrow + sub hairline since text is now centered */
.ab-hero__eyebrow { justify-content: center; }
.ab-hero__h1 { margin-left: auto; margin-right: auto; }
.ab-hero__sub { margin-left: auto; margin-right: auto; }
.ab-hero__sub::before { left: 50%; transform: translateX(-50%); }
/* (.ab-hero__crumbs was promoted to global .crumbs-bar — see top of file) */
.ab-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--indigo);
  margin: 0 0 24px;
}
.ab-hero__eyebrow::before,
.ab-hero__eyebrow::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}
.ab-hero__h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(38px, 5.5vw, 80px); line-height: 1.05;
  letter-spacing: -0.024em; color: var(--indigo);
  margin: 0 0 22px;
  max-width: 18ch;
}
.ab-hero__sub {
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  line-height: 1.5; color: var(--indigo);
  margin: 0 0 clamp(36px, 5vh, 56px);
  max-width: 56ch;
  padding-top: 18px;
  position: relative;
}
.ab-hero__sub::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--coral);
}
.ab-hero__sub strong { font-weight: 800; color: var(--indigo); }
/* (legacy .ab-hero__collage removed — replaced by absolute-positioned .ab-hero__avatars above) */

/* 2. MATT'S EDITORIAL SPREAD — INDIGO band, 60/40 photo left + bio right (scaled .po-bio) */
.ab-founder {
  background: var(--indigo);
  color: var(--cream);
  padding: clamp(72px, 10vh, 128px) 0;
  border-top: 1px solid rgba(255, 107, 53, 0.18);
  border-bottom: 1px solid rgba(255, 107, 53, 0.18);
}
.ab-founder__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(320px, 480px) 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.ab-founder__photo {
  position: relative;
}
.ab-founder__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}
.ab-founder__body { display: flex; flex-direction: column; }
.ab-founder__eyebrow {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 clamp(14px, 2vh, 22px);
}
.ab-founder__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem); line-height: 1.04;
  letter-spacing: -0.024em; color: var(--cream);
  margin: 0 0 clamp(22px, 2.6vh, 32px);
}
.ab-founder__desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.1rem); line-height: 1.62;
  color: var(--cream); opacity: 0.90;
  margin: 0 0 clamp(16px, 2vh, 22px);
  max-width: 66ch;
}
.ab-founder__quote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem); line-height: 1.32;
  color: var(--cream);
  margin: clamp(8px, 1vh, 14px) 0 0;
  padding-left: clamp(18px, 2.4vw, 28px);
  border-left: 3px solid var(--coral);
  max-width: 58ch;
}
.ab-founder__quote-attr {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral);
  display: block; margin-top: 14px; font-style: normal;
}
.ab-founder__creds {
  font-family: 'JetBrains Mono', monospace; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); opacity: 0.62;
  margin: clamp(28px, 3.4vh, 40px) 0 0;
}
@media (max-width: 900px) {
  .ab-founder__inner { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 48px); }
  .ab-founder__photo { max-width: 380px; margin: 0 auto; }
}

/* 3. THE TEAM — cream, 4+3 grid, 7 cards */
.ab-team {
  background: var(--cream);
  color: var(--indigo);
  padding: clamp(80px, 11vh, 144px) 0;
}
.ab-team__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.ab-team__head { max-width: 880px; margin: 0 0 clamp(48px, 7vh, 80px); }
.ab-team__eyebrow {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 clamp(14px, 2vh, 22px);
  display: inline-flex; align-items: center; gap: 12px;
}
.ab-team__eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.ab-team__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 4.4vw, 56px); line-height: 1.06;
  letter-spacing: -0.022em; color: var(--indigo);
  margin: 0 0 clamp(16px, 2vh, 24px);
}
.ab-team__sub {
  font-family: var(--font-body); font-size: 1.05rem; line-height: 1.6;
  color: var(--indigo); opacity: 0.82; max-width: 60ch; margin: 0;
}
.ab-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 2.6vw, 36px);
}
.ab-team__card {
  background: #fff;
  border: 1px solid rgba(31, 42, 68, 0.10);
  border-radius: 10px;
  padding: clamp(20px, 1.8vw, 28px);
  display: flex; flex-direction: column;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  position: relative;
}
.ab-team__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--coral);
  border-radius: 10px 10px 0 0;
  opacity: 0; transition: opacity 220ms ease;
}
.ab-team__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.32);
  box-shadow: 0 18px 36px -12px rgba(31, 42, 68, 0.18);
}
.ab-team__card:hover::before { opacity: 1; }
.ab-team__photo {
  width: 100%; aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(31, 42, 68, 0.12) 0%, rgba(255, 107, 53, 0.12) 100%);
  margin: 0 0 clamp(16px, 1.8vh, 22px);
  position: relative;
}
.ab-team__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  object-position: center 30%;
}
.ab-team__photo--placeholder::before {
  content: attr(data-initials);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--indigo); opacity: 0.6;
  letter-spacing: 0.02em;
}
.ab-team__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem); line-height: 1.12;
  color: var(--indigo); margin: 0 0 6px;
}
.ab-team__role {
  font-family: var(--font-body); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 clamp(12px, 1.4vh, 16px);
}
.ab-team__bio {
  font-family: var(--font-body); font-size: 0.92rem; line-height: 1.55;
  color: var(--indigo); opacity: 0.82;
  margin: 0 0 clamp(14px, 1.6vh, 18px);
  flex: 1;
}
.ab-team__linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--indigo); opacity: 0.62;
  text-decoration: none;
  align-self: flex-start;
  transition: color 180ms ease, opacity 180ms ease;
  margin-top: auto;
}
.ab-team__linkedin svg { display: block; }
.ab-team__linkedin:hover { color: var(--coral); opacity: 1; }
@media (max-width: 1100px) {
  .ab-team__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .ab-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ab-team__grid { grid-template-columns: 1fr; }
  .ab-team__photo { max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* 4. WHAT WE BELIEVE — INDIGO, 6-card grid of principles (cloned .po-handoff) */
.ab-values {
  background: var(--indigo);
  color: var(--cream);
  padding: clamp(80px, 11vh, 144px) 0;
  border-top: 1px solid rgba(255, 107, 53, 0.18);
}
.ab-values__inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.ab-values__head { max-width: 880px; margin: 0 0 clamp(48px, 7vh, 80px); }
.ab-values__eyebrow {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 clamp(14px, 2vh, 22px);
  display: inline-flex; align-items: center; gap: 12px;
}
.ab-values__eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--coral); }
.ab-values__h2 {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04;
  letter-spacing: -0.022em; color: var(--cream);
  margin: 0 0 clamp(16px, 2vh, 24px);
}
.ab-values__sub {
  font-family: var(--font-body); font-size: 1.05rem; line-height: 1.6;
  color: var(--cream); opacity: 0.78; max-width: 60ch; margin: 0;
}
.ab-values__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.ab-values__card {
  position: relative;
  background: rgba(255, 243, 236, 0.04);
  border: 1px solid rgba(255, 243, 236, 0.14);
  border-radius: 10px;
  padding: clamp(24px, 2.4vw, 36px);
  display: flex; flex-direction: column;
  transition: background 240ms ease, border-color 240ms ease;
}
.ab-values__card::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 32px; height: 3px;
  background: var(--coral);
  border-radius: 10px 0 0 0;
}
.ab-values__card:hover { border-color: rgba(255, 107, 53, 0.50); background: rgba(255, 243, 236, 0.06); }
.ab-values__num {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem); color: var(--coral);
  line-height: 1; margin: 0 0 clamp(14px, 1.8vh, 20px);
}
.ab-values__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem); line-height: 1.18;
  color: var(--cream); margin: 0 0 clamp(10px, 1.2vh, 14px);
}
.ab-values__desc {
  font-family: var(--font-body); font-size: 0.96rem; line-height: 1.56;
  color: var(--cream); opacity: 0.84; margin: 0;
}
@media (max-width: 1024px) {
  .ab-values__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ab-values__grid { grid-template-columns: 1fr; }
}

/* 5. HOW WE WORK TOGETHER — CORAL editorial spread (team photo + paragraph + pull-quote) */
.ab-together {
  background: var(--coral);
  color: #fff;
  padding: clamp(80px, 11vh, 144px) 0;
}
.ab-together__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.ab-together__photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  border: 4px solid #fff;
}
.ab-together__photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ab-together__body { max-width: 560px; }
.ab-together__eyebrow {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: #fff;
  margin: 0 0 clamp(14px, 2vh, 22px);
  display: inline-flex; align-items: center; gap: 14px;
}
.ab-together__eyebrow::before,
.ab-together__eyebrow::after {
  content: ''; width: 32px; height: 2px; background: #fff; flex-shrink: 0;
}
.ab-together__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.06;
  letter-spacing: -0.022em;
  color: #fff; margin: 0 0 clamp(20px, 2.6vh, 28px);
}
.ab-together__text {
  font-family: var(--font-body); font-size: clamp(1rem, 1.15vw, 1.1rem); line-height: 1.62;
  color: #fff; margin: 0 0 clamp(24px, 3vh, 32px); max-width: 58ch;
}
.ab-together__quote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.35;
  color: #fff; margin: 0;
  padding-left: clamp(16px, 2vw, 24px);
  border-left: 3px solid #fff;
  max-width: 52ch;
}
.ab-together__quote-attr {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: #fff;
  display: block; margin-top: 14px; font-style: normal;
}
@media (max-width: 900px) {
  .ab-together__inner { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 40px); }
  .ab-together__photo { max-width: 540px; margin: 0 auto; }
}

/* 7. FINAL CTA — INDIGO (cloned .po-finalcta) */
.ab-finalcta {
  background: var(--indigo); color: var(--cream);
  padding: clamp(72px, 10vh, 128px) 0;
  text-align: center;
}
.ab-finalcta .container { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.ab-finalcta__h2 {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04; letter-spacing: -0.022em;
  color: var(--cream); margin: 0 0 var(--s-6);
}
.ab-finalcta__sub {
  font-family: var(--font-body); font-size: 1.1rem; line-height: 1.55;
  color: var(--cream); opacity: 0.92; max-width: 56ch;
  margin: 0 auto var(--s-8);
}


/* ============================================================================
   INSIGHTS ARTICLE SYSTEM (.insight-*) — Phase 9 (6/2)
   Long-form editorial article template + proof-module components.
   Reused across all /insights/ article pages. Hub uses .insights-* (below).
   Palette per article: cream (hero/body/faq/asset) → CORAL bridge → cream
   (related) → INDIGO (final CTA + footer).
   ============================================================================ */

/* --- 1. HERO (cream) --- */
.insight-hero {
  background: var(--cream); color: var(--indigo);
  padding: clamp(40px, 6vh, 72px) 0 clamp(32px, 4vh, 48px);
}
.insight-hero__inner { max-width: 860px; margin: 0 auto; padding: 0 var(--gutter); }
.insight-hero__tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--coral);
  margin: 0 0 clamp(14px, 2vh, 20px);
}
.insight-hero__h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 5vw, 60px); line-height: 1.05; letter-spacing: -0.024em;
  color: var(--indigo); margin: 0 0 clamp(16px, 2.2vh, 24px);
}
.insight-hero__sub {
  font-family: var(--font-body); font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.5; color: var(--indigo); opacity: 0.86;
  margin: 0 0 clamp(24px, 3vh, 32px); max-width: 64ch;
}
.insight-hero__byline {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px;
  padding: clamp(16px, 2vh, 20px) 0 0;
  border-top: 1px solid rgba(31, 42, 68, 0.12);
}
.insight-hero__author {
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: var(--indigo);
}
.insight-hero__meta {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--indigo); opacity: 0.6;
}
.insight-hero__meta-sep { color: var(--coral); opacity: 0.6; }
.insight-hero__cover {
  margin: clamp(28px, 4vh, 44px) 0 0;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 56px rgba(31, 42, 68, 0.16);
}
.insight-hero__cover img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.insight-hero__cover--ph { aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--indigo) 0%, var(--coral) 100%); }
.insight-hero__cover--ph span { font-family: var(--font-display); font-style: italic; color: var(--cream); font-size: 1.05rem; text-align: center; padding: 24px; opacity: 0.92; }
/* Hub featured photo shares the same placeholder treatment */
.insights-featured__photo--ph { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--indigo) 0%, var(--coral) 100%); min-height: 260px; }
.insights-featured__photo--ph span { font-family: var(--font-display); font-style: italic; color: var(--cream); font-size: 1.05rem; text-align: center; padding: 24px; opacity: 0.92; }

/* --- shared article column --- */
.insight-main { background: var(--cream); color: var(--indigo); }
.insight-main__inner { max-width: 860px; margin: 0 auto; padding: clamp(36px, 5vh, 56px) var(--gutter) clamp(48px, 7vh, 80px); }

/* --- 2. IMMEDIATE-ANSWER block (TL;DR) --- */
.insight-answer {
  background: rgba(255, 107, 53, 0.06);
  border-left: 4px solid var(--coral);
  border-radius: 0 10px 10px 0;
  padding: clamp(20px, 2.6vw, 28px);
  margin: 0 0 clamp(28px, 3.6vh, 40px);
}
.insight-answer__label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral); margin: 0 0 10px;
}
.insight-answer p {
  font-family: var(--font-body); font-size: 1.05rem; line-height: 1.6;
  color: var(--indigo); margin: 0 0 10px;
}
.insight-answer p:last-child { margin-bottom: 0; }

/* --- 3. EDITORIAL FRAMING / POV line --- */
.insight-frame {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.4;
  color: var(--indigo); opacity: 0.78;
  margin: 0 0 clamp(28px, 3.6vh, 40px);
  padding-left: clamp(16px, 2vw, 22px);
  border-left: 2px solid rgba(31, 42, 68, 0.2);
}

/* --- 4. TABLE OF CONTENTS --- */
.insight-toc {
  background: #fff; border: 1px solid rgba(31, 42, 68, 0.1);
  border-radius: 10px; padding: clamp(20px, 2.4vw, 28px);
  margin: 0 0 clamp(32px, 4vh, 44px);
}
.insight-toc__label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral); margin: 0 0 14px;
}
.insight-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.insight-toc li { counter-increment: toc; margin: 0 0 8px; }
.insight-toc li:last-child { margin-bottom: 0; }
.insight-toc a {
  font-family: var(--font-body); font-size: 0.98rem; line-height: 1.4;
  color: var(--indigo); text-decoration: none; opacity: 0.86;
  display: flex; gap: 10px; transition: color 160ms ease, opacity 160ms ease;
}
.insight-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; font-weight: 700;
  color: var(--coral); flex-shrink: 0;
}
.insight-toc a:hover { color: var(--coral); opacity: 1; }

/* --- 5. BODY typography --- */
.insight-body { font-family: var(--font-body); color: var(--indigo); }
.insight-body h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); line-height: 1.12; letter-spacing: -0.02em;
  color: var(--indigo); margin: clamp(40px, 5.5vh, 64px) 0 clamp(14px, 1.8vh, 20px);
  scroll-margin-top: 90px;
}
.insight-body h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.18;
  color: var(--indigo); margin: clamp(28px, 3.5vh, 40px) 0 clamp(10px, 1.4vh, 14px);
}
.insight-body p {
  font-size: 1.07rem; line-height: 1.7; color: var(--indigo); opacity: 0.9;
  margin: 0 0 clamp(16px, 2vh, 22px);
}
.insight-body a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.insight-body a:hover { text-decoration-thickness: 2px; }
.insight-body ul, .insight-body ol { margin: 0 0 clamp(16px, 2vh, 22px); padding-left: 1.4em; }
.insight-body li { font-size: 1.07rem; line-height: 1.65; color: var(--indigo); opacity: 0.9; margin: 0 0 8px; }
.insight-body li::marker { color: var(--coral); }
.insight-body strong { font-weight: 700; color: var(--indigo); opacity: 1; }
.insight-body blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.4; color: var(--indigo);
  margin: clamp(24px, 3vh, 32px) 0; padding-left: clamp(18px, 2.4vw, 26px);
  border-left: 3px solid var(--coral);
}
.insight-body figure { margin: clamp(24px, 3vh, 36px) 0; }
.insight-body figure img { width: 100%; height: auto; display: block; border-radius: 10px; }
.insight-body figcaption {
  font-family: var(--font-body); font-size: 0.86rem; line-height: 1.45;
  color: var(--indigo); opacity: 0.62; margin: 10px 0 0; text-align: center;
}
/* per-criterion decision takeaway ("The call:") */
.insight-body .insight-call {
  font-size: 1.02rem; line-height: 1.6; color: var(--indigo); opacity: 1;
  background: rgba(255, 107, 53, 0.07);
  border-left: 3px solid var(--coral);
  border-radius: 0 6px 6px 0;
  padding: 12px 16px; margin: 0 0 clamp(20px, 2.6vh, 30px);
}
.insight-body .insight-call strong { color: var(--coral); }

/* --- 6. COMPARISON TABLE --- */
.insight-table { margin: clamp(24px, 3vh, 36px) 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.insight-table table { width: 100%; border-collapse: collapse; min-width: 520px; font-family: var(--font-body); }
.insight-table th {
  background: var(--coral); color: #fff;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  text-align: left; padding: 12px 16px; border: 1px solid rgba(255, 107, 53, 0.6);
}
.insight-table td {
  font-size: 0.98rem; line-height: 1.5; color: var(--indigo);
  padding: 12px 16px; border: 1px solid rgba(31, 42, 68, 0.12); vertical-align: top;
}
.insight-table tr:nth-child(even) td { background: rgba(31, 42, 68, 0.03); }
.insight-table td:first-child { font-weight: 700; }
/* Phones: turn each table into stacked cards so there is no horizontal scrolling.
   Each value is labeled by its column via the cell's data-label attribute. */
@media (max-width: 640px) {
  .insight-table { overflow-x: visible; }
  .insight-table table { min-width: 0; }
  .insight-table thead { display: none; }
  .insight-table tr {
    display: block;
    border: 1px solid rgba(31, 42, 68, 0.14);
    border-radius: 10px;
    margin: 0 0 14px;
    background: #fff;
    overflow: hidden;
  }
  .insight-table tr:nth-child(even) td { background: transparent; }
  .insight-table td {
    display: block;
    border: 0;
    border-top: 1px solid rgba(31, 42, 68, 0.08);
    padding: 10px 16px;
    font-size: 0.95rem;
  }
  .insight-table tr td:first-child { border-top: 0; }
  .insight-table td::before {
    content: attr(data-label);
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--coral); margin-bottom: 3px;
  }
  /* A cell with no label (rare) shouldn't render an empty label line. */
  .insight-table td:not([data-label])::before { display: none; }
}

/* --- PROOF MODULES (.insight-callout--*) --- */
.insight-callout {
  border-radius: 0 10px 10px 0;
  padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.4vw, 26px);
  margin: clamp(22px, 2.8vh, 32px) 0;
  border-left: 4px solid var(--indigo);
  background: rgba(31, 42, 68, 0.04);
}
.insight-callout__label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; margin: 0 0 10px;
}
.insight-callout__label::before { font-size: 1rem; }
.insight-callout p, .insight-callout ul, .insight-callout li {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--indigo); opacity: 0.92; margin: 0 0 8px;
}
.insight-callout p:last-child, .insight-callout li:last-child { margin-bottom: 0; }
.insight-callout ul { padding-left: 1.3em; margin-bottom: 0; }
/* mistake — amber/coral */
.insight-callout--mistake { border-left-color: #E8A33D; background: rgba(232, 163, 61, 0.08); }
.insight-callout--mistake .insight-callout__label { color: #B97A12; }
.insight-callout--mistake .insight-callout__label::before { content: '\26A0'; }
/* operator note — indigo (JAI voice) */
.insight-callout--operator { border-left-color: var(--indigo); background: rgba(31, 42, 68, 0.05); }
.insight-callout--operator .insight-callout__label { color: var(--indigo); }
.insight-callout--operator .insight-callout__label::before { content: '\25C6'; color: var(--coral); }
/* decision — coral */
.insight-callout--decision { border-left-color: var(--coral); background: rgba(255, 107, 53, 0.06); }
.insight-callout--decision .insight-callout__label { color: var(--coral); }
.insight-callout--decision .insight-callout__label::before { content: '\21B3'; }
/* questions to ask — coral */
.insight-callout--ask { border-left-color: var(--coral); background: rgba(255, 107, 53, 0.05); }
.insight-callout--ask .insight-callout__label { color: var(--coral); }
.insight-callout--ask .insight-callout__label::before { content: '\3F'; font-weight: 800; }
/* documents you need — indigo */
.insight-callout--docs { border-left-color: var(--indigo); background: rgba(31, 42, 68, 0.04); }
.insight-callout--docs .insight-callout__label { color: var(--indigo); }
.insight-callout--docs .insight-callout__label::before { content: '\1F5CE\FE0F'; }
/* red flag — red */
.insight-callout--redflag { border-left-color: #C0392B; background: rgba(192, 57, 43, 0.07); }
.insight-callout--redflag .insight-callout__label { color: #C0392B; }
.insight-callout--redflag .insight-callout__label::before { content: '\1F6A9'; }

/* --- 8. DOWNLOADABLE ASSET block --- */
.insight-asset {
  background: var(--indigo); color: var(--cream);
  border-radius: 14px; padding: clamp(26px, 3vw, 40px);
  margin: clamp(36px, 5vh, 56px) 0;
  display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2.2vw, 24px); align-items: start;
}
.insight-asset__label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral); margin: 0 0 10px;
}
.insight-asset__title {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.1; color: var(--cream); margin: 0 0 10px;
}
.insight-asset__desc { font-family: var(--font-body); font-size: 1rem; line-height: 1.55; color: var(--cream); opacity: 0.9; margin: 0; }
.insight-asset__cta { justify-self: start; white-space: nowrap; }
/* On the indigo asset card, hover the coral button to cream (not indigo) so it stays visible. */
.insight-asset .btn-coral:hover { background: var(--cream); color: var(--coral); border-color: var(--cream); }

/* --- 9. FAQ (clone of .fp-faq) --- */
.insight-faq { background: var(--cream); color: var(--indigo); padding: clamp(48px, 7vh, 80px) 0; border-top: 1px solid rgba(31, 42, 68, 0.06); }
.insight-faq__inner { max-width: 860px; margin: 0 auto; padding: 0 var(--gutter); }
.insight-faq__h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 4vw, 44px); line-height: 1.06; letter-spacing: -0.022em; color: var(--indigo); margin: 0 0 clamp(28px, 4vh, 40px); }
.insight-faq__item { border-top: 1px solid rgba(31, 42, 68, 0.12); padding: clamp(18px, 2.2vw, 24px) 0; }
.insight-faq__item:last-child { border-bottom: 1px solid rgba(31, 42, 68, 0.12); }
.insight-faq__item summary {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.2; letter-spacing: -0.018em;
  color: var(--indigo); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.insight-faq__item summary::-webkit-details-marker { display: none; }
.insight-faq__item summary::after { content: '+'; font-family: var(--font-body); font-weight: 700; font-size: 1.6rem; color: var(--coral); line-height: 1; transition: transform 240ms ease; }
.insight-faq__item[open] summary::after { transform: rotate(45deg); }
.insight-faq__a { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--indigo); opacity: 0.88; margin: 14px 0 0; max-width: 70ch; }
.insight-faq__a a { color: var(--coral); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* --- 10. "HOW JAI HELPS" BRIDGE (coral mini-band) --- */
.insight-bridge { background: var(--coral); color: #fff; padding: clamp(48px, 7vh, 88px) 0; }
.insight-bridge__inner { max-width: 860px; margin: 0 auto; padding: 0 var(--gutter); }
.insight-bridge__label { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; opacity: 0.85; margin: 0 0 12px; }
.insight-bridge__h2 { font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.08; color: #fff; margin: 0 0 16px; }
.insight-bridge__text { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.6; color: #fff; opacity: 0.95; margin: 0 0 24px; }
.insight-bridge__text strong { font-weight: 800; }
.insight-bridge .btn { background: var(--indigo); color: var(--cream); border-color: var(--indigo); }
.insight-bridge .btn:hover { background: var(--cream); color: var(--coral); border-color: var(--cream); }

/* --- 11. RELATED ARTICLES --- */
.insight-related { background: var(--cream); color: var(--indigo); padding: clamp(48px, 7vh, 80px) 0; border-top: 1px solid rgba(31, 42, 68, 0.06); }
.insight-related__inner { max-width: 860px; margin: 0 auto; padding: 0 var(--gutter); }
.insight-related__label { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral); margin: 0 0 clamp(20px, 2.6vh, 28px); }
.insight-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.insight-related__card {
  display: flex; flex-direction: column; gap: 8px;
  background: #fff; border: 1px solid rgba(31, 42, 68, 0.1); border-radius: 10px;
  padding: clamp(20px, 2.2vw, 26px); text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.insight-related__card:hover { transform: translateY(-3px); border-color: rgba(255, 107, 53, 0.4); box-shadow: 0 16px 32px -12px rgba(31, 42, 68, 0.18); }
.insight-related__tag { font-family: 'JetBrains Mono', monospace; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral); }
.insight-related__title { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; line-height: 1.2; color: var(--indigo); min-height: 2.4em; }
.insight-related__arrow { font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; color: var(--coral); margin-top: auto; }
@media (max-width: 860px) { .insight-related__grid { grid-template-columns: 1fr; } }

/* --- 12. FINAL CTA (clone .ab-finalcta) --- */
.insight-finalcta { background: var(--indigo); color: var(--cream); padding: clamp(64px, 9vh, 112px) 0; text-align: center; }
.insight-finalcta__inner { max-width: 860px; margin: 0 auto; padding: 0 var(--gutter); }
.insight-finalcta__h2 { font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: clamp(30px, 4.4vw, 54px); line-height: 1.06; letter-spacing: -0.022em; color: var(--cream); margin: 0 0 18px; }
.insight-finalcta__sub { font-family: var(--font-body); font-size: 1.08rem; line-height: 1.55; color: var(--cream); opacity: 0.92; max-width: 54ch; margin: 0 auto 28px; }
.insight-finalcta__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.insight-finalcta .btn-coral:hover { background: var(--cream); color: var(--coral); border-color: var(--cream); }
.insight-finalcta__secondary { display: inline-flex; align-items: center; font-family: var(--font-body); font-weight: 700; font-size: 0.98rem; color: var(--cream); text-decoration: underline; text-underline-offset: 3px; opacity: 0.9; }
.insight-finalcta__secondary:hover { color: var(--coral); opacity: 1; }

/* --- 13. CITATIONS --- */
.insight-citations { max-width: 860px; margin: 0 auto; padding: clamp(32px, 4vh, 48px) var(--gutter); background: var(--cream); }
.insight-citations__label { font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--indigo); opacity: 0.6; margin: 0 0 14px; }
.insight-citations ol { margin: 0; padding-left: 1.4em; }
.insight-citations li { font-family: var(--font-body); font-size: 0.86rem; line-height: 1.5; color: var(--indigo); opacity: 0.7; margin: 0 0 8px; }
.insight-citations a { color: var(--coral); text-decoration: underline; word-break: break-word; }

/* ============================================================================
   INSIGHTS HUB (.insights-*) — /insights.html catalog page
   ============================================================================ */
.insights-hero { background: var(--cream); color: var(--indigo); padding: clamp(24px, 4vh, 52px) 0 clamp(32px, 4vh, 48px); }
.insights-hero__inner { max-width: 1100px; margin: 0 auto; padding: 0 var(--gutter); }
.insights-hero__eyebrow { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--indigo); margin: 0 0 24px; display: inline-flex; align-items: center; gap: 14px; }
.insights-hero__eyebrow::before,
.insights-hero__eyebrow::after { content: ''; width: 32px; height: 2px; background: var(--coral); flex-shrink: 0; }
@media (max-width: 800px) {
  .insights-hero__eyebrow, .ab-hero__eyebrow { font-size: 0.72rem; gap: 10px; letter-spacing: 0.26em; }
  .insights-hero__eyebrow::before, .insights-hero__eyebrow::after,
  .ab-hero__eyebrow::before, .ab-hero__eyebrow::after { width: 22px; }
}
.insights-hero__h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(38px, 5.4vw, 72px); line-height: 1.03; letter-spacing: -0.026em; color: var(--indigo); margin: 0 0 18px; max-width: 16ch; }
.insights-hero__sub { font-family: var(--font-body); font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.55; color: var(--indigo); opacity: 0.86; max-width: 60ch; margin: 0; }
.insights-section { background: var(--cream); color: var(--indigo); padding: 0 0 clamp(56px, 8vh, 96px); }
.insights-section__inner { max-width: 1100px; margin: 0 auto; padding: 0 var(--gutter); }
.insights-featured { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 4vw, 56px); align-items: center; background: #fff; border: 1px solid rgba(31, 42, 68, 0.1); border-radius: 14px; overflow: hidden; margin: 0 0 clamp(40px, 6vh, 64px); }
.insights-featured__photo { height: 100%; }
.insights-featured__photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16 / 11; }
.insights-featured__body { padding: clamp(28px, 3.5vw, 48px) clamp(28px, 3.5vw, 48px) clamp(28px, 3.5vw, 48px) 0; }
.insights-featured__tag { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral); margin: 0 0 12px; }
.insights-featured__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 2.8vw, 2.4rem); line-height: 1.08; letter-spacing: -0.02em; color: var(--indigo); margin: 0 0 14px; }
.insights-featured__lede { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.55; color: var(--indigo); opacity: 0.86; margin: 0 0 20px; }
@media (max-width: 820px) { .insights-featured { grid-template-columns: 1fr; } .insights-featured__photo img { aspect-ratio: 16 / 9; } .insights-featured__body { padding: clamp(24px, 5vw, 32px); } }
.insights-grid__label { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral); margin: 0 0 clamp(20px, 2.6vh, 28px); }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 28px); }
.insights-card { display: flex; flex-direction: column; gap: 10px; background: #fff; border: 1px solid rgba(31, 42, 68, 0.1); border-radius: 12px; padding: clamp(22px, 2.4vw, 30px); text-decoration: none; transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
.insights-card:hover { transform: translateY(-4px); border-color: rgba(255, 107, 53, 0.4); box-shadow: 0 18px 36px -14px rgba(31, 42, 68, 0.2); }
.insights-card__tag { font-family: 'JetBrains Mono', monospace; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral); }
.insights-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; line-height: 1.18; color: var(--indigo); }
.insights-card__lede { font-family: var(--font-body); font-size: 0.96rem; line-height: 1.5; color: var(--indigo); opacity: 0.82; flex: 1; }
.insights-card__meta { font-family: 'JetBrains Mono', monospace; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--indigo); opacity: 0.55; margin-top: auto; }
@media (max-width: 860px) { .insights-grid { grid-template-columns: 1fr; } }
.insights-coming { margin: clamp(36px, 5vh, 56px) 0 0; padding: clamp(24px, 3vw, 32px); border: 1px dashed rgba(31, 42, 68, 0.25); border-radius: 12px; }
.insights-coming__label { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--indigo); opacity: 0.6; margin: 0 0 14px; }
.insights-coming ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.insights-coming li { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.15rem; color: var(--indigo); opacity: 0.7; }
.insights-coming li span { font-family: 'JetBrains Mono', monospace; font-style: normal; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); margin-left: 10px; }

/* ---------------------------------------------------------------------------
   Touch devices (no true hover): stop hover states from swallowing the first tap.
   On phones/tablets, iOS treats the first tap as a hover (showing the card lift /
   reveal / arrow slide) and only follows the link on the SECOND tap. These resets
   apply ONLY where there is no real pointer, so desktop hover is unchanged. We
   reset transform/reveal (whose resting value is none), so :hover matches the base
   state and the link activates on the first tap. The carousel cards are excluded
   on purpose — they scale via JS classes, not :hover.
   --------------------------------------------------------------------------- */
@media (hover: none) {
  .card:hover,
  .fp-case__card:hover, .po-case__card:hover,
  .fp-addons__card:hover, .po-addons__card:hover,
  .insights-card:hover, .insights-featured:hover,
  .insight-related__card:hover, .inb__card:hover,
  .csa__hero:hover, .csa__side-card:hover,
  .htools__card:hover, .ab-team__card:hover {
    transform: none !important;
  }
  .ab-team__card:hover::before { opacity: 0 !important; }
  .text-link:hover::after,
  .site-nav__cta:hover::after,
  .hw11__ctas .btn:hover::after,
  .csa__hero:hover .csa__hero-cta::after,
  .csa__side-card:hover .csa__side-cta::after,
  .inb__card:hover .inb__card-cta::after,
  .htools__card:hover .htools__meta::after {
    transform: none !important;
  }
  /* Nav menu-link underline animates in on hover (scaleX 0 -> 1). Keep it collapsed
     on touch so the first tap on a menu link isn't swallowed by the reveal. */
  .site-nav__menu a:hover::after { transform: scaleX(0) !important; }
}
