/* New Leaf OT — calm, grounded, slightly literary. */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  /* Colour — green-led, warm off-whites, earth accent */
  --bg:           #F4EEDF;   /* warm off-white, page ground */
  --bg-soft:      #EBE2CC;   /* slightly deeper warm tint */
  --bg-card:      #FAF5E8;   /* card surfaces, lifted */
  --green-deep:   #1F3A2C;   /* footer / deep section band */
  --green-mid:    #2F523F;   /* primary text on light bg, headings */
  --green:        #3F6B50;   /* button + accent green */
  --green-warm:   #5F8B6C;   /* mid-green for hover / lines */
  --green-soft:   #C8D6C2;   /* light sage */
  --green-tint:   #E2EADD;   /* faint green wash for soft section */
  --ink:          #2A2A26;   /* body text */
  --ink-muted:    #6F6F66;   /* secondary text */
  --line:         #D8CFB7;   /* hairlines on warm bg */
  --line-faint:   #E4DCC4;
  --accent:       #B57342;   /* warm earth — sparingly used */
  --accent-soft:  #E8C9A8;
  --leaf:         #6FA868;   /* submit-button leaf flourish */
  --shadow-card:  0 18px 36px -22px rgba(31,58,44,0.28), 0 2px 6px -2px rgba(31,58,44,0.08);
  --shadow-lift:  0 26px 48px -22px rgba(31,58,44,0.38), 0 4px 10px -2px rgba(31,58,44,0.10);

  /* Type */
  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion: the whole site exhales */
  --dur:        420ms;
  --dur-slow:   800ms;
  --dur-fast:   220ms;
  --ease:       cubic-bezier(.4,.0,.2,1); /* soft ease-in-out */

  /* Layout */
  --container: 1120px;
  --gutter:    clamp(20px, 5vw, 56px);
}

/* ───────────────── Reset & base ───────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--green-mid);
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.12; font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.2; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.3; }
h4 { font-size: 1.1rem; line-height: 1.35; }

p { margin: 0 0 1em; max-width: 62ch; }
p:last-child { margin-bottom: 0; }

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

/* ───────────────── Navigation ───────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 238, 223, 0.86);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: padding var(--dur) var(--ease), border-color var(--dur) var(--ease);
  padding-block: 22px;
}
.nav.is-shrunk {
  padding-block: 12px;
  border-bottom-color: var(--line-faint);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-mid);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
}
.brand-leaf {
  width: 22px;
  height: 22px;
  flex: none;
}
.brand-logo {
  width: 123px;
  height: auto;
  max-width: none;
  flex: none;
  display: block;
}
.brand-tm {
  align-self: flex-start;
  margin-left: -6px;
  margin-top: 1px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--green-mid);
  opacity: 0.6;
}
.nav-links {
  display: flex;
  gap: 8px;
  margin-left: 24px;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav.is-shrunk .nav-links { opacity: 0; transform: translateY(-6px); pointer-events: none; }
.nav-links a {
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  background-color: transparent;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-links a:hover { background-color: var(--green-tint); color: var(--green-mid); }
.nav-links a[aria-current="page"] {
  color: var(--green-mid);
  background-color: color-mix(in srgb, var(--green-tint) 70%, transparent);
}
.nav-cta {
  margin-left: auto;
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--green-mid);
}

/* Page entry: a slow horizontal line travels across the top */
.page-entry {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  width: 100%;
  background: var(--green-mid);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 100;
  pointer-events: none;
  animation: entry-line 1.2s var(--ease) forwards;
}
@keyframes entry-line {
  0%   { transform: scaleX(0); opacity: 1; }
  60%  { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}

/* ───────────────── Buttons & links ───────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.005em;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn .arrow { transition: transform var(--dur) var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green);
  color: #F8F2DE;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--green-mid);
  border: 1px solid color-mix(in srgb, var(--green-mid) 30%, transparent);
}
.btn-secondary:hover {
  border-color: color-mix(in srgb, var(--green-mid) 60%, transparent);
  background: color-mix(in srgb, var(--green-mid) 5%, transparent);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 16px;
  font-size: 0.92rem;
}

.btn-dark-bg { color: var(--bg); border-color: rgba(244,238,223,0.30); }
.btn-dark-bg:hover { border-color: rgba(244,238,223,0.6); background: rgba(244,238,223,0.08); }

/* Underline-draw inline link */
.link {
  position: relative;
  display: inline-block;
  color: var(--green-mid);
  font-weight: 500;
  padding-bottom: 2px;
}
.link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}
.link:hover::after { transform: scaleX(1); }
.link .arrow { transition: transform var(--dur) var(--ease); display: inline-block; margin-left: 4px; }
.link:hover .arrow { transform: translateX(4px); }

