/* --------------------------------------------------------------- tokens -- */

:root {
  /* greens */
  --forest: #0F4D46;
  --forest-hover: #0B3B35;
  --forest-light: #14584F;
  --forest-deep: #0A3B35;
  --footer-green: #072A26;

  /* accents */
  --gold: #E9BD51;
  --gold-hover: #F0CB6E;
  --gold-dark-text: #5A4A22;
  --terracotta: #A1591C;

  /* text */
  --ink: #272526;
  --body: #3D4642;
  --muted: #5A6660;
  --sage-label: #679488;
  --sage-label-dark: #8FB3A8;
  --green-text: #BFD2CB;
  --green-text-light: #E4EBE7;

  /* surfaces */
  --cream: #F7F5F2;
  --sage-bg: #EEF2EF;
  --white: #FFFFFF;
  --border: #E7E3DB;
  --border-alt: #E0DCD4;
  --border-spec: #EEEAE2;

  /* type */
  --font-serif: 'Young Serif', Georgia, 'Times New Roman', serif;
  --font-sans: Figtree, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-hand: Caveat, 'Segoe Script', cursive;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* geometry */
  --maxw: 1180px;
  --pad-x: 32px;
  --r-pill: 999px;
  --r-lg: 20px;
  --r-md: 16px;
  --r-sm: 14px;
}

/* ----------------------------------------------------------------- base -- */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, dl, dd, figure, blockquote {
  margin: 0;
}

h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.18;
  color: var(--ink);
  text-wrap: balance;
}

h3 {
  font-weight: 400;
}

a {
  color: var(--forest);
}

a:hover {
  color: var(--forest-hover);
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--forest);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

/* Grain texture over dark green surfaces. */
.grain {
  position: absolute;
  inset: 0;
  background-image: url("../assets/texture/grain.png");
  opacity: 0.14;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.tier--dark .grain,
.founder .grain,
.booking-card--dark .grain {
  opacity: 0.12;
}

/* ------------------------------------------------------- shared patterns -- */

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage-label);
}

.eyebrow--dark  { color: var(--sage-label-dark); }
.eyebrow--light { color: var(--green-text); }
.eyebrow--sm   { font-size: 10.5px; letter-spacing: 0.2em; }
.eyebrow--xs   { font-size: 10px; letter-spacing: 0.2em; }

.eyebrow--rule {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow--rule::before {
  content: "";
  flex-shrink: 0;
  width: 40px;
  height: 3px;
  background: var(--gold);
}

.hand {
  font-family: var(--font-hand);
  line-height: 1.1;
}

.hand--terracotta { font-size: 24px; color: var(--terracotta); }
.hand--gold       { font-size: 30px; color: var(--gold); }

.lede-muted {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.section-head__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
}

.section-head__note {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 380px;
  text-wrap: pretty;
}

.head-center {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.badge {
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

.tick { color: var(--forest); }
.tick--gold { color: var(--gold); }

/* -------------------------------------------------------------- buttons -- */

.btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn--forest { background: var(--forest); color: var(--cream); }
.btn--forest:hover { background: var(--forest-hover); color: var(--cream); }

.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-hover); color: var(--ink); }

.btn--outline {
  padding: 14px 26px;
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
}

.btn--outline:hover { background: var(--forest); color: var(--cream); }

.btn--lg  { padding: 16px 30px; font-size: 16px; }
.btn--nav { padding: 11px 22px; font-size: 14px; font-weight: 600; }

/* The nav CTA carries a shorter label on narrow screens. */
.btn__short { display: none; }

/* CTA pinned to the bottom of a card, so cards of unequal height still align. */
.btn--card { width: 100%; margin-top: auto; }

.link-ghost {
  color: var(--green-text-light);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 245, 242, 0.35);
  padding-bottom: 2px;
}

.link-ghost:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

/* ------------------------------------------------------------------ nav -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 42, 38, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(247, 245, 242, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}

.nav__logo { display: flex; }
.nav__logo img { height: 40px; width: auto; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}

.nav__links a {
  color: var(--green-text-light);
  text-decoration: none;
}

.nav__links a:hover { color: var(--cream); }

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(247, 245, 242, 0.28);
  border-radius: 12px;
  color: var(--green-text-light);
  cursor: pointer;
}

.nav__toggle-bars {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}

.nav__toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__toggle-bars span:nth-child(1) { top: 0; }
.nav__toggle-bars span:nth-child(2) { top: 5px; }
.nav__toggle-bars span:nth-child(3) { top: 10px; }

.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.nav__panel { display: none; }

.nav__panel-links {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 4px 20px 14px;
  list-style: none;
  background: rgba(7, 42, 38, 0.97);
  border-bottom: 1px solid rgba(247, 245, 242, 0.12);
}

.nav__panel-links a {
  display: block;
  padding: 13px 0;
  color: var(--green-text-light);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 245, 242, 0.12);
}

.nav__panel-links li:last-child a { border-bottom: none; }

/* ----------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  background: var(--forest-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1);
}

/* Two stacked layers make the duotone: a multiplied green gradient for depth,
   then a flat wash to keep text contrast stable across the whole frame. */
