/* ══════════════════════════════════════════════════════════
   8i Studio — styles.css
   Colour tokens are at the top for easy reskinning
   ══════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────
   COLOUR TOKENS
────────────────────────────────────────────── */
:root {
  --cream:          #F5F0E6;
  --cream-soft:     #FBF7EE;
  --cream-warm:     #EDE6D6;
  --ink:            #1A1814;
  --ink-soft:       #3A352E;
  --ink-mute:       #6E665B;
  --line:           #D9D2C2;
  --lavender:       #7B6FA8;
  --lavender-deep:  #5D4E8C;
  --lavender-darker:#44386E;
  --lavender-soft:  #E8E1F0;
  --lavender-mist:  #F1ECF6;

  /* Typography */
  --font-serif: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-logo:  'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --container:  1240px;
  --pad-x:      clamp(20px, 4vw, 56px);
  --section-y:  clamp(60px, 7vw, 96px);
  --nav-h:      72px;

  /* Easing */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);

  /* Radius */
  --r-card:     28px;
  --r-btn:      999px;
}

/* ──────────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink-soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ──────────────────────────────────────────────
   TYPOGRAPHY SCALE
────────────────────────────────────────────── */
h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h3 {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
}
p { color: var(--ink-soft); line-height: 1.65; }

em.accent {
  font-style: italic;
  color: var(--lavender-deep);
}

.lead {
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ──────────────────────────────────────────────
   LAYOUT
────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--section-y) 0;
}

.section--soft   { background: var(--cream-soft); }
.section--mist   { background: var(--lavender-mist); }
.section--ink    { background: var(--ink); }
.section--warm   { background: var(--cream-warm); }

/* ──────────────────────────────────────────────
   EYEBROW
────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}
.eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--lavender);
  transition: width 0.4s var(--ease);
}
.section-header:hover .eyebrow::after { width: 40px; }

/* ──────────────────────────────────────────────
   BUTTONS
────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
}
.nav-cta .btn,
.nav-cta {
  border-radius: var(--r-btn);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 3px solid var(--lavender); outline-offset: 3px; }

.btn-primary {
  background: var(--lavender-deep);
  color: var(--cream);
  border-color: var(--lavender-deep);
  box-shadow: 0 4px 20px rgba(93, 78, 140, 0.25);
}
.btn-primary:hover {
  background: var(--lavender-darker);
  border-color: var(--lavender-darker);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(93, 78, 140, 0.35);
}
.btn-primary:active {
  transform: translateY(0);
  background: var(--lavender-darker);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--lavender-deep);
  color: var(--lavender-deep);
}

.btn-ghost--cream {
  color: var(--cream);
  border-color: rgba(245,240,230,0.3);
}
.btn-ghost--cream:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 36px;
}

/* ──────────────────────────────────────────────
   NAV
────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(245, 240, 230, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(26,24,20,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 144px;
  width: auto;
  display: block;
  margin: -36px 0;
}
.logo-img--cream { display: none; }
.logo-img--dark  { display: block; }
.footer .logo-img {
  height: 128px;
  margin: -32px 0;
  opacity: 0.90;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--lavender-deep); background: var(--lavender-mist); }
.nav-links a.is-active { color: var(--lavender-deep); }
.nav-links a:focus-visible { outline: 2px solid var(--lavender); outline-offset: 2px; }

.nav-cta {
  margin-left: 16px;
}

/* Hamburger */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
  background: none;
  border: none;
}
.nav-menu-btn:hover { background: var(--lavender-mist); }
.nav-menu-btn:focus-visible { outline: 2px solid var(--lavender); }
.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-menu-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-btn.is-active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(52px, 6vw, 88px) 0 clamp(48px, 5vw, 72px);
  max-width: 840px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  background: var(--lavender-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 32px;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 0.96;
}

.hero .lead {
  max-width: 540px;
  font-size: clamp(14px, 1.1vw, 15px);
}

/* Floating decorative cubes */
.hero-cubes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-cube {
  position: absolute;
  color: var(--lavender);
  animation: float 8s ease-in-out infinite;
}
.hero-cube:nth-child(1) { width: 80px; top: 12%; right: 8%; opacity: 0.18; animation-delay: 0s; }
.hero-cube:nth-child(2) { width: 52px; top: 55%; right: 20%; opacity: 0.12; animation-delay: -3s; }
.hero-cube:nth-child(3) { width: 40px; top: 30%; right: 35%; opacity: 0.09; animation-delay: -5.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(5deg); }
  66%       { transform: translateY(-8px) rotate(-3deg); }
}

/* ──────────────────────────────────────────────
   MARQUEE STRIP
────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(26,24,20,0.08);
  border-bottom: 1px solid rgba(26,24,20,0.08);
  background: var(--cream-warm);
  padding: 24px 0;
  transition: transform 0.6s var(--ease);
}
.marquee-wrap:hover {
  transform: skewY(-1.5deg);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 80s linear infinite;
}
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  padding: 0 20px;
}
.marquee-star {
  color: var(--lavender);
  padding: 0 8px;
  font-style: normal;
  font-size: clamp(11px, 1.2vw, 16px);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────
   SECTION HEADER
────────────────────────────────────────────── */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px 60px;
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-header.full-width {
  grid-template-columns: 1fr;
  max-width: 680px;
}
.section-header .header-lead { margin-top: 8px; }

/* ──────────────────────────────────────────────
   CARDS
────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards-grid--two { grid-template-columns: repeat(2, 1fr); }
.cards-grid--four { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--cream-soft);
  border: 1px solid rgba(26,24,20,0.08);
  border-radius: 18px;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-height: 340px;
  transition:
    background 0.45s var(--ease),
    color 0.45s var(--ease),
    border-color 0.45s var(--ease),
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.card-num {
  position: absolute;
  top: 18px;
  left: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 86px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(26,24,20,0.07);
  pointer-events: none;
  transition: color 0.45s var(--ease);
  z-index: 0;
}

.card-head {
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.card h3 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  transition: color 0.45s var(--ease);
}
.card p { font-size: 14px; line-height: 1.6; margin: 0 0 14px; }

.card-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.card-list li::before {
  content: '—';
  color: var(--lavender-deep);
  flex-shrink: 0;
  transition: color 0.45s var(--ease);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lavender-deep);
  transition: color 0.45s var(--ease), gap 0.3s var(--ease);
}

/* Hover-reveal collapsed content */
.card-reveal {
  position: relative;
  z-index: 1;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition:
    max-height 0.5s var(--ease),
    opacity 0.35s var(--ease),
    margin-top 0.35s var(--ease);
}
.card--hover:hover .card-reveal,
.card--hover:focus-visible .card-reveal {
  max-height: 360px;
  opacity: 1;
  margin-top: 16px;
}

