/* ============================================================
   COLEMAN CUSTOM — Interim Site · Shared Stylesheet
   Extracted from index.html. Single source of truth for all pages.
   Design tokens: Deep Pine #272B27 · Snow #FDFBF7 · Stone #B3A899
   Fonts: ABC ROM (regular) · ABC ROM Extended (display) · Inter (body)
   ============================================================ */

/* ABC ROM (ABC Dinamo) — licensed, self-hosted. Files live at /fonts/ on the deployed site. */
  @font-face {
    font-family: 'ABC ROM';
    src: url('/fonts/ABCROM-Book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'ABC ROM';
    src: url('/fonts/ABCROM-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  /* ABC ROM Extended — wide display cut for large headlines. Files at /fonts/. */
  @font-face {
    font-family: 'ABC ROM Extended';
    src: url('/fonts/ABCROMExtended-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'ABC ROM Extended';
    src: url('/fonts/ABCROMExtended-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
/* ============================================================
   COLEMAN CUSTOM — Interim Site · Home
   Shared stylesheet + home-specific sections.
   Brand tokens from the Coleman palette.
   ============================================================ */

:root {
  /* Brand palette */
  --pine:    #272B27;   /* Deep Pine — primary dark */
  --snow:    #FDFBF7;   /* Snow — primary light */
  --neutral1:#E5E1D8;   /* Neutral 1 */
  --neutral2:#CCC5B8;   /* Neutral 2 */
  --stone:   #B3A899;   /* Stone — warm accent */
  --pine-80: rgba(39,43,39,0.80);
  --pine-40: rgba(39,43,39,0.40);
  --pine-62: rgba(39,43,39,0.62);
  --pine-42: rgba(39,43,39,0.42);
  --snow-72: rgba(253,251,247,0.72);
  --snow-55: rgba(253,251,247,0.55);
  --ink:     #1A1D1A;

  /* Type */
  --serif:   'ABC ROM', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'ABC ROM Extended', 'ABC ROM', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale */
  --wrap: 1280px;
  --gut: clamp(20px, 5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--snow);
  color: var(--pine);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pine-42);
}

.lede { font-size: clamp(19px, 2.1vw, 23px); line-height: 1.5; color: var(--pine); font-weight: 400; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans); font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; padding: 16px 34px; border-radius: 2px; cursor: pointer;
  transition: transform .2s ease, background .25s ease, color .25s ease; border: 1px solid var(--pine);
}
.btn-primary { background: var(--pine); color: var(--snow); }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--pine); }
.btn-ghost:hover { background: var(--pine); color: var(--snow); }
.btn-light { background: var(--snow); color: var(--pine); border-color: var(--snow); }
.btn-light:hover { background: transparent; color: var(--snow); transform: translateY(-2px); }

/* text-link CTA — used for secondary actions */
.tlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--stone); transition: gap .25s ease, color .25s ease;
}
.tlink::after { content: '→'; font-size: 15px; transition: transform .25s ease; }
.tlink:hover { color: var(--snow); }
.tlink:hover::after { transform: translateX(4px); }
.tlink.dark { color: var(--stone); }
.tlink.dark:hover { color: var(--pine); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gut);
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--pine-80);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding-top: 15px; padding-bottom: 15px;
  border-bottom-color: rgba(255,255,255,0.08);
}
.brand-logo { display: block; height: 24px; width: auto; }
.nav { display: flex; gap: clamp(14px, 1.8vw, 30px); align-items: center; }
.nav a { font-family: var(--sans); font-size: clamp(0.66rem, 0.63rem + 0.12vw, 0.74rem); font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--snow); opacity: .82; transition: opacity .2s; position: relative; padding-block: .35em; }
.nav a:hover { opacity: 1; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--stone); transition: width .35s cubic-bezier(.2,.7,.2,1); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav .nav-cta {
  border: 1px solid rgba(253,251,247,0.35); border-radius: 2px;
  padding: 9px 18px; opacity: 1; transition: background .25s, color .25s;
}
.nav .nav-cta:hover { background: var(--snow); color: var(--pine); }
.nav-toggle { display: none; background: none; border: none; color: var(--snow); cursor: pointer; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100svh; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(39,43,39,0.32) 0%, rgba(39,43,39,0.12) 42%, rgba(39,43,39,0.82) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut) clamp(60px, 10vh, 120px); color: var(--snow); }
.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(46px, 8.5vw, 128px); line-height: 0.98; color: var(--snow); max-width: 14ch;
}
.hero .sub { margin-top: 26px; max-width: 60ch; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5; color: var(--snow-72); }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* scroll cue */
.scrollcue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--neutral1); opacity: .85; }
.scrollcue span { font-family: var(--sans); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; }
.scrollcue .line { width: 1px; height: 40px; background: linear-gradient(var(--neutral1), transparent); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Positioning (The Unseen) ---------- */
.positioning { background: var(--snow); padding: clamp(88px, 13vh, 168px) 0; }
.positioning .inner { max-width: 960px; margin: 0 auto; padding: 0 var(--gut); }
.positioning h2 { font-size: clamp(36px, 5.4vw, 72px); line-height: 1.02; max-width: 18ch; }
.positioning .body { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.positioning .body p { color: var(--pine-62); font-size: 16.5px; line-height: 1.7; }
.positioning .anchor-note { grid-column: 1 / -1; margin-top: 6px; font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2vw, 22px); color: var(--stone); }
/* Stat row beneath positioning paragraphs */
.pos-stats { margin-top: clamp(48px, 7vh, 84px); padding-top: clamp(40px, 5vh, 56px); border-top: 1px solid rgba(179,168,153,0.45);
  display: grid; grid-template-columns: repeat(4, 1fr); }
.pos-stats .st { padding: 4px clamp(18px, 2.2vw, 32px); border-left: 1px solid rgba(179,168,153,0.35);
  display: flex; flex-direction: column; gap: 16px; }
.pos-stats .st:first-child { border-left: none; padding-left: 0; }
.pos-stats .st .n { font-family: var(--display); font-weight: 500; font-size: clamp(26px, 3vw, 42px); line-height: 0.9;
  color: var(--pine); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pos-stats .st .l { font-family: var(--sans); font-size: 12.5px; font-weight: 500; line-height: 1.5; letter-spacing: .02em; color: var(--pine-42); }

/* ---------- Proof (Booth Falls) ---------- */
.proof { background: var(--pine); color: var(--snow); overflow: hidden; }
.proof-grid { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 640px; }
.proof-media { position: relative; }
.proof-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.proof-text { padding: clamp(56px, 8vw, 104px) var(--gut); display: flex; flex-direction: column; justify-content: center; max-width: 640px; }
.proof .eyebrow { color: var(--snow-55); }
.proof h2 { font-family: var(--display); font-weight: 500; font-size: clamp(42px, 5.8vw, 88px); margin-top: 20px; line-height: 1; }
.proof p { margin-top: 26px; color: var(--snow-72); font-size: 16.5px; line-height: 1.7; max-width: 52ch; }
.proof .kicker { margin-top: 22px; font-family: var(--serif); font-style: italic; font-size: clamp(19px, 2.2vw, 26px); color: var(--snow); }
.proof .cta-row { margin-top: 36px; }

/* ---------- Featured projects (Blue Heron-inspired blocks) ---------- */
.featured { background: var(--snow); }
.feat-head { max-width: var(--wrap); margin: 0 auto; padding: clamp(80px, 12vh, 150px) var(--gut) clamp(30px, 5vh, 56px); }
.feat-head .eyebrow { color: var(--pine-42); }
.feat-head h2 { font-size: clamp(36px, 5.4vw, 70px); margin-top: 16px; max-width: 16ch; }

.feat-block { position: relative; }
.feat-media { position: relative; height: clamp(460px, 78vh, 860px); overflow: hidden; }
.feat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.feat-block:hover .feat-media img { transform: scale(1.04); }
.feat-media::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(39,43,39,0.10) 0%, rgba(39,43,39,0.05) 40%, rgba(39,43,39,0.78) 100%); }
.feat-caption { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut) clamp(40px, 6vh, 72px); color: var(--snow); }
.feat-caption .loc { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--snow-55); }
.feat-caption h3 { font-family: var(--display); font-weight: 700; font-size: clamp(38px, 6vw, 92px); line-height: 0.98; margin-top: 12px; color: var(--snow); }
/* stat row */
.feat-stats { display: flex; flex-wrap: wrap; gap: clamp(22px, 4vw, 54px); margin-top: 24px; }
.feat-stats .stat { display: flex; flex-direction: column; gap: 3px; }
.feat-stats .stat .v { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 30px); color: var(--snow); line-height: 1; }
.feat-stats .stat .k { font-family: var(--sans); font-size: 10.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--snow-55); }
.feat-explore { margin-top: 30px; }
.feat-explore .tlink { color: var(--snow); }
.feat-explore .tlink:hover { color: var(--neutral2); }