/* ───────────────── Section rhythm ───────────────── */
section { padding-block: clamp(60px, 9vw, 120px); }
section.tight { padding-block: clamp(40px, 6vw, 80px); }
section.compact { padding-block: clamp(28px, 4vw, 48px); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-warm);
  margin-bottom: 16px;
}

/* Hand-drawn section divider */
.divider {
  display: block;
  width: clamp(120px, 18%, 220px);
  height: 14px;
  margin: 4px 0 28px;
  color: var(--green-warm);
  opacity: 0.7;
}
.divider path {
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.in-view .divider path { stroke-dashoffset: 0; }

.dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding-block: 28px;
  color: var(--line);
}
.dots span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
}

/* ───────────────── Hero ───────────────── */
.hero {
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
}
.hero-media {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 14px;
  overflow: hidden;
  background: var(--green-tint);
  position: relative;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.hero-media svg { width: 100%; height: 100%; display: block; }

/* Hero overlap: text block sits at the top, image slides up under the CTA */
.hero-overlap .hero-overlap-text {
  position: relative;
  z-index: 2;
}
.hero-overlap .hero-media {
  margin-top: -240px;
  position: relative;
  z-index: 1;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: auto;
  margin-bottom: 0;
}
.hero-overlap .hero-media img { display: block; width: 100%; height: auto; }

/* Hero split: text on the left, transparent image left-aligned in the right column */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-split .hero-split-text { min-width: 0; }
.hero-split .hero-split-media {
  align-self: center;
  justify-self: start;
  width: 100%;
  background: transparent;
}
.hero-split .hero-split-media img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}
@media (max-width: 920px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split .hero-split-media { order: -1; }
}

/* Eyebrow overlaid on top-left of a hero picture */
.hero-media .hero-eyebrow-over {
  position: absolute;
  top: clamp(20px, 4vw, 40px);
  left: clamp(20px, 4vw, 48px);
  z-index: 2;
  color: var(--green-mid);
  background: rgba(244, 238, 223, 0.72);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 0;
}

/* Hero centred: text in the middle, a wavy soft wash behind it */
.hero-centered {
  position: relative;
  text-align: center;
}
.hero-centered .hero-wash {
  position: absolute;
  inset: clamp(20px, 3vw, 36px) 0;
  width: 100%;
  height: calc(100% - clamp(40px, 6vw, 72px));
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 6px 18px rgba(31, 58, 44, 0.06));
}
.hero-centered > .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 60ch;
  margin: 0 auto;
  padding-block: clamp(56px, 9vw, 112px);
  padding-inline: clamp(8px, 4vw, 40px);
}
.hero-centered h1 { max-width: none; margin-inline: auto; }
.hero-centered .lede { margin-inline: auto; }
.hero-centered .hero-ctas { justify-content: center; }
.hero h1 {
  max-width: 22ch;
  margin-bottom: 18px;
}
.hero .lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-muted);
  max-width: 50ch;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ───────────────── Reveal animations ───────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in-view { opacity: 1; transform: none; }

/* Sequential reveals: data-stagger gives 80ms per child */
.stagger > * { opacity: 0; transform: translateY(10px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.stagger.in-view > * { opacity: 1; transform: none; }
.stagger.in-view > *:nth-child(1) { transition-delay: 0ms; }
.stagger.in-view > *:nth-child(2) { transition-delay: 80ms; }
.stagger.in-view > *:nth-child(3) { transition-delay: 160ms; }
.stagger.in-view > *:nth-child(4) { transition-delay: 240ms; }
.stagger.in-view > *:nth-child(5) { transition-delay: 320ms; }
.stagger.in-view > *:nth-child(6) { transition-delay: 400ms; }
.stagger.in-view > *:nth-child(7) { transition-delay: 480ms; }
.stagger.in-view > *:nth-child(8) { transition-delay: 560ms; }

/* ───────────────── Two-column ───────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.two-col.media-right .col-media { order: 2; }
.two-col .col-text > h2 { margin-bottom: 14px; }
.col-media {
  border-radius: 14px;
  overflow: hidden;
  background: var(--green-tint);
}
.col-media svg, .col-media img { width: 100%; height: 100%; object-fit: cover; }

/* ───────────────── Cards ───────────────── */
.cards-grid {
  display: grid;
  gap: 22px;
}
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line-faint);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--line);
}
.card .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-mid);
  font-weight: 500;
  transition: font-weight var(--dur) var(--ease);
}
.card:hover .price { font-weight: 600; }
.card .label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.card h3 { font-size: 1.2rem; }
.card .card-icon {
  width: 56px; height: 56px;
  color: var(--green);
  margin-bottom: 6px;
}
.card .card-cta { margin-top: auto; padding-top: 8px; }

