/* ==========================================================================
   Work Better Together — Site Design System
   Merges the WBT Brand Guide tokens with the proven "Lead to Win" patterns.
   One stylesheet, shared by every page. url() paths below are relative to THIS
   file (/css/), so fonts resolve the same from root pages and /case-studies/.
   ========================================================================== */

/* ── Fonts ──────────────────────────────────────────────────────────────── */
@font-face { font-family: 'League Spartan'; src: url('../assets/Fonts/LeagueSpartan-Variable.ttf') format('truetype'); font-weight: 100 900; font-display: swap; }
@font-face { font-family: 'Lora'; src: url('../assets/Fonts/Lora-Variable.ttf') format('truetype'); font-weight: 400 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Lora'; src: url('../assets/Fonts/Lora-Italic-Variable.ttf') format('truetype'); font-weight: 400 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Inconsolata'; src: url('../assets/Fonts/Inconsolata-Variable.ttf') format('truetype'); font-weight: 200 900; font-display: swap; }

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  /* Color — from WBT-Brand-Context.md */
  --ink: #1F1E1E;            /* Grounded Black — body text, always full ink */
  --ink-muted: #6b6b6b;      /* meta, captions, disabled ONLY */
  --bg: #F9F8F2;             /* Clear White — page background */
  --bg-card: #ffffff;
  --rule: #e4e2de;           /* dividers, card edges */
  --steady-blue: #061A49;    /* primary brand surface */
  --intentional-blue: #2531A5;/* actions, links, focus */
  --intentional-blue-dark: #1c267e;
  --clean-slate: #1E4D5C;    /* secondary panels */
  --calm-blue: #ACCDD9;      /* reflective / editorial, text on dark */
  --slate-light: #E0E8EB;
  --gold: #CD9F36;           /* Radiant Gold — accent only, sparingly */
  --ochre: #B55312;          /* Honest Ochre — tension/challenge, with intention */
  --ochre-light: #F5E8D8;
  --cream: #F9F8F2;

  --font-display: 'League Spartan', sans-serif;
  --font-body: 'Lora', serif;
  --font-mono: 'Inconsolata', monospace;

  --maxw: 1080px;            /* site container */
  --prose: 720px;            /* reading measure for articles */

  /* Motion — calm under pressure, everything <= 480ms */
  --ease-state: cubic-bezier(0.2, 0, 0, 1);
  --ease-enter: cubic-bezier(0, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
.skip-link {
  position: absolute; top: -48px; left: 12px; z-index: 1000;
  background: var(--intentional-blue); color: var(--cream);
  font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.04em;
  padding: 12px 20px; border-radius: 4px; text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.75;
}
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.prose-wrap { max-width: calc(var(--prose) + 80px); margin: 0 auto; padding: 0 40px; }

/* ── Typography primitives ──────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; }
p { line-height: 1.75; }
a { color: var(--intentional-blue); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ochre);   /* eyebrows on cream = red (Honest Ochre); dark surfaces override to gold below */
  margin-bottom: 20px;
}
.eyebrow-ochre { color: var(--ochre); }
/* on dark/tinted surfaces, eyebrows are gold */
.section-dark .eyebrow, .section-slate .eyebrow, .cta-band .eyebrow, .detail-hero .eyebrow { color: var(--gold); }

h2.section-head {
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}
h3.sub-head {
  font-size: clamp(24px, 3.4vw, 30px);
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.intro-statement {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 24px;
}
.lede {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.75;
  max-width: var(--prose);
  color: inherit;   /* follow the surrounding section (light = ink, dark = cream) */
}
.lede + .lede { margin-top: 20px; }
@media (max-width: 860px) { .about-intro .lede, .about-team .lede { font-size: 17px; } }
.about-team h2.section-head { margin-bottom: 44px; }
/* Any headline-support text set to 2/3 width on desktop should span full width on mobile */
@media (max-width: 860px) { [style*="max-width: 66%"] { max-width: 100% !important; } }
/* Legal-page (Privacy/Terms) body copy: same mobile serif scale-down as About */
@media (max-width: 860px) { .article-body.legal-copy p, .article-body.legal-copy li { font-size: 17px; } }

/* Supporting text directly under a page headline = League Spartan, per brand */
.headline-support {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.35;
  color: var(--calm-blue);
  max-width: 640px;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--motion,150ms) var(--ease-state), color 150ms var(--ease-state), border-color 150ms var(--ease-state);
}
.btn-primary { background: var(--intentional-blue); color: var(--cream); border-color: var(--intentional-blue); }
.btn-primary:hover { background: var(--intentional-blue-dark); border-color: var(--intentional-blue-dark); }
.btn-secondary { background: transparent; color: var(--intentional-blue); border-color: var(--intentional-blue); }
.btn-secondary:hover { background: rgba(37,49,165,0.08); }
.btn-on-dark { background: var(--cream); color: var(--steady-blue); border-color: var(--cream); }
.btn-on-dark:hover { background: var(--calm-blue); border-color: var(--calm-blue); }
.btn-ghost-dark { background: transparent; color: var(--cream); border-color: rgba(249,248,242,0.4); }
.btn-ghost-dark:hover { border-color: var(--cream); }

/* Inline "learn more" style link (mono, uppercase) */
.link-mono {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--intentional-blue);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 150ms var(--ease-state);
}
.link-mono:hover { opacity: 0.7; }
.on-dark .link-mono, .link-mono.on-dark { color: var(--cream); }

/* ── Sections ───────────────────────────────────────────────────────────── */
section { padding: 96px 0; }
.section-light { background: var(--bg); }
.section-paper { background: var(--bg-card); }
/* big decorative watercolor spot bleeding off a section's right margin */
.svc-watercolor-sec { position: relative; overflow-x: clip; }
.svc-watercolor-sec > .wrap { position: relative; z-index: 1; }
.svc-watercolor { position: absolute; z-index: 0; right: -34%; top: 30%; transform: translateY(-50%); width: 68vw; max-width: 1000px; pointer-events: none; opacity: 0.85; }
@media (max-width: 820px) { .svc-watercolor { display: none; } }
/* Quote sections read better on cream, not stark white — applies wherever a
   pull quote or testimonial carousel sits in a paper section, sitewide. */
.section-paper:has(.quote-block),
.section-paper:has(.quote-carousel) { background: var(--bg); }
.section-dark  { background: var(--steady-blue); color: var(--cream); }
.section-slate { background: var(--clean-slate); color: var(--cream); }
.section-calm  { background: var(--calm-blue); color: var(--steady-blue); }
.section-gold  { background: var(--gold); color: var(--ink); }
.section-gold .eyebrow { color: var(--ink); }
.section-gold .topic-list li::before { background: var(--ink); }
.section-tight { padding-top: 0; }

/* Gold inset block with planets on the left (parallax). */
.inset-gold { position: relative; background: var(--gold); color: var(--ink); padding: clamp(32px, 4vw, 48px); }
.inset-gold .section-head, .inset-gold .lede { color: var(--ink); }
.inset-gold .topic-list li::before { background: var(--ink); }
.inset-gold-body { position: relative; z-index: 3; }
.inset-gold-body .inset-lead { font-family: var(--font-body); font-size: 18px; margin: 26px 0 6px; }
/* staggered layout inside the gold box: text left, bullets shifted right + down */
.inset-gold-body .offset-right { margin-top: 24px; }
.inset-gold-body .offset-right .inset-lead:first-child { margin-top: 0; }
.inset-planet { position: absolute; z-index: 2; left: 0; pointer-events: none; }
.inset-planet-mars    { width: clamp(140px, 15vw, 210px); left: -10.5%; top: calc(12% + 430px); }
.inset-planet-neptune { width: clamp(56px, 6vw, 92px);  left: -4.3%; top: calc(12% + 220px); }
@media (max-width: 820px) {
  .inset-gold-body { margin-left: 0; }
  .inset-planet { display: none; }
}

/* Blue inset card — the "Research" stat block, sibling to inset-gold/ochre */
.inset-blue { position: relative; background: var(--intentional-blue); color: var(--cream); padding: clamp(32px, 4vw, 48px); overflow: visible; }
.inset-blue .lede, .inset-blue strong { color: var(--cream); }
.inset-blue .section-head { color: var(--cream); }
.inset-blue .inset-lead { font-family: var(--font-body); font-size: 18px; margin: 22px 0 6px; color: var(--cream); }
.inset-blue .eyebrow { color: var(--gold); }
.inset-blue .intro-statement { color: var(--cream); }
.inset-blue .stat-source { color: var(--calm-blue); }
.inset-blue .topic-list li { color: var(--cream); }
/* two-column layout inside a blue box: heading left, body + bullets right */
.inset-blue-cols { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px 64px; align-items: start; }
@media (max-width: 820px) { .inset-blue-cols { grid-template-columns: 1fr; gap: 20px; } }
.inset-blue .topic-list li::before { background: var(--gold); }
.inset-blue-body { position: relative; z-index: 3; max-width: 74%; }
.inset-blue-bees { position: absolute; z-index: 2; right: -6%; top: 10%; width: 30%; pointer-events: none; }
.inset-blue-scribble { position: absolute; z-index: 1; right: -4%; bottom: -10%; width: 56%; pointer-events: none; opacity: 1; }
/* a second, much bigger scribble sitting behind the whole card, bleeding off the right margin */
.inset-blue-scribble-bg { position: absolute; z-index: 0; right: -34%; top: 14%; width: 84%; pointer-events: none; opacity: 1; }
@media (max-width: 820px) { .inset-blue-bees, .inset-blue-scribble, .inset-blue-scribble-bg { display: none; } .inset-blue-body { max-width: 100%; } }

/* Ochre inset card — Facilitation "What You Can Expect", sibling to the blue 2:2 card */
.inset-ochre-card { position: relative; background: var(--ochre); color: var(--cream); padding: clamp(28px, 3.4vw, 40px); }
.inset-ochre-card .eyebrow { color: var(--gold); }
.inset-ochre-card .topic-list { margin-top: 12px; }
.inset-ochre-card .topic-list li { color: var(--cream); }
.inset-ochre-card .topic-list li::before { background: var(--gold); }