/* thin white separator between full-bleed featured blocks */
.feat-sep { height: 12px; background: var(--snow); }

/* thumbnail rail under a featured block (Blue Heron pattern) */
.feat-rail { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--snow); }
.feat-rail-single { grid-template-columns: 1fr; }
.feat-rail-single a { height: clamp(280px, 46vh, 560px); }
.feat-rail a { position: relative; display: block; height: clamp(200px, 30vh, 360px); overflow: hidden; }
.feat-rail img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.feat-rail a:hover img { transform: scale(1.05); }
.feat-rail .cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 16px 20px;
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--snow); }
.feat-rail a::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(39,43,39,0) 45%, rgba(39,43,39,0.62) 100%); }

/* "more from the portfolio" tile grid */
.more { background: var(--snow); }
.more-head { max-width: var(--wrap); margin: 0 auto; padding: clamp(72px, 10vh, 128px) var(--gut) clamp(24px, 4vh, 44px); }
.more-head .eyebrow { color: var(--pine-42); }
.more-head h2 { font-size: clamp(32px, 4.8vw, 62px); margin-top: 14px; max-width: 18ch; }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.more-tile { position: relative; display: block; height: clamp(300px, 42vh, 480px); overflow: hidden; }
.more-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.more-tile:hover img { transform: scale(1.05); }
.more-tile::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(39,43,39,0.05) 40%, rgba(39,43,39,0.72) 100%); }
.more-tile .t-cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 22px 24px; color: var(--snow); }
.more-tile .t-cap .n { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 27px); line-height: 1.05; }
.more-tile .t-cap .l { font-family: var(--sans); font-size: 10.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--snow-55); margin-top: 5px; }