/* Hoverable course-week card */
.week-card {
  background: var(--bg-card);
  border: 1px solid var(--line-faint);
  border-radius: 12px;
  padding: 22px 20px;
  min-height: 160px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.week-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.week-card .week-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green-warm);
  font-size: 0.95rem;
}
.week-card .week-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--green-mid); line-height: 1.3; }
.week-card .week-body { font-size: 0.92rem; color: var(--ink-muted); }
.week-card .week-metaphor {
  position: absolute;
  inset: 0;
  background: var(--green-mid);
  color: var(--bg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.4;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.week-card:hover .week-metaphor { opacity: 1; transform: scale(1); }
.week-card .week-icon {
  width: 32px; height: 32px;
  color: var(--green-warm);
  margin-bottom: 4px;
}

/* ───────────────── Testimonials ───────────────── */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--line-faint);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.testimonial .quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--green-mid);
  font-style: italic;
}
.testimonial .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-soft);
  flex: none;
  overflow: hidden;
}
.testimonial .avatar svg { width: 100%; height: 100%; }
.testimonial .name { font-weight: 500; color: var(--ink); }
.testimonial .role { font-size: 0.85rem; color: var(--ink-muted); }

/* ───────────────── Empathy list ───────────────── */
.empathy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.empathy-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--line-faint);
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.empathy-list li::before {
  content: none;
}
.in-view .empathy-list li { opacity: 1; transform: none; }
.in-view .empathy-list li:nth-child(1) { transition-delay: 0ms; }
.in-view .empathy-list li:nth-child(2) { transition-delay: 100ms; }
.in-view .empathy-list li:nth-child(3) { transition-delay: 200ms; }
.in-view .empathy-list li:nth-child(4) { transition-delay: 300ms; }
.in-view .empathy-list li:nth-child(5) { transition-delay: 400ms; }
.in-view .empathy-list li:nth-child(6) { transition-delay: 500ms; }
.in-view .empathy-list li:nth-child(7) { transition-delay: 600ms; }
.in-view .empathy-list li:nth-child(8) { transition-delay: 700ms; }

/* ───────────────── Reusable blocks ───────────────── */

