/* ============================================================
   MODERN HUMAN — styles.css
   Design tokens from the MH brandbook. Structure modeled on
   otmens.com, re-skinned for the Modern Human identity.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/Aeonik-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/Aeonik-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/Aeonik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/Aeonik-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/Aeonik-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --warm-white: #F8F7F3;
  --charcoal: #1C1C1A;
  --stone: #D2CDC5;
  --olive: #5A6454;
  --bronze: #8C7555;
  --bronze-light: #C9AF8B; /* bronze lifted for dark backgrounds */

  /* Derived shades */
  --olive-dark: #4A5245;
  --olive-tint: #EDEFEA;
  --charcoal-soft: #141412;
  --ink-60: rgba(28, 28, 26, 0.6);
  --ink-40: rgba(28, 28, 26, 0.4);
  --white-60: rgba(248, 247, 243, 0.6);
  --white-40: rgba(248, 247, 243, 0.4);
  --line: rgba(28, 28, 26, 0.1);
  --line-dark: rgba(248, 247, 243, 0.12);

  /* Type */
  --font-head: 'Aeonik', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --radius-card: 20px;
  --radius-pill: 999px;

  /* Bars */
  --announce-h: 44px;
  --nav-h: 88px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

h1, h2, h3 { font-family: var(--font-head); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  padding: 18px 34px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--olive);
  color: var(--warm-white);
}
.btn-primary:hover { background: var(--olive-dark); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--ink-40);
}
.btn-outline:hover { border-color: var(--charcoal); }

/* ============================================================
   Announcement bar (marquee)
   ============================================================ */
.announce {
  height: var(--announce-h);
  background: var(--charcoal);
  color: var(--warm-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announce-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.announce-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bronze);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--warm-white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(28, 28, 26, 0.05);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo lockup */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark { flex-shrink: 0; }
.logo-mark line, .logo-mark polyline { stroke: var(--charcoal); }
.logo-text .logo-name {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.34em;
  line-height: 1.15;
  white-space: nowrap;
}
.logo-text .logo-sub {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
  white-space: nowrap;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 16px;
  color: var(--charcoal);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--olive); }

/* Beat the generic .nav-links a color so the pill stays readable */
.nav-links .nav-cta { color: var(--warm-white); }
.nav-links .nav-cta:hover { color: var(--warm-white); }
.nav-cta { padding: 14px 26px; font-size: 16px; }

/* Hamburger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  inset: calc(var(--nav-h)) 0 0 0;
  z-index: 99;
  background: var(--warm-white);
  padding: 40px var(--gutter);
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 300;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 28px; }

/* ============================================================
   Hero
   ============================================================ */
:root {
  /* Swap for url('../images/hero.jpg') once the real photo exists */
  --hero-image: none;
}

.hero {
  position: relative;
  min-height: clamp(620px, 86vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Placeholder art direction until the photo lands: warm wash + olive glow */
  background:
    var(--hero-image),
    radial-gradient(900px 600px at 78% 30%, rgba(140, 117, 85, 0.28), transparent 65%),
    radial-gradient(700px 520px at 90% 75%, rgba(90, 100, 84, 0.22), transparent 60%),
    linear-gradient(180deg, #EFEBE2 0%, #F3F0E9 55%, var(--warm-white) 100%);
  background-size: cover;
  background-position: center;
}
/* Background video layer */
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
}
/* Warm-white wash over the video: strongest on the left where the copy sits */
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 247, 243, 0.95) 0%,
    rgba(248, 247, 243, 0.85) 34%,
    rgba(248, 247, 243, 0.45) 65%,
    rgba(248, 247, 243, 0.2) 100%
  );
}

/* Bottom fade into the page background, like the reference */
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--warm-white));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 96px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid rgba(28, 28, 26, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(248, 247, 243, 0.55);
  backdrop-filter: blur(6px);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
}

.hero-title {
  margin-top: 28px;
  font-weight: 500;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 13ch;
}
.hero-title em {
  font-style: normal;
  color: var(--olive);
}

.hero-sub {
  margin-top: 22px;
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.55;
  color: var(--ink-60);
  max-width: 44ch;
}

.hero-ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 600px) {
  .hero { min-height: 560px; }
  .hero-inner { padding-bottom: 64px; }
  .hero-badge { font-size: 10.5px; padding: 10px 18px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Who it's for
   ============================================================ */
.who {
  padding: 88px 0 8px;
}

.who-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.who-card {
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(28, 28, 26, 0.04);
}

.who-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--olive-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.who-icon svg { stroke: var(--olive-dark); }

.who-tag { margin-bottom: 14px; }

.who-card h3 {
  font-weight: 500;
  font-size: 21px;
  line-height: 1.25;
}
.who-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-60);
}