/* portfolio teaser button row */
.feat-cta { display: flex; justify-content: center; padding: clamp(64px, 9vh, 110px) var(--gut); }

/* ---------- Pillars (why Coleman) ---------- */
.pillars-sec { background: var(--snow); padding: clamp(80px, 12vh, 150px) 0; border-top: 1px solid rgba(179,168,153,0.28); }
.pillars-sec .inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.pillars-sec .eyebrow { color: var(--pine-42); }
.pillars-sec .sec-head { max-width: 60ch; }
.pillars-sec h2 { font-size: clamp(34px, 4.8vw, 66px); line-height: 1.03; margin-top: 16px; }
.pillars-sec .sec-lede { margin-top: 22px; max-width: 60ch; font-size: 17px; line-height: 1.6; color: var(--pine-62); }
.pillar-grid { margin-top: clamp(44px, 6vh, 76px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 48px); }
.pillar { border-top: 2px solid var(--pine); padding-top: 24px; }
.pillar .p-n { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pine-42); }
.pillar h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(21px, 2.1vw, 27px); line-height: 1.15; margin-top: 16px; color: var(--pine); }
.pillar p { margin-top: 14px; font-size: 15.5px; line-height: 1.65; color: var(--pine-62); }
.pillar .proof { margin-top: 16px; font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--stone); opacity: 1; }

/* Pillars section on a darkened full-bleed image (Process page rhythm) — white text */
.pillars-sec.on-image { position: relative; overflow: hidden; background: var(--pine); color: var(--snow); border-top: none; }
.pillars-sec.on-image .bg { position: absolute; inset: 0; z-index: 0; }
.pillars-sec.on-image .bg img { width: 100%; height: 100%; object-fit: cover; }
.pillars-sec.on-image .bg::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(39,43,39,0.82) 0%, rgba(39,43,39,0.76) 45%, rgba(39,43,39,0.88) 100%); }
.pillars-sec.on-image .inner { position: relative; z-index: 2; }
.pillars-sec.on-image .eyebrow { color: var(--snow-55); }
.pillars-sec.on-image h2 { color: var(--snow); }
.pillars-sec.on-image .sec-lede { color: var(--snow-72); }
.pillars-sec.on-image .pillar { border-top-color: rgba(253,251,247,0.55); }
.pillars-sec.on-image .pillar .p-n { color: var(--snow-55); }
.pillars-sec.on-image .pillar h3 { color: var(--snow); }
.pillars-sec.on-image .pillar p { color: var(--snow-72); }

/* ---------- How we work ---------- */
.howwork { background: var(--neutral1); color: var(--pine); padding: clamp(88px, 13vh, 168px) 0; }
.howwork .inner { max-width: 1040px; margin: 0 auto; padding: 0 var(--gut); text-align: center; }
.howwork .eyebrow { color: var(--pine-42); }
.howwork h2 { font-family: var(--display); font-weight: 500; font-size: clamp(38px, 5.8vw, 80px); margin-top: 16px; line-height: 1.02; }
.howwork p { margin: 28px auto 0; max-width: 62ch; font-size: 17px; line-height: 1.7; color: var(--pine-62); }
.howwork .cta-row { margin-top: 34px; }

/* ---------- Closing CTA ---------- */
.closing { background: var(--pine); color: var(--snow); text-align: center; padding: clamp(96px, 15vh, 190px) var(--gut); }
.closing h2 { font-family: var(--display); font-weight: 500; font-size: clamp(38px, 6.2vw, 92px); line-height: 1; max-width: 16ch; margin: 0 auto; }
.closing .stat-line { margin-top: 26px; font-family: var(--serif); font-size: clamp(17px, 2vw, 22px); color: var(--snow-72); letter-spacing: .01em; }
.closing .cta-row { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }

/* ---------- Award banner (full-bleed, darkened photo) ---------- */
.award-banner { position: relative; overflow: hidden; border-top: 6px solid var(--snow); }
.award-banner .bg { position: absolute; inset: 0; }
.award-banner .bg img { width: 100%; height: 100%; object-fit: cover; }
.award-banner .bg::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(39,43,39,0.35) 0%, rgba(39,43,39,0.30) 55%, rgba(39,43,39,0.66) 100%); }
.award-inner { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto;
  padding: clamp(180px, 32vh, 340px) var(--gut) clamp(48px, 8vh, 88px);
  display: flex; align-items: flex-end; justify-content: center; gap: clamp(32px, 6vw, 96px); flex-wrap: wrap; }
.award-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.award-item img { width: 100%; max-width: clamp(150px, 18vw, 230px); height: auto; }

/* ---------- Portfolio page ---------- */
.pf-hero { position: relative; padding: clamp(150px, 24vh, 280px) var(--gut) clamp(56px, 9vh, 100px); background: var(--pine); color: var(--snow); overflow: hidden; }
.pf-hero .bg { position: absolute; inset: 0; z-index: 0; }
.pf-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.pf-hero .bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(39,43,39,0.55) 0%, rgba(39,43,39,0.45) 45%, rgba(39,43,39,0.82) 100%); }
.pf-hero .inner { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; }
.pf-hero .eyebrow { color: var(--snow-55); }
.pf-hero h1 { font-family: var(--display); font-weight: 700; font-size: clamp(38px, 6.4vw, 92px); line-height: 0.98; color: var(--snow); margin-top: 18px; max-width: 16ch; }
.pf-hero p { margin-top: 24px; max-width: 62ch; font-size: clamp(16px, 1.7vw, 20px); line-height: 1.55; color: var(--snow-72); }

/* Intro band */
.pf-intro { background: var(--snow); padding: clamp(56px, 9vh, 104px) var(--gut) clamp(20px, 3vh, 36px); }
.pf-intro .inner { max-width: 72ch; margin: 0 auto; text-align: center; }
.pf-intro p { font-family: var(--serif); font-size: clamp(19px, 2.3vw, 28px); line-height: 1.4; color: var(--pine); }
.pf-intro .eyebrow { color: var(--pine-42); display: block; margin-bottom: 18px; }

.pf-bar { position: sticky; top: 58px; z-index: 40; background: var(--snow); border-bottom: 1px solid rgba(179,168,153,0.3); }
.pf-bar .inner { max-width: var(--wrap); margin: 0 auto; padding: 18px var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pf-count { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pine-42); }
.pf-toggle { display: inline-flex; border: 1px solid rgba(39,43,39,0.2); border-radius: 2px; overflow: hidden; }
.pf-toggle button { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 9px 18px; background: transparent; color: var(--pine); border: none; cursor: pointer; transition: background .2s, color .2s; }
.pf-toggle button.active { background: var(--pine); color: var(--snow); }

.pf-wrap { background: var(--snow); padding: clamp(36px, 6vh, 72px) clamp(16px, 3vw, 40px) clamp(72px, 10vh, 130px); }
.pf-grid { max-width: 1760px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.pf-card { position: relative; display: block; overflow: hidden; height: clamp(360px, 34vw, 560px); background: var(--pine); }
.pf-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.pf-card:hover img { transform: scale(1.045); }
.pf-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(39,43,39,0.06) 42%, rgba(39,43,39,0.72) 100%); }
.pf-card .meta { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: clamp(22px, 3vw, 38px); color: var(--snow); display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.pf-card .seq { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .16em; color: var(--snow-55); }
.pf-card .name { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3vw, 44px); line-height: 1; }
.pf-card .loc { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--snow-55); margin-top: 8px; }
.pf-card .go { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--snow); opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; white-space: nowrap; }
.pf-card:hover .go { opacity: 1; transform: none; }
.pf-card.soon { cursor: default; }

/* List view */
.pf-grid.list { display: block; max-width: var(--wrap); }
.pf-grid.list .pf-card { height: auto; background: transparent; display: flex; align-items: center; gap: clamp(20px, 4vw, 60px); padding: clamp(20px, 2.4vw, 32px) 0; border-bottom: 1px solid rgba(179,168,153,0.3); overflow: visible; }
.pf-grid.list .pf-card::after { display: none; }
.pf-grid.list .pf-card .thumb { flex: 0 0 clamp(120px, 22vw, 300px); height: clamp(84px, 14vw, 190px); overflow: hidden; border-radius: 2px; }
.pf-grid.list .pf-card .meta { position: static; padding: 0; color: var(--pine); flex: 1; }
.pf-grid.list .pf-card .name { color: var(--pine); font-size: clamp(22px, 2.6vw, 38px); }
.pf-grid.list .pf-card .loc { color: var(--pine-42); }
.pf-grid.list .pf-card .seq { color: var(--pine-42); }
.pf-grid.list .pf-card .go { color: var(--pine); opacity: 1; transform: none; }