/* Background flip on hover */
.card--hover:hover,
.card--hover:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26,24,20,0.18);
}
.card--hover:hover .card-num,
.card--hover:focus-visible .card-num {
  color: rgba(245,240,230,0.10);
}
.card--hover:hover h3,
.card--hover:focus-visible h3 {
  color: var(--cream);
}
.card--hover:hover p,
.card--hover:focus-visible p {
  color: rgba(245,240,230,0.75);
}
.card--hover:hover .card-list,
.card--hover:focus-visible .card-list {
  color: rgba(245,240,230,0.65);
}
.card--hover:hover .card-list li::before,
.card--hover:focus-visible .card-list li::before {
  color: var(--lavender, #B7ABDC);
}
.card--hover:hover .card-link,
.card--hover:focus-visible .card-link {
  color: var(--lavender, #B7ABDC);
}
.card--hover:hover .card-link { gap: 10px; }

@media (max-width: 1100px) {
  .cards-grid--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cards-grid--four { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card-reveal { max-height: none; opacity: 1; margin-top: 16px; overflow: visible; }
}

/* ──────────────────────────────────────────────
   SERVICE ROW (horizontal one-line tiles)
────────────────────────────────────────────── */
.svc-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}
.svc-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  margin: 0;
}
.svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(26,24,20,0.25);
  border-radius: 999px;
  padding: 5px 11px;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.svc-pill:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 4px 10px;
  border-bottom: 2px solid var(--lavender-deep);
  text-decoration: none;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.svc-link:hover { gap: 12px; color: var(--lavender-deep); }
.svc-link .arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.svc-link:hover .arrow { transform: translateX(2px); }

@media (max-width: 900px) {
  .svc-row { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
}
@media (max-width: 520px) {
  .svc-row { grid-template-columns: 1fr; row-gap: 36px; }
}

/* Tag */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  background: var(--lavender-mist);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* ──────────────────────────────────────────────
   PROCESS LIST (numbered steps)
────────────────────────────────────────────── */
.process-list {
  display: flex;
  flex-direction: column;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
  cursor: default;
}
.process-step:first-child { border-top: 1px solid var(--line); }
.process-step:hover { padding-left: 12px; }

.process-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--lavender);
  opacity: 0.22;
  line-height: 1;
  padding-top: 0;
  letter-spacing: -0.04em;
}
.process-body h3 { margin-bottom: 8px; font-size: 18px; }
.process-body p { font-size: 15px; color: var(--ink-mute); }

/* ──────────────────────────────────────────────
   PULL QUOTE
────────────────────────────────────────────── */
.pull-quote-wrap {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 40px;
  align-items: start;
  padding: var(--section-y) 0;
}
.pull-quote-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 8px;
}
.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 72;
}
.pull-quote em {
  font-style: italic;
  color: var(--lavender-deep);
}

/* ──────────────────────────────────────────────
   STATS TRIO
────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
  margin-top: 48px;
}
.stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: var(--lavender-deep);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ──────────────────────────────────────────────
   WORKSHOP TIER CARDS
────────────────────────────────────────────── */
.workshop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.workshop-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.workshop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,24,20,0.09);
}
.workshop-card .ws-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender);
}
.workshop-card h3 { font-size: 20px; }
.workshop-card .ws-duration {
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
}
.workshop-card .ws-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-mute);
}
.workshop-card .ws-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.workshop-card .ws-list li::before {
  content: '→';
  color: var(--lavender);
  flex-shrink: 0;
}
.workshop-card .ws-cta { margin-top: auto; padding-top: 8px; }

/* Featured / dark workshop card */
.workshop-card--featured {
  background: var(--ink);
  border-color: transparent;
  color: var(--cream-soft);
  box-shadow: 0 8px 32px rgba(26,24,20,0.2);
}
.workshop-card--featured .ws-tag { color: var(--lavender-soft); }
.workshop-card--featured h3 { color: var(--cream); }
.workshop-card--featured .ws-duration { color: rgba(245,240,230,0.5); }
.workshop-card--featured .ws-list { color: rgba(245,240,230,0.65); }
.workshop-card--featured .ws-list li::before { color: var(--lavender-soft); }
.workshop-card--featured .ws-cta .btn-primary { box-shadow: 0 4px 20px rgba(93,78,140,0.5); }

.ws-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lavender-soft);
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: -4px;
}

/* ──────────────────────────────────────────────
   FAQ
────────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item details { padding: 0; }
.faq-item details[open] summary { padding-bottom: 0; }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink);
  font-variation-settings: "opsz" 36;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--lavender-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--lavender); outline-offset: 2px; border-radius: 4px; }
.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--lavender-deep);
  transition: transform 0.3s var(--ease), background 0.2s;
  font-style: normal;
  line-height: 1;
}
details[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--lavender-mist);
}
.faq-body {
  padding: 0 0 24px 0;
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.7;
  max-width: 640px;
}

/* ──────────────────────────────────────────────
   CONTACT FORM
────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.form-label .req { color: var(--lavender); }

.form-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--lavender);
  box-shadow: 0 0 0 4px var(--lavender-mist);
}
.form-input.field-error { border-color: #c0392b; }
textarea.form-input { resize: vertical; min-height: 120px; }

.form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.form-status.is-success { display: block; color: #2d7a4f; }
.form-status.is-error   { display: block; color: #c0392b; }

/* ──────────────────────────────────────────────
   CTA BANNER
────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  border-radius: 28px;
  padding: clamp(48px, 6vw, 80px) clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,111,168,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 680px; }
.cta-banner h2 {
  color: var(--cream);
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 16px;
}
.cta-banner h2 em {
  font-style: italic;
  color: var(--lavender-soft);
}
.cta-banner p { color: rgba(245,240,230,0.7); font-size: 17px; }
.cta-banner .cta-group { margin-top: 32px; }

/* Section wrapper for CTA — extra breathing room so the banner sits
   visually centred between the section above and the one below. */
.cta-section { padding: clamp(96px, 11vw, 160px) 0; }