@media (max-width: 700px) {
  .who-grid { grid-template-columns: 1fr; }
  .who { padding: 64px 0 0; }
}

/* ============================================================
   Services grid
   ============================================================ */
.services {
  padding: 96px 0 72px;
}

.section-title {
  margin-top: 14px;
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.services-grid {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
/* 7 cards: 4 on the first row, 3 centered on the second */
.services-grid .card {
  flex: 0 0 calc((100% - 42px) / 4);
}

.card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(28, 28, 26, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(28, 28, 26, 0.08);
}

.card-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--olive-tint), #E2E0D6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-visual img { transform: scale(1.04); }

.card h3 {
  font-weight: 500;
  font-size: 17.5px;
  line-height: 1.25;
}
.card p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-60);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}
.card-link .arrow { transition: transform 0.25s ease; }
.card:hover .card-link .arrow { transform: translateX(4px); }

/* Talk-to-a-Professional banner */
.pro-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  padding: 22px 30px;
  border-radius: var(--radius-card);
  background: linear-gradient(120deg, var(--olive), var(--olive-dark));
  color: var(--warm-white);
  box-shadow: 0 16px 40px rgba(90, 100, 84, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pro-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(90, 100, 84, 0.32);
}

.pro-avatar {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(248, 247, 243, 0.16);
  border: 2px solid rgba(248, 247, 243, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro-avatar svg { stroke: var(--warm-white); }

.pro-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.pro-text strong {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 21px;
}
.pro-text span {
  font-size: 14.5px;
  color: rgba(248, 247, 243, 0.75);
}

.pro-book {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pro-book .arrow { transition: transform 0.25s ease; }
.pro-banner:hover .pro-book .arrow { transform: translateX(4px); }

@media (max-width: 1100px) {
  .services-grid .card { flex-basis: calc((100% - 32px) / 3); }
}

@media (max-width: 960px) {
  .services { padding: 72px 0 56px; }
}

@media (max-width: 700px) {
  .services-grid .card { flex-basis: calc((100% - 14px) / 2); }
  .pro-banner { flex-wrap: wrap; padding: 20px 22px; }
  .pro-book { margin-left: 78px; }
}

/* ============================================================
   Results + testimonials + trust bar
   ============================================================ */
.sample-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--stone);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Centered section headers */
.center-head { text-align: center; }
.center-head .section-title { margin-left: auto; margin-right: auto; }
.center-sub {
  margin: 18px auto 0;
  max-width: 52ch;
  font-size: 17px;
  color: var(--ink-60);
}

.results { padding: 72px 0; }

/* Before / after cards */
.ba-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ba-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(28, 28, 26, 0.06);
  box-shadow: 0 10px 30px rgba(28, 28, 26, 0.04);
}
.ba-card img {
  display: block;
  width: 100%;
  height: auto;
}

.ba-name {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(28, 28, 26, 0.85);
  color: var(--warm-white);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
}
.ba-sample {
  position: absolute;
  bottom: 18px;
  right: 14px;
}

.results-cta {
  margin-top: 44px;
  text-align: center;
}

/* Quotes: dual counter-scrolling marquee */
.quotes {
  padding: 24px 0 72px;
  overflow: hidden;
}

.mrow {
  overflow: hidden;
  margin-top: 24px;
}
.mrow:first-of-type { margin-top: 44px; }

.mtrack {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-right: 20px; /* balances the gap at the loop seam */
  animation: quotes-marquee 55s linear infinite;
}
.mtrack-rev { animation-direction: reverse; }
.mrow:hover .mtrack { animation-play-state: paused; }

@keyframes quotes-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .mtrack, .mtrack-rev, .announce-track { animation: none; }
}

.quote-card {
  position: relative;
  flex: 0 0 360px;
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(28, 28, 26, 0.04);
}
.quote-card .sample-tag { position: absolute; top: 18px; right: 18px; }
.stars {
  color: var(--bronze);
  letter-spacing: 3px;
  font-size: 15px;
}
.quote-card blockquote {
  margin-top: 16px;
  font-size: 16.5px;
  line-height: 1.65;
}
.quote-card figcaption {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-60);
}

/* Trust bar */
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #FFFFFF;
  padding: 26px 0;
}
.trustbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-text {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  font-size: 16px;
}

@media (max-width: 960px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .quote-card { flex-basis: 320px; }
}

@media (max-width: 600px) {
  .results { padding: 56px 0; }
  .quote-card { flex-basis: 300px; }
  .trustbar-inner { justify-content: center; text-align: center; }
}

/* ============================================================
   Comparison table (The Full Picture)
   ============================================================ */
.compare { padding: 96px 0 48px; }