/* Ochre inset callout — facilitation "is / isn't", sibling to the gold inset */
.inset-ochre { position: relative; background: var(--ochre); color: var(--cream); padding: clamp(44px, 6vw, 84px) clamp(36px, 5vw, 76px); }
.inset-ochre .section-head { color: var(--cream); }
.inset-ochre .lede { color: rgba(249, 248, 242, 0.92); }
.inset-ochre .lede strong, .inset-ochre .inset-lead strong { color: var(--cream); }
.inset-ochre .inset-lead { font-family: var(--font-body); font-size: 18px; margin: 22px 0 6px; color: var(--cream); }
.inset-ochre .eyebrow { color: var(--cream); }
.inset-ochre .topic-list li { color: var(--cream); }
.inset-ochre .topic-list li::before { background: var(--gold); }
.inset-ochre-body { max-width: 940px; margin: 0 auto; }
.inset-ochre-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px; margin-top: 36px; }
.inset-ochre-cols h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--cream); margin-bottom: 14px; }
@media (max-width: 820px) { .inset-ochre-cols { grid-template-columns: 1fr; gap: 28px; } }

/* ── Inset-box decorative scribbles + hanging lightbulb ─────────────────── */
/* Section wrapper clips horizontal bleed so scribbles running off the page
   edge don't create a horizontal scrollbar. */
.inset-deco-sec { position: relative; overflow-x: clip; }
/* Keep box text above the scribble that overlays the box's colored fill. */
.inset-deco-sec .inset-ochre-body,
.inset-deco-sec .inset-blue-cols,
.inset-deco-sec .inset-blue-stagger { position: relative; z-index: 2; }
.inset-blue-stagger .offset-right .inset-lead:first-child { margin-top: 0; }

/* A loose scribble that crosses a box edge and bleeds off the page. */
.inset-scribble { position: absolute; z-index: 1; pointer-events: none; opacity: 0.92; }
.inset-scribble-r { right: -34%; top: 4%; width: 62%; }              /* off the right, ~1/3 cropped */
.inset-scribble-l { left: -22%; bottom: 2%; width: 54%; transform: scaleX(-1); } /* off the left */
/* Behind the box, doubled in size, hanging off the bottom-left corner. */
/* bottom is a fixed px (not %) so the hang stays constant across widths — the
   section's 96px bottom padding means -24px sits ~120px below the box's edge,
   which still clears the ~200px gap to the testimonials below at any width. */
.inset-scribble-behind-l { position: absolute; z-index: 0; left: -28%; bottom: -24px; width: 108%; transform: scaleX(-1); pointer-events: none; opacity: 0.9; }
/* Sits behind the box body, sweeping off the left margin. */
.inset-scribble-behind { position: absolute; z-index: 1; left: -24%; top: 10%; width: 58%; pointer-events: none; opacity: 0.9; transform: scaleX(-1); }

/* Lightbulb hung by a cord that runs up behind the box. The box sits above the
   assembly (z-index) so the cord's top is hidden behind it; the cord's bottom
   tucks behind the bulb's base for a seamless join. */
.inset-deco-sec .inset-ochre { z-index: 1; }
.inset-bulb { position: absolute; right: 24%; bottom: -74px; width: 129px; z-index: 0; pointer-events: none; }
.inset-bulb img { display: block; width: 100%; transform: scaleY(-1); position: relative; z-index: 1; }
.inset-bulb .cord { position: absolute; left: 50%; top: -250px; height: 275px; transform: translateX(-50%); width: 4px; background: #161616; z-index: 0; }

@media (max-width: 820px) {
  .inset-scribble, .inset-scribble-behind, .inset-bulb { display: none; }
  /* On mobile the box is full-width, so the scribble can only read below it —
     drop it lower and pull it in from the left so it hangs off the bottom-left,
     mostly visible on the cream rather than hidden behind the box. */
  .inset-scribble-behind-l { left: -6%; bottom: -58px; width: 82%; }
}

.section-dark .eyebrow, .section-slate .eyebrow { color: var(--gold); }
.section-dark a:not(.btn), .section-slate a:not(.btn) { color: var(--calm-blue); }

/* ── Header / Nav ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249,248,242,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  max-width: 1680px;                    /* match the home-hero image frame so */
  margin: 0 auto;                       /* the logo & CTA align to its edges   */
  padding: 0 clamp(40px, 6vw, 120px);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 53px; width: auto; }   /* 15% + another 10% */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms var(--ease-state);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--intentional-blue); }

/* Services dropdown */
.nav-dd { position: relative; }
.nav-dd > button {
  font-family: var(--font-display); font-weight: 500; font-size: 14px; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ink); background: none; border: 0; cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color 150ms var(--ease-state);
}
.nav-dd > button:hover, .nav-dd[data-open="true"] > button { color: var(--intentional-blue); }
.nav-dd > button svg { width: 13px; height: 13px; transition: transform 150ms var(--ease-state); }
.nav-dd[data-open="true"] > button svg { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 232px; background: var(--bg-card); border: 1px solid var(--rule); border-radius: 6px;
  box-shadow: 0 12px 24px rgba(31,30,30,0.12); padding: 8px; list-style: none;
  opacity: 0; visibility: hidden; transition: opacity 150ms var(--ease-state), transform 150ms var(--ease-state);
}
.nav-dd[data-open="true"] .nav-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dd-menu a {
  display: block; padding: 10px 14px; border-radius: 4px; font-size: 15px;
  font-family: var(--font-display); font-weight: 500; text-transform: none; letter-spacing: 0.01em;
}
.nav-dd-menu a:hover { background: rgba(37,49,165,0.07); color: var(--intentional-blue); }
.nav-dd-menu a .d { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12.5px; color: var(--ink-muted); margin-top: 2px; letter-spacing: 0; text-transform: none; }
.nav-links .nav-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink, var(--cream));
  background: var(--accent, var(--intentional-blue));
  padding: 10px 18px;
  border-radius: 10px;
}
.nav-links .nav-cta:hover { filter: brightness(0.92); color: var(--accent-ink, var(--cream)); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; display: block; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--steady-blue);
  color: var(--cream);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-monogram { height: 64px; width: auto; margin-bottom: 24px; }
.footer-tag { font-family: var(--font-display); font-weight: 500; font-size: 18px; letter-spacing: 0.02em; color: var(--calm-blue); }
.footer-signup label { display: block; font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--cream); margin-bottom: 14px; max-width: 320px; }
.footer-form { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-form input {
  flex: 1 1 200px;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid rgba(249,248,242,0.35);
  background: rgba(249,248,242,0.06);
  color: var(--cream);
  border-radius: 2px;
}
.footer-form input::placeholder { color: rgba(249,248,242,0.55); }
.footer-form input:focus { outline: 2px solid var(--calm-blue); outline-offset: 1px; }
.footer-bottom {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px 24px;
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(249,248,242,0.18);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--calm-blue);
}
.footer-bottom a { color: var(--calm-blue); text-decoration: none; }
.footer-bottom a:hover { color: var(--cream); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; text-transform: uppercase; margin-left: auto; }
.footer-credit { text-transform: uppercase; }
.footer-social { display: flex; gap: 18px; margin-top: 20px; }
.footer-social a { color: var(--calm-blue); display: inline-flex; transition: color 150ms var(--ease-state); }
.footer-social a:hover { color: var(--cream); }
.footer-social svg { width: 22px; height: 22px; }

/* Center the whole footer on mobile only */
@media (max-width: 620px) {
  .site-footer { text-align: center; }
  .footer-monogram { margin-left: auto; margin-right: auto; }
  .footer-signup label { margin-left: auto; margin-right: auto; }
  .footer-social, .footer-form { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; margin-left: 0; }
  .footer-credit { flex-basis: 100%; order: 3; }
}

/* ── Contact form ───────────────────────────────────────────────────────── */
.contact-form { max-width: 720px; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.contact-form .field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.contact-form-grid .field { margin-bottom: 0; }
.contact-form label { font-family: var(--font-display); font-weight: 500; font-size: 14px; letter-spacing: 0.02em; color: var(--ink); }
.contact-form label .optional { color: var(--ink-muted); font-weight: 400; }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--bg-card); border: 1px solid var(--rule); border-radius: 6px;
  padding: 12px 14px; width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--intentional-blue); outline-offset: 1px; border-color: var(--intentional-blue); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form button { margin-top: 8px; }
@media (max-width: 620px) { .contact-form-grid { grid-template-columns: 1fr; gap: 0; } .contact-form-grid .field { margin-bottom: 20px; } }

/* ── Hero (interior page) ───────────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--steady-blue);
  color: var(--cream);
  overflow: hidden;
  padding: 84px 0 92px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/Textures/Backgrounds/Steady Blue/WBT-20260403-Steady-Blue-Watercolor-Background-2.jpg');
  background-size: cover; background-position: center;
  opacity: 0.5; z-index: 0;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 15ch;
}
.page-hero .headline-support { margin-bottom: 32px; }
.page-hero .eyebrow { color: var(--gold); }

/* ── Home hero (photo split) ────────────────────────────────────────────── */
.home-hero { position: relative; background: var(--steady-blue); color: var(--cream); overflow: hidden; }
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('../assets/Textures/Backgrounds/Steady Blue/WBT-20260403-Steady-Blue-Watercolor-Background-1.jpg');
  background-size: cover; background-position: center; opacity: 0.5; z-index: 0;
}
.home-hero .wrap { position: relative; z-index: 1; }
.home-hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  padding: 72px 0 84px;
}
.home-hero h1 { font-size: clamp(42px, 6.4vw, 74px); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 22px; }
.home-hero .headline-support { font-size: clamp(18px, 2.2vw, 22px); color: var(--calm-blue); margin-bottom: 32px; max-width: 34ch; }
.home-hero-photo { border-radius: 4px; overflow: hidden; box-shadow: 0 18px 40px rgba(6,26,73,0.4); border: 1px solid rgba(249,248,242,0.15); }
.home-hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── "What we work on" pill list ────────────────────────────────────────── */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pill {
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  padding: 9px 16px; border-radius: 9999px;
  border: 1px solid var(--rule); background: var(--bg-card); color: var(--ink);
}
.section-dark .pill, .section-slate .pill { color: var(--cream); border-color: rgba(172,205,217,0.4); background: rgba(172,205,217,0.08); }