/* ──────────────────────────────────────────────
   PAGE HEADER
────────────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + clamp(60px, 8vw, 120px)) 0 clamp(60px, 7vw, 100px);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: 20px; }
.page-header h1 { margin-bottom: 24px; }
.page-header .lead { max-width: 600px; }

/* ──────────────────────────────────────────────
   INSIGHTS / BLOG STRIP (dark, above footer)
────────────────────────────────────────────── */
.insights-section {
  background: var(--ink);
  padding: clamp(64px, 8vw, 100px) 0 clamp(56px, 7vw, 88px);
}
.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(36px, 5vw, 56px);
  flex-wrap: wrap;
}
.insights-header .eyebrow {
  color: rgba(245,240,230,0.45);
  margin-bottom: 10px;
}
.insights-header h2 {
  color: var(--cream);
  margin: 0;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.insight-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease);
  position: relative;
}
.insight-card:hover { transform: translateY(-4px); }
.insight-card-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(245,240,230,0.05);
}
.insight-card-cover {
  position: absolute;
  inset: 0;
}
.insight-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.insight-card:hover .insight-card-cover img { transform: scale(1.04); }
.insight-card-cover--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}
.insight-card-cover-mark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: rgba(245,240,230,0.85);
  letter-spacing: -0.04em;
}
.insight-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  color: #fff;
  background: var(--lavender-deep);
  border-radius: 999px;
  padding: 5px 12px;
  box-shadow: 0 2px 6px rgba(26,24,20,0.20);
  z-index: 1;
}
.insight-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.insight-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 700;
  color: var(--cream);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.insight-card-meta {
  font-size: 12px;
  color: rgba(245,240,230,0.45);
  margin: 0;
}
.insight-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--lavender, #B7ABDC);
  margin-top: auto;
  letter-spacing: 0.01em;
}
.insight-card:hover .insight-read-more { color: var(--cream); }
.insight-card-skeleton {
  background: rgba(245,240,230,0.04);
  border-radius: 14px;
  aspect-ratio: 4 / 3;
}
@media (max-width: 900px) { .insights-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .insights-grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .insights-header { flex-direction: column; align-items: flex-start; } }

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream-soft);
  padding: clamp(48px, 6vw, 80px) 0 0;
  border-top: 1px solid rgba(245,240,230,0.06);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px 52px;
}
.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-brand .logo .cube { color: var(--lavender-soft); }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(245,240,230,0.55);
  line-height: 1.55;
  font-variation-settings: "opsz" 36;
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(245,240,230,0.07);
  border: 1px solid rgba(245,240,230,0.1);
  color: rgba(245,240,230,0.55);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social-link:hover {
  background: rgba(123,111,168,0.2);
  border-color: rgba(123,111,168,0.3);
  color: var(--cream);
}
.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.35);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(245,240,230,0.6);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0;
}
.footer-links a:hover { color: var(--cream); }
.footer-links a:focus-visible { outline: 2px solid var(--lavender-soft); outline-offset: 2px; border-radius: 2px; }
.footer-address { font-style: normal; }
.footer-address p {
  font-size: 14px;
  color: rgba(245,240,230,0.55);
  line-height: 1.75;
}
.footer-address a {
  color: var(--lavender-soft, #9B90CC);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-address a:hover { color: var(--cream); }

.footer-bar {
  border-top: 1px solid rgba(245,240,230,0.07);
  margin-top: 60px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bar p {
  font-size: 12px;
  color: rgba(245,240,230,0.3);
}

/* ──────────────────────────────────────────────
   DIVIDER
────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: clamp(64px, 8vw, 100px) 0;
}

/* ──────────────────────────────────────────────
   SPLIT SECTIONS
────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.split--flipped { grid-template-columns: 1.4fr 1fr; }
.split--narrow  { grid-template-columns: 1fr 1.6fr; }

/* ──────────────────────────────────────────────
   PRINCIPLES / SIX CARDS
────────────────────────────────────────────── */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ──────────────────────────────────────────────
   HOW WE TAILOR
────────────────────────────────────────────── */
.tailor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ──────────────────────────────────────────────
   CONTACT PAGE SPECIFICS
────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-divider {
  display: block;
  width: 1px;
  background: var(--line);
  align-self: stretch;
}

/* ──────────────────────────────────────────────
   REVEAL ANIMATION
────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ──────────────────────────────────────────────
   REDUCED MOTION
────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
}

/* ──────────────────────────────────────────────
   RESPONSIVE — TABLET (< 1024px)
────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--two { grid-template-columns: 1fr; }
  .workshop-cards { grid-template-columns: 1fr; max-width: 540px; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .tailor-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .section-header { grid-template-columns: 1fr; gap: 16px; }
  .split, .split--flipped, .split--narrow { grid-template-columns: 1fr; gap: 40px; }
  .pull-quote-wrap { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ──────────────────────────────────────────────
   RESPONSIVE — MOBILE NAV (< 860px)
────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-menu-btn { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: calc(var(--nav-h) + 12px) var(--pad-x) 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    opacity: 0;
    pointer-events: none;
    z-index: 99;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 17px; padding: 10px 0; width: 100%; }
  .nav-cta { margin-left: 0; margin-top: 12px; }
}

/* ──────────────────────────────────────────────
   RESPONSIVE — MOBILE (< 640px)
────────────────────────────────────────────── */
@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; border-top: none; gap: 32px; }
  .stat-num { font-size: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 28px; border-radius: 20px; }
  .hero-cube { display: none; }
  .principles-grid { grid-template-columns: 1fr; }
  .tailor-grid { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ══════════════════════════════════════════════════════════
   FORAI-GRADE UPGRADE — new components & overrides
   ══════════════════════════════════════════════════════════ */

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--lavender);
  z-index: 9998;
  pointer-events: none;
  transform-origin: left center;
}

/* ── Custom cursor ── */
#cursor-dot,
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}
#cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--lavender);
}
#cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--lavender);
  opacity: 0.85;
}
@media (max-width: 1023px), (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
}

/* ── Word mask reveal ── */
.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}
.word-inner {
  display: inline-block;
  line-height: inherit;
}
/* word spans sit inline with natural whitespace between them */

/* ── Hero stat line ── */
.hero-statline {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(26,24,20,0.1);
}

/* ── Hero layout — full-stage H1 ── */
.hero-inner {
  max-width: 1060px;
}
.hero h1 {
  margin-bottom: 0;
}
.hero-lower {
  margin-top: 52px;
  max-width: 600px;
}

/* ── Section index label ── */
.section-index {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  opacity: 0.7;
  margin-bottom: 24px;
}

/* ── Process step layout with big number ── */
.process-step {
  align-items: start;
}
.process-num {
  padding-top: 8px;
}

/* ── Card number — huge background element ── */
.card-num {
  font-size: clamp(56px, 7vw, 110px);
  font-style: italic;
  font-weight: 800;
  color: var(--lavender);
  opacity: 0.12;
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: -16px;
  margin-top: -8px;
  display: block;
  pointer-events: none;
  user-select: none;
}
.card-dark .card-num {
  opacity: 0.1;
  color: var(--lavender-soft);
}

/* ── Workshop cards border ── */
.workshop-card {
  border-color: rgba(26,24,20,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 1px 2px rgba(26,24,20,0.04);
}

/* ── Focus states ── */
:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ── Footer wordmark ── */
.footer-wordmark {
  font-family: var(--font-logo);
  font-size: clamp(72px, 14vw, 220px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: rgba(245,240,230,0.07);
  margin-bottom: 0;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245,240,230,0.08);
  overflow: hidden;
  white-space: nowrap;
}

/* ── Tighten footer grid top spacing ── */
.footer-grid {
  padding-top: 48px;
}

/* ── Small caps footer links ── */
.footer-links a,
.footer-heading {
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ── Subtle cool borders globally ── */
.stats-grid,
.process-step,
.faq-item {
  border-color: rgba(26,24,20,0.08);
}
.process-step:first-child { border-top-color: rgba(26,24,20,0.08); }

/* ── Hero eyebrow — stays rounded pill ── */
.hero-eyebrow {
  border-radius: 999px;
}

/* ── Marquee — ensure no layout shift on skew ── */
.marquee-wrap {
  backface-visibility: hidden;
  transform-origin: center center;
}

/* Prevent clip-path animation flicker in Safari */
.reveal { -webkit-transform: translateZ(0); }

/* ═══════════════════════════════════════════════════════
   HERO REPORT CARD (replaces photo)
   ═══════════════════════════════════════════════════════ */
.hero-report-card {
  background: var(--ink) !important;
  aspect-ratio: auto !important;
  padding: clamp(16px, 1.6vw, 24px);
  color: var(--cream);
}
.hrc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.hrc-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.38);
  margin-bottom: 5px;
}
.hrc-score {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.hrc-denom {
  font-size: 40%;
  font-weight: 600;
  color: rgba(245,240,230,0.28);
  letter-spacing: 0;
}
.hrc-badge {
  background: rgba(123,111,168,0.18);
  color: var(--lavender);
  border: 1px solid rgba(123,111,168,0.28);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 4px;
}
.hrc-bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}
.hrc-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hrc-label {
  font-size: 10px;
  color: rgba(245,240,230,0.42);
  width: 52px;
  flex-shrink: 0;
  font-weight: 500;
}
.hrc-track {
  flex: 1;
  height: 4px;
  background: rgba(245,240,230,0.07);
  border-radius: 99px;
  overflow: hidden;
}
.hrc-fill {
  height: 100%;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--lavender) 0%, #B4A8DC 100%);
  border-radius: 99px;
}
.hrc-pct {
  font-size: 10px;
  font-weight: 700;
  color: rgba(245,240,230,0.32);
  width: 20px;
  text-align: right;
  flex-shrink: 0;
}
.hrc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(245,240,230,0.07);
  font-size: 9px;
  color: rgba(245,240,230,0.25);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hrc-conf {
  color: rgba(245,240,230,0.15);
}

