/* ─────────────────────────────────────────────────────────────
   490.life — "Laguna" redesign (2026-09)
   White pages · seafoam / ocean teal / deep sea-green · gold accent
   Cormorant Garamond (display) + Figtree (body)
   ───────────────────────────────────────────────────────────── */
:root {
  --paper: #FFFFFF;
  --mist: #F2F7F6;
  --foam: #A9D6CE;
  --foam-2: #D7ECE8;
  --ocean: #2F7F86;
  --deep: #0E3B45;
  --gold: #C8A24C;
  --gold-deep: #A2761F;
  --gold-soft: #E8D3A0;
  --ink: #1B2A2E;
  --ink-soft: #4E6166;
  --ink-faint: rgba(27, 42, 46, 0.55);
  --line: #DCE8E6;
  --radius: 10px;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* legacy aliases used by older page templates */
  --paper-warm: var(--mist);
  --paper-glow: #FFFFFF;
  --brown: var(--deep);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
.container { width: min(1180px, 92vw); margin: 0 auto; }
.narrow { width: min(720px, 92vw); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.06; color: var(--ink); text-wrap: balance; }
a { color: var(--ocean); }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--ocean); outline-offset: 3px; }

.kicker, .eyebrow {
  font-family: var(--body);
  font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ocean); font-weight: 600; margin-bottom: 0.9rem;
}
.gold { color: var(--gold-deep); }

/* Buttons */
.btn {
  display: inline-block; font-family: var(--body); font-size: 0.92rem; font-weight: 600;
  padding: 0.8rem 1.5rem; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1px solid var(--deep);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--deep); color: #fff; }
.btn-primary:hover { background: var(--ocean); border-color: var(--ocean); transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(14, 59, 69, 0.55); }
.btn-ghost { background: transparent; color: var(--deep); }
.btn-ghost:hover { background: var(--mist); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: #d9b45f; border-color: #d9b45f; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--deep); border-color: #fff; }
.btn-light:hover { background: var(--foam-2); border-color: var(--foam-2); }

/* ── Header / nav ─────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-logo { height: 40px; width: auto; display: block; }
.brand-word { font-family: var(--display); font-size: 1.6rem; font-weight: 700; letter-spacing: 0.06em; color: var(--deep); white-space: nowrap; }
.brand-word small, .footer-word small { font-family: var(--body); font-size: 0.5em; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ocean); vertical-align: 0.18em; margin-left: 0.15em; }
.footer-word small { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 0; }
.site-nav > a, .site-nav .nav-drop > a { display: inline-flex; align-items: center; height: 2.4rem; line-height: 1; }
.site-nav > * + *::before { content: "\2726"; color: var(--gold); font-size: 0.55rem; opacity: 0.85; margin: 0 1.05rem; align-self: center; }
.site-nav > .nav-drop { display: inline-flex; align-items: center; }
.site-nav > .nav-cta { margin-left: 1.4rem; height: auto; }
.site-nav > .nav-cta::before { content: none; margin: 0; }
.site-nav a { white-space: nowrap; font-family: var(--body); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.01em; text-transform: none; color: var(--ink); text-decoration: none; padding: 0.3rem 0; border-bottom: 2px solid transparent; transition: color 0.15s ease, border-color 0.15s ease; }
.site-nav a:hover { color: var(--ocean); border-bottom-color: var(--foam); }
.site-nav a.nav-cta { color: #fff; background: var(--deep); padding: 0.55rem 1.1rem; font-size: 0.86rem; border-bottom: none; border-radius: 999px; }
.site-nav a.nav-cta:hover { color: #fff; background: var(--ocean); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 999px; padding: 0.5rem 0.9rem; font: 600 0.82rem var(--body); color: var(--deep); cursor: pointer; }

/* Dropdown (Resources) */
.nav-drop { position: relative; display: inline-block; }
.drop-caret { font-size: 0.7em; opacity: 0.7; }
.drop-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 230px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 34px -14px rgba(14, 59, 69, 0.28); padding: 0.5rem 0; z-index: 60; }
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { display: block; }
.drop-menu a { display: block; padding: 0.55rem 1.2rem; font-size: 0.9rem; border-bottom: none; white-space: nowrap; }
.drop-menu a:hover { background: var(--mist); border-bottom: none; }

