/* =================================================================
   GAVIN STENHOUSE — site styles
   ================================================================= */

:root {
  --bg:        #ECEAE4;
  --bg-2:      #E2DFD8;
  --ink:       #181B1E;
  --ink-2:     #2A2D30;
  --mute:      #72757A;
  --line:      #C4C0B6;
  --paper:     #F3F0EA;
  --accent:    #C07828;
  --dark-bg:   #0e0c0a;
  --jade:      #4ade80;
  --jade-2:    #22c55e;

  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --mono:      'IBM Plex Mono', ui-monospace, monospace;
  --display:   'Bebas Neue', 'IBM Plex Sans', sans-serif;

  --maxw:      1280px;
  --pad-x:     32px;
  --pad-y:     120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
em { font-style: italic; color: var(--accent); }

/* ===== NAVIGATION =============================================== */

.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(243, 240, 234, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px var(--pad-x);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px;
}
.brand {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.brand small {
  display: block;
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}
.nav-links {
  list-style: none;
  display: flex; justify-content: center; align-items: center;
  gap: 28px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--ink-2);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .18s, border-color .18s;
}
.nav-links a:hover { border-bottom-color: var(--ink); }
.nav-links a.is-current { color: var(--accent); border-bottom-color: var(--accent); }
.nav-cta {
  display: inline-block;
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: 999px;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: background .18s, transform .18s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav-toggle { display: none; }

/* ===== HERO ===================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  background: var(--dark-bg);
  color: var(--paper);
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,12,10,.55) 0%, rgba(14,12,10,.78) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--maxw); margin: 0 auto;
  padding: 120px var(--pad-x) 80px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245, 239, 229, .75);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px;
  background: rgba(245, 239, 229, .55);
}
.h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(46px, 7.2vw, 110px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  max-width: 14ch;
  color: var(--paper);
}
.h1 em { color: var(--accent); font-family: var(--serif); text-transform: none; font-weight: 500; }
.hero-lede {
  max-width: 58ch;
  margin-top: 28px;
  font-family: var(--sans); font-size: 19px; font-weight: 300;
  line-height: 1.55;
  color: rgba(245, 239, 229, .85);
}
.hero-cta {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hero-foot {
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 239, 229, .18);
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245, 239, 229, .65);
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center;
}
.hero-foot .label { color: rgba(245, 239, 229, .45); }
.hero-foot .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); display: inline-block; }

/* ===== BUTTONS ================================================== */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background .18s, color .18s, transform .18s, border-color .18s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: var(--paper); color: var(--ink); }
.btn-primary:hover  { background: var(--accent); color: var(--paper); transform: translateY(-1px); }
.btn-ghost    { background: transparent; color: var(--paper); border-color: rgba(245,239,229,.4); }
.btn-ghost:hover    { background: rgba(245,239,229,.1); transform: translateY(-1px); }
.btn-dark     { background: var(--ink); color: var(--paper); }
.btn-dark:hover     { background: var(--accent); color: var(--paper); transform: translateY(-1px); }
.btn-jade     { background: var(--jade); color: var(--ink); }
.btn-jade:hover     { background: var(--jade-2); transform: translateY(-1px); }
.btn-light    { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-light:hover    { background: var(--ink); color: var(--paper); transform: translateY(-1px); }

/* ===== SECTION SHELL ============================================ */

section.block { padding: var(--pad-y) 0; border-top: 1px solid var(--line); }
section.block:first-of-type { border-top: 0; }
section.block.dark { background: var(--dark-bg); color: var(--paper); border-top: 0; }
section.block.alt  { background: var(--bg-2); }

.block-head {
  display: grid; grid-template-columns: auto 1fr; gap: 64px;
  margin-bottom: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
section.block.dark .block-head { border-top-color: rgba(245,239,229,.18); }
.block-head .num {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
}
section.block.dark .block-head .num { color: rgba(245,239,229,.55); }
.block-head .h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.005em;
  max-width: 18ch;
}
.block-head .h2 em { color: var(--accent); }
section.block.dark .block-head .h2 em { color: var(--accent); }
.block-head .lede {
  grid-column: 2;
  margin-top: 18px;
  max-width: 60ch;
  font-size: 17px; color: var(--ink-2);
  line-height: 1.55;
}
section.block.dark .block-head .lede { color: rgba(245,239,229,.78); }

/* ===== HOME: SERVICES =========================================== */

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.svc-card {
  padding: 40px 36px 44px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  transition: background .2s;
  color: inherit;
}
.svc-card:last-child { border-right: 0; }
.svc-card:hover { background: var(--bg-2); }
.svc-card .roman {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.svc-card h3 {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  line-height: 1.1;
}
.svc-card .desc { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.svc-card .price {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
}
.svc-card .arrow { color: var(--accent); font-size: 18px; }

/* ===== ABOUT / TEACHER ========================================== */

.two-col {
  display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start;
}
.portrait {
  aspect-ratio: 4 / 5;
  background-size: cover; background-position: center;
  filter: grayscale(15%);
  border: 1px solid var(--line);
}
.about-lede {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 50ch;
}
.about-lede em { font-style: italic; }
.about-body {
  margin-top: 24px;
  max-width: 60ch;
  font-size: 16px; color: var(--ink-2); line-height: 1.65;
}
.meta-grid {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.meta-grid div {
  background: var(--bg);
  padding: 22px 24px;
}
.meta-grid dt {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}
.meta-grid dd { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--ink); }

/* ===== GENERIC CALLOUT =========================================== */

.callout {
  text-align: center;
  padding: 0 var(--pad-x);
}
.callout .h2 {
  font-family: var(--serif); font-size: clamp(36px, 4.8vw, 56px); font-weight: 500;
  margin: 0 auto 24px; max-width: 18ch; line-height: 1.05;
}
.callout p {
  max-width: 56ch; margin: 0 auto;
  font-size: 17px; line-height: 1.55;
  color: rgba(245,239,229,.8);
}
section.block:not(.dark) .callout p { color: var(--ink-2); }
.callout .actions {
  margin-top: 36px;
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

/* ===== TESTIMONIAL ============================================== */

.tm {
  max-width: 880px; margin: 0 auto;
  text-align: center;
  padding: 0 var(--pad-x);
}
.tm .quote-mark {
  font-family: var(--serif);
  font-size: 96px; line-height: 1; color: var(--accent);
  margin-bottom: 16px;
}
.tm blockquote {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.35;
  color: var(--paper);
  font-style: italic;
}
.tm blockquote em { font-weight: 500; color: var(--accent); }
section.block:not(.dark) .tm blockquote { color: var(--ink); }
.tm .attrib {
  margin-top: 28px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,239,229,.7);
}
section.block:not(.dark) .tm .attrib { color: var(--mute); }

/* ===== PILLARS / 3-UP =========================================== */

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pillar {
  padding: 32px 32px 32px 0;
  border-right: 1px solid var(--line);
}
.pillar:last-child { border-right: 0; padding-right: 0; }
.pillar:first-child { padding-left: 0; }
.pillar:not(:first-child) { padding-left: 32px; }
.pillar .num-sm {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; color: var(--accent);
  margin-bottom: 16px; text-transform: uppercase;
}
.pillar h3 {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  margin-bottom: 14px; line-height: 1.15;
}
.pillar p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }
section.block.dark .pillar { border-color: rgba(245,239,229,.22); }
section.block.dark .pillar p { color: rgba(245,239,229,.78); }

/* ===== PRICING CARDS ============================================ */

.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.price-card.feature {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}
.price-card .tag {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.price-card h3 {
  font-family: var(--serif); font-size: 32px; font-weight: 500; line-height: 1.1;
}
.price-card .price-figure {
  font-family: var(--display); font-size: 44px; line-height: 1;
  letter-spacing: 0.005em;
  color: var(--accent);
}
.price-card .desc { font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.price-card.feature .desc { color: rgba(245,239,229,.78); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 18px 0; border-top: 1px solid var(--line); }
.price-card.feature ul { border-color: rgba(245,239,229,.22); }
.price-card li {
  font-family: var(--sans); font-size: 14px; color: var(--ink-2);
  padding-left: 22px; position: relative; line-height: 1.5;
}
.price-card.feature li { color: rgba(245,239,229,.85); }
.price-card li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 1px; background: var(--accent);
}
.price-card .btn { margin-top: auto; align-self: flex-start; }

.upcoming {
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--bg-2); border: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center;
}
.upcoming .tag {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.upcoming p {
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  color: var(--ink);
  flex: 1; min-width: 280px;
}
.upcoming a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.upcoming a:hover { color: var(--accent); }

/* ===== ASYNC BOXES (1-on-1 page) ================================ */

.async-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.async-box {
  display: flex; gap: 24px; padding: 32px;
  border: 1px solid var(--line); background: var(--paper);
  transition: background .2s;
}
.async-box:hover { background: var(--bg-2); }
.async-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  border-radius: 50%;
}
.async-box h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 8px; }
.async-box p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.async-box .more {
  margin-top: 14px; display: inline-block;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}

/* ===== STEPS (numbered process) ================================= */

.steps { display: grid; gap: 32px; grid-template-columns: repeat(4, 1fr); }
.steps.five { grid-template-columns: repeat(5, 1fr); }
.step {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.step .num-big {
  font-family: var(--display); font-size: 56px; line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
}
.step h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 10px; line-height: 1.15; }
.step p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ===== FAQ ====================================================== */

.faq { display: flex; flex-direction: column; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  font-family: var(--serif); font-size: clamp(20px, 1.8vw, 24px); font-weight: 500;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--mono); font-weight: 400; font-size: 24px;
  color: var(--accent); line-height: 1;
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq .answer { margin-top: 14px; max-width: 70ch; color: var(--ink-2); font-size: 16px; line-height: 1.6; }

/* ===== GM ADVANTAGE Portraits =================================== */

.portrait-row {
  display: flex; justify-content: center; gap: 42px; flex-wrap: wrap;
}
.portrait-card { text-align: center; }
.portrait-circle {
  width: 220px; height: 220px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  border: 1px solid rgba(245,239,229,.22);
}
.portrait-card .name {
  margin-top: 18px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--paper);
}
section.block:not(.dark) .portrait-card .name { color: var(--ink); }

.tm-portrait {
  display: grid; grid-template-columns: 220px 1fr; gap: 48px;
  align-items: center;
  max-width: 900px; margin: 0 auto;
  padding: 0 var(--pad-x);
}
.tm-portrait .portrait-circle { width: 220px; height: 220px; box-shadow: 0 4px 16px rgba(0,0,0,.25); }
.tm-portrait blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px); line-height: 1.4;
  color: var(--paper);
}
.tm-portrait blockquote em { color: var(--accent); font-weight: 500; }
.tm-portrait .who {
  margin-top: 18px;
  font-family: var(--serif); font-size: 16px; font-weight: 500; color: var(--paper);
}
.tm-portrait .role {
  font-family: var(--serif); font-size: 14px; color: rgba(245,239,229,.65);
  margin-top: 2px;
}