.table-wrap {
  margin-top: 52px;
  overflow-x: auto;
}

.cmp-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 44px rgba(28, 28, 26, 0.05);
  overflow: hidden;
}

.cmp-table th,
.cmp-table td {
  padding: 22px 28px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  vertical-align: middle;
}
.cmp-table tbody tr:last-child td { border-bottom: none; }

.cmp-table thead th {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 17px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.cmp-table td:first-child {
  font-weight: 600;
  font-size: 15.5px;
  width: 30%;
}

/* Highlighted MH column */
.cmp-table .hl { background: #FBF9F2; }
.cmp-table thead .hl { font-weight: 500; }
.cmp-table td.good {
  color: var(--olive-dark);
  font-weight: 600;
}
.cmp-table .check {
  display: inline-block;
  margin-right: 8px;
  color: var(--olive-dark);
  font-weight: 700;
}
.cmp-table td.bad { color: var(--ink-40); }
.cmp-table .x {
  display: inline-block;
  margin-right: 8px;
  font-size: 13px;
  color: var(--ink-40);
}
.cmp-table thead th:last-child,
.cmp-table td:last-child { color: var(--ink-60); }

.you-chip {
  display: inline-block;
  margin-left: 10px;
  background: var(--bronze);
  color: var(--warm-white);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .compare { padding: 64px 0 24px; }
  .cmp-table th, .cmp-table td { padding: 16px 18px; font-size: 14.5px; }
}

/* ============================================================
   Shared: circular tick (used by the membership benefits list)
   ============================================================ */
.tick {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--olive);
  color: var(--warm-white);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   App showcase (phone mockup trio, after the comparison table)
   ============================================================ */
.app-showcase {
  padding: 96px 0 112px;
  background:
    radial-gradient(900px 560px at 82% 15%, rgba(90, 100, 84, 0.14), transparent 65%),
    var(--warm-white);
}

.app-stage {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 232px;
  aspect-ratio: 9 / 19.5;
  background: var(--charcoal-soft);
  border-radius: 34px;
  padding: 8px;
  box-shadow: 0 30px 60px rgba(28, 28, 26, 0.22), 0 8px 22px rgba(28, 28, 26, 0.1);
  position: relative;
  flex-shrink: 0;
}
.phone-frame.phone-side {
  width: 208px;
  z-index: 0;
}
.phone-frame.phone-side.phone-left {
  transform: rotate(-7deg) translateY(22px);
  margin-right: -38px;
}
.phone-frame.phone-side.phone-right {
  transform: rotate(7deg) translateY(30px);
  margin-left: -38px;
  opacity: 0.92;
}
.phone-frame.phone-center { z-index: 1; }

.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 18px;
  background: var(--charcoal-soft);
  border-radius: 10px;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #F8F7F3;
  border-radius: 27px;
  overflow: hidden;
}
/* Real screenshots of the member-app beta, captured at 390x844 (the frame's
   9:19.5 ratio), with baked-in top padding so the island clears the app header. */
.phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.app-showcase-cta {
  margin-top: 56px;
  text-align: center;
}

@media (max-width: 700px) {
  .app-showcase { padding: 72px 0 80px; }
  .app-stage { flex-direction: column; gap: 28px; }
  .phone-frame.phone-side { transform: none; margin: 0; opacity: 1; width: 208px; }
  .phone-frame.phone-center { width: 232px; }
}

/* ============================================================
   Team
   ============================================================ */
.team { padding: 48px 0 96px; }

.team-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 28, 26, 0.04);
  text-align: center;
  padding-bottom: 30px;
}