/* ── Hero (home) ──────────────────────────────────────── */
.hero { position: relative; padding: 4rem 0 3.6rem; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: #fff; }
.light-rays, .hero-glow-source { display: none; }
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.hero h1 { font-size: clamp(2.9rem, 6.2vw, 5rem); font-weight: 600; margin: 0.9rem 0 1.1rem; }
.hero h1 i, .hero h1 em { font-style: italic; color: var(--ocean); }
.hero .subtitle { font-family: var(--display); font-size: 1.5rem; font-style: italic; color: var(--ocean); margin-bottom: 1.3rem; }
.hero-hook { color: var(--ink-soft); font-size: 1.15rem; max-width: 46ch; margin-bottom: 1.2rem; }
.hope-line { font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--deep); margin-bottom: 1.6rem; max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.hero-tag { letter-spacing: 0.24em; text-transform: uppercase; font-size: 0.74rem; font-weight: 600; color: var(--ocean); margin-top: 1.6rem; }

/* portrait on the right */
.hero-portrait { position: relative; justify-self: end; width: 100%; max-width: 460px; aspect-ratio: 1 / 1; }
.hero-portrait .blob { position: absolute; inset: 8% -8% -4% 6%; background: var(--foam); border-radius: 58% 42% 55% 45% / 50% 45% 55% 50%; }
.hero-portrait .blob2 { position: absolute; inset: -6% 10% 14% -10%; background: var(--foam-2); border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%; }
.hero-portrait .ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--gold); transform: translate(-16px, 12px); }
.hero-portrait img { position: relative; width: 100%; height: 100%; object-fit: cover; object-position: 52% 25%; border-radius: 50%; }
.hero-portrait .tag { position: absolute; left: -14px; bottom: 30px; background: #fff; border: 1px solid var(--foam); border-radius: var(--radius); padding: 0.65rem 0.9rem; font-size: 0.8rem; line-height: 1.35; box-shadow: 0 14px 30px -16px rgba(14, 59, 69, 0.4); text-decoration: none; color: var(--ink-soft); }
.hero-portrait .tag b { display: block; font-family: var(--display); font-size: 1.1rem; color: var(--deep); font-weight: 600; }

/* book-page hero keeps the cover */
.hero-cover { position: relative; display: flex; justify-content: center; }
.hero-cover::before { content: ''; position: absolute; inset: 6% -10% -6% 10%; z-index: 0; background: var(--foam-2); border-radius: 58% 42% 55% 45% / 50% 45% 55% 50%; }
.hero-cover img { position: relative; z-index: 1; width: 100%; max-width: 300px; height: auto; border-radius: 3px; box-shadow: 0 30px 55px -24px rgba(14, 59, 69, 0.5), 0 0 0 1px rgba(200, 162, 76, 0.35); transform: perspective(1600px) rotateY(-4deg); transition: transform 0.4s ease; }
.hero-cover img:hover { transform: perspective(1600px) rotateY(0deg) translateY(-4px); }

/* entrance */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-copy > * { animation: rise 0.7s ease both; }
.hero-copy > *:nth-child(2) { animation-delay: 0.08s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.24s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.32s; }
.hero-portrait { animation: rise 0.9s ease both 0.2s; }
@media (prefers-reduced-motion: reduce) { .hero-copy > *, .hero-portrait { animation: none; } }

/* ── Marquee ──────────────────────────────────────────── */
.marquee { border-top: 1px solid var(--foam); border-bottom: 1px solid var(--foam); background: var(--mist); overflow: hidden; white-space: nowrap; padding: 0.85rem 0; }
.marquee > div { display: inline-block; animation: roll 34s linear infinite; font-family: var(--display); font-size: 1.45rem; font-style: italic; color: var(--deep); }
.marquee span { margin: 0 1.8rem; }
.marquee span::after { content: "\2726"; color: var(--gold); margin-left: 1.8rem; font-style: normal; font-size: 0.8rem; vertical-align: middle; }
@keyframes roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee > div { animation: none; } }

