/* ============================================================
   Shirley Chen Coaching — base styles
   Editorial / coastal: full-bleed cinematic hero, letterspaced
   serif display, generous whitespace, calm reading rhythm.
   ============================================================ */

:root {
  --ink:        #ece3d3;   /* bone white — body text */
  --ink-soft:   #b3a691;   /* muted bone — secondary text */
  --paper:      #18130e;   /* basalt warm black — background */
  --light:      #ffffff;
  --rule:       #322b23;   /* warm hairline dividers */
  --ember:      #e0915c;   /* warm accent (ties to the lava) */
  --display:    'Cormorant Garamond', Georgia, serif;
  --body:       'EB Garamond', Georgia, serif;
  --measure:    34rem;     /* comfortable reading width */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 4.5rem; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.15rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---------------- Nav ---------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem clamp(1.5rem, 5vw, 4rem);
  color: var(--light);
  background: rgba(18, 14, 10, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.brand {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.2rem);
}

.nav-link {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav-link:hover { opacity: 1; }

/* Booking button sized down to sit in the nav */
.nav-cta {
  padding: 0.52rem 1.15rem;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

/* ---------------- Mobile menu ---------------- */
.menu-toggle { display: none; }   /* the hidden checkbox */

.menu-btn {
  display: none;   /* shown on small screens only */
  font-size: 1.35rem;
  line-height: 1;
  color: var(--light);
  cursor: pointer;
  padding: 0.3rem 0.1rem 0.3rem 0.4rem;
  user-select: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  background: rgba(18, 14, 10, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.menu-toggle:checked ~ .menu-overlay {
  opacity: 1;
  visibility: visible;
}
.menu-overlay a {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.menu-overlay .btn-book {
  font-size: 0.95rem;
  margin-top: 0.8rem;
  color: #18130e;
}
.menu-close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-size: 1.7rem;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;   /* stable on mobile (ignores address-bar resize) */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #2b2622;   /* fallback until the photo loads */
  overflow: hidden;            /* contain the slowly-scaling photo */
}

/* The photo lives on its own layer so it can scale smoothly (Ken Burns). */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/hero.jpg') center / cover no-repeat;
  transform: scale(1);
  transform-origin: 50% 55%;
  animation: heroKenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}

/* Darkening + vignette, above the photo, below the glow. */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,18,16,0.25), rgba(20,18,16,0.55)),
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* Warm glow over the lava cracks that gently breathes. */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(42% 55% at 50% 55%,
    rgba(255, 150, 50, 0.5),
    rgba(255, 90, 20, 0.2) 45%,
    transparent 72%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: heroGlow 4.5s ease-in-out infinite alternate;
  will-change: opacity, transform;
}

/* Drifting embers rising off the lava. */
.hero-embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ember {
  position: absolute;
  left: var(--x, 50%);
  bottom: var(--b, 26%);
  width: var(--s, 4px);
  height: var(--s, 4px);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 210, 130, 0.95),
    rgba(255, 120, 40, 0.55) 55%,
    transparent 75%);
  filter: blur(0.5px);
  opacity: 0;
  animation: emberRise var(--d, 8s) linear infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

@keyframes heroKenBurns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(1.5%, -3.5%, 0); }
}

@keyframes heroGlow {
  from { opacity: 0.3;  transform: scale(0.95); }
  to   { opacity: 0.95; transform: scale(1.07); }
}

@keyframes emberRise {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0; }
  12%  { opacity: var(--o, 0.8); }
  82%  { opacity: var(--o, 0.8); }
  100% { transform: translate3d(var(--sway, 12px), -240px, 0) scale(0.35); opacity: 0; }
}

/* Respect users who prefer less motion — hold a still, gently-zoomed frame. */
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; transform: scale(1.06); }
  .hero-glow { animation: none; opacity: 0.55; }
  .hero-embers { display: none; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  color: var(--light);
}

.hero-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.6rem, 8vw, 6rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-family: var(--display);
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin: 1.6rem 0 0;
  opacity: 0.92;
  font-weight: 400;
}

/* ---------------- Reading passages ---------------- */
.passage {
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem 0;
}

.passage p {
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
}

.passage-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 1.8rem;
}