/* Flagship case-study banner */
.pf-flagship { position: relative; overflow: hidden; border-top: 6px solid var(--snow); }
.pf-flagship .bg { position: absolute; inset: 0; }
.pf-flagship .bg img { width: 100%; height: 100%; object-fit: cover; }
.pf-flagship .bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(39,43,39,0.88) 0%, rgba(39,43,39,0.72) 42%, rgba(39,43,39,0.34) 100%); }
.pf-flagship .inner { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; padding: clamp(80px, 13vh, 170px) var(--gut); }
.pf-flagship .box { max-width: 620px; color: var(--snow); }
.pf-flagship .eyebrow { color: var(--snow-55); }
.pf-flagship h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 4.4vw, 62px); line-height: 1.06; margin-top: 18px; color: var(--snow); }
.pf-flagship p { margin-top: 22px; font-size: 16.5px; line-height: 1.65; color: var(--snow-72); max-width: 52ch; }
.pf-flagship .cta-row { margin-top: 30px; }
.pf-flagship .tlink { color: var(--snow); }
.pf-flagship .tlink:hover { color: var(--neutral2); }

/* CTA band */
.pf-ctaband { position: relative; overflow: hidden; border-top: 6px solid var(--snow); }
.pf-ctaband .bg { position: absolute; inset: 0; }
.pf-ctaband .bg img { width: 100%; height: 100%; object-fit: cover; }
.pf-ctaband .bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(39,43,39,0.62) 0%, rgba(39,43,39,0.72) 100%); }
.pf-ctaband .inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: clamp(90px, 15vh, 190px) var(--gut); text-align: center; color: var(--snow); }
.pf-ctaband .eyebrow { color: var(--snow-55); }
.pf-ctaband h2 { font-family: var(--display); font-weight: 500; font-size: clamp(36px, 5.6vw, 84px); line-height: 1.0; margin-top: 16px; color: var(--snow); }
.pf-ctaband p { margin-top: 24px; font-size: clamp(16px, 1.7vw, 20px); line-height: 1.55; color: var(--snow-72); max-width: 56ch; margin-inline: auto; }
.pf-ctaband .cta-row { margin-top: 38px; }

/* Portfolio responsive */
@media (max-width: 720px) {
  .pf-grid { grid-template-columns: 1fr; }
  .pf-grid.list .pf-card { flex-direction: row; }
}

/* ---------- Process page ---------- */
/* Section wrapper for the phase journey — sits on Neutral 1 for rhythm */
.proc-phases { background: var(--neutral1); padding: clamp(76px, 12vh, 150px) 0; }
.proc-head { max-width: 1040px; margin: 0 auto; padding: 0 var(--gut); }
.proc-head .eyebrow { color: var(--pine-42); }
.proc-head h2 { font-family: var(--display); font-weight: 500; font-size: clamp(34px, 5.4vw, 72px); line-height: 1.02; margin-top: 16px; max-width: 20ch; }
.proc-head .sec-lede { margin-top: 20px; max-width: 60ch; font-size: 17px; line-height: 1.65; color: var(--pine-62); }

/* 4-up variant of the pillar grid — used ONLY by the Process budget section.
   Base .pillar-grid (3-up) is untouched, so homepage pillar grids are unaffected.
   Collapses 4 → 2×2 (≤980) → single column (≤560). Higher specificity than the
   base .pillar-grid { grid-template-columns:1fr } at ≤980, so these win. */
.pillar-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .pillar-grid.cols-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pillar-grid.cols-4 { grid-template-columns: 1fr; } }

/* Five-phase vertical timeline — numerals encode a real sequence (land → … → completion).
   01–05 in ABC ROM Extended (Pine), Stone hairline connecting them, Inter body. Reusable. */
.phase-timeline { max-width: 1040px; margin: clamp(44px, 6vh, 72px) auto 0; padding: 0 var(--gut); list-style: none; }
.phase { display: grid; grid-template-columns: clamp(56px, 8vw, 96px) 1fr; gap: clamp(20px, 3.5vw, 52px); }
.phase-marker { display: flex; flex-direction: column; align-items: center; }
.phase-n { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3.4vw, 46px); line-height: 1; color: var(--pine); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.phase-line { width: 1px; flex: 1 1 auto; min-height: 22px; margin-top: 16px; background: linear-gradient(var(--stone), rgba(179,168,153,0.25)); }
.phase:last-child .phase-line { display: none; }
.phase-body { padding-bottom: clamp(38px, 6vh, 66px); }
.phase:last-child .phase-body { padding-bottom: 0; }
.phase-body h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.6vw, 32px); color: var(--pine); }
.phase-body p { margin-top: 12px; max-width: 62ch; font-size: 16px; line-height: 1.65; color: var(--pine-62); }
.phase-list { margin-top: 18px; padding: 0; list-style: none; display: grid; gap: 11px; max-width: 62ch; }
.phase-list li { position: relative; padding-left: 24px; font-size: 14.5px; line-height: 1.5; color: var(--pine-62); }
.phase-list li::before { content: ''; position: absolute; left: 0; top: 11px; width: 12px; height: 1px; background: var(--stone); }
@media (max-width: 560px) {
  .phase { grid-template-columns: 42px 1fr; gap: 16px; }
  .phase-n { font-size: 26px; }
}

