/* ============================================================
   Justin Levenson — Site v2 (April 2026 brief)
   ============================================================ */

/* Fonts — Google Fonts proxies for the brand stack are loaded via
   <link> in index.html for parallel fetch. When licensed fonts are
   purchased, replace the HTML <link> with local @font-face blocks
   here and update --font-sans / --font-mono in :root accordingly. */

/* Tokens */
:root {
  --deep-sea:  #203235;
  --charcoal:  #36302D;
  --storm:     #4A4B4C;
  --mist:      #5A656B;
  --cool-grey: #E6E7E8;
  --off-white: #F6F4F0;
  --white:     #FAFAFA;
  --rule:      #DEDDD7;
  --gold:      #C8A86A;

  --font-sans:  'Manrope','Helvetica Neue',Arial,sans-serif;
  --font-mono:  'Space Mono', ui-monospace, Menlo, monospace;
  --font-serif: 'Cormorant','Georgia',serif;

  --container: 1200px;
  --gutter:    72px;
  --gutter-sm: 32px;
  --nav-h:     60px;
}

* , *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--deep-sea);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Type primitives ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mist);
}
.eyebrow.on-dark { color: rgba(255,255,255,0.55); }
.meta-mono {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mist);
}
.h-display {
  font-family: var(--font-sans);
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--deep-sea);
}
.h-display em {
  font-family: var(--font-sans);
  font-weight: 400; font-style: italic;
  color: var(--mist);
  letter-spacing: -0.01em;
}
.h-section {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--deep-sea);
}
.h-section em {
  font-family: var(--font-sans);
  font-weight: 400; font-style: italic;
  color: var(--mist);
}
.lede {
  font-size: 17px; font-weight: 400; line-height: 1.75;
  color: var(--mist);
  max-width: 56ch;
}
.body-text {
  font-size: 17px; font-weight: 400; line-height: 1.75;
  color: var(--mist);
}
.body-text + .body-text { margin-top: 18px; }
.body-text strong { color: var(--deep-sea); font-weight: 500; }
.body-text em { color: var(--deep-sea); font-style: italic; font-weight: 400; }

.italic-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 26px;
  border: 1px solid transparent; cursor: pointer;
  display: inline-block;
  border-radius: 1px;
  transition: background 0.2s, color 0.2s, opacity 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--deep-sea); color: var(--white); }
.btn-primary:hover { background: var(--charcoal); }
.btn-light { background: var(--off-white); color: var(--deep-sea); }
.btn-light:hover { opacity: 0.85; }
.btn-ghost {
  background: transparent;
  color: var(--deep-sea);
  border-color: var(--deep-sea);
  padding: 15px 25px;
}
.btn-ghost:hover { background: var(--deep-sea); color: var(--white); }
.btn-ghost.on-dark {
  color: var(--white); border-color: var(--white);
}
.btn-ghost.on-dark:hover { background: var(--white); color: var(--deep-sea); }
.btn-block { display: block; width: 100%; text-align: center; }

/* ── Nav ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 var(--gutter);
  background: rgba(246,244,240,0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--cool-grey);
}
.nav-mark { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-mark img { height: 26px; width: auto; }
.nav-name {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--deep-sea);
}
.nav-links {
  display: flex; align-items: center; justify-content: center; gap: 32px;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mist);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.nav-link:hover { color: var(--deep-sea); }
.nav-link.active { color: var(--deep-sea); border-bottom-color: var(--deep-sea); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--deep-sea);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 1px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--charcoal); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--deep-sea);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--deep-sea);
  color: rgba(255,255,255,0.7);
  padding: 96px var(--gutter) 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 30px; filter: brightness(0) invert(1); opacity: 0.7; margin-bottom: 22px; }
.footer-tag {
  font-family: var(--font-serif);
  font-style: italic; font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 32ch;
  line-height: 1.5;
  margin-bottom: 22px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.78);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--off-white); }
.footer-col a .meta {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block; margin-top: 2px;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── Page chrome ─────────────────────────────────────────── */
.page { display: none; padding-top: var(--nav-h); }
.page.active { display: block; }