.hero__duotone {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 77, 70, 0.72) 0%, rgba(15, 77, 70, 0.45) 45%, rgba(7, 42, 38, 0.9) 100%);
  mix-blend-mode: multiply;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background: rgba(15, 77, 70, 0.22);
}

.hero__inner {
  position: relative;
  width: 100%;
  padding-block: 120px 52px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 62px;
  line-height: 1.05;
  color: var(--cream);
  text-wrap: balance;
}

.hero__subhead {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
}

.hero__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--green-text-light);
  max-width: 520px;
  text-wrap: pretty;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__micro {
  font-size: 13px;
  color: var(--green-text);
}

/* ---------------------------------------------------------- pain points -- */

.pain {
  padding-block: 88px 40px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.pain__aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.pain__title {
  font-size: 36px;
  line-height: 1.18;
}

.pain__photo {
  position: relative;
  margin-top: 8px;
}

.pain__photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--r-md);
}

.pain__photo-scrim {
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(15, 77, 70, 0) 40%, rgba(7, 42, 38, 0.55) 100%);
}

.struggles {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.struggle {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px 20px;
}

.num-chip {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: var(--r-pill);
  background: var(--sage-bg);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
}

.struggle__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--body);
}

/* ------------------------------------------------------------- outcomes -- */

.outcomes {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
}

.outcomes__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outcomes__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 59, 53, 0.9) 0%, rgba(15, 77, 70, 0.82) 50%, rgba(7, 42, 38, 0.92) 100%);
}

.outcomes__inner {
  position: relative;
  padding-block: 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.outcomes h2 { color: var(--cream); }
.outcomes .section-head__note { color: var(--green-text); }

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Frosted glass over the forest photo. */
.outcome {
  background: rgba(247, 245, 242, 0.08);
  border: 1px solid rgba(247, 245, 242, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.outcome__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.outcome__title {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.3;
  color: var(--cream);
}

.outcome__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--green-text);
}

/* --------------------------------------------------------- typical week -- */

.week {
  background: var(--sage-bg);
  border-top: 1px solid var(--border-alt);
  border-bottom: 1px solid var(--border-alt);
}

.week__inner {
  padding-block: 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: center;
}

.week__gallery {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
}

.week__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.week__photo {
  width: 100%;
  object-fit: cover;
}

.week__photo--lead {
  height: 300px;
  border-radius: var(--r-lg);
}

/* The pair stays grayscale so the colour lead photo carries the section. */
.week__photo--sm {
  height: 150px;
  border-radius: var(--r-sm);
  filter: grayscale(1);
}

.week__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.week__copy h2 {
  font-size: 34px;
  line-height: 1.2;
}

.week-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.week-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.week-step__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
}

.week-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}

.week__foot {
  font-size: 13.5px;
  color: var(--muted);
}

/* ----------------------------------------------------------- path banner -- */

.path-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.path-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.path-banner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 42, 38, 0.5) 0%, rgba(7, 42, 38, 0.2) 50%, rgba(7, 42, 38, 0.72) 100%);
}

.path-banner__copy {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.path-banner__line {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.25;
  color: var(--cream);
  max-width: 640px;
  text-wrap: balance;
}

/* -------------------------------------------------------------- modules -- */

.modules {
  padding-block: 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Two independent columns so opening a module never shifts the other side. */
.module-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.module-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion { border-radius: var(--r-sm); }

.accordion--dark {
  background: var(--forest);
  padding: 0 20px;
}

.accordion--light {
  background: var(--white);
  border: 1px solid var(--border-alt);
  padding: 0 22px;
}

.accordion__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
}

.accordion__summary::-webkit-details-marker { display: none; }
.accordion__summary::marker { content: ""; }

.accordion__label {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.accordion__num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--sage-label-dark);
}

.accordion__plus {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 17px;
  color: var(--gold);
  transition: transform 0.2s;
}

details[open] .accordion__plus { transform: rotate(45deg); }

.accordion__body {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--green-text);
  padding: 0 0 18px;
  text-wrap: pretty;
}

.accordion__link { color: var(--gold); font-weight: 600; }
.accordion__link:hover { color: var(--gold-hover); }

.accordion__summary--light {
  gap: 16px;
  padding: 18px 0;
  font-size: 15.5px;
  color: var(--ink);
}

.accordion__plus--sage { color: var(--sage-label); font-size: 18px; }

.accordion__body--light {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  padding: 0 0 20px;
}

.crosslinks {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.crosslink {
  background: var(--sage-bg);
  border-radius: var(--r-sm);
  padding: 20px 24px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--body);
}

.crosslink a { font-weight: 600; }

/* ------------------------------------------------- more than tutoring -- */

.founder {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--forest-light) 0%, var(--forest-deep) 90%);
}

.founder__photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
}

.founder__inner {
  position: relative;
  padding-block: 76px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.founder__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.founder__head h2 { color: var(--cream); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid var(--gold);
  padding-top: 16px;
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--cream);
}

.pillar p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--green-text);
  text-wrap: pretty;
}