/* Invitation — a centered closing statement, not a floating column */
.invitation {
  max-width: 33rem;
  text-align: center;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.invitation p {
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.invitation p:last-child { margin-bottom: 0; }

/* placeholder paragraph styling — remove the class once replaced */
.needs-text { font-style: italic; }

/* ---------------- Two-column split ---------------- */
.split {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: stretch;
}

/* add class "reverse" to flip image to the left on alternating sections */
.split.reverse .split-text  { order: 2; }
.split.reverse .split-media { order: 1; }

.split-text p {
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
}
.split-text p:last-child { margin-bottom: 0; }

.split-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 1.8rem;
}

.split-media {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.split-media img {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 280px;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 4px;
}
/* ---------------- Signature ---------------- */
.signature {
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  text-align: center;
}
.signature p {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0;
}

/* ---------------- Booking CTA ---------------- */
.book {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem clamp(4rem, 8vw, 6rem);
}
.eyebrow {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.book-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 auto 1.4rem;
  max-width: 16ch;
}
.book-sub {
  max-width: 32rem;
  margin: 0 auto 2.4rem;
  color: var(--ink-soft);
}

/* ---------------- Bone button ---------------- */
.btn-book {
  display: inline-block;
  background: var(--ink);     /* bone */
  color: #18130e;             /* basalt */
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: 2px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.btn-book:hover { opacity: 0.86; }
.btn-book--lg {
  font-size: 1rem;
  padding: 0.95rem 2.1rem;
}
.split-cta {
  margin-top: 0.6rem;
}

/* Section divider — a short, centered hairline that fades at both ends. */
.divider {
  border: 0;
  width: clamp(7rem, 15vw, 11rem);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(179, 166, 145, 0.5), transparent);
}

/* ---------------- How we work together ---------------- */
.work {
  max-width: 60rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}
.work-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  text-align: left;
}
.card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.9rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.card-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.45rem;
}
.card-kicker {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.4rem;
}
.card-desc {
  color: var(--ink-soft);
  margin: 0 0 1.8rem;
  flex: 1;   /* align the Explore links across cards of unequal text length */
}
.card-link {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--ember);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.card-link:hover { opacity: 0.7; }

/* ---------------- Testimonials ---------------- */
.quotes {
  max-width: 68rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  text-align: left;
}
.quote {
  margin: 0;
}
.quote::before {
  content: "\201C";
  display: block;
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 0.5;
  color: var(--ember);
  margin-bottom: 0.6rem;
}
.quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink);
}
.quote figcaption {
  margin-top: 1.2rem;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.quotes-more,
.work-more {
  display: inline-block;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--ember);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.quotes-more:hover,
.work-more:hover { opacity: 0.7; }

/* ---------------- Full testimonials page ---------------- */
.appreciation {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(8rem, 16vh, 11rem) clamp(1.5rem, 5vw, 2rem) clamp(2rem, 5vw, 3rem);
  text-align: center;
}
.appreciation-intro {
  max-width: 32rem;
  margin: 1.3rem auto 0;
  color: var(--ink-soft);
}
/* Featured — prominent single column */
.featured {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 2rem);
}
.featured-quote {
  margin: 0;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--rule);
}
.featured-quote:first-child {
  border-top: none;
  padding-top: 0;
}
.featured-quote::before {
  content: "\201C";
  display: block;
  font-family: var(--display);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--ember);
  margin-bottom: 0.5rem;
}
.featured-quote blockquote { margin: 0; }
.featured-quote blockquote p {
  margin: 0 0 1.2rem;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
}
.featured-quote strong { color: var(--ink); font-weight: 500; }
.featured-attr {
  margin: 1.1rem 0 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}

/* Categorized — two-column flow */
.t-category {
  max-width: 70rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 2rem) 0;
}
.t-category-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--ink);
  text-align: center;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.t-grid {
  column-count: 2;
  column-gap: clamp(2rem, 4vw, 3.5rem);
}
.t-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.t-item blockquote { margin: 0; }
.t-item p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.t-item strong { color: var(--ink); font-weight: 500; }
.t-item-attr {
  margin: 0.7rem 0 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
}