/* ---------- FAQ page (accordion) ---------- */
.faq-sec { background: var(--snow); padding: clamp(60px, 9vh, 110px) 0 clamp(72px, 11vh, 130px); }
.faq { max-width: 900px; margin: 0 auto; padding: 0 var(--gut); }
.faq-item { border-bottom: 1px solid rgba(179,168,153,0.4); }
.faq-item:first-child { border-top: 1px solid rgba(179,168,153,0.4); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 4vw, 40px);
  background: none; border: none; cursor: pointer; text-align: left; padding: clamp(22px, 3vw, 32px) 0;
  font-family: var(--serif); font-weight: 500; font-size: clamp(19px, 2.1vw, 26px); line-height: 1.2; letter-spacing: -0.01em; color: var(--pine); transition: color .2s; }
.faq-q:hover { color: var(--ink); }
.faq-q:focus-visible { outline: 2px solid var(--stone); outline-offset: 4px; }
/* + / − indicator built from two hairlines; the vertical bar collapses on open */
.faq-ind { position: relative; width: 16px; height: 16px; flex: none; }
.faq-ind::before, .faq-ind::after { content: ''; position: absolute; background: var(--stone); transition: transform .3s ease, opacity .3s ease, background .2s ease; }
.faq-ind::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq-ind::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-ind::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-q:hover .faq-ind::before, .faq-q:hover .faq-ind::after { background: var(--pine); }
/* grid-rows trick animates height without measuring content */
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s cubic-bezier(.2,.6,.2,1); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 2px 0 clamp(22px, 3vw, 30px); max-width: 66ch; font-size: 16.5px; line-height: 1.7; color: var(--pine-62); }
.faq-a-inner a { color: var(--pine); text-decoration: underline; text-decoration-color: var(--stone); text-underline-offset: 3px; transition: text-decoration-color .2s; }
.faq-a-inner a:hover { text-decoration-color: var(--pine); }

/* ---------- Split layout (image + text) — Studio / About ---------- */
.split-sec { padding: clamp(64px, 10vh, 130px) 0; }
.split-sec.alt { background: var(--neutral1); }
.split { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split.flip .split__media { order: 2; }
.split__media { overflow: hidden; border-radius: 2px; }
.split__media img { width: 100%; height: clamp(360px, 56vh, 620px); object-fit: cover; }
.split__body .eyebrow { color: var(--pine-42); }
.split__body h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.05; margin-top: 14px; }
.split__body .lead { margin-top: 20px; max-width: 54ch; font-size: clamp(18px, 2vw, 22px); line-height: 1.5; color: var(--pine); opacity: 1; }
.split__body p { color: var(--pine-62); font-size: 16.5px; line-height: 1.7; max-width: 58ch; }
.split__body .lead + p, .split__body p + p { margin-top: 18px; }
/* portrait media variant (e.g. Managing Partner headshot, ~2:3) — crop favours the face */
.split__media.portrait img { height: clamp(460px, 64vh, 680px); object-position: center 25%; }
/* middle-dot metadata list (e.g. giving partners, towns served) */
.split__body .list-line { margin-top: 16px; font-size: 14px; line-height: 1.75; letter-spacing: .01em; color: var(--pine-42); }
/* section head above a split (e.g. Leadership) — aligns to the split's left edge */
.split-head { max-width: var(--wrap); margin: 0 auto clamp(30px, 4.5vh, 52px); padding: 0 var(--gut); }
.split-head .eyebrow { color: var(--pine-42); }
.split-head h2 { font-family: var(--display); font-weight: 500; font-size: clamp(34px, 5.4vw, 72px); line-height: 1.02; margin-top: 16px; max-width: 20ch; }
/* named-person block inside a split body (e.g. Tim Beecher) */
.split__body .p-n { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pine-42); }
.split__body h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 38px); line-height: 1.06; margin-top: 8px; color: var(--pine); }
/* full-bleed photo band (e.g. the team photo) */
.photo-band { background: var(--snow); padding-bottom: clamp(24px, 4vh, 44px); }
.photo-band img { width: 100%; height: clamp(340px, 56vh, 660px); object-fit: cover; display: block; }
.photo-band-cap { max-width: var(--wrap); margin: 18px auto 0; padding: 0 var(--gut); font-size: 14px; line-height: 1.65; color: var(--pine-42); }
.photo-band.bleed { padding-bottom: 0; }   /* caption-less bands: image runs flush into the next section */
.photo-band.team img { object-position: center top; }   /* anchor the top edge (faces) — crop from the bottom as the viewport widens */
/* serif emphasis line (e.g. studio philosophy) */
.statement-serif { margin-top: 24px; font-family: var(--serif); font-size: clamp(20px, 2.6vw, 30px); line-height: 1.25; color: var(--pine); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.flip .split__media { order: 0; }
}