/* Block A — The book */
.block-book {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.book-mock {
  perspective: 1000px;
  display: flex;
  justify-content: center;
}
.book-cover {
  width: min(280px, 80%);
  aspect-ratio: 5 / 7;
  border-radius: 4px 8px 8px 4px;
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(2deg) translateY(0);
  transition: transform var(--dur-slow) var(--ease), filter var(--dur-slow) var(--ease);
  box-shadow:
    -16px 26px 36px -22px rgba(31,58,44,0.4),
    -4px 8px 18px -8px rgba(31,58,44,0.2);
  overflow: hidden;
  position: relative;
}
.book-cover::before {
  /* spine highlight */
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(90deg, rgba(0,0,0,0.18), rgba(0,0,0,0));
}
.book-mock:hover .book-cover {
  transform: rotateY(-16deg) rotateX(0deg) translateY(-6px);
  filter: drop-shadow(0 20px 24px rgba(31,58,44,0.2));
}

/* Block B — YouTube */
.block-youtube {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.yt-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.yt-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.yt-thumb svg.bg { width: 100%; height: 100%; }
.yt-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.yt-play .disc {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid;
  place-items: center;
  transition: transform var(--dur-slow) var(--ease);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}
.yt-thumb:hover .yt-play .disc { transform: scale(1.12); }
.yt-play .disc::after {
  content: '';
  width: 0; height: 0;
  border-left: 18px solid var(--green-mid);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* Block C — Monday sign-up */
.block-monday {
  background: var(--bg-card);
  border: 1px solid var(--line-faint);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.block-monday .monday-illust {
  aspect-ratio: 16 / 10;
  background: var(--green-tint);
  position: relative;
  overflow: hidden;
}
.block-monday .monday-illust svg,
.block-monday .monday-illust img { width: 100%; height: 100%; object-fit: cover; display: block; }
.block-monday .monday-text {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.block-monday.compact { grid-template-columns: 1fr; }
.block-monday.compact .monday-illust { display: none; }

/* Single-column signup row that sits below the block-monday card */
.signup-row {
  margin-top: clamp(20px, 3vw, 32px);
  background: var(--bg-card);
  border: 1px solid var(--line-faint);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 56px);
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.signup-row h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: 4px;
}
.signup-row .monday-form { max-width: 480px; margin-inline: auto; text-align: left; }

.monday-form {
  margin-top: 12px;
}
.monday-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.monday-form .input-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.monday-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 13px 16px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--bg);
  font: inherit;
  color: var(--ink);
  transition: border-color var(--dur) var(--ease);
}
.monday-form input[type="email"]:focus {
  outline: none;
  border-color: var(--green-mid);
}
.monday-form .btn .leaf {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 22px;
  height: 22px;
  pointer-events: none;
  opacity: 0;
  transition: transform 600ms var(--ease), opacity 600ms var(--ease);
}
.monday-form .btn.is-sent {
  background: var(--green-mid);
  padding-right: 38px;
}
.monday-form .btn.is-sent .arrow { display: none; }
.monday-form .btn.is-sent .leaf { transform: translateY(-50%) scale(1) rotate(-10deg); opacity: 1; }

/* Block D — Free call */
.block-call {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  background: var(--green-tint);
  padding: clamp(32px, 4vw, 56px);
  border-radius: 16px;
}
.block-call .call-media {
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.block-call .call-media img,
.block-call .call-media svg { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Small doodle illustrations inside fit-grid columns (no background, no frame) */
.fit-grid .col-doodle {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
  margin-bottom: 14px;
}

/* Section doodle: a small line illustration placed above a heading,
   centred, no background or frame. */
.section-doodle {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 10px;
}
.section-doodle.wide { max-width: 260px; }

/* Block E — Credentials strip */
.creds-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding-block: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.creds-strip .cred {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-muted);
  transition: color var(--dur) var(--ease);
  line-height: 1.4;
}
.creds-strip .cred:hover { color: var(--green-mid); }
.creds-strip .cred strong {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green-mid);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

/* ───────────────── Deep section block ───────────────── */
.deep-section {
  background: var(--green-deep);
  color: var(--bg);
  border-radius: 18px;
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 72px);
  text-align: center;
}
.deep-section h2 { color: #F6EFD9; }
.deep-section p { color: rgba(246,239,217,0.78); margin-inline: auto; }
.deep-section .price-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: #F6EFD9;
  font-weight: 500;
  margin: 24px 0 8px;
  letter-spacing: -0.02em;
}
.deep-section .price-note {
  color: rgba(246,239,217,0.7);
  font-size: 1rem;
  margin-bottom: 32px;
}
.deep-section .hero-ctas { justify-content: center; }
.deep-section .btn-primary { background: #F6EFD9; color: var(--green-deep); }
.deep-section .btn-primary:hover { background: #fff; }

/* ───────────────── Org panel (home page) ───────────────── */
.org-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  background: var(--bg-soft);
  border-radius: 16px;
  padding: clamp(32px, 4vw, 56px);
  transition: background-color var(--dur) var(--ease);
}
.org-panel:hover { background: color-mix(in srgb, var(--bg-soft) 80%, var(--green-tint)); }
.org-panel .org-illust {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}
.org-panel .org-illust img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ───────────────── About narrative ───────────────── */
.long-prose {
  max-width: 64ch;
  margin-inline: auto;
}
.long-prose h2 { margin-bottom: 14px; margin-top: 8px; }
.long-prose p { font-size: 1.08rem; line-height: 1.75; color: var(--ink); }
.long-prose p + p { margin-top: 1em; }
.long-prose .eyebrow { margin-bottom: 10px; }
.long-prose section + section { border-top: 1px solid var(--line-faint); padding-top: clamp(40px, 6vw, 64px); margin-top: clamp(40px, 6vw, 64px); }

/* ───────────────── About: alternating story rows ───────────────── */
.story-band { padding-block: clamp(64px, 9vw, 116px); }
.story-band + .story-band { padding-top: 0; }
.story-band.soft { background: var(--bg-soft); padding-block: clamp(64px, 9vw, 116px); }
.story-band .two-col { align-items: center; }
.story-row .col-media { aspect-ratio: 4 / 3; align-self: center; }
.story-row .lead-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--green-mid);
  margin: 0 0 22px;
  max-width: 18ch;
}
.story-row .story-aside {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 14px 0 24px;
}
.story-row h2 { margin-bottom: 0; }
.story-row p { font-size: 1.06rem; line-height: 1.6; margin: 0 0 2em; }
.story-row p:last-child { margin-bottom: 0; }

/* Credentials — two-column panel on a wash */
.cred-panel {
  background: var(--bg-card);
  border: 1px solid var(--line-faint);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-card);
}
.cred-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(32px, 4vw, 56px);
}
.cred-grid li {
  position: relative;
  padding: 18px 0 18px 26px;
  border-bottom: 1px solid var(--line-faint);
  font-size: 1.05rem;
  line-height: 1.5;
}
.cred-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25px;
  width: 8px; height: 8px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--green-warm);
}
@media (max-width: 720px) {
  .cred-grid { grid-template-columns: 1fr; }
  .story-row .lead-line { max-width: none; }
}

