/* ==========================================================================
   THE CURVE COLLECTIVE — Working Palette (icon-derived, July 2026)
   Text/ink: Oxblood · Surfaces: Linen (primary) / Mist (cool secondary)
   Shapes: Claret (icon & shape fills) / Pine (deep-green counterweight block)
   Accent: Vermilion (sparing, never decorative). Dove & Sage set aside.
   Voice: quietly provocative, never urgent. Whitespace is part of the brand.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Brand palette (Working Palette, July 2026) */
  --oxblood:        #4A202D;  /* text / ink — darkest, highest contrast */
  --oxblood-deep:   #38161F;  /* deeper layering (footer) */
  --oxblood-soft:   #5C3340;  /* hover / tint on dark */
  --claret:         #7C1E2C;  /* icon & shape fills — warmer cousin of oxblood */
  --pine:           #0E3E34;  /* deep-green counterweight in the mark & blocks */
  --vermilion:      #F04132;  /* accent — sparingly, never decorative */
  --mist:           #DCE6F2;  /* cool secondary surface */
  --dove:           #88A3B8;  /* set aside (kept for legacy fallbacks) */
  --sage:           #B4C6B4;  /* set aside (kept for legacy fallbacks) */

  /* Neutrals — Linen: a warm off-white the mark sits on */
  --paper:          #F6F4EF;  /* Linen — primary background */
  --paper-2:        #EEE8DE;  /* subtle warm secondary under Linen */
  --white:          #FFFFFF;
  --line:           #E2DACE;  /* hairline on paper */
  --line-soft:      #ECE7DD;  /* fainter hairline on white */
  --line-dark:      rgba(232,232,235,.16); /* hairline on dark */

  /* Professional near-black — lets the brand breathe in black & white too */
  --ink-900:        #18141A;  /* warm near-black — dark sections, page heads */
  --ink-800:        #221D26;  /* raised panels on ink */
  --on-ink:         #F3F1F4;  /* text on near-black */
  --on-ink-soft:    #C9C3CD;  /* muted on near-black — AA (>=4.5:1) */

  /* Text */
  --ink:            #34202A;  /* body on paper */
  --ink-soft:       #6A5660;  /* muted on paper */
  --on-dark:        #F1ECEF;  /* body on oxblood */
  --on-dark-soft:   #E4D7DC;  /* muted on oxblood — AA (>=4.5:1) */

  /* Type */
  --sans: "Hanken Grotesk", "Basic Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing rhythm */
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --section-y: clamp(4.5rem, 11vw, 10rem);
  --maxw: 1240px;

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

  --radius: 4px;
  --z-nav: 50;
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-weight: 300;
  font-size: clamp(1rem, .96rem + .25vw, 1.125rem);
  line-height: 1.7;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--vermilion); color: #fff; }

/* ---- Typography --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.022em;
  color: var(--oxblood);
  text-wrap: balance;
}
.display {
  font-size: clamp(2.3rem, 1.5rem + 3.4vw, 4.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.03em;
}
h2.section-title { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem); font-weight: 600; letter-spacing: -.015em; }

.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--vermilion);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--vermilion);
  display: inline-block;
}
.lede { font-size: clamp(1.12rem, 1rem + .6vw, 1.4rem); line-height: 1.55; font-weight: 300; }
.muted { color: var(--ink-soft); }
em, .italic { font-style: italic; }

/* ---- Layout helpers ----------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 7vw, 6rem); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

/* anchored sections clear the fixed nav when jumped to */
.section[id], .pagehead[id] { scroll-margin-top: clamp(80px, 11vh, 108px); }

/* Feature / callout sections — light Mist blocks with dark text.
   (--oxblood / --ink / --pine modifiers are kept as names but all render as
   Mist so the site stays fully light: brand colours + black/white only.) */
.section--oxblood,
.section--ink,
.section--pine { background: var(--mist); color: var(--ink); }
/* hairline separator for adjacent feature sections — NOT on the pine section,
   which is entered via the wave/curve (a straight border would cut across it) */
.section--oxblood, .section--ink { border-top: 1px solid var(--line); }
.section--mist { background: var(--mist); }
.section--paper-2 { background: var(--paper); }
.section--white { background: var(--white); }
.section--oxblood h1, .section--oxblood h2, .section--oxblood h3,
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4,
.section--pine h1, .section--pine h2, .section--pine h3, .section--pine h4 { color: var(--oxblood); }
.section--oxblood .muted,
.section--ink .muted, .section--pine .muted { color: var(--ink-soft); }
.section--ink .layer, .section--pine .layer { border-top-color: var(--line); }
.section--ink .quote, .section--pine .quote { background: rgba(74,32,45,.045); border-color: var(--line); color: var(--ink); }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .92rem 1.5rem;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform .35s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform .4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 2px solid var(--vermilion); outline-offset: 3px; }