/* ===== TWO-COL TEXT (credits page) ============================== */

.credits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.credits-grid h3 {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mute);
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.credits-list { list-style: none; display: flex; flex-direction: column; }
.credits-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--ink);
  display: flex; justify-content: space-between; gap: 16px;
}
.credits-list li span {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute);
}

/* ===== CONTACT CARDS ============================================ */

.contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-card .roman {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.contact-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 1.15; }
.contact-card p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.contact-card a.link {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
  align-self: flex-start;
}
.contact-card a.link:hover { color: var(--accent); }
.contact-card .stack { display: flex; flex-direction: column; gap: 4px; }
.contact-card .stack span { font-family: var(--serif); font-size: 18px; color: var(--ink); }
.contact-card .stack span small { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); display: block; margin-bottom: 2px; }

/* ===== FOOTER =================================================== */

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  margin-top: 0;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 56px var(--pad-x) 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer h4 {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
}
.footer .brand {
  font-size: 22px; font-weight: 600;
  margin-bottom: 16px;
}
.footer .brand small { letter-spacing: 0.26em; }
.footer p { font-size: 14px; color: var(--ink-2); line-height: 1.55; max-width: 36ch; }
.footer .rep {
  margin-top: 20px;
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-2); line-height: 1.7;
}
.footer .rep strong { color: var(--ink); font-weight: 500; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14px; color: var(--ink-2);
  transition: color .15s;
}
.footer ul a:hover { color: var(--accent); }
.footer-base {
  border-top: 1px solid var(--line);
  padding: 24px var(--pad-x);
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
}