/* -------------------------------------------------------------- process -- */

.process {
  padding-block: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process__photo {
  width: 220px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--r-sm);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--forest);
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step__label {
  font-family: var(--font-hand);
  font-size: 26px;
  line-height: 1;
  color: var(--terracotta);
}

.step__title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink);
}

.step__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* -------------------------------------------------------------- mid CTA -- */

.midcta { background: var(--gold); }

.midcta__inner {
  padding-block: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.midcta__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.midcta__title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--ink);
}

.midcta__sub {
  font-size: 14.5px;
  color: var(--gold-dark-text);
}

.midcta .btn {
  flex-shrink: 0;
  padding: 15px 28px;
}

/* --------------------------------------------------- celebration banner -- */

.celebration {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--forest-deep);
}

.celebration__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1);
}

/* Same duotone recipe as the hero, so the two bookend each other. */
.celebration__duotone {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 77, 70, 0.75) 0%, rgba(15, 77, 70, 0.5) 50%, rgba(7, 42, 38, 0.85) 100%);
  mix-blend-mode: multiply;
}

.celebration__wash {
  position: absolute;
  inset: 0;
  background: rgba(15, 77, 70, 0.25);
}

.celebration__copy {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.celebration__line {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1.2;
  color: var(--cream);
  max-width: 680px;
  text-wrap: balance;
}

.celebration__caption { margin-top: 6px; }

/* -------------------------------------------------------------- booking -- */

.booking {
  padding-block: 88px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.booking__title {
  font-size: 38px;
  line-height: 1.15;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-card--dark {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  border-color: transparent;
}

.booking-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.booking-card__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-card__title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--cream);
}

.booking-card__title--light { color: var(--ink); }

.checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--green-text);
}

.checks li { display: flex; gap: 10px; }
.checks--light { color: var(--muted); }

.booking__foot {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

.booking__foot a { font-weight: 600; }

/* ---------------------------------------- responsive (shared sections) -- */

@media (max-width: 768px) {
  .hero__inner,
  .pain,
  .outcome-grid,
  .week__gallery,
  .week__inner,
  .module-grid,
  .crosslinks,
  .pillars,
  .steps,
  .booking-grid { grid-template-columns: 1fr; }

  .pain,
  .week__inner { gap: 28px; }

  .hero { min-height: 0; }
  .hero__inner { padding-block: 88px 44px; }
  .hero__title { font-size: 38px; line-height: 1.1; }

  .celebration { height: 340px; }
  .celebration__line { font-size: 27px; }

  .pain__title,
  .week__copy h2,
  .booking__title { font-size: 27px; }

  .pain__aside { position: static; }
  .founder__photo { display: none; }

  /* Two pills side by side overflow a phone; stack them full-width. */
  .midcta__actions {
    flex-basis: 100%;
    flex-direction: column;
  }

  .midcta__actions .btn { width: 100%; }
}

/* Two CTAs side by side in the gold band; they wrap as a pair on mobile. */
.midcta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* --------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--footer-green);
  color: var(--green-text);
}

.site-footer__inner {
  padding-block: 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
}

.footer__col:first-child { gap: 16px; }

.footer__logo { width: 180px; height: auto; }

.footer__tagline {
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 320px;
  text-wrap: pretty;
}

.footer__link {
  color: var(--green-text-light);
  text-decoration: none;
}

.footer__link:hover { color: var(--cream); }

.footer__col--crisis {
  font-size: 12.5px;
  line-height: 1.6;
}

.footer__col--crisis strong { color: var(--cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(247, 245, 242, 0.12);
  padding-top: 20px;
  font-size: 12px;
  color: var(--sage-label-dark);
}

.footer__domain {
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Compact variant — a single row, used by pages with a lighter footer. */
.site-footer--compact .site-footer__inner {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-block: 40px;
}

.footer__logo--sm { width: auto; height: 36px; }

.footer__contact {
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.footer__copy { font-size: 12px; color: var(--sage-label); }

/* The crisis note is a clinical-compliance requirement, so the compact
   footer carries it as a strip rather than dropping it. */
.crisis-strip {
  border-top: 1px solid rgba(247, 245, 242, 0.12);
  padding-block: 16px;
}

.crisis-strip p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--sage-label-dark);
  text-align: center;
}

.crisis-strip strong { color: var(--cream); }

@media (max-width: 768px) {
  /* Wrapped rows read better centred than space-between. */
  .site-footer--compact .site-footer__inner {
    justify-content: center;
    text-align: center;
  }
}

/* ------------------------------------------------- responsive (shared) -- */

@media (max-width: 768px) {
  .wrap { padding-inline: 20px; }

  /* nav swaps to the hamburger panel */
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__panel { display: block; }
  .nav__right { gap: 10px; }
  .nav__logo img { height: 36px; }
  .btn--nav { padding: 9px 16px; font-size: 12.5px; white-space: nowrap; }
  .btn__long { display: none; }
  .btn__short { display: inline; }

  h2 { font-size: 27px; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }

  .footer__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}

/* `hidden` must beat the mobile `display:block` above. */
.nav__panel[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