.team-visual {
  position: relative;
  height: 260px;
  background: linear-gradient(160deg, var(--olive-tint), #DDDBD0 65%, var(--stone));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.team-visual svg { stroke: var(--olive-dark); opacity: 0.5; }
.team-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.team-visual .sample-tag {
  position: absolute;
  top: 14px;
  right: 14px;
}

.team-card h3 {
  font-weight: 500;
  font-size: 21px;
}
.team-role {
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}
.team-bio {
  margin: 12px auto 0;
  max-width: 30ch;
  font-size: 14.5px;
  color: var(--ink-60);
  padding: 0 20px;
}

@media (max-width: 960px) {
  .team { padding: 24px 0 72px; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* Doctor spotlight (Dr. Carlo) */
.doctor-spotlight {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 44px rgba(28, 28, 26, 0.06);
  overflow: hidden;
}
.doctor-photo {
  position: relative;
  min-height: 460px;
  background: linear-gradient(160deg, var(--olive-tint), #DDDBD0 65%, var(--stone));
}
.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.doctor-info { padding: 44px 48px; }
.doctor-role {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}
.doctor-info h3 {
  margin-top: 10px;
  font-weight: 500;
  font-size: 30px;
}
.doctor-bio {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-60);
  max-width: 50ch;
}
.doctor-highlights { margin-top: 24px; }
.doctor-highlights li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.55;
  max-width: 46ch;
}
.doctor-highlights li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--olive-tint);
  color: var(--olive-dark);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctor-note {
  margin-top: 26px;
  padding: 20px 24px;
  background: var(--olive-tint);
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 52ch;
}
.doctor-cta { margin-top: 28px; }

@media (max-width: 960px) {
  .doctor-spotlight { grid-template-columns: 1fr; }
  .doctor-photo { min-height: 320px; }
  .doctor-info { padding: 32px 26px; }
}

/* ============================================================
   Final CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(160deg, var(--olive), var(--olive-dark));
  color: var(--warm-white);
  padding: 110px 0;
}

.cta-eyebrow {
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-light);
}

.cta-title {
  margin: 18px auto 0;
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 16ch;
}

.cta-sub {
  margin: 20px auto 0;
  max-width: 44ch;
  font-size: 18px;
  color: rgba(248, 247, 243, 0.75);
}

.cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-light {
  background: var(--warm-white);
  color: var(--charcoal);
}
.btn-light:hover { background: #FFFFFF; }

.btn-outline-light {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid rgba(248, 247, 243, 0.45);
}
.btn-outline-light:hover { border-color: var(--warm-white); }

@media (max-width: 600px) {
  .cta-band { padding: 80px 0; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Scroll-in reveals (class applied by JS; no-JS pages stay visible)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
/* Once revealed, hoverable cards get their fast hover transition back */
.card.in-view,
.pro-banner.in-view {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card.in-view {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.program-row.in-view {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ============================================================
   Placeholder block (removed as phases fill in)
   ============================================================ */
.placeholder {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--stone);
  border-radius: var(--radius-card);
  margin: 48px auto;
  max-width: var(--container);
  color: var(--ink-40);
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 22px;
  text-align: center;
  padding: 40px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--charcoal-soft);
  color: var(--warm-white);
  padding: 96px 0 0;
}

/* Newsletter row */
.footer-news {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-news h3 {
  font-weight: 300;
  font-size: 40px;
  line-height: 1.15;
}
.footer-news h3 em {
  font-style: normal;
  color: var(--bronze-light);
}
.footer-news p {
  margin-top: 14px;
  color: var(--white-60);
  font-size: 16px;
  max-width: 44ch;
}
.news-form {
  display: flex;
  gap: 12px;
}
.news-form input {
  flex: 1;
  min-width: 0;
  background: rgba(248, 247, 243, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  padding: 16px 26px;
  color: var(--warm-white);
  outline: none;
  transition: border-color 0.2s ease;
}
.news-form input::placeholder { color: var(--white-40); }
.news-form input:focus { border-color: var(--white-60); }
.news-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--white-40);
}

/* Link columns */
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 72px 0;
}
.footer-brand .logo-mark line,
.footer-brand .logo-mark polyline { stroke: var(--warm-white); }
.footer-brand .logo-text .logo-name { color: var(--warm-white); }
.footer-brand .logo-text .logo-sub { color: var(--white-60); }
.footer-brand > p {
  margin-top: 20px;
  color: var(--white-60);
  font-size: 15px;
  max-width: 34ch;
}
/* .footer-brand .footer-tagline outranks the generic .footer-brand > p color */
.footer-brand .footer-tagline {
  margin-top: 24px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-light);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul a {
  color: var(--white-60);
  font-size: 16px;
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--warm-white); }

/* Contact list with icon tiles */
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(90, 100, 84, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { stroke: var(--warm-white); }
.contact-item .label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-40);
}
.contact-item .value { font-size: 16px; }

/* Disclaimer */
.footer-disclaimer {
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 26px 30px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-40);
  margin-bottom: 56px;
}
.footer-disclaimer strong { color: var(--white-60); }

/* Legal row */
.footer-legal {
  border-top: 1px solid var(--line-dark);
  padding: 32px 0 40px;
  text-align: center;
  font-size: 14px;
  color: var(--white-40);
}
.footer-legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 14px;
}
.footer-legal-links a { transition: color 0.2s ease; }
.footer-legal-links a:hover { color: var(--warm-white); }