/* ===== BOOKING MODAL ============================================ */

#gs-booking[aria-hidden="true"] { display: none; }
#gs-booking { position: fixed; inset: 0; z-index: 100; }
.gs-booking__scrim { position: absolute; inset: 0; background: rgba(14,12,10,.6); }
.gs-booking__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(440px, 100%);
  background: var(--paper);
  padding: 56px 40px;
  display: flex; flex-direction: column; gap: 18px;
  overflow-y: auto;
}
.gs-booking__close { position: absolute; top: 14px; right: 18px; font-size: 28px; color: var(--ink); }
.gs-booking__eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); }
.gs-booking__title { font-family: var(--serif); font-size: 36px; font-weight: 500; color: var(--ink); }
.gs-booking__lede { font-size: 15px; color: var(--ink-2); }
.gs-booking__list { list-style: none; padding-top: 14px; border-top: 1px solid var(--line); }
.gs-booking__list li { border-bottom: 1px solid var(--line); }
.gs-booking__list a { display: flex; justify-content: space-between; padding: 18px 0; font-family: var(--serif); font-size: 20px; color: var(--ink); }
.gs-booking__list a:hover { color: var(--accent); }
.gs-booking__foot { font-size: 13px; color: var(--mute); margin-top: auto; }
.gs-booking__foot a { color: var(--ink); border-bottom: 1px solid var(--accent); }