.section { padding: 96px var(--gutter); }
.section-tight { padding: 72px var(--gutter); }
.section.dark { background: var(--deep-sea); color: var(--off-white); }
.section.dark .h-display, .section.dark .h-section { color: var(--off-white); }
.section.dark .h-display em, .section.dark .h-section em { color: rgba(255,255,255,0.5); }
.section.dark .lede, .section.dark .body-text { color: rgba(255,255,255,0.7); }
.section.dark .body-text strong { color: var(--off-white); }
.section.dark .eyebrow { color: rgba(255,255,255,0.55); }
.section.charcoal { background: var(--charcoal); color: var(--off-white); }
.section.charcoal .h-display, .section.charcoal .h-section { color: var(--off-white); }
.section.charcoal .body-text { color: rgba(255,255,255,0.72); }
.section.charcoal .eyebrow { color: rgba(255,255,255,0.55); }
.section.linen { background: var(--off-white); }
.section.warm  { background: var(--white); }

.container { max-width: var(--container); margin: 0 auto; }
.rule-short {
  width: 40px; height: 1px;
  background: var(--rule); border: 0;
  margin: 24px 0;
}
.section.dark hr.rule-short, .section.charcoal hr.rule-short { background: rgba(255,255,255,0.18); }

/* ── Forms ───────────────────────────────────────────────── */
.lead-form {
  display: grid; gap: 12px;
  max-width: 460px;
}
.lead-form input {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 400;
  padding: 15px 18px;
  border: 1px solid var(--cool-grey);
  background: var(--white);
  color: var(--deep-sea);
  outline: none; border-radius: 1px;
  transition: border-color 0.15s;
  width: 100%;
}
.lead-form input::placeholder { color: #9aa0a5; }
.lead-form input:focus { border-color: var(--mist); }
.lead-form .btn { justify-self: start; padding: 16px 28px; }
.lead-form .btn-block { justify-self: stretch; }
.lead-form-trust {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #9aa0a5;
  margin-top: 6px;
}
.section.dark .lead-form input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: var(--off-white);
}
.section.dark .lead-form input::placeholder { color: rgba(255,255,255,0.4); }
.section.dark .lead-form .btn-primary { background: var(--off-white); color: var(--deep-sea); }
.section.dark .lead-form .btn-primary:hover { opacity: 0.88; background: var(--white); }
.section.dark .lead-form-trust { color: rgba(255,255,255,0.4); }
.form-success {
  display: none;
  font-family: var(--font-sans);
  font-size: 17px; font-weight: 400;
  color: var(--deep-sea); line-height: 1.65;
  padding: 18px 0;
}
.form-success a { text-decoration: underline; text-underline-offset: 3px; color: var(--deep-sea); }
.section.dark .form-success { color: var(--off-white); }
.section.dark .form-success a { color: var(--off-white); }
.lead-form.is-success { display: none; }
.lead-form.is-success + .form-success { display: block; }

/* ── Photo treatments ────────────────────────────────────── */
.photo-frame { background: var(--deep-sea); overflow: hidden; position: relative; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-tint::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(32,50,53,0.30) 0%, rgba(32,50,53,0.78) 100%);
  mix-blend-mode: luminosity;
  opacity: 0.6;
  pointer-events: none;
}
.photo-mark {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: auto;
  opacity: 0.35; filter: brightness(0) invert(1);
  z-index: 2;
}
.photo-quote {
  position: absolute; left: 28px; right: 28px; bottom: 28px;
  z-index: 2; color: #fff;
}
.photo-quote-text {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.35;
  color: rgba(255,255,255,0.95);
  margin-bottom: 14px;
  max-width: 28ch;
}
.photo-quote-meta {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ── Reusable layouts ────────────────────────────────────── */
.grid-2-50 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-2-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.grid-2-narrow { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--cool-grey); border: 1px solid var(--cool-grey); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--cool-grey); border: 1px solid var(--cool-grey); }
.grid-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--cool-grey); border: 1px solid var(--cool-grey); }

.cell {
  background: var(--white);
  padding: 44px 40px;
}
.cell-num {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mist);
  display: block; margin-bottom: 22px;
}
.cell h3 {
  font-family: var(--font-sans);
  font-size: 20px; font-weight: 500; letter-spacing: -0.005em;
  color: var(--deep-sea);
  line-height: 1.3;
  margin-bottom: 12px;
}
.cell h3 em {
  font-family: var(--font-serif);
  font-weight: 400; font-style: italic;
  color: var(--deep-sea);
  letter-spacing: 0;
}
.cell p {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 400; line-height: 1.65;
  color: var(--mist);
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 88px var(--gutter);
  background: var(--deep-sea);
  color: var(--off-white);
}
.stat .num {
  font-family: var(--font-sans);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-bottom: 16px;
}
.stat .lbl {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 22ch;
}