/* Olive base strip (brandbook bottom bar) */
.footer-strip {
  background: var(--olive);
  padding: 16px 0;
}
.footer-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  :root { --nav-h: 76px; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .footer-news { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }

  .logo-text .logo-name { font-size: 16px; letter-spacing: 0.28em; }
  .logo-text .logo-sub { font-size: 7.5px; }

  /* At true phone widths the full lockup + burger overflows: tighten it */
  @media (max-width: 420px) {
    .nav-inner { gap: 16px; }
    .logo { gap: 10px; }
    .logo-text .logo-name { font-size: 13.5px; letter-spacing: 0.22em; }
    .logo-text .logo-sub { font-size: 6.5px; letter-spacing: 0.18em; }
  }

  .footer { padding-top: 64px; }
  .footer-news h3 { font-size: 30px; }
  .news-form { flex-direction: column; }
  .footer-cols { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .footer-strip .container { flex-direction: column; text-align: center; }
}

/* ============================================================
   Subpage hero (programs, booking, legal)
   ============================================================ */
.page-hero {
  padding: 80px 0 16px;
  text-align: center;
}
.page-hero .section-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 20ch;
}
.page-hero-sub {
  margin: 20px auto 0;
  max-width: 54ch;
  font-size: 18px;
  color: var(--ink-60);
}
@media (max-width: 600px) {
  .page-hero { padding: 56px 0 8px; }
}

/* ============================================================
   Membership panel
   ============================================================ */
.membership { padding: 72px 0 40px; }

.mem-panel {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(28, 28, 26, 0.06);
}

.mem-left { padding: 44px; }
.mem-left h3 {
  font-weight: 500;
  font-size: 26px;
}
.mem-left > p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--ink-60);
  max-width: 52ch;
}

.mem-benefits { margin-top: 28px; }
.mem-benefits li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  line-height: 1.5;
}
.mem-benefits li:last-child { border-bottom: none; }
.mem-benefits .tick { margin-top: 1px; }
.mem-benefits strong { font-weight: 600; }
.mem-benefits span.sub {
  display: block;
  font-size: 13.5px;
  color: var(--ink-60);
  margin-top: 2px;
}

.mem-right {
  background: linear-gradient(160deg, var(--olive), var(--olive-dark));
  color: var(--warm-white);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.mem-price-eyebrow {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-light);
}
.mem-price {
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
}
.mem-price-per {
  font-size: 16px;
  color: rgba(248, 247, 243, 0.7);
  margin-top: 8px;
}
.mem-founding {
  margin: 24px auto 0;
  max-width: 30ch;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(248, 247, 243, 0.85);
  border: 1px solid rgba(248, 247, 243, 0.3);
  border-radius: 14px;
  padding: 14px 18px;
}
.mem-right .btn { margin-top: 28px; align-self: center; }

@media (max-width: 960px) {
  .mem-panel { grid-template-columns: 1fr; }
  .mem-left, .mem-right { padding: 34px 28px; }
}

/* ============================================================
   Plan cards (Programs & Stacks)
   ============================================================ */
.plans { padding: 56px 0; }
.plans-intro { max-width: 64ch; }

/* Editorial program rows: alternating image / content bands (premium feel,
   replaces the old boxy 2x2 plan-card grid) */
.program-stack {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.program-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(28, 28, 26, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.program-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(28, 28, 26, 0.11);
}
.program-row:hover .btn .arrow { transform: translateX(4px); }
/* Even rows put the visual on the right for an alternating rhythm */
.program-row:nth-child(even) .program-visual { order: 2; }

.program-visual {
  position: relative;
  min-height: 380px;
  background: linear-gradient(135deg, #EFEDE6, #E3DFD5);
  overflow: hidden;
}
.program-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-body {
  position: relative;
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.program-index {
  position: absolute;
  top: 30px;
  right: 46px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: rgba(28, 28, 26, 0.08);
  letter-spacing: 0.02em;
}
.program-body h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 27px;
  line-height: 1.15;
  max-width: 12ch;
}
.program-tagline {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-60);
}
.program-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.program-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-60);
}
.program-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--olive-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%234A5245' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.program-cta {
  align-self: flex-start;
  margin-top: 30px;
}

@media (max-width: 860px) {
  .program-row { grid-template-columns: 1fr; }
  .program-row:nth-child(even) .program-visual { order: 0; }
  .program-visual { min-height: 240px; }
  .program-body { padding: 34px 28px; }
  .program-index { top: 22px; right: 28px; font-size: 46px; }
  .program-cta { align-self: stretch; justify-content: center; }
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  box-shadow: 0 10px 30px rgba(28, 28, 26, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(28, 28, 26, 0.10);
  border-color: var(--olive);
}
.plan-card:hover .btn .arrow { transform: translateX(4px); }
.plan-card.plan-flag { border: 1.5px solid var(--olive); }
.plan-card.plan-flag:hover { box-shadow: 0 22px 48px rgba(90, 96, 60, 0.16); }
.flag-chip {
  position: absolute;
  top: -12px;
  left: 26px;
  background: var(--olive);
  color: var(--warm-white);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}
.plan-card h3 {
  margin-top: 10px;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.2;
}
.plan-tagline {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--ink-60);
}