.btn--primary { background: var(--vermilion); color: #fff; }
.btn--primary:hover { background: #d8392b; }
.btn--ghost { border-color: rgba(74,32,45,.28); color: var(--oxblood); }
/* deep-purple (oxblood) filled CTA — used for the homepage nav button */
.btn--deep { background: var(--oxblood); color: #fff; border-color: var(--oxblood); }
.btn--deep:hover { background: var(--oxblood-deep); border-color: var(--oxblood-deep); color: #fff; }
.btn--ghost:hover { border-color: var(--oxblood); background: var(--oxblood); color: #fff; }
/* Hero / page headers / feature sections are now light — ghost buttons use the
   default dark-on-light styling, no overrides needed. */

.textlink {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; color: var(--oxblood);
  padding-bottom: 2px;
  background-image: linear-gradient(var(--vermilion), var(--vermilion));
  background-size: 0% 1.5px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .4s var(--ease-out);
}
.textlink:hover { background-size: 100% 1.5px; }
.textlink .arrow { transition: transform .4s var(--ease-out); }
.textlink:hover .arrow { transform: translateX(3px); }

/* ==========================================================================
   NAVIGATION — floating, transparent over hero, settles on scroll
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  padding: clamp(.7rem, 1.5vw, 1.1rem) 0;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
}
.nav.is-stuck {
  background: rgba(244,240,233,.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--oxblood); }
.brand__mark { width: 34px; height: 34px; flex: none; object-fit: contain; border-radius: 9px; padding: 2px; box-sizing: border-box; transition: background-color .25s ease; }
/* The mark is an oxblood squircle — on dark surfaces (hero nav, footer) it
   blends in, so it sits on a light "chip"; on light surfaces the chip is
   invisible and it reads as the icon alone. */
.nav .brand__mark, .footer .brand__mark { background-color: transparent; }
.nav.is-stuck .brand__mark,
body.page-solid-nav .nav:not(.is-stuck) .brand__mark { background-color: transparent; }

/* Always-solid nav — for pages with no dark page header (e.g. Contact) */
body.page-solid-nav .nav:not(.is-stuck) { background: rgba(244,240,233,.9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
body.page-solid-nav .nav:not(.is-stuck) .brand__name { color: var(--oxblood); }
body.page-solid-nav .nav:not(.is-stuck) .nav__link { color: var(--ink); }
body.page-solid-nav .nav:not(.is-stuck) .nav__link[aria-current="page"] { color: var(--vermilion); }
body.page-solid-nav .nav:not(.is-stuck) .btn--ghost { border-color: rgba(74,32,45,.28); color: var(--oxblood); }
body.page-solid-nav .nav:not(.is-stuck) .btn--ghost:hover { background: var(--oxblood); color: #fff; border-color: var(--oxblood); }
body.page-solid-nav .nav:not(.is-stuck) .nav__toggle span { background: var(--oxblood); }
.brand__name {
  font-weight: 600; font-size: 1.02rem; letter-spacing: .01em; color: var(--oxblood);
  line-height: 1;
}
/* Headers are light now — nav text stays dark whether floating or stuck */
.nav:not(.is-stuck) .brand__name { color: var(--oxblood); }
.nav:not(.is-stuck) .nav__link { color: var(--ink); }
.nav:not(.is-stuck) .nav__link:hover { color: var(--oxblood); }

.nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 2.2vw, 2.4rem); }
.nav__link {
  font-size: .95rem; font-weight: 500; color: var(--ink); position: relative;
  padding: .3rem 0; transition: color .3s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--vermilion); transition: width .35s var(--ease-out);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--vermilion); }
.nav:not(.is-stuck) .nav__link[aria-current="page"] { color: var(--vermilion); }

.nav__cta { display: inline-flex; }
.nav:not(.is-stuck) .btn--ghost { border-color: rgba(74,32,45,.28); color: var(--oxblood); }

.nav__toggle { display: none; width: 44px; height: 44px; background: none; border: 0; position: relative; }
.nav__toggle span { position:absolute; left:11px; right:11px; height:2px; background: currentColor; color: var(--oxblood); transition: transform .35s var(--ease), opacity .25s; }
.nav:not(.is-stuck) .nav__toggle span { background: var(--oxblood); }
.nav__toggle span:nth-child(1){ top:16px; } .nav__toggle span:nth-child(2){ top:22px; } .nav__toggle span:nth-child(3){ top:28px; }
body.menu-open .nav__toggle span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2){ opacity:0; }
body.menu-open .nav__toggle span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ---- Dropdown menus (Services, About) -------------------------------- */
.nav__item--has-menu { position: relative; display: inline-flex; align-items: center; }
.nav__caret { font-size: .68em; opacity: .7; margin-left: .15rem; display: inline-block; transition: transform .25s var(--ease); }
.nav__item--has-menu:hover .nav__caret,
.nav__item--has-menu:focus-within .nav__caret { transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 232px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: 0 24px 50px -28px rgba(74,32,45,.45);
  padding: .5rem; display: grid; gap: .1rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease); z-index: 60;
}
.nav__menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(2px);
}
.nav__menu a {
  display: block; padding: .65rem .85rem; border-radius: 7px; font-size: .95rem; font-weight: 500;
  color: var(--ink); white-space: nowrap; transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__menu a::after { display: none; } /* cancel the underline pseudo from .nav__link, if any */
.nav__menu a:hover,
.nav__menu a[aria-current="page"] { background: #fff; color: var(--vermilion); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; background: var(--mist); color: var(--ink); overflow: hidden; isolation: isolate; }
.hero__bg { position:absolute; inset:0; z-index:-1; }
.hero__bg::before {
  /* soft radial depth instead of a flat fill */
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(255,255,255,.55), transparent 55%),
    radial-gradient(80% 70% at 8% 100%, rgba(74,32,45,.05), transparent 60%),
    var(--mist);
}
.hero__curve { position:absolute; inset:0; width:100%; height:100%; z-index:-1; opacity:.9; }
/* Team photo bleeding off the right edge, faded into the page on its left and
   softened in colour so the headline reads cleanly over it. */
.hero__photo {
  position: absolute; inset: 0 0 0 auto; z-index: -1;
  width: min(58%, 860px);
  background: url('../img/about-collaboration.jpg') 38% center / cover no-repeat;
  /* fade the left edge into the background so the headline reads cleanly */
  -webkit-mask-image: linear-gradient(to right, transparent 6%, rgba(0,0,0,.5) 38%, #000 78%);
  mask-image: linear-gradient(to right, transparent 6%, rgba(0,0,0,.5) 38%, #000 78%);
  /* fade the colouring: desaturate so it reads as a soft, tonal backdrop */
  filter: saturate(.55) brightness(1.02);
  opacity: .85;
}
@media (max-width: 720px) {
  /* On phones the photo spans full width and fades downward so the headline
     and body stay crisp over the clean background below. */
  .hero__photo {
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,.28) 55%, transparent 85%);
    mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,.28) 55%, transparent 85%);
    filter: saturate(.6) brightness(1.04);
    opacity: .5;
  }
}
.hero__inner { padding-top: clamp(8rem, 16vh, 12rem); padding-bottom: var(--section-y); }
.hero__eyebrow { color: var(--vermilion); }
.hero__eyebrow::before { background: var(--vermilion); }
.hero h1 { color: var(--oxblood); margin-top: 1.4rem; max-width: 16ch; }
.hero__sub { margin-top: 1.8rem; max-width: 52ch; color: var(--ink-soft); }
.hero__actions { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__meta {
  margin-top: clamp(3rem, 7vw, 5rem); padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 640px;
}
.hero__meta dt { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.hero__meta dd { font-size: 1rem; margin-top:.4rem; color: var(--oxblood); font-weight: 400; }

/* ==========================================================================
   WAVE DIVIDER (the brand curve as a section transition)
   ========================================================================== */
.wave { display:block; width:100%; height: clamp(40px, 6vw, 90px); }
.wave path { fill: currentColor; }

/* ==========================================================================
   PILLARS / CARD GRID
   ========================================================================== */
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2.2rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.pillar {
  position: relative; padding: 2.2rem 0 0; border-top: 1.5px solid var(--oxblood);
}
.pillar__no { font-size:.72rem; letter-spacing:.2em; color: var(--vermilion); font-weight: 600; }
.pillar h3 { margin: 1.2rem 0 .7rem; }
.pillar p { color: var(--ink-soft); font-size: 1rem; }
.pillar__link { margin-top: 1.3rem; }

/* Service / feature card on paper */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease), border-color .5s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -28px rgba(74,32,45,.4); border-color: #d8cdbd; }
.card__icon { width: 46px; height: 46px; color: var(--oxblood); margin-bottom: 1.4rem; }
.card h3 { margin-bottom: .8rem; }
.card p { color: var(--ink-soft); font-size: 1rem; }
.card ul { list-style: none; padding: 0; margin: 1.3rem 0 0; }
.card li { display:flex; gap:.7rem; padding:.5rem 0; font-size:.95rem; color: var(--ink); border-top: 1px solid var(--line); }
.card li::before { content:""; width:7px; height:7px; margin-top:.55rem; border-radius:50%; background: var(--vermilion); flex:none; }

/* ==========================================================================
   LAYERS (three layers of the organization) — on oxblood
   ========================================================================== */
.layer { padding-top: 2rem; border-top: 1px solid var(--line); }
.layer__icon { width: 40px; height:40px; color: var(--claret); margin-bottom: 1.3rem; }
.layer h3 { color: var(--oxblood); margin-bottom:.7rem; }
.layer p { color: var(--ink-soft); font-size: 1rem; }

/* ==========================================================================
   PROBLEM QUOTES (the things people actually say)
   ========================================================================== */
.quotes { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2vw,1.4rem); }
.quote {
  background: rgba(74,32,45,.045); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem; font-size: 1.02rem; line-height: 1.5;
  color: var(--ink); font-style: italic;
}
.quote::before { content:"“"; display:block; font-size: 2.4rem; line-height: .4; color: var(--vermilion); margin-bottom:.6rem; font-style: normal; }