/* Bulleted topic list (square gold/blue markers) */
.topic-list { list-style: none; display: grid; gap: 10px; margin-top: 8px; }
.topic-list li { position: relative; padding-left: 22px; font-family: var(--font-body); font-size: 17px; line-height: 1.5; color: inherit; }
.topic-list li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; background: var(--intentional-blue); }
.section-dark .topic-list li::before, .section-slate .topic-list li::before { background: var(--gold); }
.topic-list.cols { grid-template-columns: 1fr 1fr; gap: 10px 32px; }

/* ── Mosaic cards (2px gap editorial grid) ──────────────────────────────── */
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--bg-card); border: 1px solid var(--rule); padding: 36px; display: flex; flex-direction: column; color: var(--ink); }
.card h3 { font-size: 24px; letter-spacing: -0.01em; line-height: 1.12; margin-bottom: 14px; }
.card p { font-size: 16px; color: var(--ink); }
.card .card-collage { height: 190px; margin-bottom: 24px; }
.card .card-collage img { height: 100%; width: auto; object-fit: contain; }
.card .card-foot { margin-top: auto; padding-top: 20px; }

/* Bare cards (homepage "What We Do"): no box — icons + text flush-left on the page */
.cards-bare { gap: clamp(32px, 4vw, 56px); }
.cards-bare .card { background: transparent; border: 0; padding: 0; }
.cards-bare .card .card-collage { height: 150px; margin-bottom: 20px; }
.cards-bare .card .card-collage img { display: block; }   /* trimmed icons sit flush-left */
/* the moon is a portrait crop, so at a fixed height it reads smaller than the
   landscape bee/lightbulb icons — scale it up, overflowing its box so the
   headings stay aligned. */
.cards-bare .card .card-collage.collage-lead { display: flex; align-items: center; overflow: visible; }
.cards-bare .card .card-collage.collage-lead img { height: 200px; }

/* ── Stats ──────────────────────────────────────────────────────────────── */
.stat-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 8px; }
.stat-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.stat-row-3 .stat { max-width: none; }
.stat-row-3 .stat .lbl { max-width: 300px; }
.stat { line-height: 1; max-width: 220px; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(64px, 9vw, 100px); letter-spacing: -0.03em; color: var(--gold); display: block; }
.stat .lbl { font-family: var(--font-body); font-weight: 500; font-size: 17px; line-height: 1.4; display: block; margin-top: 12px; }
.section-light .stat .lbl { color: var(--ink); }
.stat-source { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-top: 28px; }
.section-dark .stat-source, .section-slate .stat-source { color: var(--calm-blue); }

/* ── Pull quote / testimonial ───────────────────────────────────────────── */
.quote-block { max-width: 860px; }
.quote-block .mark { font-family: var(--font-body); font-style: italic; font-weight: 700; font-size: 90px; line-height: 0.5; height: 46px; color: var(--gold); }
.quote-block .quote { font-family: var(--font-body); font-style: italic; font-size: clamp(20px, 2.6vw, 26px); line-height: 1.5; margin-bottom: 22px; text-wrap: pretty; }
.quote-block .who { display: flex; align-items: center; gap: 14px; }
.quote-block .who img { width: 56px; height: 56px; border-radius: 9999px; object-fit: cover; }
.quote-block .who .name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.quote-block .who .role { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin-top: 4px; }
.section-dark .quote-block .who .role, .section-slate .quote-block .who .role, .section-calm .quote-block .who .role { color: inherit; opacity: 0.7; }
/* Centered featured quote — same treatment as the homepage carousel quote. */
.quote-block.quote-center { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-block.quote-center .mark { display: inline-block; }
.quote-block.quote-center .quote { font-size: clamp(20px, calc(3.1vw - 8px), 25px); line-height: 1.42; }
.quote-block.quote-center .who { justify-content: center; flex-direction: column; text-align: center; gap: 12px; }

/* Testimonial grid (multiple short quotes) */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 40px; }
.testi { background: var(--bg-card); border: 1px solid var(--rule); padding: 32px; display: flex; flex-direction: column; color: var(--ink); }
.testi .q { font-family: var(--font-body); font-style: italic; font-size: 16px; line-height: 1.6; margin-bottom: 20px; }
.testi .a { margin-top: auto; }
.testi .a .name { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.testi .a .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); margin-top: 4px; }

/* ── Content card grid (Our Work + Blog index) ──────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 40px; }
.filter-chip {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 9999px; border: 1px solid var(--rule); background: var(--bg-card);
  color: var(--ink); cursor: pointer; transition: all 150ms var(--ease-state);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
/* floating cards: art on top on cream, no white box (matches the Our Work index) */
.content-grid--float { gap: 40px; }
.content-grid--float .content-card { background: transparent; border: 0; border-radius: 0; }
.content-grid--float .content-card:hover { transform: translateY(-3px); box-shadow: none; }
.content-grid--float .content-card .thumb { border-radius: 0; }
.content-grid--float .content-card .body { padding: 20px 4px 0; }
.content-card {
  background: var(--bg-card); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  transition: transform 150ms var(--ease-state), box-shadow 150ms var(--ease-state);
}
.content-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(31,30,30,0.1); }
.content-card .thumb { aspect-ratio: 3 / 2; overflow: hidden; background: var(--slate-light); }
.content-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.content-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.content-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.content-card .tag { font-family: var(--font-display); font-weight: 500; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--intentional-blue); background: rgba(37,49,165,0.09); padding: 4px 8px; border-radius: 2px; }
.content-card h3 { font-size: 21px; line-height: 1.14; letter-spacing: -0.01em; margin-bottom: 10px; }
.content-card .excerpt { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--ink); }
.content-card .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); margin-top: 16px; }
.content-card .read { margin-top: 16px; }

/* Blog cards: float the collage art + copy directly on the cream page background
   (no card box) instead of the boxed photo-card treatment used for case studies. */
#articleGrid.content-grid { gap: 40px; }
#articleGrid .content-card {
  background: transparent; border: 0; border-radius: 0;
}
#articleGrid .content-card:hover { transform: translateY(-3px); box-shadow: none; }
#articleGrid .content-card .thumb { aspect-ratio: 4 / 3; background: transparent; }
#articleGrid .content-card .thumb img { object-fit: contain; }
#articleGrid .content-card .body { padding: 20px 4px 0; }
#articleGrid .content-card .excerpt {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
}

/* Our Work cards: float the photo + copy directly on cream, same as blog cards
   (no card box, square corners) — photos still use object-fit:cover since
   they're full-bleed photography, not floating transparent illustrations. */
#caseStudyGrid.content-grid { gap: 40px; }
#caseStudyGrid .content-card {
  background: transparent; border: 0; border-radius: 0;
}
#caseStudyGrid .content-card:hover { transform: translateY(-3px); box-shadow: none; }
#caseStudyGrid .content-card .thumb { border-radius: 0; }
#caseStudyGrid .content-card .body { padding: 20px 4px 0; }
#caseStudyGrid .content-card .excerpt {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
}

/* ── Article / Case-study reading layout ────────────────────────────────── */
/* Detail hero: left-aligned to the page, per-service accent, right-side service callout.
   Accent is set per page via data-service on .detail-hero (defaults to gold/leadership). */
.detail-hero {
  color: var(--cream); position: relative; overflow: hidden;
  /* The top block is a solid overlay tinted to the case study's own image color
     (--hero-base, set inline per page and pre-darkened so cream text clears WCAG).
     Article pages fall back to a per-service default below. Text + tags are
     cream/neutral so they stay legible on any of the image colors. */
  --hero-base: #856226;                 /* leadership default (articles) */
  --hero-muted: rgba(249, 248, 242, 0.82);
  background: var(--hero-base);
}
.detail-hero[data-service="team"]         { --hero-base: #4860c8; }
.detail-hero[data-service="facilitation"] { --hero-base: #a15324; }
.detail-hero[data-service="leadership"]   { --hero-base: #856226; }
.detail-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 56px; align-items: end; padding-top: 84px; padding-bottom: 84px; }
.detail-hero-main { min-width: 0; }
.detail-hero .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.detail-hero .tag { font-family: var(--font-display); font-weight: 500; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); background: rgba(249, 248, 242, 0.88); box-shadow: inset 0 0 0 1px rgba(31, 30, 30, 0.06); padding: 5px 12px; border-radius: 100px; }
.detail-hero h1 { font-size: clamp(34px, 5.4vw, 56px); line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 20px; max-width: 20ch; }
/* subtitle uses the service-page header sans-serif style, just left-aligned */
.detail-hero .sub { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2.4vw, 26px); color: var(--hero-muted); line-height: 1.42; max-width: 48ch; }
/* date line uses the homepage quote-attribution (role) style */
.detail-hero .byline { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--hero-muted); margin-top: 22px; }
.detail-hero.plain-cream .byline { color: var(--ink); }
.detail-hero.plain-cream .sub { color: var(--ink); }
.detail-hero-callout { border-top: 2px solid rgba(249, 248, 242, 0.55); padding-top: 16px; }
/* Named-client block: a CLIENT label + logo at the top of the callout column,
   mirroring the SERVICE block below. Both get a hairline; the top one lines up
   with the top of the tags in the left column. */