/* ── Section rhythm ───────────────────────────────────── */
section { padding: 4.4rem 0; }
.section-line { border-top: 1px solid var(--line); }
.center { text-align: center; }
h2.section-title { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 1rem; }
.lead { color: var(--ink-soft); font-size: 1.15rem; }
.gold-rule { width: 72px; height: 2px; background: var(--gold); margin: 2.2rem auto; border: none; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 1.8rem; }

/* ── Thesis (home) ────────────────────────────────────── */
.thesis .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem; align-items: start; }
.thesis h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.thesis h2 em { color: var(--ocean); font-style: italic; }
.thesis p { font-size: 1.1rem; color: var(--ink-soft); max-width: 58ch; }
.thesis p + p { margin-top: 1rem; }
.thesis .num { font-family: var(--display); font-size: clamp(5rem, 9vw, 7.5rem); line-height: 0.9; color: var(--gold); font-weight: 700; font-variant-numeric: lining-nums; }
.thesis .num small { display: block; font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ocean); font-weight: 600; margin-top: 0.8rem; }

/* meaning (older pages) */
.meaning p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.meaning p strong { color: var(--ink); font-weight: 600; }

/* ── Story strip ──────────────────────────────────────── */
.story .container > .section-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.4rem; }
.story .section-head p { font-size: 1rem; color: var(--ink-soft); max-width: 54ch; }
.strip { display: grid; grid-template-columns: 1.1fr 0.8fr 1.1fr 1.1fr; gap: 0.9rem; align-items: start; }
.strip.strip-5 { grid-template-columns: 1fr 1fr 1fr 1fr 0.8fr; }
.strip.strip-6 { grid-template-columns: repeat(3, 1fr); }
/* masonry family gallery (About) */
.gallery { columns: 3; column-gap: 0.9rem; }
.gallery figure { margin: 0 0 0.9rem; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--mist); break-inside: avoid; }
.gallery img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.75rem 0.9rem; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: linear-gradient(transparent, rgba(14, 59, 69, 0.82)); }
.strip figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--mist); }
.strip figure.tall { aspect-ratio: 4 / 5; }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.strip figure:hover img { transform: scale(1.03); }
.strip figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.75rem 0.9rem; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: linear-gradient(transparent, rgba(14, 59, 69, 0.82)); }