/* ==========================================================================
   PROCESS (numbered, vertical)
   ========================================================================== */
.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(1.5rem,5vw,5rem);
  padding: clamp(2rem,4vw,3rem) 0; border-top: 1px solid var(--line); align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__no { font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 700; color: var(--claret); letter-spacing: -.04em; line-height: 1; }
.step__no span { color: var(--vermilion); }
.step h3 { margin-bottom: .8rem; }
.step p { color: var(--ink-soft); }

/* ==========================================================================
   TESTIMONIAL / PROMISE
   ========================================================================== */
.promise blockquote {
  font-size: clamp(1.6rem, 1rem + 2.6vw, 3rem); line-height: 1.12; font-weight: 700;
  letter-spacing: -.025em; color: var(--oxblood); max-width: 26ch;
}
.promise.center blockquote, .center .promise blockquote { margin-inline: auto; }
.promise .accent { color: var(--vermilion); }
.promise cite { display:block; margin-top: 2rem; font-style: normal; color: var(--ink-soft); font-size: .95rem; }

.testimonial { display:grid; gap: 1.6rem; }
.testimonial blockquote { font-size: clamp(1.25rem,1rem+1.2vw,1.7rem); line-height: 1.35; color: var(--oxblood); font-weight: 400; letter-spacing: -.01em; }
.testimonial footer { display:flex; align-items:center; gap: 1rem; }
.testimonial .avatar { width: 48px; height:48px; border-radius:50%; background: var(--mist); color: var(--oxblood); display:grid; place-items:center; font-weight:600; flex:none; }
.testimonial cite { font-style: normal; }
.testimonial cite b { display:block; color: var(--oxblood); font-weight:600; }
.testimonial cite span { font-size:.9rem; color: var(--ink-soft); }