.appreciation-cta {
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem clamp(4.5rem, 10vw, 8rem);
  border-top: 1px solid var(--rule);
}
.appreciation-cta .back-home {
  display: block;
  margin-top: 1.7rem;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.appreciation-cta .back-home:hover { opacity: 0.7; }


/* ---------------- Footer ---------------- */
.footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-credit {
  margin: 0.7rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.55;
}

/* ---------------- Site footer (3-column) ---------------- */
.site-footer {
  border-top: 1px solid var(--rule);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem) 0;
}
.footer-inner {
  max-width: 70rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.footer-name {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 0.8rem;
}
.footer-tagline {
  margin: 0;
  max-width: 22rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.footer-head {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1.3rem;
}
.footer-col a {
  display: block;
  width: max-content;
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 0.85rem;
  opacity: 0.82;
  transition: opacity 0.2s ease;
}
.footer-col a:last-child { margin-bottom: 0; }
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  max-width: 70rem;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding: 1.7rem 0;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ---------------- How we work together (services) ---------------- */
.process {
  max-width: 70rem;
  margin: 0 auto;
  padding: clamp(8rem, 16vh, 11rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.process-thesis {
  max-width: 38rem;
  margin: 1.3rem auto 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

/* The container — one warm vessel holding the whole partnership */
.container-box {
  position: relative;
  border: 1px solid rgba(224, 145, 92, 0.16);
  border-radius: 10px;
  padding: clamp(2.2rem, 4vw, 2.8rem) clamp(1.4rem, 4vw, 3rem) clamp(2.4rem, 4vw, 3.2rem);
  margin-top: clamp(3.2rem, 6vw, 4.5rem);
  background:
    radial-gradient(110% 80% at 50% 118%,
      rgba(224, 145, 92, 0.085),
      rgba(224, 145, 92, 0.025) 45%,
      transparent 70%),
    rgba(255, 255, 255, 0.012);
}
.container-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--paper);
  padding: 0 1.1rem;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  white-space: nowrap;
}

/* Sub-groups inside the session column — italic serif, editorial not engineered */
.duo-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ember);
  margin: 1.7rem 0 0.8rem;
}
.duo-heading + .duo-sub { margin-top: 0; }

/* Testimonial woven into the process columns — opens with the ember quote-mark */
.duo-quote {
  margin: 2.1rem 0 0;
  padding-left: 0;
  border-left: none;
}
.duo-quote::before {
  content: "\201C";
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 0.5;
  color: var(--ember);
  margin-bottom: 0.55rem;
}
.duo-quote p {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
.duo-quote cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Closing line under the container */
.process-close {
  max-width: 36rem;
  margin: clamp(2rem, 4vw, 2.8rem) auto 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink-soft);
}
.process-close strong {
  color: var(--ink);
  font-weight: 500;
}

/* ---------------- The details (collapsible Q&A) ---------------- */
.details {
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem 0;
  text-align: left;
}
.details-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);   /* matches .work-heading */
  letter-spacing: 0.01em;
  color: var(--ink);
  text-align: center;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}
.qa {
  border-top: 1px solid var(--rule);
}
.qa:last-of-type {
  border-bottom: 1px solid var(--rule);
}
.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--ink);
  transition: opacity 0.2s ease;
}
.qa summary:hover { opacity: 0.8; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ember);
  flex: none;
}
.qa[open] summary::after { content: "\2013"; }
.qa-body {
  padding: 0 0 1.6rem;
}
.qa-body p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}
.qa-body p:last-child { margin-bottom: 0; }

/* sliding-scale tiers inside the Investment answer */
.tier-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.tier-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.85rem;
  color: var(--ink-soft);
}
.tier-list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ember);
  opacity: 0.5;
  font-size: 0.9em;
}
.tier-list strong {
  color: var(--ink);
  font-weight: 500;
}
.tier-credit {
  font-size: 0.88rem;
  font-style: italic;
  opacity: 0.75;
}

.details .process-close { text-align: center; }
.details-cta {
  text-align: center;
  margin-top: clamp(3.5rem, 6vw, 4.5rem);
}