.detail-hero-callout.has-logo { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; gap: 6px; border-top: 0; padding-top: 0; }
.detail-hero-callout.has-logo .cs-callout-client,
.detail-hero-callout.has-logo .cs-callout-info { border-top: 2px solid rgba(249, 248, 242, 0.55); padding-top: 8px; }
.detail-hero.tint-light .detail-hero-callout.has-logo .cs-callout-client,
.detail-hero.tint-light .detail-hero-callout.has-logo .cs-callout-info,
.detail-hero.plain-cream .detail-hero-callout.has-logo .cs-callout-client,
.detail-hero.plain-cream .detail-hero-callout.has-logo .cs-callout-info { border-top-color: rgba(31, 30, 30, 0.42); }
/* logo <img> sits left-aligned under the CLIENT label; the silhouette reads as
   cream on the dark heroes and is inverted to ink on the light (gold) heroes.
   An <img> (not a CSS mask) also renders when the page is opened via file://. */
/* Sized by natural aspect at wall-proportional heights (no forced uniform
   width): wordmarks read larger, the Eli mark smaller, mirroring the logo
   wall where Eli is the control capped below the wide wordmarks (~56:71). */
.cs-client-logo { display: block; width: auto; height: 84px; max-width: 100%; object-fit: contain; object-position: left center; margin-top: 0; }
.detail-hero.tint-light .cs-client-logo { filter: brightness(0); }
.cs-client-logo--eli { height: 66px; }
@media (max-width: 820px) { .detail-hero-callout.has-logo { gap: 22px; } }
.detail-hero-callout .cs-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hero-muted); margin-bottom: 8px; }
.detail-hero-callout a { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.15; color: var(--cream); text-decoration: none; }
.detail-hero-callout a:hover { text-decoration: underline; text-underline-offset: 3px; }
.detail-hero-callout p { font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--hero-muted); margin-top: 8px; }
/* When the image color is light, flip the type to dark ink for contrast (tags stay
   a light frosted pill on every hero). */
.detail-hero.tint-light { color: var(--ink); --hero-muted: var(--ink); }
.detail-hero.tint-light .detail-hero-callout { border-top-color: rgba(31, 30, 30, 0.42); }
.detail-hero.tint-light .detail-hero-callout a { color: var(--ink); }

/* Blog posts: simplified header — no colorway block, just a black headline on cream
   (case-study detail heroes keep their per-service colorway, untouched). */
.detail-hero.plain-cream { background: var(--bg); color: var(--ink); --hero-muted: rgba(31, 30, 30, 0.68); }
.detail-hero.plain-cream .tag { background: rgba(31, 30, 30, 0.06); color: var(--ink); box-shadow: none; }
.detail-hero.plain-cream .detail-hero-callout { border-top-color: var(--rule); }
.detail-hero.plain-cream .detail-hero-callout a { color: var(--ink); }
@media (max-width: 760px) {
  .detail-hero-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 60px; padding-bottom: 60px; }
  .detail-hero-callout { max-width: 340px; }
}

.detail-figure { margin: 0; background: var(--steady-blue); }
.detail-figure img { width: 100%; max-height: 520px; object-fit: cover; }
.detail-figure figcaption { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-muted); padding: 12px 40px; max-width: var(--maxw); margin: 0 auto; }

.article-body { padding: 72px 0 88px; }
.article-body p, .article-body ul, .article-body ol { font-size: 18px; line-height: 1.8; margin-bottom: 24px; max-width: var(--prose); }
.article-body ul, .article-body ol { padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body h2 { font-size: clamp(26px, 3.6vw, 34px); letter-spacing: -0.015em; line-height: 1.12; margin: 44px 0 18px; }
.article-body h3 { font-size: clamp(21px, 2.6vw, 26px); letter-spacing: -0.01em; margin: 32px 0 14px; }
.article-body strong { font-weight: 700; }
.article-body em { font-style: italic; }
.article-body a { color: var(--intentional-blue); text-decoration: underline; text-underline-offset: 2px; }
.article-body .eyebrow { margin-top: 8px; }
.article-body blockquote {
  position: relative;
  padding: 6px 0 4px 0;
  margin: 40px 0;
  font-family: var(--font-body); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--ink);
  max-width: var(--prose);
}
.article-body blockquote::before {
  content: '';               /* the hand-drawn blue asterisk mark from the brand */
  display: block;
  width: 40px; height: 42px;
  background: url('../assets/site/asterisk-mark.png') no-repeat left center;
  background-size: contain;
  margin-bottom: 16px;
}
.article-body blockquote cite { display: block; margin-top: 14px; font-style: normal; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); }
/* Attributed testimonials inside case-study prose: a gold quotation mark
   (not the editorial asterisk) and attribution sized/colored like the
   role line on the standalone quote blocks. */
.article-body blockquote.testimonial::before {
  content: '\201C'; background: none; width: auto; height: auto;
  font-family: var(--font-body); font-style: italic; font-weight: 700;
  font-size: 64px; line-height: 0.5; color: var(--gold); margin-bottom: 2px;
}
.article-body blockquote.testimonial cite { font-size: 14px; color: var(--ink); }
/* Pull quotes: outdent 100px into the left margin, larger, with the brand
   asterisk to the LEFT of the quote (rotated slightly so no two look alike). */
.article-body blockquote.pullquote {
  margin: 48px 0 48px -200px;
  padding: 0;
  display: grid; grid-template-columns: auto 1fr; column-gap: 30px; align-items: start;
  font-size: 32px; line-height: 1.4;
  max-width: calc(var(--prose) + 200px);
}
.article-body blockquote.pullquote::before { margin: 4px 0 0 0; width: 54px; height: 56px; align-self: start; }
.article-body blockquote.pullquote:nth-of-type(2n+1)::before { transform: rotate(-9deg); }
.article-body blockquote.pullquote:nth-of-type(2n)::before   { transform: rotate(7deg); }
/* step the outdent down as the margin narrows so it never runs off-page */
@media (max-width: 1240px) { .article-body blockquote.pullquote { margin-left: -100px; max-width: calc(var(--prose) + 100px); } }
@media (max-width: 900px) {
  .article-body blockquote.pullquote { margin-left: 0; max-width: var(--prose); font-size: 26px; column-gap: 20px; }
}
/* Key-takeaway pullquote: a "KEY TAKEAWAY" eyebrow sits above the quote in the
   text column, with the brand asterisk spanning both rows on the left. */
.article-body blockquote.pullquote--takeaway { grid-template-rows: auto auto; row-gap: 12px; align-items: start; }
.article-body blockquote.pullquote--takeaway::before { grid-column: 1; grid-row: 1 / span 2; }
.article-body blockquote.pullquote--takeaway .pq-eyebrow {
  grid-column: 2; grid-row: 1; align-self: center;
  font-family: var(--font-mono); font-style: normal; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--intentional-blue); line-height: 1;
}
.article-body blockquote.pullquote--takeaway .pq-body { grid-column: 2; grid-row: 2; }
.article-body figure { margin: 36px 0; }
.article-body figure img { border-radius: 4px; border: 1px solid var(--rule); }

/* Case-study quotes — home-style quote blocks, two side by side on desktop */
/* Our Process box — a big gold watercolor spot in the lower-right that spills
   off the right margin and down into the next (cream) section, a scribble over
   it running off the edge, and a "listening" collage on top. */
.process-section { position: relative; overflow-x: clip; overflow-y: visible; z-index: 1; }
.process-deco { position: absolute; pointer-events: none; display: block; }
.process-deco-gold { right: calc(-13vw - 200px); bottom: -150px; width: min(640px, 60vw); z-index: 2; opacity: 0.92; }
.process-deco-scribble { right: -6vw; bottom: -110px; width: min(520px, 52vw); z-index: 3; opacity: 0.68; transform: rotate(-6deg); }
.process-listen { right: -2vw; bottom: 180px; width: clamp(176px, 18.75vw, 246px); z-index: 4; }
@media (max-width: 860px) {
  .process-deco-gold { width: 70vw; right: -45vw; bottom: -90px; }
  .process-listen { display: none; }
  .process-section .intro-statement, .process-section p.lede { max-width: 100%; }
}

/* "We center joy" statement — sans-serif display type beside the founders
   photo, with a watercolor spot bleeding off the margin. */
.joy-section { position: relative; overflow-x: clip; overflow-y: visible; padding-top: 192px; }
.joy-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; position: relative; z-index: 1; }
.joy-statement { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3vw, 38px); line-height: 1.16; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
.joy-photo { position: relative; }
.joy-photo-img { width: 100%; height: auto; display: block; position: relative; z-index: 1; }
.joy-deco { position: absolute; z-index: 0; pointer-events: none; display: block; }
.joy-deco-ochre { left: -20px; top: -70px; width: 480px; opacity: 0.9; z-index: 0; }
.joy-deco-scribble { left: calc(100% - 200px); top: calc(100% - 90px); width: 630px; opacity: 0.7; z-index: 2; }
@media (max-width: 860px) {
  .joy-grid { grid-template-columns: 1fr; gap: 64px; }
  .joy-section { padding-top: 96px; padding-bottom: 192px; }
}

/* Bio-page photo collage — candid photos woven into a masonry, no frames or
   rounded corners, with watercolor spots + a scribble bleeding through. */
.bio-collage-section { overflow-x: clip; overflow-y: visible; background: var(--bg); padding-bottom: 24px; }
@media (min-width: 861px) {
  .bio-collage-section { padding-top: 50px; padding-bottom: 50px; }
}
/* tighter vertical rhythm around the bio collage + quote */
.bio-pb-half { padding-bottom: 20px; }
.bio-pb-sm { padding-bottom: 24px; }
.bio-pb-half .article-body, .bio-pb-sm .article-body { padding-bottom: 6px; }
.bio-quote-section { padding-top: 28px; }
.bio-quote-section .cs-quotes { margin-top: 0; }
/* Hand-placed scrapbook: photos absolutely positioned, off-kilter and
   overlapping at varied sizes, with watercolor spots + a scribble woven in. */