/* Stat band */
.stats { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,4vw,3rem); }
.stat__num { font-size: clamp(2.4rem,1.4rem+3vw,4rem); font-weight: 700; color: var(--oxblood); letter-spacing:-.03em; line-height:1; }
.stat__num em { color: var(--vermilion); font-style: normal; }
.stat__label { margin-top:.7rem; color: var(--ink-soft); font-size: .98rem; max-width: 30ch; }

/* ==========================================================================
   FOLDER TABS — switch between service offerings (file-folder metaphor)
   ========================================================================== */
.tabs { margin-top: clamp(2rem, 4vw, 3.5rem); }
.tabs__list {
  display: flex; flex-wrap: wrap; gap: .35rem; position: relative; z-index: 2;
  padding-left: clamp(0px, 1vw, 1rem);
}
.tab {
  appearance: none; background: var(--paper-2); color: var(--ink-soft);
  border: 1px solid var(--line); border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: .95rem clamp(1rem, 2vw, 1.7rem); font-size: .98rem; font-weight: 600;
  letter-spacing: -.005em; position: relative; top: 1px;
  display: inline-flex; align-items: baseline; gap: .6rem;
  transition: background .3s var(--ease), color .3s var(--ease), top .25s var(--ease);
}
.tab__no { font-size: .72rem; letter-spacing: .14em; color: var(--ink-soft); font-weight: 600; transition: color .3s var(--ease); }
.tab:hover { background: #fff; color: var(--oxblood); }
.tab[aria-selected="true"] {
  background: var(--white); color: var(--oxblood); top: 0;
  border-color: var(--line); box-shadow: 0 -6px 18px -14px rgba(74,32,45,.5);
}
/* the diagnostic accent: only the active folder gets the vermilion edge */
.tab[aria-selected="true"]::before {
  content: ""; position: absolute; left: -1px; right: -1px; top: 0; height: 3px;
  background: var(--vermilion); border-radius: 10px 10px 0 0;
}
.tab[aria-selected="true"] .tab__no { color: var(--vermilion); }
.tab:focus-visible { outline: 2px solid var(--vermilion); outline-offset: 2px; z-index: 3; }

.tabs__panels {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 0 12px 12px 12px;
  padding: clamp(1.8rem, 4vw, 3.4rem);
  box-shadow: 0 40px 80px -60px rgba(24,20,26,.5);
}
.tabpanel { animation: tabIn .5s var(--ease-out); }
.tabpanel[hidden] { display: none; }
.tabpanel__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.8rem, 5vw, 4rem); align-items: start; }
.tabpanel__no { font-size: .72rem; letter-spacing: .2em; color: var(--vermilion); font-weight: 600; text-transform: uppercase; }
.tabpanel h3 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem); margin: .9rem 0 0; }
.tabpanel .lede { margin-top: 1.2rem; }
.tabpanel__list { list-style: none; padding: 0; margin: 0; }
.tabpanel__list h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 1rem; }
.tabpanel__list li { display: flex; gap: .75rem; padding: .6rem 0; font-size: .98rem; color: var(--ink); border-top: 1px solid var(--line-soft); }
.tabpanel__list li:first-of-type { border-top: none; }
.tabpanel__list li::before { content: ""; width: 7px; height: 7px; margin-top: .55rem; border-radius: 50%; background: var(--vermilion); flex: none; }
/* "The work" sub-offerings + in-panel quote (Consulting tab) */
.worklist { margin-top: 1.6rem; }
.worklist h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: .4rem; }
.worklist p { font-size: .96rem; color: var(--ink-soft); padding: .8rem 0; border-top: 1px solid var(--line-soft); margin: 0; }
.worklist p:first-of-type { border-top: none; }
.worklist b { color: var(--oxblood); font-weight: 600; }
.panel-quote { margin-top: 1.6rem; padding: 1.3rem 1.4rem; background: var(--mist); border-radius: var(--radius); font-style: italic; color: var(--oxblood); font-size: 1rem; line-height: 1.5; }
.panel-quote cite { display: block; margin-top: .8rem; font-style: normal; font-size: .85rem; color: var(--ink-soft); }
@keyframes tabIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .tabpanel { animation: none; } }