/* ═══════════════════════════════════════════════════════
   BENTO CHART CARD
   ═══════════════════════════════════════════════════════ */
.bento-card--chart {
  background: var(--ink);
  border-color: transparent;
  padding: clamp(28px, 3.2vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 0;
  aspect-ratio: auto;
}
.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: clamp(24px, 2.8vw, 40px);
}
.chart-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.38);
  margin-bottom: 8px;
}
.chart-title {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0;
}
.chart-total-wrap {
  text-align: right;
  flex-shrink: 0;
}
.chart-total-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.chart-total-label {
  display: block;
  font-size: 11px;
  color: rgba(245,240,230,0.38);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 3px;
}
.chart-bars {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 16px);
  flex: 1;
}
.chart-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cb-label {
  font-size: clamp(11px, 1vw, 13px);
  color: rgba(245,240,230,0.5);
  font-weight: 500;
  width: clamp(88px, 8vw, 112px);
  flex-shrink: 0;
}
.cb-track {
  flex: 1;
  height: 6px;
  background: rgba(245,240,230,0.07);
  border-radius: 99px;
  overflow: hidden;
}
.cb-fill {
  height: 100%;
  width: var(--cw, 50%);
  background: linear-gradient(90deg, var(--lavender-deep) 0%, var(--lavender) 100%);
  border-radius: 99px;
}
.cb-fill--accent {
  background: linear-gradient(90deg, #5D4E8C 0%, #A898D4 100%);
}
.cb-val {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  color: rgba(245,240,230,0.55);
  width: 34px;
  text-align: right;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.chart-footer {
  margin-top: clamp(16px, 2vw, 24px);
  padding-top: 14px;
  border-top: 1px solid rgba(245,240,230,0.07);
}
.chart-footer-note {
  font-size: 12px;
  color: rgba(245,240,230,0.32);
  font-weight: 500;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   HERO FLOATING PHOTO CARD
   ═══════════════════════════════════════════════════════ */
.hero-photo-float {
  display: none;
  position: absolute;
  right: clamp(32px, 5vw, 72px);
  top: 50%;
  transform: translateY(-40%);
  z-index: 4;
  pointer-events: none;
}
@media (min-width: 1220px) {
  .hero-photo-float { display: block; }
  .hero-inner { padding-right: clamp(260px, 20vw, 360px); }
}
.hero-photo-main {
  position: relative;
  width: clamp(200px, 16vw, 272px);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(148deg, #C8BFD8 0%, #AFA2C8 55%, #9B8DBB 100%);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.7) inset,
    0 20px 56px rgba(26,24,20,0.18),
    0 0 0 1px rgba(26,24,20,0.07);
}
.hero-photo-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.hero-photo-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(245,240,230,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-photo-accent {
  position: absolute;
  top: -20px;
  left: -44px;
  background: var(--ink);
  border-radius: 16px;
  padding: 16px 20px 14px;
  box-shadow: 0 8px 28px rgba(26,24,20,0.22), 0 0 0 1px rgba(255,255,255,0.06) inset;
  min-width: 108px;
}
.hero-photo-accent-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.hero-photo-accent-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.5);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   BENTO VISUAL SECTION
   ═══════════════════════════════════════════════════════ */
.bento-section {
  padding: var(--section-y) 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 820px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--photo { aspect-ratio: 16/9; }
}
.bento-card {
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(26,24,20,0.07);
}
.bento-card--photo {
  aspect-ratio: 3/2.2;
  background: linear-gradient(148deg, #BEB5CE 0%, #A8A0C0 50%, #928AB0 100%);
}
.bento-card--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
.bento-card--photo:hover img {
  transform: scale(1.035);
}
.bento-photo-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(245,240,230,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(26,24,20,0.05);
}
.bento-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bento-card--dark {
  background: var(--ink);
  border-color: transparent;
  padding: clamp(24px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.bento-metric-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  line-height: 1;
  margin-bottom: 12px;
}
.bento-big-num {
  font-family: var(--font-serif);
  font-size: clamp(68px, 9vw, 118px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--cream);
  line-height: 0.9;
}
.bento-big-unit {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  color: var(--lavender);
  letter-spacing: -0.03em;
  padding-bottom: 6px;
  line-height: 1.2;
}
.bento-metric-desc {
  font-size: 14px;
  color: rgba(245,240,230,0.48);
  line-height: 1.6;
  max-width: 28ch;
}
.bento-card--mist {
  background: var(--lavender-mist);
  border-color: rgba(123,111,168,0.1);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bento-card--mist h3 {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.bento-card--mist p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 32ch;
}

/* ── RESULTS / CASE STUDIES ────────────────────────── */
.results-section {
  background: var(--ink);
  padding: var(--section-y) 0;
}
.results-section .section-header h2 { color: var(--cream); }
.results-section .eyebrow { color: rgba(123,111,168,0.9); }
.results-section .header-lead p { color: rgba(245,240,230,0.45); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(28px, 3.5vw, 44px);
}
.result-card {
  background: rgba(245,240,230,0.035);
  border: 1px solid rgba(245,240,230,0.07);
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.result-card:hover {
  background: rgba(245,240,230,0.055);
  border-color: rgba(123,111,168,0.3);
}
.result-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.result-industry {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lavender);
}
.result-type {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.28);
  border: 1px solid rgba(245,240,230,0.1);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}
.result-card h3 {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.result-card p {
  font-size: 13px;
  color: rgba(245,240,230,0.45);
  line-height: 1.65;
  flex: 1;
}
.result-divider {
  height: 1px;
  background: rgba(245,240,230,0.06);
}
.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.result-stat-val {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.result-stat-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.3);
  display: block;
}
@media (max-width: 900px) {
  .results-grid { grid-template-columns: 1fr; }
}



/* ─── FOUNDERS SECTION ─────────────────────────────────────── */
.founders-section { background: var(--cream-soft); }

.founders-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 56px;
}

.founder-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
}
.founder-card--reverse {
  grid-template-columns: 1fr 220px;
}
.founder-card--reverse .founder-photo-wrap { order: 2; }
.founder-card--reverse .founder-info { order: 1; text-align: left; }

.founder-photo-wrap {
  width: 220px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-warm);
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(15%);
}

.founder-card:hover .founder-photo {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.founder-info {
  padding: 0 4px;
}

.founder-name {
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.founder-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-top: 8px;
  margin-bottom: 18px;
}

.founder-bio {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}

@media (max-width: 640px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }
  .founder-photo-wrap {
    width: 160px;
    aspect-ratio: 3 / 4;
  }
  .founder-photo {
    object-position: center 20%;
  }
}

/* ─── HERO PHOTO BACKGROUND ────────────────────────────────── */
.hero--photo {
  background: var(--ink);
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  opacity: 0.72;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26,24,20,0.82) 0%, rgba(26,24,20,0.55) 55%, rgba(26,24,20,0.18) 100%),
    linear-gradient(to top,   rgba(26,24,20,0.70) 0%, transparent 50%);
}

/* On photo hero — force text to cream */
.hero--photo .hero-eyebrow {
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero--photo h1 {
  color: var(--cream);
}

.hero--photo .accent {
  color: #B8A8D8;
}

.hero--photo .hero-statline {
  color: rgba(245,240,230,0.55);
}

.hero--photo .lead {
  color: rgba(245,240,230,0.80);
}

.hero--photo .btn-ghost {
  color: var(--cream);
  border-color: rgba(245,240,230,0.35);
}

.hero--photo .btn-ghost:hover {
  background: rgba(245,240,230,0.10);
  border-color: rgba(245,240,230,0.55);
}

/* ─── CENTERED LIGHT HERO (index.html) ─────────────────────── */
.hero--center {
  background: var(--cream);
  padding: clamp(96px, 14vh, 160px) 0 clamp(80px, 12vh, 140px);
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: auto;
}
.hero--center .hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(183,171,220,0.40) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 50% 100%, rgba(93,78,140,0.10) 0%, transparent 70%);
  z-index: 0;
}
.hero--center .container { position: relative; z-index: 1; }
.hero-center-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero--center .hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  background: rgba(93,78,140,0.10);
  border: 1px solid rgba(93,78,140,0.22);
  padding: 7px 16px;
  border-radius: 999px;
  margin: 0;
}
.hero-center-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(48px, 8vw, 116px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
  padding-bottom: 0.1em;
}
.hero-center-headline .accent {
  display: inline-block;
  padding-bottom: 0.05em;
}
.hero-center-headline .accent {
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(180deg, var(--lavender-deep) 0%, #8E7BC2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--lavender-deep);
}
.hero-center-lead {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  color: #3A352E;
  max-width: 680px;
  margin: 8px auto 0;
}
.hero-center-subtitle {
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
  color: #3A352E;
  max-width: 740px;
  margin: 4px auto 0;
  font-weight: 400;
}
.hero-center-subtitle em {
  font-style: italic;
  color: var(--lavender-deep);
  font-weight: 600;
}
.hero-quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin: 14px auto 0;
}
.hq-card {
  position: relative;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(93,78,140,0.18);
  border-radius: 18px;
  padding: 28px 26px 22px;
  text-align: left;
  margin: 0;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(26,24,20,0.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26,24,20,0.08);
}
.hq-mark {
  position: absolute;
  top: 6px;
  left: 18px;
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 64px;
  line-height: 1;
  color: var(--lavender-deep);
  opacity: 0.28;
  font-weight: 800;
}
.hq-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  padding-top: 12px;
}
.hq-quote em { font-style: italic; color: var(--lavender-deep); font-weight: 600; }
.hq-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(26,24,20,0.08);
  margin-top: auto;
}
.hq-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #fff;
  box-shadow: 0 2px 6px rgba(26,24,20,0.12);
  flex-shrink: 0;
}
.hq-author-meta { display: flex; flex-direction: column; gap: 2px; }
.hq-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
}
.hq-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender-deep);
}
@media (max-width: 700px) {
  .hero-quotes { grid-template-columns: 1fr; gap: 16px; }
  .hq-card { padding: 24px 22px 20px; }
}
.cta-group--center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}
.btn-pill {
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
}
.hero--center .btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(26,24,20,0.18);
}
.hero--center .btn-ghost:hover {
  background: rgba(26,24,20,0.04);
  border-color: rgba(26,24,20,0.45);
}
.hero-center-note {
  font-size: 13px;
  color: #6B6459;
  margin: 4px 0 0;
  max-width: 560px;
}
.hero-center-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.45);
}
.hero-center-meta .dot { color: rgba(26,24,20,0.30); }
@media (max-width: 700px) {
  .hero--center { padding: 72px 0 64px; }
  .hero-center-inner { gap: 22px; }
  .hero-center-headline { font-size: clamp(40px, 12vw, 56px); }
  .cta-group--center { width: 100%; flex-direction: column; }
  .cta-group--center .btn { width: 100%; justify-content: center; display: inline-flex; align-items: center; }
}