/* ── Four doors ───────────────────────────────────────── */
.doors { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.doors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.door { background: #fff; border: 1px solid var(--foam); border-radius: var(--radius); padding: 1.6rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; min-height: 230px; text-decoration: none; color: var(--ink); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.door:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -24px rgba(14, 59, 69, 0.35); }
.door .eyebrow { margin-bottom: 0.2rem; }
.door h3 { font-size: 1.6rem; color: var(--deep); }
.door p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.door .go { font-size: 0.84rem; font-weight: 600; color: var(--ocean); }
.door.dark { background: var(--deep); border-color: var(--deep); color: #fff; }
.door.dark h3 { color: #fff; } .door.dark p { color: rgba(255, 255, 255, 0.75); } .door.dark .go, .door.dark .eyebrow { color: var(--gold); }

/* ── Teaching cards ───────────────────────────────────── */
.teaching-list { display: grid; gap: 1.2rem; margin-top: 2rem; }
.teaching-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.teaching-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.7rem; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.teaching-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(14, 59, 69, 0.3); }
.teaching-card .passage-badge { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ocean); font-weight: 600; margin-bottom: 0.5rem; }
.teaching-card h3 { font-size: 1.6rem; margin-bottom: 0.3rem; }
.teaching-card h3 a { color: var(--deep); text-decoration: none; }
.teaching-card h3 a:hover { color: var(--ocean); }
.teaching-card .date { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 0.6rem; }
.teaching-card p.excerpt { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.teaching-card .art { height: 150px; margin: -1.6rem -1.7rem 1.2rem; background: linear-gradient(135deg, var(--foam-2), var(--foam)); position: relative; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.teaching-card .art img { width: 100%; height: 100%; object-fit: cover; }

/* ── Coaching band (home) ─────────────────────────────── */
.coach-band { background: var(--deep); color: #fff; padding: 0; }
.coach-photo { position: relative; height: 420px; overflow: hidden; }
.coach-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.coach-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 59, 69, 0.12), rgba(14, 59, 69, 0.86) 92%); }
.coach-photo span { position: absolute; left: 0; right: 0; bottom: 1.4rem; z-index: 1; text-align: center; font-family: var(--display); font-style: italic; font-size: 1.5rem; color: #fff; padding: 0 1rem; }
.coach-photo span small { display: block; font-family: var(--body); font-style: normal; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-top: 0.4rem; }
.coach-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: center; padding: 4.4rem 0 5rem; }
.coach-band .eyebrow { color: var(--gold); }
.coach-band h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); color: #fff; margin-bottom: 1rem; }
.coach-band h2 i { font-style: italic; color: var(--foam); }
.coach-band .lead { color: rgba(255, 255, 255, 0.8); max-width: 52ch; }
.verse { margin-top: 1.7rem; font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--foam); border-left: 2px solid var(--gold); padding-left: 1rem; }
.verse small { display: block; font-family: var(--body); font-style: normal; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-top: 0.4rem; }
.steps { display: grid; gap: 0.8rem; }
.step { border-top: 1px solid rgba(255, 255, 255, 0.18); padding: 1rem 0 0.3rem; display: grid; grid-template-columns: 56px 1fr; gap: 0.8rem; }
.step b { font-family: var(--display); font-size: 1.9rem; color: var(--gold); line-height: 1; font-weight: 600; }
.step h4 { font-size: 1.35rem; color: #fff; margin-bottom: 0.2rem; }
.step p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.72); }
.on-light .step { border-top-color: var(--line); }
.on-light .step h4 { color: var(--deep); }
.on-light .step p { color: var(--ink-soft); }

/* ── Speaking (home) ──────────────────────────────────── */
.speak-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: center; }
.frame { margin: 0; aspect-ratio: 4 / 5; border-radius: 14px; overflow: hidden; position: relative; max-width: 440px; background: var(--mist); }
.frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.frame::before { content: ''; position: absolute; inset: 14px; border: 1px solid var(--gold); border-radius: 10px; opacity: 0.85; z-index: 1; }
.frame figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.9rem 1.1rem; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: linear-gradient(transparent, rgba(14, 59, 69, 0.85)); z-index: 1; }
.speak-grid h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 1rem; }
.speak-grid p { color: var(--ink-soft); max-width: 52ch; }
.topics { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.4rem 0 1.6rem; }
.topics span { font-size: 0.82rem; font-weight: 500; border: 1px solid var(--foam); background: var(--mist); border-radius: 999px; padding: 0.42rem 0.9rem; color: var(--deep); }

/* ── Book strip / card ────────────────────────────────── */
.book-card { display: grid; grid-template-columns: 200px 1fr auto; gap: 2.4rem; align-items: center; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 2.4rem; }
.book-card img { width: 100%; height: auto; border-radius: 3px; box-shadow: 0 24px 40px -22px rgba(14, 59, 69, 0.55), 0 0 0 1px rgba(200, 162, 76, 0.3); }
.book-card h3 { font-size: 2rem; margin-bottom: 0.6rem; }
.book-card p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.book-card .ways { display: flex; flex-direction: column; gap: 0.6rem; }