@media (max-width: 760px) {
  .tabpanel__grid { grid-template-columns: 1fr; }
  .tabs__list { flex-direction: column; gap: 0; padding-left: 0; }
  .tab { border-radius: 8px; border-bottom: 1px solid var(--line); top: 0; width: 100%; justify-content: flex-start; }
  .tab[aria-selected="true"]::before { display: none; }
  .tab[aria-selected="true"] { border-left: 3px solid var(--vermilion); }
  .tabs__panels { border-radius: 12px; margin-top: .5rem; }
}

/* ==========================================================================
   DIAGNOSTIC — "How it shows up" → "What's actually going on"
   ========================================================================== */
.diagnostic { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(1.2rem, 3vw, 2.4rem); align-items: stretch; margin-top: clamp(2.5rem, 5vw, 4rem); }
.diagnostic__arrow { align-self: center; color: var(--vermilion); font-size: 1.9rem; line-height: 1; }
.dcard { border-radius: 12px; padding: clamp(1.6rem, 3vw, 2.4rem); }
.dcard--symptom { background: var(--white); border: 1px solid var(--line); }
.dcard--root { background: var(--mist); border: 1px solid #CBD8EA; }
.dcard h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--vermilion); font-weight: 600; margin-bottom: .7rem; }
.dcard__intro { color: var(--ink-soft); font-size: .98rem; margin-bottom: 1.1rem; }
.dcard ul { list-style: none; padding: 0; margin: 0; }
.dcard li { position: relative; padding: .65rem 0 .65rem 1.4rem; font-size: .97rem; line-height: 1.5; color: var(--ink); border-top: 1px solid var(--line-soft); }
.dcard li:first-of-type { border-top: none; }
.dcard li::before { content: ""; position: absolute; left: 0; top: 1.15rem; width: 7px; height: 7px; border-radius: 50%; background: var(--vermilion); }
.dcard--root li::before { background: var(--claret); }
.dcard b { color: var(--oxblood); font-weight: 600; }
@media (max-width: 760px) {
  .diagnostic { grid-template-columns: 1fr; }
  .diagnostic__arrow { transform: rotate(90deg); justify-self: center; padding: .3rem 0; }
}

/* ==========================================================================
   FOUNDER
   ========================================================================== */