.bio-collage { position: relative; margin-top: 7px; height: 672px; }
.bio-collage .cols { position: relative; z-index: 1; height: 100%; }
.bio-collage .cols img { position: absolute; display: block; box-shadow: 0 8px 26px rgba(31,30,30,0.16); }
.bio-collage .cols img:nth-child(1) { width: 40%; top: 0; left: 1%;  transform: rotate(-3.5deg); z-index: 2; }
.bio-collage .cols img:nth-child(2) { width: 31%; top: 6%; left: 44%; transform: rotate(2.5deg);  z-index: 4; }
.bio-collage .cols img:nth-child(3) { width: 30%; top: 52%; left: 12%; transform: rotate(3deg);   z-index: 5; }
.bio-collage .cols img:nth-child(4) { width: 42%; top: 42%; left: 40%; transform: rotate(-2.5deg); z-index: 3; }
.bio-collage-deco { position: absolute; pointer-events: none; display: block; }
.bio-collage-deco.spot-a { left: -240px; top: -48px; width: 552px; opacity: 0.85; z-index: 0; }
.bio-collage-deco.spot-b { right: -276px; bottom: -72px; width: 528px; opacity: 0.8; z-index: 0; }
.bio-collage-deco.scribble { right: -84px; top: 34%; width: 504px; opacity: 0.6; z-index: 6; transform: rotate(-8deg); }
@media (min-width: 861px) {
  /* whole unit 20% larger than the wrap's content box, broken out and
     centered so it bleeds evenly past the page margins on both sides. */
  .bio-collage { width: 120%; max-width: 1200px; left: 50%; transform: translateX(-50%); }
}
@media (max-width: 860px) {
  /* keep the hand-placed layout (photos, watercolor, scribble); hold a fixed
     width and center it so the composition simply crops off both sides. */
  .bio-collage { width: 760px; height: 560px; left: 50%; transform: translateX(-38%); }
  .bio-collage-deco.spot-a { left: -70px; top: -10px; width: 300px; }
  .bio-collage-deco.spot-b { left: 60px; right: auto; top: auto; bottom: -25px; width: 460px; z-index: 0; }
  .bio-collage-deco.scribble { right: 2%; top: 40%; width: 320px; }
  .bio-collage-section { padding-bottom: 40px; }
  .bio-collage .cols img.bio-photo-shrink-sm { width: 21%; }
  .bio-collage .cols img.bio-photo-shrink-md { width: 18%; }
}

.cs-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 56px; align-items: start; margin: 64px auto 0; }
.cs-quotes blockquote { max-width: none; margin: 0; font-size: clamp(16px, 1.5vw, 18px); line-height: 1.62; }
.cs-quotes blockquote::before {
  content: '\201C'; background: none; width: auto; height: auto;
  font-family: var(--font-body); font-style: italic; font-weight: 700;
  font-size: 74px; line-height: 0.55; color: var(--gold); margin-bottom: 6px;
}
/* attribution centered + optional headshot, styled like the homepage quote:
   bold display name over a mono uppercase role, both in ink */
.cs-quotes blockquote cite { display: block; text-align: center; font-style: normal; margin-top: 14px; }
.cs-quotes blockquote cite .cs-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; text-transform: none; color: var(--ink); }
.cs-quotes blockquote cite .cs-role { display: block; font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin-top: 4px; }
.cs-quotes .cs-avatar { display: block; width: 62px; height: 62px; border-radius: 9999px; object-fit: cover; margin: 22px auto 12px; }
/* a lone quote spans full width, centered and set at the big homepage quote
   size (not the smaller 2-up size), since there's nothing to share space with */
.cs-quotes blockquote:only-child {
  grid-column: 1 / -1; max-width: 820px; margin: 0 auto; text-align: center;
  font-size: clamp(20px, calc(3.1vw - 8px), 25px); line-height: 1.42;
}
.cs-quotes blockquote:only-child::before { font-size: 90px; }
@media (max-width: 820px) { .cs-quotes { grid-template-columns: 1fr; gap: 36px; } }
.article-body figcaption { font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); margin-top: 10px; }

/* Hero quote inside case-study prose — the big, centered, homepage-style pull
   with a gold quotation mark above it. */
.article-body blockquote.hero-quote {
  max-width: none; margin: 48px 0; padding: 0; text-align: center;
  font-family: var(--font-body); font-style: italic; font-weight: normal;
  font-size: clamp(23px, 2.9vw, 31px); line-height: 1.34; color: var(--ink);
}
.article-body blockquote.hero-quote::before {
  content: '\201C'; display: block; background: none; width: auto; height: auto; margin: 0 0 4px 0;
  font-family: var(--font-body); font-style: italic; font-weight: 700; font-size: 82px; line-height: 0.5; color: var(--gold);
}

/* Case-study accordion — same structural language as the FAQ list, with a
   chevron marker, used to collapse long parallel list items in prose. */
.cs-accordion { margin: 26px 0 34px; border-top: 1px solid var(--rule); }
.cs-accordion-item { border-bottom: 1px solid var(--rule); }
.cs-accordion-item > summary {
  list-style: none; cursor: pointer; position: relative; padding: 18px 40px 18px 0;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 2vw, 20px); letter-spacing: -0.01em; line-height: 1.25; color: var(--ink);
}
.cs-accordion-item > summary::-webkit-details-marker { display: none; }
.cs-accordion-item > summary::after {
  content: ''; position: absolute; right: 8px; top: 21px; width: 10px; height: 10px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(45deg); transition: transform 240ms var(--ease-state);
}
.cs-accordion-item[open] > summary::after { transform: rotate(-135deg); }
.cs-accordion-item .cs-accordion-body { padding: 0 40px 22px 0; }
.cs-accordion-item .cs-accordion-body p { margin: 0; }

/* On-brand process flow used inside case-study prose (e.g. the coaching arcs).
   Numbered gold nodes on white cards, connected left-to-right (stacked on
   narrow screens). */
.cs-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; margin: 30px 0 38px; }
.cs-flow-step { display: flex; flex-direction: column; gap: 10px; padding: 22px 20px; background: #fff; border: 1px solid var(--rule); border-top: 3px solid var(--gold); border-radius: 6px; }
.cs-flow-num { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 9999px; background: var(--gold); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.cs-flow-step h4 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); }
.cs-flow-step p { margin: 0; font-family: var(--font-body); font-size: 14.5px; line-height: 1.5; color: var(--ink-muted); }
.cs-flow-arrow { display: flex; align-items: center; justify-content: center; padding: 0 14px; color: var(--gold); font-size: 24px; line-height: 1; }
@media (max-width: 720px) {
  .cs-flow { grid-template-columns: 1fr; }
  .cs-flow-arrow { padding: 10px 0; transform: rotate(90deg); }
}

/* ── FAQ accordion ──────────────────────────────────────────────────────── */
/* Big watercolor spots + a scribble, cropped off the side margins for visual
   interest — kept well outside the centered 820px text column so they never
   compete with the questions. */
.faq-section { position: relative; overflow-x: clip; padding-top: 48px; }
.faq-deco { position: absolute; z-index: 0; pointer-events: none; display: block; }
.faq-deco-gold { left: -220px; top: 40px; width: 480px; opacity: 0.8; }
.faq-deco-blue { right: -180px; top: 460px; width: 360px; opacity: 0.55; }
.faq-deco-scribble { right: -300px; bottom: -60px; width: 560px; opacity: 0.75; transform: scaleX(-1); }
.faq-list { position: relative; z-index: 1; max-width: 820px; margin: 20px auto 0; padding: 0 40px; }
@media (max-width: 900px) {
  .faq-deco-gold { width: 320px; left: -160px; }
  .faq-deco-blue { width: 240px; right: -120px; }
  .faq-deco-scribble { width: 380px; right: -160px; }
}
@media (max-width: 640px) {
  .faq-deco { display: none; }
}
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2.4vw, 22px); letter-spacing: -0.01em; line-height: 1.25;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 6px; top: 22px;
  font-family: var(--font-display); font-weight: 500; font-size: 28px; color: var(--intentional-blue);
  transition: transform 240ms var(--ease-state);
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-item .faq-answer { padding: 0 44px 28px 0; }
.faq-item .faq-answer p { font-size: 17px; line-height: 1.75; max-width: 68ch; }
.faq-item .faq-answer p + p { margin-top: 16px; }

/* ── Client logo wall ───────────────────────────────────────────────────── */
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px 24px; margin-top: 44px; }
.logo-wall-page { display: contents; }
.logo-wall .cell { background: transparent; border: 0; aspect-ratio: 3 / 2; position: relative; padding: 10px; min-width: 0; }
.logo-wall .cell img { position: absolute; inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); object-fit: contain; filter: grayscale(1); opacity: 0.72; transition: filter 150ms var(--ease-state), opacity 150ms var(--ease-state); }
.logo-wall .cell:hover img { filter: grayscale(0); opacity: 1; }
.logo-wall-nav { display: none; }

/* ── CTA band ───────────────────────────────────────────────────────────── */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('../assets/Textures/Backgrounds/Steady Blue/WBT-20260403-Steady-Blue-Watercolor-Background-1.jpg');
  background-size: cover; background-position: center; opacity: 0.45; z-index: 0;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(32px, 5.4vw, 54px); letter-spacing: -0.025em; line-height: 1.02; margin-bottom: 16px; }