.sessions-chip {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 16px;
  background: var(--olive-tint);
  color: var(--olive-dark);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-price { margin-top: 20px; }
.price-from {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.price-big {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  color: var(--charcoal);
}
.price-big .per {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-60);
}
.price-regular {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-40);
}

.plan-list { margin-top: 20px; }
.plan-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-60);
}
.plan-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--olive-dark);
  font-weight: 700;
  font-size: 13px;
}

.plan-cta {
  margin-top: auto;
  padding-top: 24px;
}
.plan-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 15.5px;
}

.plans-note {
  margin: 28px auto 0;
  max-width: 74ch;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-40);
}

@media (max-width: 1100px) {
  .plan-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .plan-grid, .plan-grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   How it works (steps)
   ============================================================ */
.steps { padding: 64px 0 40px; }
.steps-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  box-shadow: 0 10px 30px rgba(28, 28, 26, 0.04);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--olive-tint);
  color: var(--olive-dark);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 {
  font-weight: 500;
  font-size: 19px;
}
.step-card p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-60);
}
@media (max-width: 800px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Fine-print panels (session definition, consult-first) + FAQ
   ============================================================ */
.fine-panel {
  margin-top: 32px;
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.08);
  border-radius: 16px;
  padding: 26px 30px;
}
.fine-panel h4 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 17px;
}
.fine-panel p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-60);
}
.fine-panel-cta { margin-top: 18px; }

.faq { padding: 56px 0 88px; }
.faq-list {
  margin-top: 40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.faq-list details {
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: 16px;
  padding: 0 26px;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(28, 28, 26, 0.03);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 17px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--bronze);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-60);
}

/* ============================================================
   Founding-member band (homepage)
   ============================================================ */
.founding {
  background: var(--charcoal-soft);
  color: var(--warm-white);
  padding: 96px 0;
}
.founding .cta-eyebrow { color: var(--bronze-light); }
.founding-title {
  margin: 18px auto 0;
  font-weight: 500;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.founding-sub {
  margin: 20px auto 0;
  max-width: 52ch;
  font-size: 17px;
  color: var(--white-60);
}
.founding-chips {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.founding-chip {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(248, 247, 243, 0.8);
}
.founding .btn { margin-top: 36px; }

/* ============================================================
   Booking page
   ============================================================ */
.book-page { padding-bottom: 96px; }
.book-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.book-info h3 {
  font-weight: 500;
  font-size: 22px;
}
.book-info .feature-list { margin-top: 22px; }
.book-embed {
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 44px rgba(28, 28, 26, 0.06);
  overflow: hidden;
}
@media (max-width: 960px) {
  .book-grid { grid-template-columns: 1fr; }
}

/* Month calendar + time picker (booking page) */
.cal-section { margin-top: 48px; }
.cal-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.9fr;
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 44px rgba(28, 28, 26, 0.06);
  overflow: hidden;
}

.cal-info {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
}
.cal-info .logo-mark line, .cal-info .logo-mark polyline { stroke: var(--olive-dark); }
.cal-info h3 {
  margin-top: 18px;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.25;
}
.cal-meta { margin-top: 20px; }
.cal-meta li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--ink-60);
}
.cal-meta svg { stroke: var(--bronze); flex-shrink: 0; }
.cal-meta #calSelectedDate { font-weight: 600; color: var(--charcoal); }
.cal-steps {
  margin-top: 24px;
  padding-left: 20px;
  list-style: decimal;
}
.cal-steps li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-60);
}

.cal-main { padding: 36px 32px; }
.cal-main h3 {
  font-weight: 500;
  font-size: 20px;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}
.cal-head span {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 17px;
}
.cal-head button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--charcoal);
  background: var(--olive-tint);
  transition: background 0.2s ease, opacity 0.2s ease;
}
.cal-head button:hover:not(:disabled) { background: var(--stone); }
.cal-head button:disabled { opacity: 0.3; cursor: default; }

.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 18px;
  text-align: center;
}
.cal-dow span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-60);
  padding: 6px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 6px;
}
.cal-day {
  aspect-ratio: 1 / 1;
  max-height: 46px;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-40);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
  max-width: 46px;
  transition: background 0.2s ease, color 0.2s ease;
}
.cal-day.is-open {
  background: var(--olive-tint);
  color: var(--charcoal);
  font-weight: 600;
}
.cal-day.is-open:hover { background: var(--stone); }
.cal-day.is-selected {
  background: var(--olive);
  color: var(--warm-white);
}
.cal-day.is-selected:hover { background: var(--olive-dark); }
.cal-day:disabled { cursor: default; }
.cal-tz {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-40);
}
.cal-tz svg { stroke: var(--ink-40); }