/* ---------- Contact page ---------- */
.contact-sec { background: var(--snow); padding: clamp(60px, 9vh, 120px) 0 clamp(72px, 11vh, 130px); }
.contact-grid { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact-info .eyebrow { color: var(--pine-42); }
.contact-address { margin-top: 16px; font-style: normal; line-height: 1.95; font-size: 16px; color: var(--pine); }
.contact-address strong { font-weight: 600; }
.contact-address a { color: var(--pine); text-decoration: underline; text-decoration-color: var(--stone); text-underline-offset: 3px; transition: text-decoration-color .2s; }
.contact-address a:hover { text-decoration-color: var(--pine); }
.contact-address .sep { color: var(--stone); padding: 0 4px; }
.contact-next { margin-top: 40px; }
.contact-next .eyebrow { color: var(--pine-42); }
.contact-next ul { list-style: none; margin-top: 16px; border-top: 1px solid rgba(179,168,153,0.4); }
.contact-next li { padding: 15px 0; border-bottom: 1px solid rgba(179,168,153,0.4); font-size: 15px; line-height: 1.55; color: var(--pine-62); }
.contact-next li strong { display: block; margin-bottom: 3px; font-weight: 600; opacity: 1; color: var(--pine); }

/* Form (Netlify-handled; styled in the shared system) */
.contact-form { display: grid; gap: 18px; }
.contact-form .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--pine-42); }
.contact-form input, .contact-form textarea, .contact-form select { font-family: var(--sans); font-size: 16px; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--pine); background: var(--snow); border: 1px solid var(--neutral2); border-radius: 2px; padding: 13px 14px; width: 100%; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; }
.contact-form select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8" fill="none" stroke="%23272B27" stroke-width="1.5"><path d="M1 1.5 6 6.5 11 1.5"/></svg>');
  background-repeat: no-repeat; background-position: right 14px center; }
.contact-form select:has(option[value=""]:checked) { color: var(--pine-42); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--pine); box-shadow: 0 0 0 3px rgba(39,43,39,0.08); }
.contact-form button { justify-self: start; margin-top: 6px; }
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* GHL embedded form fills the right column exactly (never wider); stacks with the column on mobile */
.contact-formwrap iframe { width: 100%; max-width: 100%; display: block; border: 0; }
.cf-ok { border: 1px solid rgba(179,168,153,0.5); border-radius: 2px; padding: clamp(28px, 4vw, 44px); background: var(--neutral1); }
.cf-ok h3 { font-family: var(--display); font-weight: 500; font-size: clamp(24px, 3vw, 34px); color: var(--pine); }
.cf-ok p { margin-top: 10px; color: var(--pine-62); font-size: 16px; line-height: 1.6; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }
@media (max-width: 480px) { .contact-form .cf-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine); color: var(--snow); padding: 80px var(--gut) 40px; border-top: 1px solid rgba(253,251,247,0.10); }
.footer-grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-logo { display: block; width: clamp(240px, 36vw, 420px); height: auto; margin-bottom: 18px; }
.footer-tagline { max-width: 46ch; font-size: 15px; line-height: 1.6; color: var(--snow); opacity: .75; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { display: inline-flex; color: var(--snow); opacity: .7; transition: opacity .2s, transform .2s; }
.footer-social a:hover { opacity: 1; transform: translateY(-2px); }
.footer-col h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); margin-bottom: 18px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; font-size: 15px; opacity: .8; margin-bottom: 10px; transition: opacity .2s; }
.footer-col a:hover { opacity: 1; }
.footer-bottom { max-width: var(--wrap); margin: 56px auto 0; padding-top: 24px; border-top: 1px solid rgba(253,251,247,0.12); display: flex; justify-content: space-between; gap: 12px; font-size: 12px; opacity: .55; letter-spacing: .03em; }

/* ============ Homepage upgrade batch ============ */

/* Part 2 — Hero eyebrow (over photo, above H1) */
.hero .eyebrow { color: var(--snow-72); margin-bottom: 20px; }