/* ───────────────── Counted numbers ───────────────── */
.count-up { display: inline-block; }

/* ───────────────── Footer ───────────────── */
.footer {
  background: var(--green-deep);
  color: rgba(246,239,217,0.82);
  padding: clamp(56px, 8vw, 96px) 0 32px;
  margin-top: clamp(56px, 8vw, 100px);
}
.footer h3 { color: #F6EFD9; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  margin-bottom: 56px;
}
.footer .monday-form input[type="email"] {
  background: rgba(255,255,255,0.05);
  border-color: rgba(246,239,217,0.2);
  color: #F6EFD9;
}
.footer .monday-form input[type="email"]::placeholder { color: rgba(246,239,217,0.4); }
.footer .monday-form label { color: rgba(246,239,217,0.6); }
.footer .monday-form .btn-primary { background: #F6EFD9; color: var(--green-deep); }
.footer .monday-form .btn-primary:hover { background: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.footer-links a {
  display: inline-block;
  color: rgba(246,239,217,0.78);
  padding: 4px 10px;
  margin-left: -10px;
  border-radius: 999px;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.footer-links a:hover { color: #F6EFD9; background-color: rgba(246,239,217,0.08); }
.footer-meta {
  border-top: 1px solid rgba(246,239,217,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: rgba(246,239,217,0.6);
}
.social-links { display: flex; gap: 16px; }
.social-links a { color: rgba(246,239,217,0.7); transition: color var(--dur) var(--ease); }
.social-links a:hover { color: #F6EFD9; }
.social-links svg { width: 20px; height: 20px; }

/* ───────────────── Lists styled as cards ───────────────── */
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.price-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-faint);
  align-items: baseline;
}
.price-list li:last-child { border-bottom: 0; }
.price-list .name { font-family: var(--font-display); color: var(--green-mid); font-size: 1.2rem; }
.price-list .note { display: block; font-family: var(--font-body); color: var(--ink-muted); font-size: 0.95rem; margin-top: 4px; font-style: normal; }
.price-list .amt { font-family: var(--font-display); color: var(--green-mid); font-size: 1.2rem; font-weight: 500; white-space: nowrap; }

/* Two-column "for / not for" */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.fit-grid h3 { color: var(--green-mid); margin-bottom: 12px; }
.fit-grid .col-not h3 { color: var(--accent); }

/* ───────────────── "momenting" — Charles's named idea ───────────────── */
.momenting {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--green-warm);
}
/* First-use affordance: dotted underline + quiet definition on hover or focus */
.momenting-def {
  position: relative;
  cursor: help;
  border-bottom: 1px dotted currentColor;
  padding-bottom: 1px;
}
.momenting-def::after {
  content: attr(data-def);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 32ch;
  background: #1F3A2C;
  color: #F6EFD9;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: left;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(31,58,44,0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 6;
}
.momenting-def:hover::after,
.momenting-def:focus::after,
.momenting-def:focus-visible::after { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Lead testimonial — real quote spanning the proof grid */
.testimonial.lead { grid-column: 1 / -1; }
.testimonial.lead .quote { font-size: 1.22rem; max-width: 64ch; }

/* Endorsement grid with two cards, centred */
.cards-grid.three.duo { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin-inline: auto; }
@media (max-width: 920px) {
  .cards-grid.three.duo { grid-template-columns: 1fr; }
}

/* Week-card hover: metaphor line plus plain description beneath */
.week-metaphor .met-desc {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.92;
}

/* ───────────────── Mobile ───────────────── */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .two-col, .block-book, .block-youtube, .block-monday, .block-call, .org-panel,
  .cards-grid.four, .cards-grid.three, .fit-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .two-col.media-right .col-media { order: 0; }
  .creds-strip { grid-template-columns: repeat(2, 1fr); }
  .week-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-grid { gap: 36px; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .creds-strip { grid-template-columns: 1fr; gap: 18px; }
  .week-grid { grid-template-columns: 1fr !important; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ───────────────── Reduced motion ───────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal, .stagger > *, .empathy-list li { opacity: 1; transform: none; }
  .page-entry { display: none; }
  .divider path { stroke-dashoffset: 0; }
}