/* ─── NAV OVER PHOTO HERO (index.html only) ────────────────── */

/* Before scroll: show cream logo, hide dark; links cream */
.nav--photo-hero:not(.is-scrolled) .logo-img--dark  { display: none; }
.nav--photo-hero:not(.is-scrolled) .logo-img--cream { display: block; }
.nav--photo-hero:not(.is-scrolled) .nav-links a {
  color: rgba(245,240,230,0.85);
}
.nav--photo-hero:not(.is-scrolled) .nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
}

/* After scroll: show dark logo, hide cream; links revert to default */
.nav--photo-hero.is-scrolled .logo-img--cream { display: none; }
.nav--photo-hero.is-scrolled .logo-img--dark  { display: block; }

/* ─── CASE STUDY ────────────────────────────────────────────── */

/* Header */
.cs-header {
  padding-top: calc(var(--nav-h) + 20px);
  padding-bottom: 48px;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
}

.cs-back {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  text-decoration: none;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.cs-back:hover { color: var(--lavender-deep); }

.cs-header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.cs-header-text .eyebrow { margin-bottom: 0; }
.cs-header-text h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 10px 0 18px;
}

/* ── Centered case-study hero (matches homepage hero pattern) ── */
.cs-header--center { text-align: center; padding-bottom: 56px; }
.cs-header--center .cs-back { display: inline-block; text-align: left; }
.cs-header-center-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}
.cs-header-center-inner .eyebrow { margin: 0; }
.cs-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 920px;
}
.cs-header--center .hero-quotes {
  width: 100%;
  max-width: 940px;
  margin: 4px 0 0;
}
.cs-meta--strip {
  width: 100%;
  max-width: 940px;
  margin: 4px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  text-align: left;
  min-width: 0;
}
.cs-meta--strip .cs-meta-row {
  border-bottom: none;
  border-right: 1px solid var(--line);
  padding: 14px 20px;
  gap: 4px;
}
.cs-meta--strip .cs-meta-row:first-child { padding-top: 14px; }
.cs-meta--strip .cs-meta-row:last-child { border-right: none; padding-bottom: 14px; }
@media (max-width: 820px) {
  .cs-meta--strip { grid-template-columns: 1fr 1fr; }
  .cs-meta--strip .cs-meta-row { border-right: none; border-bottom: 1px solid var(--line); }
  .cs-meta--strip .cs-meta-row:nth-child(2) { border-right: none; }
  .cs-meta--strip .cs-meta-row:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 520px) {
  .cs-meta--strip { grid-template-columns: 1fr; }
  .cs-meta--strip .cs-meta-row { border-right: none; border-bottom: 1px solid var(--line); }
  .cs-meta--strip .cs-meta-row:last-child { border-bottom: none; }
}
.hq-avatar--mono {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lavender-mist);
  color: var(--lavender-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.cs-meta {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 24px 20px;
  min-width: 280px;
}
.cs-meta .cs-meta-row:first-child .cs-meta-label { line-height: 1; }

.cs-meta-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.cs-meta-row:first-child { padding-top: 0; }
.cs-meta-row:last-child  { border-bottom: none; padding-bottom: 0; }

.cs-meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.cs-meta-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.cs-meta-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2d7a4f;
}

.cs-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2d7a4f;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

/* Hero image */
.cs-hero-image {
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
}