.cal-times {
  padding: 36px 28px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 560px;
  overflow-y: auto;
}
.cal-times-hint {
  font-size: 14px;
  color: var(--ink-40);
  text-align: center;
  margin-top: 24px;
}
.cal-time {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1.5px solid var(--olive);
  border-radius: 12px;
  padding: 12px 12px 10px;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cal-time-hour {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--olive-dark);
  transition: color 0.2s ease;
}
.cal-time-spots {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bronze);
  transition: color 0.2s ease;
}
.cal-time.is-low {
  border-color: var(--bronze);
}
.cal-time.is-low .cal-time-spots {
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cal-time:hover {
  background: var(--olive);
}
.cal-time:hover .cal-time-hour,
.cal-time:hover .cal-time-spots {
  color: var(--warm-white);
}

@media (max-width: 1000px) {
  .cal-card { grid-template-columns: 1fr; }
  .cal-info { border-right: none; border-bottom: 1px solid var(--line); }
  .cal-times {
    border-left: none;
    border-top: 1px solid var(--line);
    flex-direction: row;
    flex-wrap: wrap;
    max-height: none;
  }
  .cal-times .cal-time { flex: 1 1 30%; }
}

/* Booking request form */
.book-form-section { margin-top: 64px; }
.book-form { padding: 34px 32px; }
.book-form h3 { font-weight: 500; font-size: 22px; margin-bottom: 8px; }
.book-form label {
  display: block;
  margin-top: 16px;
}
.book-form label span {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 6px;
}
.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15.5px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s ease;
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus { border-color: var(--olive); }
.book-form input[readonly] { color: var(--olive-dark); font-weight: 600; }
.book-form textarea { resize: vertical; }
.book-form .btn {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
}
.book-note {
  color: var(--ink-40);
  text-align: center;
}
.change-slot {
  margin-top: 8px;
  font-size: 13px;
}
.change-slot a {
  color: var(--bronze);
  font-weight: 600;
}
.change-slot a:hover { color: var(--olive-dark); }

/* Booking form page: single column, date → essentials → form → book */
.bform-section { margin-top: 40px; }
.bform-narrow {
  max-width: 720px;
  margin: 0 auto;
}
.bform-step {
  margin-top: 48px;
  font-weight: 500;
  font-size: 24px;
}

/* Chosen-slot summary under the page title */
.slot-summary {
  margin: 32px auto 0;
  max-width: 420px;
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 30px rgba(28, 28, 26, 0.04);
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.slot-summary-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.slot-summary-time {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 21px;
  color: var(--olive-dark);
}
.slot-summary-place {
  font-size: 13.5px;
  color: var(--ink-60);
}
.slot-summary-change {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bronze);
}
.slot-summary-change:hover { color: var(--olive-dark); }

/* ---- Booking received (confirmation page) ---- */
.received-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--olive-tint);
  color: var(--olive-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.received-mark svg { stroke: currentColor; }

.received-section { margin-top: 56px; }
.received-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.received-steps {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.received-steps li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.received-step-n {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--warm-white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.received-steps h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}
.received-steps p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-60);
}

.received-cal {
  margin-top: 48px;
  padding: 28px;
  background: var(--olive-tint);
  border-radius: var(--radius-card);
  text-align: center;
}
.received-cal h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 500;
}
.received-cal p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-60);
}
.received-cal-btns {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.received-policy {
  margin-top: 36px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-40);
  text-align: center;
}

@media (max-width: 600px) {
  .received-steps li { gap: 16px; }
  .received-cal { padding: 24px 20px; }
  .received-cal-btns .btn { width: 100%; }
}

.faq-block {
  margin-top: 28px;
  padding: 26px 30px;
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: 16px;
}
.faq-block h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}
.faq-block p {
  margin-bottom: 16px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-60);
}
.faq-block p:last-child { margin-bottom: 0; }
.faq-block strong { color: var(--charcoal); }

.bform-narrow .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 22px;
}
.bform-narrow label span {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 7px;
}
.bform-narrow input[type="text"],
.bform-narrow input[type="email"],
.bform-narrow input[type="tel"],
.bform-narrow select {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--ink-40);
  border-radius: 4px;
  padding: 13px 14px;
  font-size: 15.5px;
  outline: none;
  transition: border-color 0.2s ease;
}
.bform-narrow input:focus, .bform-narrow select:focus { border-color: var(--olive); }
.field-full { display: block; margin-top: 22px; }

.radio-group {
  border: none;
  margin-top: 26px;
}
.radio-group legend {
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 12px;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-size: 15px;
  cursor: pointer;
}
.radio-group input { accent-color: var(--olive); width: 18px; height: 18px; }