.founder-portrait {
  margin-top: 2rem; width: 168px; height: 200px; border-radius: 10px;
  background: linear-gradient(158deg, var(--mist), #C6D6E8);
  display: grid; place-items: center; color: var(--oxblood);
  font-weight: 700; font-size: 2.6rem; letter-spacing: .02em;
  box-shadow: 0 36px 70px -46px rgba(74,32,45,.55);
}
.founder-sign { margin-top: 1.6rem; font-weight: 600; color: var(--oxblood); font-style: italic; }
@media (max-width: 900px) { .founder-portrait { width: 140px; height: 168px; font-size: 2.2rem; } }

/* Founder photo (graceful: shows a colored tile until the real photo is added) */
.founder-photo {
  position: relative; width: 100%; max-width: 340px; aspect-ratio: 4 / 5; border-radius: 14px;
  overflow: hidden; background: linear-gradient(158deg, #C6D6E8, var(--mist));
  box-shadow: 0 40px 80px -48px rgba(74,32,45,.55); display: grid; place-items: center;
}
.founder-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.founder-photo__ph { color: var(--oxblood); font-weight: 700; font-size: 3rem; letter-spacing: .02em; }

/* Stock/illustrative image placeholder (swap the inner <img> in when ready) */
.media-ph {
  position: relative; width: 100%; aspect-ratio: 3 / 2; border-radius: 14px; overflow: hidden;
  background:
    radial-gradient(120% 120% at 80% 10%, rgba(198,214,232,.55), transparent 60%),
    linear-gradient(150deg, #C6D6E8, var(--mist));
  display: grid; place-items: center; box-shadow: 0 40px 80px -52px rgba(74,32,45,.5);
}
.media-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.media-ph__label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--oxblood); opacity: .65; font-weight: 600; }

/* ==========================================================================
   THE BENCH — team roster cards (each links to a profile page)
   ========================================================================== */
.bench-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1.6rem, 2.6vw, 2.4rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.benchcard { display: block; text-decoration: none; color: inherit; text-align: center; }
.benchcard__photo {
  aspect-ratio: 1 / 1; width: 100%; max-width: 200px; margin-inline: auto; border-radius: 50%;
  display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(158deg, var(--mist), #C6D6E8);
  transition: transform .4s var(--ease-out);
}
.benchcard__photo::after { display: none; } /* no initials — photos only */
.benchcard:hover .benchcard__photo { transform: translateY(-4px); }
.benchcard__name { margin-top: .9rem; font-size: 1.05rem; font-weight: 600; color: var(--oxblood); letter-spacing: -.01em; }
.benchcard__role { color: var(--ink-soft); font-size: .9rem; margin-top: .15rem; }
.benchcard:focus-visible { outline: 2px solid var(--vermilion); outline-offset: 4px; border-radius: 14px; }
@media (max-width: 1020px) { .bench-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  { .bench-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .bench-grid { grid-template-columns: repeat(2, 1fr); } }

/* Profile (per-person) page bits */
.bio-portrait { width: 100%; max-width: 280px; aspect-ratio: 1 / 1; border-radius: 50%; display: grid; place-items: center;
  background: transparent; object-fit: cover; overflow: hidden;
  color: var(--oxblood); font-weight: 700; font-size: 3rem; letter-spacing: .02em;
  box-shadow: 0 24px 48px -32px rgba(74,32,45,.42); }
.bio-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.bio-list h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: .8rem; }
.bio-list li { display: flex; gap: .7rem; padding: .55rem 0; font-size: .96rem; color: var(--ink); border-top: 1px solid var(--line); }
.bio-list li:first-of-type { border-top: none; }
.bio-list li::before { content: ""; width: 7px; height: 7px; margin-top: .55rem; border-radius: 50%; background: var(--vermilion); flex: none; }

/* ==========================================================================
   SCROLL TIMELINE — the assessment process (Culture Analysis page)
   ========================================================================== */
.tl { list-style: none; padding: 0; margin: clamp(2.5rem, 5vw, 4rem) 0 0; position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); column-gap: clamp(.7rem, 1.8vw, 1.4rem);
  min-height: 480px; }
.tl__line { position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: var(--line); transform: translateY(-50%); overflow: hidden; }
.tl__line::after { content: ""; position: absolute; inset: 0; background: var(--oxblood); transform: scaleX(0); transform-origin: left; transition: transform 1.8s var(--ease-out); }
.tl.is-in .tl__line::after { transform: scaleX(1); }
.tl__arrow { position: absolute; right: -2px; top: 50%; transform: translateY(-50%); width: 0; height: 0;
  border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid var(--oxblood); z-index: 2; }
.tl__step { position: relative; }
.tl__node { position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; border-radius: 50%;
  background: var(--oxblood); border: 4px solid var(--paper); transform: translate(-50%, -50%) scale(0);
  transition: transform .45s var(--ease-out) var(--d, 0s); z-index: 3; }
.tl.is-in .tl__node { transform: translate(-50%, -50%) scale(1); }
.tl__box { position: absolute; left: 0; right: 0; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 1.1rem 1.2rem; box-shadow: 0 26px 52px -36px rgba(74,32,45,.4);
  opacity: 0; transform: translateY(10px); transition: opacity .6s var(--ease-out) var(--d, 0s), transform .6s var(--ease-out) var(--d, 0s); }
.tl.is-in .tl__box { opacity: 1; transform: none; }
.tl__step--up .tl__box { bottom: calc(50% + 32px); }
.tl__step--down .tl__box { top: calc(50% + 32px); }
.tl__box::after { content: ""; position: absolute; left: 50%; width: 2px; height: 32px; background: var(--oxblood); transform: translateX(-50%); opacity: .5; }
.tl__step--up .tl__box::after { top: 100%; }
.tl__step--down .tl__box::after { bottom: 100%; }
.tl__pill { display: inline-flex; align-items: center; gap: .35rem; background: var(--oxblood); color: #fff;
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; padding: .34rem .7rem; border-radius: 99px; margin-bottom: .75rem; }
.tl__pill b { color: var(--vermilion); font-weight: 700; }
.tl__box p { font-size: .94rem; color: var(--ink); line-height: 1.45; margin: 0; }
.tl__box .tl__sub { font-size: .8rem; color: var(--ink-soft); margin-top: .5rem; }
.tl__box .tl__sub b { color: var(--oxblood); }
@media (prefers-reduced-motion: reduce) {
  .tl__line::after, .tl__node, .tl__box { transition: none !important; }
}
@media (max-width: 860px) {
  .tl { grid-template-columns: 1fr; min-height: 0; row-gap: 1.1rem; padding-left: 1.7rem; }
  .tl__line { left: 6px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; transform: none; }
  .tl__line::after { transform: scaleY(0); transform-origin: top; }
  .tl.is-in .tl__line::after { transform: scaleY(1); }
  .tl__arrow { display: none; }
  .tl__node { top: 1.5rem; left: -1.7rem; transform: translate(-50%, 0) scale(0); }
  .tl.is-in .tl__node { transform: translate(-50%, 0) scale(1); }
  .tl__box, .tl__step--up .tl__box, .tl__step--down .tl__box { position: static; }
  .tl__box::after { display: none; }
}

/* bench card real-photo support (photo covers the monogram placeholder) */
.benchcard__photo { position: relative; }
.benchcard__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; z-index: 2; }
.benchcard__photo:has(img)::after { display: none; }
.bio-portrait { position: relative; }
.bio-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; z-index: 2; }