.cs-hero-image-inner {
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.cs-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--cream-warm),
    var(--cream-warm) 10px,
    var(--cream) 10px,
    var(--cream) 20px
  );
}

.cs-image-placeholder p {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.cs-image-note {
  font-size: 12px !important;
  font-weight: 400 !important;
  max-width: 360px;
  text-align: center;
  color: rgba(110,102,91,0.7) !important;
}

/* At a glance */
.cs-glance {
  background: var(--lavender-mist);
  border: 1px solid var(--lavender-soft);
  border-radius: 12px;
  padding: 40px 48px;
}

.cs-glance .eyebrow { margin-bottom: 24px; }

.cs-glance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-glance-list li {
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.cs-glance-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  font-size: 10px;
  color: var(--lavender);
  top: 5px;
}

/* Body text */
.cs-body-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.cs-body-text p:last-child { margin-bottom: 0; }

/* Phases */
.cs-phases {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.cs-phase {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.cs-phase-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--lavender-soft);
  font-style: italic;
  line-height: 1;
  padding-top: 4px;
}

.cs-phase-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.cs-phase-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  max-width: 600px;
}

/* Detail section (dark) */
.cs-detail {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cs-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.45);
  margin-bottom: 24px;
}

.cs-detail-heading {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 40px;
}

.cs-detail-body p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245,240,230,0.72);
  margin-bottom: 20px;
  text-align: left;
}
.cs-detail-body p:last-child { margin-bottom: 0; }

.cs-detail-emphasis {
  color: var(--cream) !important;
  font-weight: 500 !important;
  font-style: italic;
}

/* Shipped grid */
.cs-shipped-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.cs-shipped-item {
  padding: 36px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cs-shipped-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lavender);
  margin-bottom: 12px;
}

.cs-shipped-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.cs-shipped-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-mute);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .cs-header-inner {
    grid-template-columns: 1fr;
  }
  .cs-meta { min-width: unset; }
  .cs-glance { padding: 28px 24px; }
  .cs-phase { grid-template-columns: 48px 1fr; gap: 20px; }
  .cs-phase-num { font-size: 24px; }
  .cs-shipped-grid { grid-template-columns: 1fr; }
}

/* ─── CASE STUDY TEASER (homepage) ─────────────────────────── */
.cs-teaser {
  display: block;
  margin-top: 40px;
  background: var(--ink);
  border-radius: 12px;
  padding: 40px 48px;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.cs-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93,78,140,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.cs-teaser:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26,24,20,0.18);
}

.cs-teaser-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.cs-teaser-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  background: rgba(93,78,140,0.2);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(93,78,140,0.3);
}

.cs-teaser-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(245,240,230,0.45);
}

.cs-teaser-status .cs-live-dot {
  background: #4caf78;
}

.cs-teaser-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.cs-teaser-text h3 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cs-teaser-text p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245,240,230,0.62);
  max-width: 560px;
  margin-bottom: 20px;
}

.cs-teaser-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cs-teaser-tags span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(245,240,230,0.45);
  background: rgba(245,240,230,0.07);
  border: 1px solid rgba(245,240,230,0.12);
  padding: 4px 12px;
  border-radius: 999px;
}

.cs-teaser-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 20px;
  background: rgba(245,240,230,0.08);
  border: 1px solid rgba(245,240,230,0.15);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}

.cs-teaser:hover .cs-teaser-arrow {
  background: rgba(245,240,230,0.14);
  border-color: rgba(245,240,230,0.28);
}

@media (max-width: 700px) {
  .cs-teaser { padding: 28px 24px; }
  .cs-teaser-body { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* ─── CASE STUDY CARDS (magazine grid) ─────────────────────── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
  margin-top: 48px;
}
.cs-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s var(--ease);
}
.cs-card:hover { transform: translateY(-4px); }
.cs-card-cover {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #EDE6D6;
  box-shadow: 0 6px 22px rgba(26,24,20,0.08);
}
.cs-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.cs-card:hover .cs-card-cover img { transform: scale(1.04); }
.cs-card-pills {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  /* leave room for the Live status badge on the right (~80px) */
  max-width: calc(100% - 110px);
}
@media (max-width: 520px) {
  .cs-card-pills { max-width: calc(100% - 95px); }
  .cs-card-pills span { font-size: 11px; padding: 4px 9px; }
}
.cs-card-pills span {
  background: var(--lavender-deep);
  color: #F5F0E6;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0;
  box-shadow: 0 1px 3px rgba(26,24,20,0.18);
}
.cs-card-status {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,24,20,0.78);
  color: #F5F0E6;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}
.cs-card-status .cs-live-dot {
  background: #4caf78;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.cs-card-body { display: flex; flex-direction: column; gap: 10px; }
.cs-card-meta {
  font-size: 13px;
  color: #6B6459;
  margin: 0;
  letter-spacing: 0;
  font-weight: 500;
}
.cs-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 0;
}
.cs-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cs-card-author-label {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}
.cs-card-author-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #3A352E;
}
.cs-card-author-chip img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #fff;
  box-shadow: 0 1px 3px rgba(26,24,20,0.12);
}
@media (max-width: 980px) {
  .cs-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}
@media (max-width: 640px) {
  .cs-grid { grid-template-columns: 1fr; gap: 36px; }
  .cs-card-cover { aspect-ratio: 5 / 4; }
}

/* ─── ROI CTA (book a call banner) ──────────────────────────── */
.roi-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 36px;
  border-radius: 20px;
  background: var(--lavender-deep);
  box-shadow: 0 18px 50px -22px rgba(93, 78, 140, 0.55);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.roi-cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}
.roi-cta-avatar {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 6px 16px rgba(26,24,20,0.18);
  display: block;
}
.roi-cta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.roi-cta-copy h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  margin: 0 0 6px;
  color: #fff;
  letter-spacing: -0.01em;
}
.roi-cta-copy p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
.roi-cta-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(26,24,20,0.18);
  white-space: nowrap;
}
.roi-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26,24,20,0.24);
}
.roi-cta-btn svg { color: var(--ink); }
@media (max-width: 760px) {
  .roi-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    gap: 24px;
  }
  .roi-cta-left { gap: 18px; }
  .roi-cta-avatar { width: 72px; height: 72px; }
  .roi-cta-btn { width: 100%; justify-content: center; }
}

/* ─── BIO CARDS (about page) ────────────────────────────────── */
.bio-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.bio-card--flipped {
  direction: rtl;
}
.bio-card--flipped > * {
  direction: ltr;
}

.bio-photo-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.bio-photo-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--lavender-mist);
}

.bio-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--ease);
}

.bio-card:hover .bio-photo {
  transform: scale(1.03);
}

.bio-name-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bio-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.bio-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lavender);
}

.bio-linkedin {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lavender-deep);
  text-decoration: none;
  transition: color 0.2s;
}
.bio-linkedin:hover { color: var(--ink); }

.bio-body {
  padding-top: 4px;
}

.bio-lead {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
}

.bio-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.bio-body p:last-child { margin-bottom: 0; }

.bio-view {
  padding: 16px 20px;
  border-left: 3px solid var(--lavender);
  background: var(--lavender-mist);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--ink-soft);
}

.bio-together {
  margin-top: 0;
  padding: 40px 0 8px;
  border-top: 1px solid var(--line);
}