/* ── Hook band / pull quote (book page) ───────────────── */
.hook-band { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.hook-band .big { font-family: var(--display); font-size: clamp(1.9rem, 4.6vw, 3.1rem); font-weight: 600; line-height: 1.16; color: var(--ink); max-width: 20ch; margin: 0 auto 1.2rem; }
.hook-band .big em { color: var(--ocean); font-style: italic; }
.journey-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 2.4rem; }
.part-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.8rem; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.part-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(14, 59, 69, 0.3); }
.part-num { font-size: 0.74rem; letter-spacing: 0.2em; color: var(--ocean); font-weight: 600; margin-bottom: 0.5rem; }
.part-card h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.part-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.pull { text-align: center; background: #fff; }
.pull blockquote { font-family: var(--display); font-style: italic; font-size: clamp(1.9rem, 4.6vw, 3.2rem); font-weight: 500; line-height: 1.22; color: var(--deep); max-width: 18ch; margin: 0 auto; }
.pull .mark { color: var(--gold); font-size: 3rem; display: block; margin-bottom: 0.2rem; }
.formats { display: flex; justify-content: center; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.6rem; }
.format-pill { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.72rem; font-weight: 600; color: var(--deep); border: 1px solid var(--foam); background: var(--mist); border-radius: 100px; padding: 0.45rem 1.1rem; }
.final { text-align: center; background: var(--mist); }

/* ── About ────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 3rem; align-items: start; }
.about-photo { position: relative; }
.about-photo img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.about-photo::after { content: ''; position: absolute; inset: 14px; border: 1px solid var(--gold); border-radius: 8px; pointer-events: none; opacity: 0.85; }
.about-copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.about-copy .name { font-family: var(--display); font-size: 2.4rem; color: var(--deep); margin-bottom: 0.2rem; font-weight: 600; }

/* ── Signup ───────────────────────────────────────────── */
.workbook { background: #fff; border-top: 1px solid var(--line); text-align: center; }
.capture { display: flex; gap: 0.6rem; max-width: 560px; margin: 1.8rem auto 0.8rem; }
.capture input { flex: 1; background: #fff; border: 1px solid var(--foam); border-radius: 999px; padding: 0.8rem 1.2rem; color: var(--ink); font-family: var(--body); font-size: 1rem; outline: none; }
.capture input:focus { border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(47, 127, 134, 0.18); }
.capture input::placeholder { color: var(--ink-faint); }
.fineprint { color: var(--ink-faint); font-size: 0.86rem; }

/* ── Page hero (inner pages) ──────────────────────────── */
.page-hero { padding: 3.6rem 0 2.6rem; }
.page-hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); margin: 0.8rem 0 1rem; }
.page-hero h1 i { font-style: italic; color: var(--ocean); }
.page-hero .lead { max-width: 56ch; }
.page-hero .heart { max-width: 58ch; margin-top: 1.1rem; color: var(--ink); font-size: 1.02rem; line-height: 1.65; border-left: 2px solid var(--gold); padding-left: 1rem; }
.page-hero .split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.page-hero .split > .frame { margin-top: 0.4rem; }

/* ── Coaching / speaking inner pages ──────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.list-plain { list-style: none; display: grid; gap: 0.7rem; }
.list-plain li { padding-left: 1.4rem; position: relative; color: var(--ink-soft); }
.list-plain li::before { content: "\2726"; position: absolute; left: 0; top: 0.1em; color: var(--gold); font-size: 0.8rem; }
.notbox { background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.7rem; }
.notbox h3 { font-size: 1.5rem; color: var(--deep); margin-bottom: 0.6rem; }
.cta-band { background: var(--deep); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 0.8rem; }
.cta-band p { color: rgba(255, 255, 255, 0.78); max-width: 52ch; margin: 0 auto 1.6rem; }
.cta-band .eyebrow { color: var(--gold); }
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.photo-pair.three { grid-template-columns: repeat(3, 1fr); }
.video-tile { background: var(--deep); cursor: pointer; }
.video-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-tile iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.video-tile video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-tile figcaption { pointer-events: none; }
.video-tile .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.92); cursor: pointer; box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6); transition: transform 0.15s ease, background 0.15s ease; }
.video-tile .play:hover { transform: translate(-50%, -50%) scale(1.06); background: #fff; }
.video-tile .play span { display: block; width: 0; height: 0; margin-left: 4px; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent var(--deep); margin: 0 auto; position: relative; left: 3px; }
.video-tile.playing { grid-column: 1 / -1; aspect-ratio: 16 / 9; cursor: default; }
.video-tile.playing video { object-fit: contain; }
.video-tile.playing .play, .video-tile.playing figcaption { display: none; }
.photo-pair figure { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 2; position: relative; background: var(--mist); }
.photo-pair img { width: 100%; height: 100%; object-fit: cover; }
.photo-pair figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.7rem 0.9rem; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: linear-gradient(transparent, rgba(14, 59, 69, 0.82)); }
.onesheet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.onesheet div { border-top: 2px solid var(--gold); padding-top: 0.9rem; }
.onesheet h3 { font-size: 1.4rem; color: var(--deep); margin-bottom: 0.3rem; }
.onesheet p { font-size: 0.92rem; color: var(--ink-soft); }

/* ── Teaching post (article) ──────────────────────────── */
.post-header { text-align: center; padding: 3.4rem 0 2.2rem; border-bottom: 1px solid var(--line); background: var(--mist); }
.post-header h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); max-width: 20ch; margin: 0 auto 0.8rem; }
.post-header .date { color: var(--ink-faint); font-size: 0.9rem; }
.post-body { width: min(720px, 92vw); margin: 0 auto; padding: 3rem 0 1rem; font-size: 1.1rem; line-height: 1.7; }
.post-body h2 { font-size: 2rem; margin: 2.4rem 0 0.9rem; }
.post-body h3 { font-size: 1.5rem; margin: 2rem 0 0.7rem; }
.post-body p { margin-bottom: 1.2rem; }
.post-body ul, .post-body ol { margin: 0 0 1.2rem 1.4rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body blockquote { font-family: var(--display); font-style: italic; font-size: 1.45rem; color: var(--deep); border-left: 2px solid var(--gold); padding: 0.4rem 0 0.4rem 1.3rem; margin: 1.8rem 0; }
.post-body hr { border: none; border-top: 1px solid var(--line); margin: 2.2rem 0; }
.post-body strong { color: var(--ink); font-weight: 600; }
.book-callout { background: var(--mist); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 2.2rem 0; font-size: 1rem; color: var(--ink-soft); }
.book-callout a { font-weight: 600; }

/* ── Resource pages ───────────────────────────────────── */
.resource-strip { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 1.3rem auto 0; }
.resource-strip a { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--deep); border: 1px solid var(--foam); background: #fff; border-radius: 100px; padding: 0.4rem 1rem; text-decoration: none; transition: background 0.15s ease, color 0.15s ease; }
.resource-strip a:hover { background: var(--foam-2); }
.resource-strip a.current { background: var(--deep); color: #fff; border-color: var(--deep); }
.resource { width: min(880px, 92vw); font-size: 1.08rem; line-height: 1.7; }
.resource > p, .resource > ul, .resource > ol, .resource > h2, .resource > h3, .resource > hr, .resource > blockquote { max-width: 720px; margin-left: auto; margin-right: auto; }
.resource p { margin-bottom: 1.1rem; }
.resource h2 { background: var(--mist); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 0.8rem 1.3rem; margin: 2.4rem auto 1rem; font-size: 1.9rem; }
.resource h3 { color: var(--ocean); font-size: 1.45rem; margin: 1.8rem auto 0.6rem; }
.resource ul, .resource ol { margin-bottom: 1.1rem; padding-left: 1.3rem; }
.resource ul li, .resource ol li { margin-bottom: 0.5rem; }
.resource blockquote { font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--deep); border-left: 2px solid var(--gold); padding-left: 1.2rem; margin: 1.6rem auto; }
.diagram-card { margin: 2.2rem auto; padding: 1.4rem 1.2rem 1rem; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: var(--radius); overflow-x: auto; max-width: 880px; }
.diagram-card svg { display: block; min-width: 640px; margin: 0 auto; }
.video-series { margin: 2.2rem auto; max-width: 720px; }
.video-embed { margin: 1.5rem auto; }
.video-title { font-family: var(--display); font-size: 1.3rem; font-weight: 600; color: var(--deep); margin-bottom: 0.6rem; }
.video-frame { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── Thank-you ────────────────────────────────────────── */
.thanks-hero { text-align: center; padding: 5.5rem 0; }
.thanks-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 1.1rem; }
.thanks-hero .lead { max-width: 46ch; margin: 0 auto 2rem; }

/* ── Footer ───────────────────────────────────────────── */
.site-footer { background: var(--deep); color: rgba(255, 255, 255, 0.75); font-size: 0.86rem; padding: 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 1.8rem; padding: 3rem 0 2.4rem; }
.footer-brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; margin-bottom: 0.7rem; }
.footer-logo { height: 34px; width: auto; display: block; }
.footer-word { font-family: var(--display); font-size: 1.4rem; font-weight: 700; letter-spacing: 0.06em; color: #fff; }
.site-footer h5 { font-family: var(--body); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 0 0 0.6rem; font-weight: 600; }
.site-footer ul { list-style: none; display: grid; gap: 0.35rem; }
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-meta { font-size: 0.86rem; line-height: 1.7; color: rgba(255, 255, 255, 0.7); max-width: 32ch; }
.footer-fine { border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 1rem 0; font-size: 0.74rem; color: rgba(255, 255, 255, 0.5); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .site-nav { gap: 1.1rem; }
  .site-nav a { font-size: 0.84rem; }
  .site-nav a.nav-cta { padding: 0.5rem 0.9rem; }
}
@media (max-width: 960px) {
  .doors-grid { grid-template-columns: 1fr 1fr; }
  .teaching-grid { grid-template-columns: 1fr 1fr; }
  .onesheet { grid-template-columns: 1fr; }
  .strip.strip-5 { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1160px) {
  /* mobile nav kicks in below 1160: the full 8-item bar measures ~1160px wide, so anything narrower overflowed the page (2026-09-10) */
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 24px 40px -24px rgba(14, 59, 69, 0.35); flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 4vw 1rem; }
  .site-nav.open { display: flex; }
  .site-nav > * + *::before { content: none; margin: 0; }
  .site-nav > .nav-cta { margin-left: 0; }
  .site-nav > a, .site-nav .nav-drop > a { display: block; height: auto; line-height: 1.5; }
  .site-nav > .nav-drop { display: block; }
  .site-nav a { padding: 0.8rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .site-nav a:hover { border-bottom-color: var(--line); }
  .site-nav a.nav-cta { margin-top: 0.8rem; text-align: center; border-bottom: none; }
  .nav-drop { display: block; }
  .nav-drop > a { display: block; }
  .drop-menu { display: block; position: static; transform: none; min-width: 0; border: none; box-shadow: none; padding: 0 0 0.4rem 1rem; }
  .drop-menu a { padding: 0.55rem 0; font-size: 0.92rem; }
}
@media (max-width: 820px) {
  body { font-size: 1rem; }
  .hero { padding: 2.6rem 0 2.8rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-portrait { max-width: 320px; margin: 0 auto; justify-self: center; }
  .hero-cover { max-width: 260px; margin: 0 auto; order: -1; }
  .hero-cover img { transform: none; }
  .thesis .container, .speak-grid, .coach-grid, .two-col, .page-hero .split, .story .container > .section-head { grid-template-columns: 1fr; gap: 1.6rem; }
  .strip, .strip.strip-5, .strip.strip-6 { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
  .photo-pair.three { grid-template-columns: 1fr 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .about-photo { max-width: 320px; }
  .capture { flex-direction: column; }
  .book-card { grid-template-columns: 1fr; text-align: center; }
  .book-card img { max-width: 180px; margin: 0 auto; }
  .book-card .ways { align-items: center; }
  .coach-photo { height: 300px; }
  .frame { max-width: 100%; }
  .section-head { flex-direction: column; align-items: flex-start; }

}
@media (max-width: 560px) {
  .doors-grid, .teaching-grid, .strip, .strip.strip-5, .strip.strip-6, .photo-pair, .photo-pair.three, .footer-grid { grid-template-columns: 1fr; }
  .strip figure, .strip figure.tall { aspect-ratio: 4 / 3; }
  .gallery { columns: 1; }
  .diagram-card { padding: 0.9rem 0.6rem 0.6rem; }
}