/* Part 3 — Six Disciplines (service map, on Pine) */
.disciplines { background: var(--pine); color: var(--snow); padding: clamp(88px, 13vh, 168px) 0; }
.disciplines .inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.disc-head { max-width: 62ch; }
.disciplines .eyebrow { color: var(--snow-55); }
.disciplines h2 { font-family: var(--display); font-weight: 500; font-size: clamp(34px, 4.8vw, 66px); line-height: 1.03; margin-top: 16px; }
.disc-head .lead { margin-top: 22px; max-width: 60ch; font-size: clamp(16px, 1.7vw, 20px); line-height: 1.6; color: var(--snow-72); }
.disc-grid { margin-top: clamp(48px, 7vh, 88px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(30px, 3vw, 52px) clamp(32px, 4vw, 64px); }
.discipline { border-top: 1px solid rgba(253,251,247,0.16); padding-top: 22px; }
.discipline .d-n { display: block; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .18em; color: var(--snow-55); }
.discipline h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(19px, 1.7vw, 23px); margin-top: 14px; line-height: 1.15; }
.discipline p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: var(--snow-72); max-width: 34ch; }
.disc-cta { margin-top: clamp(40px, 6vh, 72px); }

/* Part 4 — Relief, not risk (on Pine, centered) */
.relief { background: var(--pine); color: var(--snow); padding: clamp(88px, 14vh, 180px) 0; }
.relief .inner { max-width: 1040px; margin: 0 auto; padding: 0 var(--gut); text-align: center; }
.relief .eyebrow { color: var(--snow-55); }
.relief h2 { font-family: var(--display); font-weight: 500; font-size: clamp(38px, 5.8vw, 80px); margin-top: 16px; line-height: 1.02; max-width: 18ch; margin-inline: auto; }
.relief p { margin: 28px auto 0; max-width: 60ch; font-size: 17px; line-height: 1.7; color: var(--snow-72); }
.relief .cta-row { margin-top: 34px; }

/* Part 6 — Video-ready overlay on the Booth Falls proof still */
.proof-media .video-ready { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.proof-media .video-ready::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(39,43,39,0.30), transparent 62%); }
.proof-media .play-btn { position: relative; width: clamp(64px, 7vw, 92px); height: clamp(64px, 7vw, 92px); border-radius: 50%;
  background: rgba(253,251,247,0.16); border: 1px solid rgba(253,251,247,0.55); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; transition: background .3s ease, transform .3s ease; }
.proof-media .play-btn::after { content: ''; margin-left: 5px; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent var(--snow); }
.proof-media:hover .play-btn { background: rgba(253,251,247,0.26); transform: scale(1.06); }

/* Part 7 — Snow seam between adjacent Pine sections (Relief → Closing) */
.pine-seam { height: 6px; background: var(--snow); }

/* Rhythm fix — Closing on a darkened full-bleed image (Pine stays as fallback) */
.closing { position: relative; overflow: hidden; }
.closing .bg { position: absolute; inset: 0; z-index: 0; }
.closing .bg img { width: 100%; height: 100%; object-fit: cover; }
.closing .bg::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(39,43,39,0.68) 0%, rgba(39,43,39,0.72) 50%, rgba(39,43,39,0.82) 100%); }
.closing h2, .closing .stat-line, .closing .cta-row { position: relative; z-index: 2; }

/* Homepage upgrade — responsive */
@media (max-width: 860px) { .disc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .disc-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-media { height: 420px; }
  .positioning .body { grid-template-columns: 1fr; gap: 20px; }
  .pos-stats { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .pos-stats .st:nth-child(odd) { border-left: none; padding-left: 0; }
  .pos-stats .st:nth-child(even) { border-left: 1px solid rgba(179,168,153,0.35); }
  .pillar-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  /* Mobile nav drawer — solid Deep Pine panel, full dynamic height, clears the fixed header + iOS notch. Identical across all 18 pages. */
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px); height: 100dvh; flex-direction: column; align-items: flex-start;
    justify-content: flex-start; gap: 4px; background: var(--pine);
    padding: calc(env(safe-area-inset-top) + 88px) 32px calc(env(safe-area-inset-bottom) + 40px);
    transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.7,.2,1); overflow-y: auto; overscroll-behavior: contain; }
  .nav.open { transform: none; }
  .nav a { font-size: 18px; color: var(--snow); opacity: .92; padding-block: 14px; }
  .nav .nav-cta { margin-top: 16px; }
  .nav-toggle { display: block; z-index: 101; }
  .more-grid { grid-template-columns: 1fr 1fr; }
  .award-inner { gap: 40px 32px; padding-top: clamp(120px, 24vh, 200px); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
@media (max-width: 520px) {
  .hero-actions { gap: 18px; }
  .feat-stats { gap: 20px; }
  .feat-rail { grid-template-columns: 1fr; }
  .more-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
