/* ════════════════════════════════════════════════════════════════════
   Gavin Stenhouse — Palette B2 "Cinematic Refined"
   Personal brand · coaching · corporate
   See brand book for canonical usage rules.
   GM Advantage uses Palette A — see /gm-advantage/ for separate styles.
   ════════════════════════════════════════════════════════════════════ */

:root {
  /* Palette B2 — Cinematic Refined */
  --bg:        #ECEAE4;  /* Linen — page background */
  --bg-2:      #E2DFD8;  /* Deep Linen — secondary backgrounds */
  --ink:       #181B1E;  /* Slate Ink — primary text, never pure black */
  --ink-2:     #2A2D30;  /* Slate Ink 2 — body copy */
  --mute:      #72757A;  /* Cool Grey — labels, captions */
  --line:      #C4C0B6;  /* Rule — borders */
  --paper:     #F3F0EA;  /* Paper — card backgrounds */
  --amber:     #C07828;  /* Primary accent — italic emphasis, arrows, active */
  --jade:      #2E5240;  /* Secondary accent — CTA backgrounds */
  --steel:     #5E84A0;  /* Tertiary — used 1–2 placements per layout, never repeating */
  --paper-on-dark: rgba(243,240,234,.92);

  --shadow: 0 1px 0 rgba(24,27,30,.04), 0 12px 36px -18px rgba(24,27,30,.18);

  --display: "Bebas Neue", Impact, "Helvetica Neue Condensed", sans-serif;
  --serif:   "Cormorant Garamond", Georgia, serif;
  --sans:    "IBM Plex Sans", system-ui, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ═══════════════════ DARK-SECTION CINEMATIC TREATMENT ═══════════════════
   Grain at ~4% + radial vignette. Brand-book mandated for all dark sections
   in Palette B2. Apply via .dark-cinematic class on the section element. */
.dark-cinematic { position: relative; }
.dark-cinematic > * { position: relative; z-index: 2; }
.dark-cinematic::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  opacity: .04;
  mix-blend-mode: overlay;
}
.dark-cinematic::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 100%, rgba(0,0,0,0) 0%, rgba(0,0,0,.35) 100%);
}

/* ═══════════════════ NAV ═══════════════════ */
.nav { position: sticky; top: 0; z-index: 40; backdrop-filter: blur(10px);
  background: rgba(236,234,228,.86); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 18px 32px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.brand { font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: .01em;
  color: var(--steel); /* Steel placement #1 — brand wordmark */ }
.brand small { display: block; font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--mute); margin-top: 2px; }
.nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 28px; justify-content: center;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.nav ul a { padding: 6px 0; border-bottom: 1px solid transparent; transition: border-color .2s, color .2s; }
.nav ul a:hover { border-color: var(--ink); }
.nav ul a.current { border-color: var(--amber); color: var(--amber); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
  background: var(--jade); color: var(--paper); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; border-radius: 999px; cursor: pointer; border: 0;
  font-family: var(--sans); transition: background .2s; }
.nav-cta:hover { background: var(--ink); }

/* ═══════════════════ HERO ═══════════════════ */
.hero { position: relative; min-height: 92vh; display: grid; grid-template-columns: 1fr;
  overflow: hidden; background: var(--ink); color: var(--paper-on-dark); }
.hero-img { position: absolute; inset: 0; z-index: 0; background-size: cover;
  background-position: center 30%; filter: grayscale(.25) contrast(1.05); }
.hero-img::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.05) 60%); }
.hero-inner { position: relative; z-index: 3; max-width: 1280px; width: 100%; margin: 0 auto;
  padding: 120px 32px 56px; display: flex; flex-direction: column; justify-content: space-between;
  min-height: 92vh; }
.eyebrow { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(243,240,234,.75); display: inline-flex; align-items: center; gap: 14px; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; display: inline-block; }

/* Hero H1 — Bebas Neue caps with Cormorant italic accent (cinematic contrast) */
h1.hero-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(60px, 9.5vw, 148px);
  line-height: .92; letter-spacing: .005em;
  text-transform: uppercase;
  margin: 22px 0 28px; max-width: 16ch;
}
h1.hero-title em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--amber); text-transform: none; letter-spacing: -.015em;
  display: inline-block; line-height: 1;
}
.hero-sub { font-size: 19px; line-height: 1.5; max-width: 52ch;
  color: rgba(243,240,234,.88); font-weight: 300; }