.bio-together-inner {
  background: var(--ink);
  border-radius: 12px;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.bio-together-inner .eyebrow {
  color: var(--lavender);
  margin-bottom: 20px;
}

.bio-together-inner p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245,240,230,0.7);
  margin-bottom: 12px;
  max-width: 680px;
}

.bio-together-kicker {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--cream) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  .bio-card,
  .bio-card--flipped {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
  .bio-photo-col {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .bio-photo-wrap {
    width: 100px;
    flex-shrink: 0;
  }
  .bio-name-block { gap: 3px; }
  .bio-together-inner { padding: 28px 24px; }
}

/* ──────────────────────────────────────────────
   FOOTER LEGAL META (added 2026-05-25)
────────────────────────────────────────────── */
.footer-meta {
  font-size: 12px;
  color: rgba(245,240,230,0.45);
  margin-top: 10px;
  line-height: 1.55;
}
.footer-meta strong {
  display: block;
  color: var(--cream-soft);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
}
.footer-legal-links a {
  color: rgba(245,240,230,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--cream); }

/* ──────────────────────────────────────────────
   LEGAL PAGE (privacy / terms / cookies)
────────────────────────────────────────────── */
.legal-page {
  background: var(--cream);
  padding: 80px 0 100px;
}
.legal-page .legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-page .eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-bottom: 14px;
}
.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.legal-page .legal-meta {
  font-size: 13px;
  color: #6B645A;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-page .legal-draft {
  background: var(--lavender-soft);
  border-left: 3px solid var(--lavender-deep);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 36px;
  line-height: 1.55;
}
.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--ink);
  margin-top: 44px;
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.legal-page h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-page p,
.legal-page li {
  font-size: 16px;
  line-height: 1.65;
  color: #2C2922;
  margin-bottom: 14px;
}
.legal-page ul, .legal-page ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-page li { margin-bottom: 8px; }
.legal-page a {
  color: var(--lavender-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page a:hover { opacity: 0.75; }
.legal-page .legal-contact-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  margin-top: 36px;
  font-size: 14px;
  line-height: 1.6;
}
.legal-page .legal-contact-card strong { display: block; margin-bottom: 6px; color: var(--ink); }

/* ===== Testimonials / Google reviews ===== */
.testimonials-section { padding-top: 80px; padding-bottom: 80px; }
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border: 1px solid rgba(26,24,20,0.12);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 1px 0 rgba(26,24,20,0.04);
}
.google-rating-badge:hover { transform: translateY(-1px); border-color: rgba(26,24,20,0.22); box-shadow: 0 6px 18px rgba(26,24,20,0.08); }
.google-rating-logo { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: #fff; border-radius: 50%; box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.google-rating-meta { display: inline-flex; flex-direction: column; gap: 2px; line-height: 1.1; }
.google-rating-stars { color: #F5A623; font-size: 14px; letter-spacing: 1px; }
.google-rating-text { font-size: 13px; color: var(--ink-soft, #4a463f); }
.google-rating-text strong { color: var(--ink); font-weight: 700; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial {
  background: var(--cream);
  border: 1px solid rgba(26,24,20,0.10);
  border-radius: var(--r-card, 18px);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars { color: #F5A623; font-size: 16px; letter-spacing: 2px; }
.testimonial-quote {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}
.testimonial-meta { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(26,24,20,0.08); }
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.testimonial-role { font-size: 13px; color: var(--ink-soft, #6b6459); margin-top: 2px; }
.testimonials-foot {
  margin-top: 36px;
  font-size: 14px;
  color: var(--ink-soft, #6b6459);
  text-align: center;
}
.testimonials-foot a { color: var(--lavender-deep); text-decoration: none; font-weight: 600; border-bottom: 1px solid rgba(93,78,140,0.3); }
.testimonials-foot a:hover { border-bottom-color: var(--lavender-deep); }

@media (max-width: 960px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ─── GLOBAL: NO ITALICS ANYWHERE ─────────────────────────── */
*, *::before, *::after { font-style: normal !important; }

/* ─── NAV: SERVICES DROPDOWN ───────────────────────────────── */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-caret {
  display: inline-block;
  font-size: 9px;
  line-height: 1;
  transform: translateY(1px);
  transition: transform .2s ease;
  opacity: .7;
}
.nav-has-dropdown:hover .nav-caret,
.nav-has-dropdown:focus-within .nav-caret { transform: translateY(1px) rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(26,24,20,0.08);
  border-radius: 14px;
  box-shadow: 0 18px 50px -20px rgba(26,24,20,0.25);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown,
.nav-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: var(--lavender-mist, #EFE9F8);
  color: var(--lavender-deep);
}
.nav-dropdown-divider {
  height: 1px;
  background: rgba(26,24,20,0.08);
  margin: 6px 4px;
}
@media (max-width: 880px) {
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 14px;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
  }
  .nav-caret { display: none; }
}

/* ─── SERVICE PAGE LAYOUT (audit / roadmap / etc.) ─────────── */
.sp-hero {
  padding: clamp(72px, 9vw, 128px) 0 clamp(48px, 6vw, 80px);
  background: var(--cream);
  position: relative;
}
.sp-crumbs {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(26,24,20,0.55);
  margin-bottom: 28px;
  text-transform: none;
}
.sp-crumbs a {
  color: rgba(26,24,20,0.55);
  text-decoration: none;
  transition: color .15s ease;
}
.sp-crumbs a:hover { color: var(--lavender-deep); }
.sp-crumbs span.sep { margin: 0 8px; opacity: 0.4; }
.sp-crumbs span.current { color: var(--ink); font-weight: 600; }

.sp-hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.sp-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 28px;
}
.sp-hero h1 .lav { color: var(--lavender-deep); }
.sp-hero-lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: rgba(26,24,20,0.7);
  max-width: 620px;
  margin: 0 0 32px;
}
.sp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.sp-hero-aside {
  background: #fff;
  border: 1px solid rgba(26,24,20,0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 50px -28px rgba(26,24,20,0.2);
}
.sp-hero-aside h3 {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin: 0 0 14px;
  font-weight: 700;
}
.sp-aside-list { list-style: none; padding: 0; margin: 0; }
.sp-aside-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--ink);
  border-top: 1px solid rgba(26,24,20,0.06);
}
.sp-aside-list li:first-child { border-top: 0; }
.sp-aside-list li::before {
  content: "✓";
  color: var(--lavender-deep);
  font-weight: 800;
  flex: 0 0 auto;
}
@media (max-width: 880px) {
  .sp-hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

.sp-stat-band {
  background: var(--lavender-deep);
  color: var(--cream);
  padding: clamp(36px, 5vw, 56px) 0;
}
.sp-stat-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.sp-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sp-stat-value {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.sp-stat-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.7);
  font-weight: 600;
}
.sp-stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(245,240,230,0.2);
}
@media (max-width: 760px) {
  .sp-stat-band .container { justify-content: flex-start; gap: 28px 36px; }
  .sp-stat-divider { display: none; }
}

.sp-block { padding: clamp(64px, 8vw, 112px) 0; }
.sp-block--soft { background: var(--cream-soft, #EFE7D6); }
.sp-block--dark { background: var(--ink); color: var(--cream); }

/* Proof section with AMP imagery (outreach.html) */
.sp-proof .sp-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.sp-proof-copy .eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lavender, #B7ABDC);
  margin-bottom: 14px;
  display: inline-block;
}
.sp-proof-copy h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--cream);
}
.sp-proof-copy > p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: rgba(245, 240, 230, 0.78);
  max-width: 46ch;
  margin: 0 0 28px;
}
.sp-proof-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 20px 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(245, 240, 230, 0.12);
  border-bottom: 1px solid rgba(245, 240, 230, 0.12);
}
.sp-proof-stat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 6px;
}
.sp-proof-stat-label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 230, 0.6);
  line-height: 1.4;
}
.sp-proof-imagery {
  position: relative;
  min-height: 460px;
}
.sp-proof-card {
  position: absolute;
  margin: 0;
  background: #2a251f;
  border: 1px solid rgba(245, 240, 230, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s var(--ease);
}
.sp-proof-card img {
  display: block;
  width: 100%;
  height: auto;
}
.sp-proof-card figcaption {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(245, 240, 230, 0.7);
  padding: 12px 16px;
  border-top: 1px solid rgba(245, 240, 230, 0.08);
}
.sp-proof-card--primary {
  top: 0;
  right: 0;
  width: 78%;
  z-index: 2;
}
.sp-proof-card--secondary {
  bottom: 0;
  left: 0;
  width: 60%;
  z-index: 1;
  transform: rotate(-3deg);
}
.sp-proof-card--secondary:hover,
.sp-proof-card--primary:hover {
  transform: translateY(-4px) rotate(0deg);
}
@media (max-width: 960px) {
  .sp-proof .sp-proof-grid { grid-template-columns: 1fr; gap: 48px; }
  .sp-proof-imagery { min-height: 0; display: flex; flex-direction: column; gap: 20px; }
  .sp-proof-card { position: static; width: 100%; transform: none; }
  .sp-proof-card--secondary { transform: none; }
}

/* When this isn't for you (outreach.html) */
.nfy-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-card);
  padding: clamp(40px, 5vw, 72px);
}
.nfy-card-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.nfy-pill {
  display: inline-block;
  background: rgba(123, 111, 168, 0.18);
  color: var(--lavender, #B7ABDC);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.nfy-card-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--cream);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.nfy-card-head h2 em {
  color: var(--lavender, #B7ABDC);
  font-style: normal;
  font-weight: 800;
}
.nfy-lead {
  color: rgba(245, 240, 230, 0.75);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  margin: 0;
}
.nfy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px 40px;
}
.nfy-item { border-top: 1px solid rgba(245, 240, 230, 0.18); padding-top: 22px; }
.nfy-item h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--cream);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
}
.nfy-x {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(123, 111, 168, 0.18);
  color: var(--lavender, #B7ABDC);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nfy-item p {
  color: rgba(245, 240, 230, 0.72);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}
.nfy-item p em {
  color: var(--lavender, #B7ABDC);
  font-style: normal;
  font-weight: 700;
}
.sp-block-head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 56px); }
.sp-block-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-bottom: 14px;
  display: inline-block;
}
.sp-block--dark .sp-block-head .eyebrow { color: var(--lavender, #B7ABDC); }
.sp-block-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.sp-block-head p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(26,24,20,0.65);
  line-height: 1.55;
  margin: 0;
}
.sp-block--dark .sp-block-head p { color: rgba(245,240,230,0.7); }

.sp-deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.sp-deliverable {
  background: #fff;
  border: 1px solid rgba(26,24,20,0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sp-deliverable:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -28px rgba(26,24,20,0.22);
}
.sp-deliverable-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--lavender-deep);
  letter-spacing: 0.08em;
}
.sp-deliverable h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.sp-deliverable p {
  font-size: 14.5px;
  color: rgba(26,24,20,0.65);
  line-height: 1.55;
  margin: 0;
}