.cta-band .sub { font-family: var(--font-display); font-weight: 500; font-size: clamp(18px, 2.2vw, 22px); color: var(--calm-blue); margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Case-study CTA — watercolor band tinted to the case study's service colorway.
   Replaces the default Steady-Blue ::before texture; the scrim keeps cream text legible. */
.cta-band.cta-gold::before,
.cta-band.cta-blue::before,
.cta-band.cta-ochre::before { display: none; }
.cta-band.cta-gold {
  background: url('../assets/watercolor-cta/gold.jpg') center / cover;
  color: var(--ink);
}
/* gold is a light band — dark text + dark-on-light buttons */
.cta-band.cta-gold .eyebrow { color: var(--ink) !important; }
.cta-band.cta-gold .sub { color: rgba(31,30,30,0.82); }
.cta-band.cta-gold .btn-on-dark { background: var(--intentional-blue); color: var(--cream); border-color: var(--intentional-blue); }
.cta-band.cta-gold .btn-on-dark:hover { background: var(--intentional-blue-dark); border-color: var(--intentional-blue-dark); }
.cta-band.cta-gold .btn-ghost-dark { color: var(--ink); border-color: rgba(31,30,30,0.42); }
.cta-band.cta-gold .btn-ghost-dark:hover { border-color: var(--ink); background: rgba(31,30,30,0.06); }
.cta-band.cta-blue {
  background: linear-gradient(rgba(42,55,150,0.68), rgba(26,36,104,0.84)),
              url('../assets/watercolor-cta/blue.jpg') center / cover;
}
.cta-band.cta-ochre {
  background: linear-gradient(rgba(140,60,20,0.58), rgba(112,46,14,0.76)),
              url('../assets/watercolor-cta/ochre.jpg') center / cover;
}
/* the inline gold eyebrow and calm-blue sub text are low-contrast on these dark bands — use cream */
.cta-band.cta-blue .eyebrow,
.cta-band.cta-ochre .eyebrow { color: var(--cream) !important; }
.cta-band.cta-blue .sub,
.cta-band.cta-ochre .sub { color: var(--cream); }

/* Calm-blue watercolor band (Insights pages) — a light band, so dark text +
   dark-on-light buttons, mirroring the gold treatment. */
.cta-band.cta-calm::before { display: none; }
.cta-band.cta-calm { background: url('../assets/watercolor-cta/calm.jpg') center / cover; color: var(--ink); }
.cta-band.cta-calm .eyebrow { color: var(--ochre) !important; }
.cta-band.cta-calm h2 { color: var(--ink); }
.cta-band.cta-calm .sub { color: var(--ink); }
.cta-band.cta-calm .btn-on-dark { background: var(--intentional-blue); color: var(--cream); border-color: var(--intentional-blue); }
.cta-band.cta-calm .btn-on-dark:hover { background: var(--intentional-blue-dark); border-color: var(--intentional-blue-dark); }
.cta-band.cta-calm .btn-ghost-dark { color: var(--ink); border-color: rgba(31,30,30,0.42); }
.cta-band.cta-calm .btn-ghost-dark:hover { border-color: var(--ink); background: rgba(31,30,30,0.06); }
/* the newsletter field already lives in the footer just below, so the insights
   CTA points there instead of repeating a button */
.cta-signup-hint { font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--intentional-blue); }

/* ── Focus + reduced motion ─────────────────────────────────────────────── */
a:focus-visible, .btn:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 2px solid var(--intentional-blue); outline-offset: 2px; box-shadow: 0 0 0 3px rgba(37,49,165,0.3);
}
.section-dark a:focus-visible, .section-dark .btn:focus-visible { outline-color: var(--calm-blue); }

/* Scroll reveal */
.reveal { transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
html.reveal-on .reveal { opacity: 0; transform: translateY(20px); }
html.reveal-on .reveal.in-view { opacity: 1; transform: none; }

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

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 940px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 56px 0 64px; }
  .home-hero-photo { max-width: 460px; }
  .content-grid, .cards-3, .testi-grid { grid-template-columns: 1fr 1fr; }
  .logo-wall { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 820px) {
  section { padding: 72px 0; }
  .cards, .cards-3 { grid-template-columns: 1fr; }
  .cards-bare { gap: 64px; }
  .cards-bare .card { text-align: center; }
  .cards-bare .card .card-collage { margin-left: auto; margin-right: auto; }
  .cards-bare .card .card-collage img { margin: 0 auto; }
  .cards-bare .card .card-collage.collage-lead { justify-content: center; }
  .cards-bare .card .card-foot { display: flex; justify-content: center; }
}
/* Mobile nav — switches to the hamburger well above 820px (1000px) because the
   full desktop nav (logo + 5 links + dropdown + CTA pill) starts overlapping
   itself in the ~830-895px range; this gives it enough headroom to never break. */