/* Trust strip */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cool-grey);
  border-top: 1px solid var(--cool-grey);
  border-bottom: 1px solid var(--cool-grey);
}
.trust-cell {
  background: var(--off-white);
  padding: 36px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.trust-cell .top {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 400;
  color: var(--deep-sea);
  line-height: 1.4;
  margin-bottom: 10px;
}
.trust-cell .top.stars { color: var(--gold); letter-spacing: 0.2em; font-size: 14px; }
.trust-cell .lbl {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mist);
}

/* Bullet dash list */
.dash-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.dash-list li {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 400;
  color: var(--mist);
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}
.dash-list li::before {
  content: "—";
  position: absolute; left: 0; top: 0;
  color: var(--mist);
}

/* Page-hero (single-column intros for non-home pages) */
.page-hero {
  padding: 120px var(--gutter) 80px;
  border-bottom: 1px solid var(--cool-grey);
}
.page-hero .container { max-width: 880px; }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero .lede { font-size: 19px; }

/* Speaking dark hero */
.speaking-hero {
  background: var(--deep-sea);
  color: var(--off-white);
  padding: 120px var(--gutter) 96px;
}
.speaking-hero .h-display { color: var(--off-white); }
.speaking-hero .h-display em { color: rgba(255,255,255,0.6); }
.speaking-hero .lede { color: rgba(255,255,255,0.72); }
.speaking-hero .eyebrow { color: rgba(255,255,255,0.55); }
.speaking-hero .photo-frame { aspect-ratio: 4/5; }

/* Status badge */
.status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--off-white);
  background: rgba(0,0,0,0.65);
  padding: 8px 12px;
  border-radius: 1px;
}
.status-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #E2A03F;
  box-shadow: 0 0 0 3px rgba(226,160,63,0.18);
}
.eyebrow .amber-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #C8A86A; margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cool-grey);
  border: 1px solid var(--cool-grey);
}
.review {
  background: var(--off-white);
  padding: 44px 40px;
}
.review .stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 14px;
  margin-bottom: 18px;
}
.review blockquote {
  font-family: var(--font-serif);
  font-size: 22px; font-style: italic; font-weight: 400;
  color: var(--deep-sea); line-height: 1.4;
  margin-bottom: 18px;
}
.review cite {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mist);
  font-style: normal;
}

/* Book cover */
.book-cover-frame {
  background: var(--white);
  padding: 0;
  position: relative;
}
.book-cover-frame img {
  width: 100%; height: auto; display: block;
  box-shadow: 0 24px 60px rgba(32,50,53,0.18);
}

/* Writing post list */
.post-list { display: flex; flex-direction: column; }
.post-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 48px;
  padding: 36px 0;
  border-top: 1px solid var(--cool-grey);
  align-items: baseline;
}
.post-item:last-child { border-bottom: 1px solid var(--cool-grey); }
.post-date {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mist);
}
.post-title {
  font-family: var(--font-sans);
  font-size: 22px; font-weight: 400;
  color: var(--deep-sea);
  line-height: 1.3;
  margin-bottom: 8px;
}
.post-excerpt {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 400;
  color: var(--mist);
  line-height: 1.6;
  max-width: 56ch;
}
.post-link {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--deep-sea);
  border-bottom: 1px solid var(--deep-sea);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 0.18s;
}
.post-link:hover { opacity: 0.7; }

/* Home hero photo */
.hero-photo {
  aspect-ratio: 4/5;
  position: relative;
}
.hero-photo img { object-position: center 20%; }

/* Story photo */
.story-photo {
  aspect-ratio: 3/4;
  background: var(--deep-sea);
  overflow: hidden;
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); }

/* Course form (compact) */
.compact-form { max-width: 520px; }

/* Speaking inquiry tertiary text */
.tertiary {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 18px; line-height: 1.7;
  max-width: 50ch;
}
.speaking-hero .button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* Audiences columns (light) */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.audience h4 {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--deep-sea);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cool-grey);
}
.audience p {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 400;
  color: var(--mist);
  line-height: 1.7;
}