/* ===== CONTACT HERO override ==================================== */

.contact-hero .hero-bg {
  background-position: right center;
}
.contact-hero .hero-bg::after {
  background: linear-gradient(90deg, rgba(14,12,10,.92) 0%, rgba(14,12,10,.72) 50%, rgba(14,12,10,.45) 100%);
}

/* Coaching hero — solid left, portrait image right */
.coaching-hero { background: var(--dark-bg); }
.coaching-hero .hero-bg {
  left: auto; right: 0; width: 44%;
  background-size: cover; background-position: center top;
}
.coaching-hero .hero-bg::after {
  background: linear-gradient(90deg, rgba(14,12,10,.92) 0%, rgba(14,12,10,.4) 60%, rgba(14,12,10,0) 100%);
}

/* ===== RESPONSIVE =============================================== */

@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --pad-x: 16px; --pad-y: 60px; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero-inner { padding: 80px var(--pad-x) 56px; }
  .h1 { font-size: clamp(36px, 9vw, 56px); }
  .hero-lede { font-size: 16px; }
  .block-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .block-head .lede { grid-column: 1; }
  .svc-grid, .pillars { grid-template-columns: 1fr; }
  .svc-card, .pillar { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .svc-card:last-child, .pillar:last-child { border-bottom: 0; }
  .pillar:not(:first-child) { padding-left: 0; }
  .two-col, .credits-grid, .price-grid, .async-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps, .steps.five { grid-template-columns: 1fr 1fr; gap: 24px; }
  .tm-portrait { grid-template-columns: 1fr; text-align: center; }
  .tm-portrait .portrait-circle { margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px var(--pad-x) 24px; }
  .coaching-hero .hero-bg { left: 0; right: 0; width: 100%; }
}
@media (max-width: 600px) {
  .steps, .steps.five { grid-template-columns: 1fr; }
  .portrait-circle { width: 160px; height: 160px; }
}