@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--bg); border-bottom: 1px solid var(--rule);
    padding: 16px 40px 28px; transform: translateY(-120%); transition: transform 240ms var(--ease-state);
    box-shadow: 0 12px 20px rgba(31,30,30,0.08); max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 18px; padding: 10px 0; width: 100%; }
  .nav-links .nav-cta { margin-top: 8px; padding: 12px 18px; display: inline-block; width: auto; }
  /* Services dropdown becomes an inline, always-open sub-list on mobile */
  .nav-dd { width: 100%; }
  .nav-dd > button { font-size: 18px; padding: 10px 0; width: 100%; justify-content: flex-start; }
  .nav-dd > button svg { display: none; }
  .nav-dd-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; border-radius: 0; background: transparent;
    min-width: 0; padding: 0 0 4px 14px; margin: 0 0 4px;
  }
  .nav-dd-menu a { padding: 8px 0; }
  .nav-dd-menu a .d { display: none; }
}
@media (max-width: 620px) {
  .wrap, .nav, .prose-wrap, .faq-list { padding-left: 24px; padding-right: 24px; }
  .content-grid, .cards-3, .testi-grid { grid-template-columns: 1fr; }
  .logo-wall {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .logo-wall::-webkit-scrollbar { display: none; }
  .logo-wall-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 24px 20px;
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
  }
  .logo-wall-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
  .topic-list.cols { grid-template-columns: 1fr; }
  .card { padding: 28px; }
  .detail-figure figcaption { padding-left: 24px; padding-right: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ABOVE-THE-FOLD HEROES — light "white-bold" treatments that mirror the
   current site: big one-color headline + the page's own decorative collage.
   Image display sizes are kept at or below each asset's native pixel size.
   ═══════════════════════════════════════════════════════════════════════ */

/* Shared light-hero shell */
.hero-light { background: var(--bg); position: relative; overflow: hidden; }
.hero-light .eyebrow { color: var(--ochre); }
.hero-light h1 { color: var(--steady-blue); }
.hero-light .headline-support { color: var(--ink); font-family: var(--font-display); font-weight: 500; }

/* HOME hero — headline block, then the wide triptych at large scale */
.hero-home { padding: 64px 0 0; }
.hero-home h1 { font-size: clamp(42px, 6.6vw, 78px); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero-home .headline-support { font-size: clamp(18px, 2.3vw, 23px); line-height: 1.35; max-width: 40ch; margin-bottom: 30px; }
.hero-home-head { max-width: 900px; }
.hero-home-photo { margin-top: 56px; }
.hero-home-photo img { width: 100%; height: auto; display: block; }   /* triptych native 2000×875 */

/* SERVICE hero — text left, decorative collage right */
.hero-service { padding: 72px 0 76px; }
.hero-service-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 40px; align-items: center; }
.hero-service h1 { font-size: clamp(38px, 5.6vw, 62px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 18px; }
.hero-service .headline-support { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.35; max-width: 34ch; margin-bottom: 30px; }
.hero-service .lede { margin-bottom: 30px; }

/* Decorative collage cluster (absolute layered pieces; sizes set inline, <= native) */
.hero-art { position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 460px; margin: 0 auto; }
.hero-art img { position: absolute; display: block; }

/* ABOUT / PHOTO hero — title block, then wide photo */
.hero-photo { background: var(--bg); padding: 64px 0 0; }
.hero-photo .eyebrow { color: var(--ochre); }
.hero-photo h1 { color: var(--ink); font-size: clamp(40px, 6.2vw, 68px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 18px; }
.hero-photo-frame { max-width: 1680px; margin: 48px auto 0; padding: 0 clamp(40px, 6vw, 120px); }
.hero-photo-img { position: relative; overflow: hidden; aspect-ratio: 2500 / 1746; }
.hero-photo-img img { position: absolute; top: -4%; left: -4%; width: 108%; max-width: none; height: 108%; object-fit: cover; object-position: 50% 50%; display: block; }
@media (max-width: 640px) { .hero-photo-frame { padding: 0 20px; } }
/* Generic in-frame parallax wrapper: crops a slightly oversized image so it can
   drift within its own box on scroll without revealing an edge. */
.frame-parallax { position: relative; overflow: hidden; border-radius: 4px; }
.frame-parallax img { position: absolute; top: -5%; left: -5%; width: 110%; max-width: none; height: 110%; object-fit: cover; }

/* SIMPLE colored header band (our-work / blog / faq / contact) — kept distinct */
.hero-band { position: relative; z-index: 2; overflow-x: clip; overflow-y: visible; padding: 76px 0 80px; }
.hero-band .wrap { position: relative; z-index: 1; }
.hero-band h1 { font-size: clamp(38px, 6vw, 60px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 18px; max-width: 16ch; }
.hero-band .lede { max-width: 60ch; }
.hero-band--slate { background: var(--clean-slate); color: var(--cream); }
.hero-band--slate .eyebrow { color: var(--gold); }
.hero-band--slate .lede { color: var(--calm-blue); }
.hero-band--calm  { background: var(--calm-blue); color: var(--steady-blue); }
.hero-band--calm .eyebrow { color: var(--steady-blue); }
.hero-band--calm h1 { color: var(--ink); }
.hero-band--paper { background: var(--bg-card); color: var(--ink); border-bottom: 1px solid var(--rule); }
.hero-band--paper .eyebrow { color: var(--ochre); }
.hero-band--paper h1 { color: var(--steady-blue); }
/* Plain cream header — no card/color block, just black type on the page background */
.hero-band--cream { background: var(--bg); color: var(--ink); }
.hero-band--cream .eyebrow { color: var(--ochre); }
.hero-band--cream h1 { color: var(--ink); }
/* Scattered hero-band collage — spot/scribble/focal illustration each independently
   placed and parallaxed on scroll, same visual language as the service-page heroes
   (.hero-svc-deco), just smaller to fit this shorter band. */
.hero-band-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: visible; }
.hero-band-deco img { position: absolute; display: block; }

/* ═══ LAYOUT VARIATIONS (beyond Lead-to-Win) ═══ */
/* Duotone / small-photo helper — the site's brand photos are only 500×500 */
.photo-frame { max-width: 460px; border-radius: 0; overflow: hidden; aspect-ratio: 1 / 1; position: relative; }
/* image sits larger than its frame so it can drift within it on scroll (see js/site.js);
   the source photos have rounded corners baked in, so the zoom is also wide enough to
   crop past that curve and leave straight edges. */
/* the source photos have rounded corners baked in only at the top two corners
   (bottom stays square); scale up uniformly (so cover doesn't distort/skew the
   crop) and bias the offset toward the top so most of the crop comes off the
   top edge, not the sides. */
.photo-frame img { position: absolute; left: -5%; top: -5%; width: 110%; height: 110%; object-fit: cover; display: block; }

/* Alternating media + text row */
.media-row { display: grid; grid-template-columns: 460px 1fr; gap: 48px; align-items: center; }
.media-row.reverse { grid-template-columns: 1fr 460px; }
.media-row.reverse .media-row-media { order: 2; }
.media-row-media img { width: 100%; height: auto; display: block; border-radius: 4px; }

/* Small celestial/section accent */
.accent-art { width: 84px; height: auto; display: block; margin-bottom: 18px; }

/* Two-column "is / isn't" comparison already uses .cards; add a lighter variant */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 36px; }
.compare .col { background: var(--bg-card); border: 1px solid var(--rule); padding: 32px; color: var(--ink); }
.compare .col h3 { font-size: 22px; margin-bottom: 14px; }
.compare .col.is h3 { color: var(--clean-slate); }
.compare .col.isnt h3 { color: var(--ochre); }

@media (max-width: 940px) {
  .hero-service-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-art { max-width: 360px; margin: 8px 0 0; }
  .media-row, .media-row.reverse { grid-template-columns: 1fr; gap: 24px; }
  .media-row.reverse .media-row-media { order: 0; }
  /* Bio pages: name/meta/lede reads before the portrait once stacked. */
  .bio-hero-row .media-row-media { order: 1; }
  /* center the duotone photo once the row stacks */
  .photo-frame { margin-left: auto; margin-right: auto; }
  .hero-band-deco { display: none; }
}
@media (max-width: 620px) {
  .compare { grid-template-columns: 1fr; }
  .hero-home-photo { margin-top: 36px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   V2 HEROES — matched to the live site: centered service heroes with a
   Lora-italic subhead + per-page accent button, and a home hero with the
   headline reversed out over the full-width triptych.
   Per-page accent is set via a small :root <style> block in each page body:
     :root { --accent: #CD9F36; --accent-ink: #1F1E1E; }
   ═══════════════════════════════════════════════════════════════════════ */

.btn-accent { background: var(--accent, var(--intentional-blue)); color: var(--accent-ink, var(--cream)); border-color: transparent; }
.btn-accent:hover { filter: brightness(0.92); }

/* ── Centered service hero ── */
/* clip horizontally (off-canvas art must not cause h-scroll) but let decorations
   overflow BELOW the hero so they layer on top of the next panel as they parallax */
.hero-svc { position: relative; overflow-x: clip; overflow-y: visible; background: var(--bg); padding: 104px 0 112px; }
.hero-svc-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; padding: 0 24px; text-align: center; }
.hero-svc h1 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(40px, 7.4vw, 82px); line-height: 1.0; letter-spacing: -0.01em; color: var(--ink);
}
.hero-svc .svc-sub {
  font-family: var(--font-body); font-style: italic; font-weight: 400;
  font-size: clamp(19px, 3vw, 29px); line-height: 1.3; color: var(--ink); margin-top: 12px;
}
.hero-svc .svc-body {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.42;
  color: var(--ink); max-width: 640px; margin: 34px auto 0;
}
.hero-svc .btn { margin-top: 34px; }
.hero-svc-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-svc-deco img { position: absolute; display: block; }

/* ── Home hero: headline over full-width triptych ── */
/* Shared decorative stack wrapping the hero + statement band so the real
   home-hero watercolor & scribble can span the boundary and show in full. */
.hero-stack { position: relative; overflow: hidden; background: var(--bg); }
.hero-stack-deco { position: absolute; z-index: 0; pointer-events: none; display: block; }
.hero-stack-gold { left: -70px; top: calc(40% - 80px); width: clamp(360px, 40vw, 600px); }  /* +20%, up 80px */
.hero-stack-scribble { right: -460px; top: calc(42% - 230px); width: clamp(528px, 60vw, 1128px); transform: scaleX(-1); } /* moved 120px further right to clear the statement text on scroll */
/* draw the hero scribble on, once, on load */
@keyframes scribble-draw { from { clip-path: inset(0 0 0 100%); } to { clip-path: inset(0 0 0 0); } }
html.reveal-on .hero-stack-scribble { animation: scribble-draw 1.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s both; }
@media (prefers-reduced-motion: reduce) { html.reveal-on .hero-stack-scribble { animation: none; } }

.hero-home2 { position: relative; background: var(--bg); padding: 24px 0 40px; }
.hero-home2-frame { position: relative; z-index: 2; max-width: 1680px; margin: 0 auto; padding: 0 clamp(40px, 6vw, 120px); }
.hero-home2-photo { width: 100%; height: auto; display: block; }
.hero-home2-title {
  position: absolute; left: 50%; top: 72%; transform: translate(-50%, -50%);
  width: 92%; text-align: center; color: var(--cream);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 6.6vw, 92px); line-height: 1.0; letter-spacing: -0.02em;
  text-shadow: 0 2px 26px rgba(0,0,0,0.34), 0 1px 4px rgba(0,0,0,0.28);
}
.hero-home2-deco { position: absolute; z-index: 1; pointer-events: none; }
.hero-home2-gold { left: -60px; bottom: -70px; width: clamp(300px, 30vw, 540px); }
.hero-home2-scribble { right: -40px; bottom: -20px; width: clamp(440px, 50vw, 940px); opacity: 0.9; }

@media (max-width: 820px) {
  .hero-svc { padding: 72px 0 78px; }
  .hero-svc-deco img { transform: scale(0.72); opacity: 0.9; }
  .hero-home2-title { top: 62%; font-size: clamp(26px, 7vw, 46px); }
}
@media (max-width: 560px) {
  /* keep only a couple of accents so the mobile hero stays clean */
  .hero-svc-deco img.deco-hide-sm { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ANNOTATED STATEMENT BAND — the "handwritten circle + underline" moment
   under the home hero. Centered Lora statement; key phrases marked with
   hand-drawn SVG ink in Intentional Blue; centered CTA; corner decorations.
   ═══════════════════════════════════════════════════════════════════════ */
.statement-band { position: relative; background: transparent; padding: 120px 0 104px; }
.statement-deco { position: absolute; z-index: 0; pointer-events: none; }
.statement-gold { left: -90px; top: -150px; width: clamp(240px, 26vw, 500px); }
.statement-scribble { right: -50px; top: -80px; width: clamp(320px, 38vw, 720px); opacity: 0.92; }
.statement-inner { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; padding: 0 40px; text-align: center; }
.statement {
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(19px, 2.4vw, 24px); line-height: 1.55; letter-spacing: -0.01em; color: var(--ink);
  max-width: 660px; margin-left: auto; margin-right: auto;
}
.statement strong { font-weight: 700; }
.statement-cta { margin-top: 40px; }

/* hand-drawn annotations — drawn at runtime by rough-notation (js/rough-notation.js),
   the same sketch-style engine behind Squarespace's text-highlight marks: an open
   circle around a phrase and wobbly underlines that draw in on scroll. */
.anno { position: relative; }
.anno[data-anno="circle"] { white-space: nowrap; }
/* Anchor the rough-notation SVG overlays to their own paragraph (a positioned
   container that always contains the text) so the marks stay locked to the
   words through scroll, font-load reflow, and resize redraws instead of
   drifting off to a far ancestor. */
.anno-host { position: relative; }
.rough-annotation { pointer-events: none; }

/* Geometric hand-underlines drawn as a repeating SVG stroke under a phrase. */
.u-wave, .u-zigzag, .u-wave-gold { padding-bottom: 7px; background-repeat: repeat-x; background-position: 0 100%; }
/* seamless wave: endpoints meet at y=4 with matching tangent, humps kept inside
   the 0–8 viewBox so nothing clips (which had read as gaps between arcs). */
.u-wave { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='8' viewBox='0 0 20 8' preserveAspectRatio='none'%3E%3Cpath d='M0 4 Q5 1 10 4 T20 4' fill='none' stroke='%232531A5' stroke-width='1.5'/%3E%3C/svg%3E"); background-size: 20px 7px; }
/* scratchy hand-drawn underline: two jagged offset strokes */
.u-wave-gold { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='12' viewBox='0 0 26 12' preserveAspectRatio='none'%3E%3Cpath d='M0 5 L3 3.4 6 6.4 9 4 12 5.8 15 3.6 18 6 21 4.2 24 5.8 26 5' fill='none' stroke='%23CD9F36' stroke-width='1.6' stroke-linejoin='round'/%3E%3Cpath d='M0 6.6 L3 5.2 6 7.8 9 5.6 12 7.4 15 5.2 18 7.6 21 5.8 24 7.2 26 6.6' fill='none' stroke='%23CD9F36' stroke-width='1.3' stroke-linejoin='round' opacity='0.65'/%3E%3C/svg%3E"); background-size: 28px 12px; }
.u-zigzag { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='8' viewBox='0 0 16 8' preserveAspectRatio='none'%3E%3Cpath d='M0 6 L4 2 8 6 12 2 16 6' fill='none' stroke='%232531A5' stroke-width='1.6' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E"); background-size: 16px 7px; }

/* Co-leading thumbnail: the source photo shows two people bowed over a table of
   sticky notes; zoom the card thumbnail into the upper region so a face reads. */
.content-card .thumb img[src*="co-leading-an-organization"] { transform: scale(1.5); transform-origin: 50% 26%; }

@media (max-width: 620px) {
  .statement-gold, .statement-scribble { opacity: 0.65; }
}

/* ═══ Featured-quote carousel (home testimonials) ═══ */
.quote-carousel { max-width: 900px; margin: 44px auto 0; }
.quote-carousel-viewport { overflow: hidden; }
.quote-carousel-track { display: flex; transition: transform 420ms var(--ease-state); }
.quote-slide { flex: 0 0 100%; min-width: 0; padding: 4px 8px; }
.quote-carousel .quote-block { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-carousel .quote-block .quote { font-size: clamp(20px, calc(3.1vw - 8px), 25px); line-height: 1.42; }
.quote-carousel .quote-block .who { justify-content: center; }
.quote-carousel-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 32px; }
.qc-arrow {
  width: 48px; height: 48px; border-radius: 9999px; border: 1.5px solid var(--rule); background: var(--bg-card);
  font-family: var(--font-body); font-size: 26px; line-height: 1; color: var(--steady-blue); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 150ms var(--ease-state), border-color 150ms var(--ease-state), color 150ms var(--ease-state);
}
.qc-arrow:hover { background: var(--steady-blue); border-color: var(--steady-blue); color: var(--cream); }
.qc-dots { display: flex; gap: 9px; }
.qc-dot { width: 8px; height: 8px; border-radius: 9999px; background: rgba(31,30,30,0.22); border: 0; padding: 0; cursor: pointer; transition: background 150ms var(--ease-state), transform 150ms var(--ease-state); }
.qc-dot[aria-current="true"] { background: var(--intentional-blue); transform: scale(1.3); }

/* ═══ About-teaser figure: photo LEFT + blue watercolor (top-left) + squiggle (bottom-left) ═══ */
.about-teaser { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 64px; align-items: center; }
.about-figure { position: relative; }
.about-figure-photo { position: relative; z-index: 1; width: 100%; height: auto; display: block; border-radius: 4px; box-shadow: 0 16px 34px rgba(31,30,30,0.14); }
.about-figure-blue { position: absolute; z-index: 0; left: -220px; top: -70px; width: 108%; pointer-events: none; }  /* under top-left corner; hard bottom edge tucks behind the photo */
.about-figure-scribble { position: absolute; z-index: 0; left: -150px; bottom: -110px; width: 96%; pointer-events: none; } /* under the photo, off bottom-left corner */

/* CTA sub-text inline link (on dark band) */
.cta-band .sub a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.cta-band .sub a:hover { color: var(--calm-blue); }

/* League Spartan Thin display paragraph (offset section intros) */
.lede-thin {
  font-family: var(--font-display); font-weight: 400;   /* League Spartan Regular */
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.42; letter-spacing: 0; color: var(--ink);
}
.section-dark .lede-thin, .section-slate .lede-thin { color: var(--calm-blue); }

/* Offset / staggered "2-of-3" layout */
.offset-left  { max-width: 66%; margin-right: auto; }
.offset-right { max-width: 66%; margin-left: auto; margin-top: 60px; }

/* Centered eyebrow */
.eyebrow-center { text-align: center; }

/* Testimonial carousel — centered attribution, headshot stacked on top */
.quote-carousel .quote-block .who { flex-direction: column; text-align: center; gap: 12px; }

/* Clients — brand-black logos, tighter cells so the block reads larger */
.logo-wall { gap: 30px 22px; }
.logo-wall .cell { padding: 4px; }
.logo-wall .cell img { inset: 4px; width: calc(100% - 8px); height: calc(100% - 8px); filter: brightness(0); opacity: 0.9; }
.logo-wall .cell:hover img { filter: brightness(0); opacity: 1; }
/* detailed/illustrative logos can't be flattened to a solid black silhouette — keep their tones */
.logo-wall .cell img.logo-detailed,
.logo-wall .cell:hover img.logo-detailed { filter: grayscale(1); }
/* Eli's near-square campaign mark reads oversized next to the wordmarks, and its
   grey drop-shadow must stay (not flatten to solid black) — scaled down, tones kept.
   Uses transform (not a percentage max-height) so it isn't affected by the
   percentage-height-vs-aspect-ratio grid quirk that broke this on iOS Safari. */
.logo-wall .cell img.logo-eli { transform: scale(0.58); }

/* Footer tweaks */
.footer-tag { font-size: 20px; }
.footer-signup label { max-width: none; }        /* one line, spans to the button's right edge */

@media (max-width: 820px) {
  .about-teaser { grid-template-columns: 1fr; gap: 8px; }
  .about-figure { margin: 40px 20px 70px; max-width: 520px; }
  .about-figure-blue, .about-figure-scribble { opacity: 0.55; }
  .stat-row-3 { grid-template-columns: 1fr; gap: 32px; }
  .offset-left, .offset-right { max-width: 100%; margin-left: 0; margin-right: 0; }
  .offset-right { margin-top: 32px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   MOBILE REFINEMENTS — tame the large hero decorations, restack the hero
   headline below the triptych, and tighten spacing on small screens.
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  /* anchor the decos to the triptych's bottom edge (not the tall stack) so they tuck behind its corners */
  .hero-stack-gold { width: clamp(150px, 34vw, 280px); bottom: auto; top: calc(24px + (100vw - 2*clamp(40px, 6vw, 120px)) * 0.4375 - 100px); left: -44px; }
  .hero-stack-scribble { width: clamp(200px, 48vw, 380px); right: -60px; bottom: auto; top: calc(24px + (100vw - 2*clamp(40px, 6vw, 120px)) * 0.4375 - 90px); }
  .statement-band { padding: 56px 0 72px; }
  .hero-svc-deco img { transform: scale(0.62); }
}
@media (max-width: 640px) {
  /* Hero: headline drops below the triptych, dark on cream (legible on a narrow strip) */
  .hero-home2 { padding: 16px 0 17px; }
  .hero-home2-frame { padding: 0 20px; }
  .hero-home2-title {
    position: static; transform: none; width: auto; text-align: center;
    color: var(--ink); text-shadow: none;
    font-size: clamp(30px, 8.5vw, 42px); line-height: 1.03; margin-top: 39px;
  }
  .hero-stack-gold { width: 175px; left: -34px; bottom: auto; top: calc(16px + (100vw - 40px) * 0.4375 - 100px); }
  .hero-stack-scribble { width: 220px; right: -84px; bottom: auto; top: calc(16px + (100vw - 40px) * 0.4375 - 90px); }

  .statement-band { padding: 22px 0 48px; }
  .statement { font-size: 20px; line-height: 1.5; }
  .statement-cta { margin-top: 30px; }

  /* About figure: keep decorations close so they don't smear across the page */
  .about-figure-blue { left: -66px; top: -30px; width: 84%; opacity: 0.9; }
  .about-figure-scribble { left: -34px; bottom: -48px; width: 72%; opacity: 1; }

  /* Service heroes: pull the scattered art in tight */
  .hero-svc { padding: 52px 0 56px; }
  .hero-svc-deco img { transform: scale(0.5); }

  /* Impact numbers a touch smaller so labels breathe */
  .stat .num { font-size: clamp(56px, 15vw, 72px); }

  /* Section rhythm */
  section { padding: 56px 0; }
}

/* Tablet band (821–1024px): the collage kicks in here but still inherited the full
   desktop hero-svc padding, leaving an oversized gap above/below it. Halve it. */
@media (min-width: 821px) and (max-width: 1024px) {
  .hero-svc { padding: 52px 0 56px; }
}

/* ── Small/mid screens: simplify the service hero to one watercolor + focal + scribble,
   clustered in a collage above the title. Kicks in early (≤1024px) so the desktop
   scatter never overlaps the headline/body on tablets and small laptops. ── */
@media (max-width: 1024px) {
  /* overlapping collage above the title; z-order: watercolor < squiggle < image */
  .hero-svc-deco {
    position: relative; inset: auto; z-index: auto; display: block;
    width: 300px; height: 225px; margin: 6px auto 2px;
  }
  .hero-svc-deco img:not(.deco-sm) { display: none !important; }
  .hero-svc-deco img.deco-sm {
    display: block !important; position: absolute !important;
    right: auto !important; bottom: auto !important;
    transform: none !important; max-width: none !important; margin: 0 !important;
  }
  .hero-svc-deco img.sm-water    { left: 4px  !important; top: 30px !important; width: 178px !important; z-index: 1 !important; }
  .hero-svc-deco img.sm-scribble { left: -22px !important; top: 16px !important; width: 344px !important; z-index: 2 !important; }
  .hero-svc-deco img.sm-focal    { left: 96px !important; top: 14px !important; width: 122px !important; z-index: 3 !important; }
  /* Leadership — Saturn 50% larger */
  .hero-svc-deco.deco-lead img.sm-focal { width: 183px !important; left: 78px !important; }
  /* Team — pulled together; watercolor 2x, bees 3x */
  .hero-svc-deco.deco-team { width: 340px !important; height: 225px !important; }
  .hero-svc-deco.deco-team img.sm-water    { width: 300px !important; left: 15px  !important; top: 38px  !important; }
  .hero-svc-deco.deco-team img.sm-focal    { width: 225px !important; left: 67px  !important; top: 0px   !important; }
  .hero-svc-deco.deco-team img.sm-scribble { width: 280px !important; left: 1px   !important; top: 52px  !important; }
}

@media print {
  .site-header, .nav-toggle, .cta-band { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