/* In our sessions / Between sessions */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
  text-align: left;
}
.duo-col {
  padding: clamp(1.9rem, 4vw, 2.8rem);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.duo-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--ink);
  margin: 0 0 1.2rem;
}
.duo-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.duo-col li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}
.duo-col li:last-child { margin-bottom: 0; }
.duo-col li::before {
  content: "\2014";          /* quiet em-dash, not a slide-deck dot */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ember);
  opacity: 0.5;
  font-size: 0.9em;
}

/* nested sub-bullets — shorter dash, softer */
.duo-col li ul {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}
.duo-col li li {
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
  padding-left: 1.1rem;
}
.duo-col li li:last-child { margin-bottom: 0; }
.duo-col li li::before {
  content: "\2013";          /* en-dash */
  opacity: 0.35;
}

/* Lists living inside the container box — asymmetric, staggered, no rules */
.duo--inside {
  margin-top: 0;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: 1.06fr 0.94fr;
}
.duo--inside .duo-col {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

/* ---------------- About page ---------------- */
.about-split:first-of-type {
  padding-top: clamp(7rem, 12vh, 9.5rem);   /* clear the fixed nav */
}
.img-placeholder {
  flex: 1 1 auto;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px dashed var(--rule);
  background: rgba(224, 145, 92, 0.05);
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
}
.placeholder-text {
  color: var(--ink-soft);
  font-style: italic;
  opacity: 0.78;
}
.about-split .split-text ul {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}
.about-split .split-text li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.about-split .split-text li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ember);
  opacity: 0.5;
  font-size: 0.9em;
}
.about-split .split-text li strong {
  color: var(--ink);
  font-weight: 500;
}
.about-story {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.about-story-sub {
  max-width: 32rem;
  margin: 1.3rem auto 2.2rem;
  color: var(--ink-soft);
}

/* ---------------- My story (long read) ---------------- */
.story {
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(8rem, 16vh, 11rem) 1.5rem clamp(4rem, 9vw, 7rem);
}
.story-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  text-align: center;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.story-meta {
  text-align: center;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}
.story p {
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
}
.story h2.story-section {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--ink);
  text-align: center;
  margin: clamp(3rem, 6vw, 4.5rem) 0 1.6rem;
}
.story h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--ink);
  margin: 2.4rem 0 1rem;
}
.story h3.story-chapter {
  text-align: center;
  font-weight: 400;
  font-style: italic;
  color: var(--ember);
  letter-spacing: 0.02em;
  margin: 2.6rem 0 1.2rem;
}
.story strong { color: var(--ink); font-weight: 500; }
.story em { font-style: italic; }
.story a {
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 145, 92, 0.3);
  transition: border-color 0.2s ease;
}
.story a:hover { border-bottom-color: var(--ember); }
.story-caption {
  max-width: 32rem;
  margin: 1.8rem auto 2.2rem !important;
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.68;
}
.story-toc-item {
  margin: 0 0 0.6rem !important;
  padding-left: 1.1rem;
  position: relative;
}
.story-toc-item::before {
  content: "\2014";
  position: absolute;
  left: -0.4rem;
  color: var(--ember);
  opacity: 0.5;
}
.story .back-home { display: inline-block; margin-top: 2.5rem; }