.hero-cta-row { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 26px;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase; border-radius: 999px;
  transition: transform .2s, background .2s, color .2s, border-color .2s; cursor: pointer; border: 0;
  font-family: var(--sans); }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--paper); color: var(--ink); }
.btn-primary:hover { background: var(--amber); color: var(--paper); }
.btn-ghost { color: var(--paper); border: 1px solid rgba(243,240,234,.4); background: transparent; }
.btn-ghost:hover { background: rgba(243,240,234,.1); border-color: rgba(243,240,234,.7); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--jade); }
.btn-light { background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.btn-light:hover { background: var(--ink); color: var(--paper); }
.btn-jade { background: var(--jade); color: var(--paper); }
.btn-jade:hover { background: var(--ink); }

/* ═══════════════════ HERO CREDITS ═══════════════════ */
.hero-foot { margin-top: 64px; display: grid; grid-template-columns: auto 1fr; gap: 32px;
  align-items: end; border-top: 1px solid rgba(243,240,234,.2); padding-top: 22px; }
.hero-foot-label { font-family: var(--mono); font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(243,240,234,.55); }
.credits { display: flex; flex-wrap: wrap; gap: 4px 28px; font-family: var(--serif);
  font-size: clamp(16px,1.4vw,22px); font-style: italic; font-weight: 400; color: rgba(243,240,234,.92); }
.credits span { white-space: nowrap; }
.credits span + span::before { content: "·"; margin-right: 28px; color: rgba(243,240,234,.45); }

/* ═══════════════════ SECTION SHELL ═══════════════════ */
section.block { max-width: 1280px; margin: 0 auto; padding: 120px 32px; }
.block-head { display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: baseline;
  margin-bottom: 56px; border-top: 1px solid var(--line); padding-top: 28px; }
.block-num { font-family: var(--mono); font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--mute); }
.block-title { font-family: var(--serif); font-weight: 500; font-size: clamp(36px,4.8vw,60px);
  line-height: 1.05; letter-spacing: -.01em; margin: 0; max-width: 18ch; }
.block-title em { font-style: italic; color: var(--amber); font-weight: 400; }
.block-lede { font-size: 18px; color: var(--mute); margin: 18px 0 0; max-width: 56ch; line-height: 1.55; }

/* ═══════════════════ PILLARS ═══════════════════ */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pillar { padding: 40px 36px 44px; border-right: 1px solid var(--line); }
.pillar:last-child { border-right: 0; }
.pillar-num { font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 26px; color: var(--amber); margin-bottom: 18px; }
.pillar h3 { font-family: var(--serif); font-weight: 500; font-size: 28px; line-height: 1.1; margin: 0 0 14px; }
.pillar p { color: var(--mute); margin: 0; font-size: 15px; line-height: 1.6; }

/* ═══════════════════ CARDS ═══════════════════ */
.pricing { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 24px; }
.card { background: var(--paper); border: 1px solid var(--line); padding: 40px 36px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-tag { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--mute); margin-bottom: 24px; }
.card.featured { background: var(--ink); color: var(--paper-on-dark); border-color: var(--ink); }
.card.featured .card-tag { color: rgba(243,240,234,.55); }
.card.featured .card-pricerule { background: rgba(243,240,234,.18); }
.card.featured .card-includes { color: rgba(243,240,234,.78); }
.card.featured .card-includes li::before { color: var(--amber); }
.card-pricerule { height: 1px; background: var(--line); margin: 22px 0; }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 38px; line-height: 1.05; margin: 0 0 12px; }
.card-price { font-family: var(--serif); font-size: 52px; line-height: 1; font-weight: 500;
  letter-spacing: -.01em; display: flex; align-items: baseline; gap: 10px; }
.card-price .per { font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--mute); letter-spacing: .04em; }
.card.featured .card-price .per { color: rgba(243,240,234,.65); }
.card-desc { margin: 18px 0 22px; color: var(--mute); font-size: 15px; line-height: 1.6; }
.card.featured .card-desc { color: rgba(243,240,234,.78); }
.card-includes { list-style: none; padding: 0; margin: 0 0 30px; font-size: 14px; color: var(--ink-2);
  display: flex; flex-direction: column; gap: 10px; }