.sp-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  counter-reset: spstep;
}
.sp-step {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid var(--lavender-deep);
}
.sp-step::before {
  counter-increment: spstep;
  content: "0" counter(spstep);
  position: absolute;
  top: -14px;
  left: 0;
  background: var(--cream);
  color: var(--lavender-deep);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 4px 10px 4px 0;
}
.sp-block--soft .sp-step::before { background: var(--cream-soft, #EFE7D6); }
.sp-block--dark .sp-step { border-top-color: var(--lavender, #B7ABDC); }
.sp-block--dark .sp-step::before { background: var(--ink); color: var(--lavender, #B7ABDC); }
.sp-step h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.2;
}
.sp-step p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(26,24,20,0.7);
  margin: 0;
}
.sp-block--dark .sp-step p { color: rgba(245,240,230,0.7); }

.sp-faq { display: flex; flex-direction: column; gap: 0; max-width: 820px; }
.sp-faq details {
  border-top: 1px solid rgba(26,24,20,0.12);
  padding: 22px 0;
}
.sp-faq details:last-child { border-bottom: 1px solid rgba(26,24,20,0.12); }
.sp-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--ink);
  gap: 24px;
}
.sp-faq summary::-webkit-details-marker { display: none; }
.sp-faq summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--lavender-deep);
  transition: transform .2s ease;
  flex: 0 0 auto;
}
.sp-faq details[open] summary::after { content: "−"; }
.sp-faq details > p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(26,24,20,0.7);
  max-width: 720px;
}

/* ─── SERVICE PAGE CENTERED HERO TWEAKS ─────────────────────── */
.sp-hero-centered .hero-center-inner { padding-top: 16px; }
.sp-crumbs--center {
  text-align: center;
  margin: 0 auto 22px;
  display: block;
}

/* ──────────────────────────────────────────────
   GLOBAL TYPOGRAPHY NORMALISATION (no italics, bold accents)
   Applied site-wide to keep case studies + all pages on brand.
────────────────────────────────────────────── */
em, i, blockquote em, .hq-quote em, .pull-quote em,
.cs-header em, .cs-headline em, .lead em, p em,
h1 em, h2 em, h3 em, h4 em,
.hym-diptych-title, .hym-module h3, .hym-shot-title,
.lfa-portal-title, .lfa-hero-caption, .hym-hero-caption,
.amp-hero-testimonial-note, .amp-number-value, .amp-number-value em {
  font-style: normal !important;
}
em, i, blockquote em, .hq-quote em, .pull-quote em,
.cs-header em, h1 em, h2 em, h3 em, h4 em, p em, .lead em {
  font-weight: 700;
}
em.accent {
  color: var(--lavender-deep);
  font-style: normal !important;
  font-weight: 800;
}
.hq-quote em { color: var(--lavender-deep); font-weight: 700; }
.pull-quote em { color: var(--lavender-deep); font-weight: 700; }

/* Force Plus Jakarta Sans across all case-study local serif overrides */
.hym-shot-title, .lfa-portal-title,
.hym-diptych-title, .hym-module h3,
.amp-number-value {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
}
.amp-number-value em { color: var(--lavender-deep); font-weight: 800; }

/* Belt-and-braces: keep the centered case-study headline visible
   even before GSAP/ScrollTrigger has run. */
.cs-headline { opacity: 1 !important; transform: none !important; clip-path: none !important; }
.cs-headline .word { transform: none !important; }

/* Force every above-the-fold element inside the centered case-study hero
   to stay visible. The reveal/clip-path animation was leaving the quotes
   and meta strip stuck at opacity:0 when ScrollTrigger didn't fire on init. */
.cs-header--center .reveal,
.cs-header--center .hero-quotes,
.cs-header--center .cs-meta--strip,
.cs-header--center .eyebrow,
.cs-header--center .cs-back {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}
.cs-header--center .reveal .word { transform: none !important; }