/* Three-ways dark cards */
.three-ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 56px;
}
.three-ways .way {
  background: var(--deep-sea);
  padding: 44px 36px 40px;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.three-ways .way .num {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
}
.three-ways .way h3 {
  font-family: var(--font-sans);
  font-size: 22px; font-weight: 400;
  color: var(--off-white);
  line-height: 1.3;
  margin-bottom: 14px;
}
.three-ways .way h3 em {
  font-family: var(--font-serif);
  font-weight: 400; font-style: italic;
  color: var(--off-white);
}
.three-ways .way p {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  flex: 1;
}
.three-ways .way a.link {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--off-white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: border-color 0.18s;
}
.three-ways .way a.link:hover { border-color: var(--off-white); }

/* Timeline (course) */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cool-grey);
  border: 1px solid var(--cool-grey);
}
.timeline-cell {
  background: var(--white);
  padding: 40px 36px 44px;
  border-top: 3px solid var(--deep-sea);
}
.timeline-cell .when {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--deep-sea);
  margin-bottom: 16px;
}
.timeline-cell .what {
  font-family: var(--font-sans);
  font-size: 18px; font-weight: 400;
  color: var(--deep-sea);
  line-height: 1.4;
}

/* Book CTA bar */
.book-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: stretch;
  background: var(--charcoal);
  color: var(--off-white);
}
.book-bar .left { padding: 80px var(--gutter); }
.book-bar .right { position: relative; min-height: 380px; overflow: hidden; }
.book-bar .right img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85);
  mix-blend-mode: luminosity;
  opacity: 0.85;
}

/* Page-flag (prototype) */
.proto-flag {
  position: fixed; bottom: 16px; left: 16px; z-index: 200;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--deep-sea); color: var(--off-white);
  padding: 7px 12px; border-radius: 1px;
  opacity: 0.65; pointer-events: none;
}

/* ── Reveal animations ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.fade-only { transform: none; transition: opacity 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Speaking inquiry form (on dark) ─────────────────────── */
.inquiry-form {
  display: grid;
  gap: 18px;
  max-width: 600px;
  margin: 0 auto;
}
.inquiry-form.is-success { display: none; }
.inquiry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.inquiry-field { display: block; }
.inquiry-field > span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1px;
  padding: 14px 16px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s, background 0.15s;
}
.inquiry-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.inquiry-field select {
  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'><path fill='none' stroke='%23ffffff99' stroke-width='1.5' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.inquiry-field option {
  color: var(--deep-sea);
  background: var(--off-white);
}
.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.10);
}
.inquiry-field input::placeholder,
.inquiry-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.40);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Form error helper ──────────────────────────────────── */
.lead-form-error {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: #C24D2C;
  min-height: 1em;
}
.lead-form-error:empty { display: none; }
/* On dark sections, a warmer coral that actually reads against deep-sea */
.section.dark .lead-form-error,
.book-bar .lead-form-error,
.inquiry-form .lead-form-error {
  color: #FF8B70;
}

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --gutter: 32px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--off-white);
    padding: 24px var(--gutter);
    border-bottom: 1px solid var(--cool-grey);
    gap: 20px;
    z-index: 90;
  }
  .grid-2-50, .grid-2-hero, .grid-2-narrow { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .grid-4, .grid-2x2, .three-ways, .timeline, .review-grid, .audience-grid, .trust-strip {
    grid-template-columns: 1fr;
  }
  .stats-strip { grid-template-columns: 1fr; gap: 32px; padding: 64px var(--gutter); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .section { padding: 64px var(--gutter); }
  .page-hero { padding: 96px var(--gutter) 64px; }
  .speaking-hero { padding: 96px var(--gutter) 64px; }
  .book-bar { grid-template-columns: 1fr; }
  .book-bar .left { padding: 56px var(--gutter); }
  .post-item { grid-template-columns: 1fr; gap: 12px; }
  .inquiry-row { grid-template-columns: 1fr; gap: 18px; }

  /* ── Mobile hero: form first, photo hidden ─────────────── */
  /* Tighten top padding so content starts higher on screen */
  [data-page="home"] .section:first-of-type {
    padding-top: 72px !important;
    padding-bottom: 40px;
  }
  /* Text + form column always renders first */
  .grid-2-hero > div:first-child { order: 1; }
  /* Hide the portrait on mobile — form needs the full fold */
  .hero-photo { display: none; }
  /* Compact the dash-list so form appears without scrolling */
  .dash-list { display: none; }
  /* Tighten lede margin */
  .grid-2-hero .lede { margin-top: 16px !important; }
}