/* ---- The two lives: biography table of contents ---- */
.bio-toc {
  width: min(92vw, 56rem);
  margin: clamp(3rem, 6vw, 4.5rem) auto clamp(3.5rem, 7vw, 5rem);
  margin-left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.bio-life {
  border-top: 1px solid var(--rule);          /* the straight road */
  padding-top: 1.4rem;
}
.bio-life--second {
  border-top: 1px solid rgba(224, 145, 92, 0.55);   /* where the fire starts */
}
.bio-life-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.bio-life-label {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}
.bio-life--second .bio-life-label { color: var(--ember); }
.bio-life-years {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.bio-start {
  margin: -0.4rem 0 0.9rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ember);
  opacity: 0.85;
}
.bio-ch {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(50, 43, 35, 0.55);
  text-decoration: none;
  border-left: none;
}
.bio-ch:last-child { border-bottom: none; }
.bio-num {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--ink-soft);
  opacity: 0.55;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.bio-life--second .bio-num { color: var(--ember); opacity: 0.7; }
.bio-ch-title {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.2s ease, transform 0.2s ease;
}
.bio-ch:hover .bio-ch-title { color: var(--ember); }
.bio-ch:hover .bio-num { opacity: 1; }

/* recurring chapter numerals above body headings */
.story { counter-reset: chapter; }
.story h3:not(.story-chapter) {
  counter-increment: chapter;
}
.story h3:not(.story-chapter)::before {
  content: "0" counter(chapter);
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--ember);
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

/* ---- Story photographs ---- */
.story-fig {
  margin: 2.4rem auto 2.6rem;
  max-width: 34rem;
  text-align: center;
}
.story-fig img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.story-fig figcaption {
  margin-top: 1rem;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0.85;
}
.story-fig--polaroid {
  max-width: 17rem;
}
.story-fig--polaroid img {
  transform: rotate(-2deg);
  border-radius: 2px;
}
.story-top {
  text-align: center;
  margin: 2.6rem 0 0 !important;
}
.story-top a {
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: none;
}
.story-top a:hover { color: var(--ink); }

/* ---------------- Placeholder page shell ---------------- */
.page-stub {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(8rem, 18vh, 12rem) 1.5rem clamp(5rem, 12vw, 9rem);
  text-align: center;
}
.back-home {
  display: inline-block;
  margin-top: 1.7rem;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.back-home:hover { opacity: 0.7; }

/* ---------------- Small screens ---------------- */
@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  /* text first, image after, when stacked */
  .split-text  { order: 1; }
  .split-media { order: 2; }
  .split-media img { aspect-ratio: 4 / 3; }
  .cards { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; gap: 2.75rem; max-width: 34rem; margin: 0 auto; }
  .t-grid { column-count: 1; }
  .duo { grid-template-columns: 1fr; gap: 1.5rem; }
  .duo--inside { grid-template-columns: 1fr; gap: 2.6rem; }
  .bio-toc { grid-template-columns: 1fr; gap: 2.6rem; }
  .duo--inside .duo-col { padding: 0; }
  .container-label {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 0 0.7rem;
    white-space: normal;
    width: max-content;
    max-width: 76%;
    line-height: 1.5;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .nav-link { display: none; }   /* browse links move into the menu */
  .menu-btn { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.6rem; }
}

@media (max-width: 560px) {
  body { font-size: 1.12rem; }
  .nav { padding: 0.8rem 1.1rem; }
  .brand { font-size: 0.72rem; letter-spacing: 0.16em; }
  .nav-cta { padding: 0.5rem 0.9rem; font-size: 0.68rem; letter-spacing: 0.08em; }
  /* comfortable one-thumb booking buttons */
  .split-cta,
  .btn-book--lg {
    display: block;
    text-align: center;
    max-width: 22rem;
  }
  .book .btn-book--lg { margin: 0 auto; }
}

/* ============================================================
   CONTACT / BOOKING
   ============================================================ */
.contact {
  max-width: 66rem;
  margin: 0 auto;
  padding: clamp(7rem, 16vh, 11rem) clamp(1.5rem, 5vw, 3rem) clamp(4rem, 10vw, 7rem);
}
/* Two columns: copy on the left, booking calendar on the right */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 1.3rem;
  color: var(--ink);
}
.contact-copy {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.75;
}
.contact-copy p { margin: 0 0 1.1rem; }
.contact-copy ul {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
}
.contact-copy li {
  position: relative;
  padding-left: 1.4rem;
  margin: 0 0 0.6rem;
}
.contact-copy li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--ember);
}
.contact-copy strong { color: var(--ink); font-weight: 500; }
.contact-copy a {
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 145, 92, 0.4);
  transition: border-color 0.2s ease;
}
.contact-copy a:hover { border-bottom-color: var(--ember); }
/* Calendly free plan forces its light theme (color params are paid-only),
   so we frame it as a deliberate bright booking card floating on the basalt. */
.calendly-embed {
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(224, 145, 92, 0.25),
              0 0 60px -30px rgba(224, 145, 92, 0.45);
}
.calendly-embed .calendly-inline-widget { min-height: 630px; border-radius: 6px; }
.contact-alt {
  margin: 1.8rem 0 0;
  font-size: 1rem;
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: clamp(2.2rem, 7vw, 3rem);
    align-items: stretch;
  }
  .contact-copy { max-width: 38rem; }
}