.pay-intro {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-60);
}
.pay-intro strong { color: var(--charcoal); }
.pay-box {
  margin-top: 22px;
  padding: 24px 28px;
  background: var(--olive-tint);
  border-radius: 16px;
}
.pay-box h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.pay-box p, .pay-box li {
  font-size: 15px;
  line-height: 1.8;
}
.pay-box ul { list-style: disc; padding-left: 22px; margin-top: 8px; }
.pay-qr {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 20px auto 0;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(28, 28, 26, 0.08);
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(28, 28, 26, 0.05);
}
.pay-qr-caption {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-dark);
}
.pay-qr-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-60);
  text-align: center;
}

/* Honeypot: off-screen rather than display:none, so bots still see it. */
.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.upload-field { margin-top: 26px; }
/* Needs to out-specify `.bform-narrow label span`, which styles field labels. */
.bform-narrow label span.upload-hint {
  display: block;
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-40);
}
.bform-narrow label span.upload-hint.is-error { color: #B3261E; }
.upload-field input[type="file"] {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1px dashed var(--ink-40);
  border-radius: 10px;
  background: #FFFFFF;
  font-size: 14px;
  cursor: pointer;
}

.ack {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-60);
  cursor: pointer;
}
.ack input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--olive);
}

.bside-note {
  margin-top: 26px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-40);
  text-align: center;
}
.bform-submit {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}

.contact-line {
  margin: 72px 0 64px;
  text-align: center;
}
.contact-line p {
  font-size: 14.5px;
  color: var(--ink-60);
}

@media (max-width: 700px) {
  .bform-narrow .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Legal / prose pages
   ============================================================ */
.prose-page { padding: 24px 0 96px; }
.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose-updated {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--ink-40);
  text-align: center;
}
.prose h2 {
  margin-top: 44px;
  font-weight: 500;
  font-size: 24px;
}
.prose h3 {
  margin-top: 28px;
  font-weight: 500;
  font-size: 18px;
}
.prose p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-60);
}
.prose ul {
  margin-top: 14px;
  padding-left: 22px;
  list-style: disc;
}
.prose ul li {
  margin-bottom: 10px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-60);
}
.prose strong { color: var(--charcoal); }

/* ============================================================
   Program landing pages (program-*.html)
   ============================================================ */

/* Breadcrumb back to the programs overview */
.prog-crumb {
  padding-top: 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.prog-crumb a { color: var(--ink-60); transition: color 0.2s ease; }
.prog-crumb a:hover { color: var(--olive); }
.prog-crumb span { margin: 0 8px; }

/* Split hero: copy left, program visual right */
.prog-hero { padding: 40px 0 8px; }
.prog-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.prog-hero-copy .eyebrow { margin-bottom: 14px; }
.prog-hero-copy h1 {
  font-weight: 500;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.prog-hero-copy h1 em {
  font-style: italic;
  color: var(--olive);
}
.prog-hero-sub {
  margin-top: 20px;
  max-width: 52ch;
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-60);
}
.prog-hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.prog-hero-note {
  margin-top: 20px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-40);
}
.prog-hero-visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--olive-tint);
  box-shadow: 0 22px 48px rgba(28, 28, 26, 0.08);
}
.prog-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

/* What's included: four supporting cards */
.included { padding: 88px 0 16px; }
.incl-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.incl-card {
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 26, 0.06);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  box-shadow: 0 10px 30px rgba(28, 28, 26, 0.04);
}
.incl-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--olive-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.incl-icon svg { stroke: var(--olive-dark); }
.incl-card h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
}
.incl-card p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-60);
}
.included-note {
  margin: 36px auto 0;
  max-width: 76ch;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-40);
}

/* Cross-links to the other three programs */
.prog-other { padding: 80px 0 24px; }
.prog-other-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Secondary "see the full program" link under a program row CTA */
.program-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.program-actions .program-cta { margin-top: 0; }
.program-more {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--olive);
  border-bottom: 1px solid rgba(90, 100, 84, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.program-more:hover { color: var(--olive-dark); border-color: var(--olive-dark); }

@media (max-width: 1000px) {
  .incl-grid { grid-template-columns: 1fr 1fr; }
  .prog-other-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .prog-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .prog-hero-visual { order: -1; }
  .prog-hero-visual img { min-height: 260px; }
  .prog-hero { padding-top: 24px; }
  .included { padding: 64px 0 8px; }
  .prog-other { padding: 56px 0 16px; }
}

@media (max-width: 600px) {
  .incl-grid { grid-template-columns: 1fr; }
  .prog-hero-ctas .btn { width: 100%; justify-content: center; }
}