/* ==========================================================================
   ME · WE · US framework + curriculum ladder (Leadership Development)
   ========================================================================== */
.diagram-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.3rem, 3vw, 2.2rem); box-shadow: 0 30px 60px -44px rgba(74,32,45,.4); }
.diagram-card img { display: block; width: 100%; height: auto; }

.meus-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.3rem; }
.meus-list li { display: flex; gap: 1rem; align-items: flex-start; }
.meus-list > li > div { color: var(--ink-soft); font-size: 1rem; line-height: 1.5; }
.meus-list b { color: var(--oxblood); }
.meus-tag { flex: none; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: .82rem; letter-spacing: .04em; }
.meus-tag--me { background: var(--oxblood); color: #fff; }
.meus-tag--we { background: var(--pine); color: #fff; }
.meus-tag--us { background: var(--mist); color: var(--oxblood); }

/* Curriculum ladder — shows the ME → WE → US progression, 1 through 10 */
.ladder { position: relative; max-width: 720px; margin: clamp(2.5rem, 5vw, 4rem) auto 0; padding-left: 3.7rem; }
.ladder__line { position: absolute; left: 1.15rem; top: 1.8rem; bottom: 1.8rem; width: 2px; background: var(--line); }
.ladder__phase { position: relative; margin: 2.1rem 0 .5rem; }
.ladder__phase:first-of-type { margin-top: 0; }
.ladder__phase-tag { display: inline-flex; flex-direction: column; padding: .5rem 1.1rem; border-radius: 12px; line-height: 1.05; }
.ladder__phase-tag b { font-size: 1rem; letter-spacing: .03em; }
.ladder__phase-tag small { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; opacity: .85; margin-top: .2rem; }
.ladder__phase-tag--me { background: var(--oxblood); color: #fff; }
.ladder__phase-tag--we { background: var(--pine); color: #fff; }
.ladder__phase-tag--us { background: var(--mist); color: var(--oxblood); }
.ladder__item { position: relative; padding: .65rem 0; }
.ladder__num { position: absolute; left: -3.7rem; top: .6rem; width: 2.3rem; height: 2.3rem; border-radius: 50%;
  background: #fff; border: 2px solid var(--oxblood); color: var(--oxblood); display: grid; place-items: center;
  font-weight: 700; font-size: .9rem; z-index: 2; }
.ladder__item h3 { color: var(--oxblood); font-size: 1.08rem; margin: 0; }
.ladder__item p { color: var(--ink-soft); font-size: .95rem; margin: .2rem 0 0; }
@media (max-width: 560px) {
  .ladder { padding-left: 3rem; }
  .ladder__num { left: -3rem; width: 2rem; height: 2rem; font-size: .8rem; }
}

/* Blue callout box (e.g. the "how we work" approach box on Consulting) */
.bluebox { display: block; margin-top: 1.8rem; background: var(--mist); border: 1px solid #CBD8EA; border-radius: 14px;
  padding: 1.4rem 1.6rem; text-decoration: none; color: inherit;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease); }
.bluebox:hover { transform: translateY(-3px); box-shadow: 0 24px 44px -30px rgba(74,32,45,.4); }
.bluebox h3 { color: var(--oxblood); }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form { display:grid; gap: 1.4rem; }
.field { display:grid; gap:.5rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--oxblood); }
.field input, .field textarea, .field select {
  font: inherit; font-weight: 300; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  width: 100%;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--oxblood); box-shadow: 0 0 0 3px rgba(74,32,45,.1);
}
.field--row { display:grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form__note { font-size:.85rem; color: var(--ink-soft); }
/* "Who we work with" — sweet-spot criteria list */
.criteria { list-style:none; margin: clamp(2rem,4vw,3rem) 0 0; padding:0; max-width: 56rem; }
.criteria li { position:relative; padding: 1.25rem 0 1.25rem 1.9rem; border-top: 1px solid var(--line); font-size: clamp(1rem,.95rem+.2vw,1.12rem); color: var(--ink-soft); line-height:1.55; }
.criteria li:last-child { border-bottom: 1px solid var(--line); }
.criteria li::before { content:""; position:absolute; left:.1rem; top:1.62rem; width:.55rem; height:.55rem; border-radius:50%; background: var(--vermilion); }
.criteria li b { color: var(--ink); font-weight:600; }
.notion-form { width:100%; min-height:820px; border:0; border-radius:16px; background:#fff; box-shadow: 0 1px 0 var(--line), 0 24px 48px -28px rgba(74,32,45,.28); display:block; }
@media (max-width: 720px){ .notion-form { min-height:760px; } }
.form__success { display:none; padding: 1rem 1.2rem; background: var(--mist); color: var(--oxblood); border-radius: var(--radius); font-weight: 500; }
.form.is-sent .form__success { display:block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--mist); color: var(--ink); border-top: 1px solid var(--line); padding-block: clamp(3.5rem,7vw,6rem) 2.5rem; }
.footer__top { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer__brand .brand__name { color: var(--oxblood); }
.footer__tag { margin-top: 1.4rem; color: var(--ink-soft); max-width: 34ch; font-style: italic; }
.footer h4 { font-size:.74rem; letter-spacing:.18em; text-transform:uppercase; color: var(--ink-soft); font-weight:600; margin-bottom: 1.1rem; }
.footer__links { list-style:none; padding:0; display:grid; gap:.7rem; }
.footer__links a { color: var(--ink); font-size:.96rem; transition: color .3s var(--ease); }
.footer__links a:hover { color: var(--vermilion); }
.footer__bottom { margin-top: clamp(3rem,6vw,5rem); padding-top: 1.6rem; border-top: 1px solid var(--line); display:flex; flex-wrap:wrap; gap:1rem; justify-content: space-between; align-items:center; font-size:.86rem; color: var(--ink-soft); }

/* ==========================================================================
   PAGE HEADER (interior pages)
   ========================================================================== */
.pagehead { background: var(--mist); color: var(--ink); padding-top: clamp(8rem,16vh,11rem); padding-bottom: clamp(3rem,6vw,5rem); position: relative; overflow: hidden; isolation:isolate; }
.pagehead::before { content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(255,255,255,.5), transparent 55%),
    radial-gradient(80% 70% at 0% 100%, rgba(74,32,45,.04), transparent 60%); }
/* a thin vermilion hairline anchors the brand without flooding the page */
.pagehead::after { content:""; position:absolute; left:0; right:0; bottom:0; height:2px; z-index:-1;
  background: linear-gradient(90deg, var(--vermilion) 0 22%, transparent 22%); opacity:.9; }
.pagehead h1 { color: var(--oxblood); max-width: 16ch; margin-top: 1.3rem; }
.pagehead p { color: var(--ink-soft); margin-top: 1.4rem; max-width: 52ch; }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* Self-drawing curve */
.draw path.draw-line { stroke-dasharray: 1; stroke-dashoffset: 1; pathLength: 1; }
.draw.is-in path.draw-line { animation: draw 2.4s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .draw path.draw-line { stroke-dashoffset: 0 !important; animation: none !important; }
  .btn, .card, .nav { transition: none !important; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .grid--3, .quotes, .stats { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .step { grid-template-columns: 1fr; gap: .8rem; }
  .step__no { font-size: 2.6rem; }
}
/* Collapse any inline two-column content grid on small screens.
   (Targets the asymmetric split layouts that set grid-template-columns inline.) */
@media (max-width: 760px) {
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 680px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--paper); border-left: 1px solid var(--line); padding: 2rem var(--gutter);
    transform: translateX(100%); transition: transform .45s var(--ease);
    box-shadow: -30px 0 60px -20px rgba(74,32,45,.28);
  }
  body.menu-open .nav__links { transform: none; }
  .nav__links .nav__link, .nav .nav__cta { color: var(--ink) !important; font-size: 1.15rem; }
  .nav__cta { margin-top: .5rem; }

  /* dropdowns flatten into indented sub-items in the slide-in menu */
  .nav__item--has-menu { display: block; width: 100%; }
  .nav__menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; background: transparent; border: none; box-shadow: none; padding: .35rem 0 .4rem 1.1rem; gap: 0;
  }
  .nav__menu::before { display: none; }
  .nav__menu a { color: var(--ink-soft) !important; font-size: 1rem; padding: .45rem 0; }
  .nav__menu a:hover, .nav__menu a[aria-current="page"] { background: transparent; color: var(--vermilion) !important; }
  .nav__caret { display: none; }
  .nav__toggle { display: block; z-index: 1; }
  .nav.is-stuck .nav__toggle span, body.menu-open .nav__toggle span { background: var(--oxblood); }
  body.menu-open { overflow: hidden; }

  .grid--3, .grid--2, .quotes, .stats, .field--row { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