.card-includes li { padding-left: 22px; position: relative; }
.card-includes li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--amber); font-weight: 500; }
.card .btn { align-self: flex-start; margin-top: auto; }

.pricing-foot { background: var(--bg-2); border: 1px dashed var(--line); padding: 22px 28px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.pricing-foot .pf-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--amber); white-space: nowrap; }
.pricing-foot .pf-title { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.pricing-foot .pf-title small { color: var(--mute); font-family: var(--sans); font-size: 14px;
  font-weight: 400; margin-left: 12px; }
.pricing-foot .pf-link { font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mute); }

/* ═══════════════════ ALT FORMATS ═══════════════════ */
.alt-formats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.alt { border: 1px solid var(--line); padding: 36px; display: grid; grid-template-rows: auto 1fr auto;
  gap: 18px; background: linear-gradient(180deg, var(--paper), var(--bg)); }
.alt-icon { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--amber); }
.alt h3 { font-family: var(--serif); font-weight: 500; font-size: 30px; margin: 0; }
.alt p { margin: 0; color: var(--mute); font-size: 15px; line-height: 1.6; }
.alt-link { font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink);
  padding-bottom: 4px; align-self: start; justify-self: start; }
.alt-link:hover { color: var(--amber); border-color: var(--amber); }

/* ═══════════════════ TEACHER SPLIT ═══════════════════ */
.teacher { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
.teacher-photo { aspect-ratio: 4/5; background-size: cover; background-position: center; filter: grayscale(.2); }
.teacher-body p { font-family: var(--serif); font-size: 22px; line-height: 1.45; font-weight: 400;
  color: var(--ink-2); margin: 0 0 20px; }
.teacher-body p.lede { font-size: 28px; line-height: 1.3; margin-bottom: 28px; }
.teacher-body p.lede em { color: var(--amber); font-style: italic; }
.teacher-meta { margin-top: 36px; display: grid; grid-template-columns: repeat(2,1fr); gap: 0;
  border-top: 1px solid var(--line); }
.meta-cell { padding: 22px 0; border-bottom: 1px solid var(--line); }
.meta-cell:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); padding-left: 0; }
.meta-cell:nth-child(even) { padding-left: 24px; }
.meta-label { font-family: var(--mono); font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--mute); margin-bottom: 8px; }
.meta-value { font-family: var(--serif); font-size: 20px; font-weight: 500; }

/* ═══════════════════ TESTIMONIAL ═══════════════════ */
.testimonial-block { background: var(--ink); color: var(--paper-on-dark); margin: 0; padding: 120px 0; }
.testimonial { max-width: 1100px; margin: 0 auto; padding: 0 32px; text-align: center; }
.quote-mark { font-family: var(--serif); font-style: italic; font-size: 120px; line-height: 1;
  color: var(--amber); margin-bottom: -30px; }
blockquote.q { font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px,3.4vw,46px); line-height: 1.25; margin: 0 auto 36px;
  max-width: 26ch; text-wrap: pretty; }
blockquote.q em { color: var(--amber); font-style: italic; }
.q-attr { font-family: var(--mono); font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(243,240,234,.65); }
.q-attr strong { color: var(--paper); font-weight: 500; }

/* ═══════════════════ FINAL CTA ═══════════════════ */
.final { text-align: center; padding: 140px 32px; max-width: 1000px; margin: 0 auto; }
.final h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(44px,6vw,84px);
  line-height: 1.02; letter-spacing: -.015em; margin: 0 0 24px; }
.final h2 em { font-style: italic; color: var(--amber); }
.final p { color: var(--mute); font-size: 18px; max-width: 50ch; margin: 0 auto 36px; }

/* ═══════════════════ FOOTER ═══════════════════ */
footer { background: var(--bg-2); border-top: 1px solid var(--line); }
.foot-inner { max-width: 1280px; margin: 0 auto; padding: 56px 32px 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.foot-brand p { color: var(--mute); margin: 12px 0 0; font-size: 14px; max-width: 36ch; }
.foot-col h4 { font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--mute); margin: 0 0 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column;
  gap: 10px; font-size: 14px; }
.foot-col a:hover { color: var(--amber); }
.foot-base { max-width: 1280px; margin: 0 auto; padding: 24px 32px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }

/* ═══════════════════ SERVICE GRID (home) ═══════════════════ */
.services { display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc { padding: 40px 36px 40px; border-right: 1px solid var(--line);
  display: grid; grid-template-rows: auto auto 1fr auto; gap: 14px;
  transition: background .2s; }
.svc:last-child { border-right: 0; }
.svc:hover { background: var(--bg-2); }
.svc-num { font-family: var(--mono); font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--mute); }
.svc h3 { font-family: var(--serif); font-weight: 500; font-size: 36px; line-height: 1.05; margin: 0; }
.svc h3 em { font-style: italic; color: var(--amber); font-weight: 400; }
.svc p { color: var(--mute); margin: 0; font-size: 15px; line-height: 1.6; }
.svc .price { font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink); padding-top: 12px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; }
.svc .price .arrow { color: var(--amber); }

/* ═══════════════════ STEPS (process) ═══════════════════ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  border-top: 1px solid var(--line); }
.step { padding: 36px 28px 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step-num { font-family: var(--serif); font-style: italic; font-size: 56px; line-height: 1;
  color: var(--amber); margin-bottom: 18px; font-weight: 500; }
.step h4 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 0 0 10px; line-height: 1.15; }
.step p { color: var(--mute); font-size: 14px; line-height: 1.55; margin: 0; }

/* ═══════════════════ FAQ ═══════════════════ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: baseline; gap: 24px; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-size: 32px;
  color: var(--amber); transition: transform .2s; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 18px 0 0; color: var(--mute); font-size: 16px; line-height: 1.6; max-width: 64ch; }

/* ═══════════════════ BIG CALLOUT (e.g. GM Advantage gateway) ═══════════════════ */
.callout { background: var(--ink); color: var(--paper-on-dark); padding: 80px 0; }
.callout-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: center; }
.callout h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px,4vw,52px);
  line-height: 1.05; margin: 0; }
.callout h2 em { font-style: italic; color: var(--amber); }
.callout p { color: rgba(243,240,234,.78); font-size: 17px; line-height: 1.55; margin: 18px 0 0; }
.callout .btn-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* ═══════════════════ CONTACT-PAGE LAYOUT ═══════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-card { padding: 36px; border: 1px solid var(--line); background: var(--paper); }
.contact-card h3 { font-family: var(--serif); font-weight: 500; font-size: 28px; margin: 0 0 12px; }
.contact-card p { color: var(--mute); margin: 0 0 18px; font-size: 15px; line-height: 1.6; }
.contact-link { font-family: var(--mono); font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.contact-link:hover { color: var(--amber); border-color: var(--amber); }

/* ═══════════════════ BOOKING MODAL ═══════════════════ */
.book-modal { position: fixed; inset: 0; z-index: 100; display: none;
  background: rgba(15,12,9,.78); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 32px; }
.book-modal.open { display: flex; }
.book-modal .panel { background: var(--paper); width: 100%; max-width: 980px; height: 86vh;
  border-radius: 4px; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); }
.book-modal .panel-head { padding: 20px 28px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; }
.book-modal .panel-head h3 { font-family: var(--serif); font-size: 26px; margin: 0; font-weight: 500; }
.book-modal .panel-head h3 small { font-family: var(--mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--mute); display: block; margin-bottom: 4px; }
.book-modal .close { background: none; border: 0; font-size: 24px; cursor: pointer;
  color: var(--mute); width: 36px; height: 36px; border-radius: 50%; }
.book-modal .close:hover { background: var(--bg-2); color: var(--ink); }
.book-modal iframe { flex: 1; border: 0; width: 100%; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 900px) {
  .nav ul { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .block-head { grid-template-columns: 1fr; gap: 14px; }
  .pillars, .services { grid-template-columns: 1fr; }
  .pillar, .svc { border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child, .svc:last-child { border-bottom: 0; }
  .pricing, .alt-formats, .contact-grid { grid-template-columns: 1fr; }
  .pricing-foot { grid-template-columns: 1fr; gap: 10px; }
  .teacher { grid-template-columns: 1fr; gap: 32px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .callout-inner { grid-template-columns: 1fr; }
  .callout .btn-row { justify-content: flex-start; }
  section.block { padding: 80px 24px; }
  .hero-inner { padding: 100px 24px 40px; }
  h1.hero-title { font-size: clamp(48px, 12vw, 88px); }
  .hero-foot { grid-template-columns: 1fr; gap: 12px; }
}
