/* =========================================================================
   Wild Heart Yoga · Holistic Healing
   Shared stylesheet
   Design direction: "Twilight Somatic" — grounded in the meaning of *yin*
   (the dark, inward, receptive, lunar principle). Deep sage twilight fields,
   warm oat neutrals, a sparing dusty-rose feminine accent. Calm, held, safe.
   ========================================================================= */

/* ------------------------------ Tokens --------------------------------- */
:root {
  /* Color */
  --ink:        #2A2622;  /* warm near-black — primary text, darkest fields */
  --sage-deep:  #3E4A3A;  /* deep grounding sage — hero + dark sections     */
  --sage:       #5E6B54;  /* mid sage — brand                               */
  --sage-soft:  #97A188;  /* light sage — borders, muted marks              */
  --linen:      #E9E3D6;  /* warm oat — primary light background            */
  --linen-deep: #DFD7C6;  /* deeper oat — alternating sections              */
  --cream:      #F5F1E9;  /* lightest — text on dark, cards on dark         */
  --rose:       #BC8079;  /* dusty rose — signature feminine accent, sparing*/
  --rose-soft:  #D8B4AE;  /* soft rose — subtle fills                       */
  --stone:      #7C7468;  /* warm grey — secondary text                     */

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale */
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.5rem);
  --step-2:  clamp(1.55rem, 1.4rem + 0.75vw, 2.1rem);
  --step-3:  clamp(2rem, 1.7rem + 1.5vw, 3.1rem);
  --step-4:  clamp(2.6rem, 2rem + 3vw, 4.6rem);
  --step-5:  clamp(3.2rem, 2.3rem + 4.5vw, 6rem);

  /* Space + shape */
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --radius: 2px;         /* nearly square — grounded, not bubbly */
  --radius-lg: 10px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------ Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ------------------------------ Type ----------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 380;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
.eyebrow {
  font-family: var(--body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 0.7rem;
  opacity: 0.7;
}
.lede { font-size: var(--step-1); line-height: 1.5; color: var(--stone); }
em, .italic { font-style: italic; }

/* ------------------------------ Layout --------------------------------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto;
        padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-linen      { background: var(--linen); }
.bg-linen-deep { background: var(--linen-deep); }
.bg-sage       { background: var(--sage-deep); color: var(--cream); }
.bg-ink        { background: var(--ink); color: var(--cream); }
.bg-sage .eyebrow, .bg-ink .eyebrow { color: var(--rose-soft); }
.bg-sage .lede, .bg-ink .lede { color: rgba(245,241,233,0.72); }

/* soft grain on dark fields for tactile warmth */
.grain { position: relative; isolation: isolate; }
.grain::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ------------------------------ Buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: var(--step--1); letter-spacing: 0.04em;
  padding: 0.85rem 1.6rem; border-radius: var(--radius);
  border: 1px solid transparent; text-decoration: none;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
              color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--sage-deep); color: var(--cream); }
.btn--primary:hover { background: var(--ink); }
.btn--rose { background: var(--rose); color: var(--cream); }
.btn--rose:hover { background: #a86a63; }
.btn--ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: rgba(255,255,255,0.08); }
.bg-linen .btn--ghost:hover, .bg-linen-deep .btn--ghost:hover { background: rgba(42,38,34,0.05); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.textlink {
  font-weight: 600; text-decoration: none; color: var(--sage);
  border-bottom: 1px solid var(--sage-soft); padding-bottom: 2px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.textlink:hover { color: var(--ink); border-color: var(--ink); }
.bg-sage .textlink, .bg-ink .textlink { color: var(--rose-soft); border-color: var(--rose-soft); }
.bg-sage .textlink:hover, .bg-ink .textlink:hover { color: var(--cream); border-color: var(--cream); }

/* ------------------------------ Header --------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-solid {
  background: color-mix(in srgb, var(--linen) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 rgba(42,38,34,0.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 1.1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none;
         color: inherit; line-height: 1; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  border: 1px solid currentColor;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-name { font-family: var(--display); font-size: 1.05rem; font-weight: 460;
              letter-spacing: 0.01em; }
.brand-name small { display: block; font-family: var(--body); font-weight: 600;
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--stone); margin-top: 3px; }
.on-dark .brand-name small { color: var(--sage-soft); }

.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: var(--step--1); font-weight: 500;
  letter-spacing: 0.02em; position: relative; padding-block: 4px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--rose); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { margin-left: 0.4rem; }

.nav-toggle { display: none; background: none; border: 0; padding: 0.4rem;
  color: inherit; }
.nav-toggle svg { width: 26px; height: 26px; }

/* header sitting over dark hero uses light text until scrolled */
.on-dark { color: var(--cream); }
.on-dark.is-solid { color: var(--ink); }

@media (max-width: 980px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    flex-direction: column; align-items: flex-start; gap: 1.4rem;
    background: var(--sage-deep); color: var(--cream);
    padding: 6rem var(--gutter) 2rem; transform: translateX(100%);
    transition: transform 0.4s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,0.25);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a::after { background: var(--rose-soft); }
  .nav-toggle { display: inline-flex; z-index: 60; }
  .nav-cta { margin: 0.5rem 0 0; }
}

/* ------------------------------ Hero ----------------------------------- */
.hero {
  position: relative; overflow: clip; color: var(--cream);
  background:
    radial-gradient(120% 90% at 70% 10%, #4a573f 0%, var(--sage-deep) 45%, #313b2e 100%);
  min-height: min(92vh, 820px);
  display: flex; align-items: center;
  margin-top: calc(-1 * var(--header-h, 68px)); /* pull under sticky header */
  padding-top: var(--header-h, 68px);
}
.hero__inner {
  display: grid; grid-template-columns: 1.15fr 1fr; align-items: center;
  gap: clamp(2rem, 5vw, 4rem); width: 100%;
}
.hero__eyebrow { color: var(--rose-soft); }
.hero h1 {
  font-size: var(--step-5); font-weight: 340; line-height: 1.0;
  margin: 1rem 0 1.25rem; max-width: 12ch;
}
.hero h1 em { font-weight: 340; color: var(--rose-soft); }
.hero__lede { font-size: var(--step-1); line-height: 1.55;
  color: rgba(245,241,233,0.82); max-width: 46ch; margin-bottom: 2rem; }
.hero .btn--ghost { color: var(--cream); }

/* signature: breath orb */
.breath { display: grid; place-items: center; aspect-ratio: 1; position: relative; }
.breath__stage { position: relative; width: min(80%, 420px); aspect-ratio: 1; }
.breath__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(245,241,233,0.18);
}
.breath__core {
  position: absolute; inset: 18%; border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, rgba(216,180,174,0.55), rgba(188,128,121,0.28) 45%, rgba(94,107,84,0.18) 72%, transparent 78%);
  box-shadow: 0 0 80px 10px rgba(216,180,174,0.15);
  transform-origin: center;
  animation: breathe 11s var(--ease) infinite;
}
.breath__glow {
  position: absolute; inset: 30%; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,241,233,0.22), transparent 70%);
  animation: breathe 11s var(--ease) infinite;
}
.breath__label {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: var(--display); font-style: italic; font-size: var(--step-1);
  color: rgba(245,241,233,0.9); letter-spacing: 0.02em; text-align: center;
}
.breath__label span { position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  white-space: nowrap; }
.breath__label .in  { animation: label-in 11s var(--ease) infinite; }
.breath__label .out { animation: label-out 11s var(--ease) infinite; }

@keyframes breathe {
  0%   { transform: scale(0.82); }
  36%  { transform: scale(1.12); }   /* inhale ~4s */
  55%  { transform: scale(1.12); }   /* hold */
  100% { transform: scale(0.82); }   /* long exhale */
}
@keyframes label-in  { 0%,40% { opacity: 1; } 48%,100% { opacity: 0; } }
@keyframes label-out { 0%,48% { opacity: 0; } 56%,96% { opacity: 1; } 100% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .breath__core, .breath__glow { animation: none; transform: scale(1); }
  .breath__label .in { opacity: 1; animation: none; }
  .breath__label .out { opacity: 0; animation: none; }
}
@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .breath { order: -1; max-width: 320px; margin-inline: auto; }
  .hero { min-height: auto; padding-block: 4rem calc(4rem + var(--header-h, 68px)); }
}

/* --------------------------- Content blocks ---------------------------- */
.section-head { max-width: 60ch; }
.section-head h2 { font-size: var(--step-3); margin: 0.9rem 0 0; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow { display: block; margin-bottom: 0.4rem; }

.split { display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--wide { grid-template-columns: 1.1fr 0.9fr; }
.split p + p { margin-top: 1rem; }
@media (max-width: 820px) { .split, .split--wide { grid-template-columns: 1fr; } }

.prose p { max-width: 60ch; }
.prose p + p { margin-top: 1.1rem; }
.prose h3 { font-size: var(--step-2); margin: 2rem 0 0.75rem; }

/* focus-area cards */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--cream); border: 1px solid rgba(42,38,34,0.08);
  border-radius: var(--radius); padding: 1.6rem 1.5rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(42,38,34,0.4); }
.bg-sage .card, .bg-ink .card {
  background: rgba(245,241,233,0.06); border-color: rgba(245,241,233,0.14);
  color: var(--cream);
}
.card__num { font-family: var(--display); font-size: var(--step-1); color: var(--rose);
  display: block; margin-bottom: 0.5rem; }
.card h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.card p { color: var(--stone); font-size: var(--step--1); line-height: 1.6; }
.bg-sage .card p, .bg-ink .card p { color: rgba(245,241,233,0.72); }

/* pricing / service rows */
.offer {
  border-top: 1px solid rgba(42,38,34,0.15); padding-block: 1.6rem;
  display: grid; grid-template-columns: 1fr auto; gap: 1rem 2rem; align-items: start;
}
.offer:last-child { border-bottom: 1px solid rgba(42,38,34,0.15); }
.offer__body h3 { font-size: var(--step-2); }
.offer__body p { color: var(--stone); margin-top: 0.4rem; max-width: 52ch; }
.offer__meta { text-align: right; }
.offer__price { font-family: var(--display); font-size: var(--step-2); }
.offer__unit { display: block; font-size: var(--step--1); color: var(--stone); }
@media (max-width: 560px) {
  .offer { grid-template-columns: 1fr; }
  .offer__meta { text-align: left; }
}

/* quote */
.quote { max-width: 34rem; margin-inline: auto; text-align: center; }
.quote blockquote { font-family: var(--display); font-style: italic; font-weight: 340;
  font-size: var(--step-3); line-height: 1.25; }
.quote cite { display: block; margin-top: 1.5rem; font-style: normal;
  font-size: var(--step--1); letter-spacing: 0.16em; text-transform: uppercase; }

/* image placeholder — clearly marked, swappable */
.ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    linear-gradient(135deg, rgba(151,161,136,0.35), rgba(188,128,121,0.28)),
    var(--linen-deep);
  display: grid; place-items: center; min-height: 260px; aspect-ratio: 4/5;
  border: 1px dashed rgba(42,38,34,0.25);
}
.ph--wide { aspect-ratio: 16/10; }
.ph__note {
  font-size: var(--step--1); color: var(--ink); background: rgba(245,241,233,0.85);
  padding: 0.4rem 0.8rem; border-radius: var(--radius); max-width: 80%;
  text-align: center; line-height: 1.4;
}

/* --------------------------- Forms / capture --------------------------- */
.capture {
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 120% at 20% 0%, #4a573f, var(--sage-deep) 60%, #333d2f);
  color: var(--cream); padding: clamp(2rem, 5vw, 4rem);
}
.field-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.field { display: flex; flex-direction: column; gap: 0.35rem; flex: 1 1 200px; }
.field label { font-size: var(--step--1); font-weight: 600; letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  font: inherit; padding: 0.8rem 0.9rem; border-radius: var(--radius);
  border: 1px solid rgba(42,38,34,0.18); background: var(--cream); color: var(--ink);
  width: 100%; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(188,128,121,0.25);
}
.form-note { font-size: var(--step--1); color: var(--stone); margin-top: 0.6rem; }
.bg-sage .form-note, .capture .form-note { color: rgba(245,241,233,0.6); }
.form-success {
  display: none; padding: 1rem 1.2rem; border-radius: var(--radius);
  background: rgba(245,241,233,0.12); border: 1px solid rgba(245,241,233,0.25);
  font-size: var(--step--1);
}
.form-success.is-visible { display: block; }
.hp { position: absolute; left: -9999px; }  /* honeypot */

/* --------------------------- FAQ / details ----------------------------- */
.faq { max-width: 780px; }
.faq details {
  border-bottom: 1px solid rgba(42,38,34,0.15); padding: 1.25rem 0;
}
.faq summary {
  font-family: var(--display); font-size: var(--step-1); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--body); color: var(--rose);
  font-size: 1.4rem; line-height: 1; transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--stone); margin-top: 0.8rem; max-width: 68ch; }

/* --------------------------- Locked / member ---------------------------- */
.locked {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(42,38,34,0.12); background: var(--cream);
}
.locked__thumb { aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(62,74,58,0.9), rgba(42,38,34,0.9));
  display: grid; place-items: center; color: rgba(245,241,233,0.85); }
.locked__thumb svg { width: 34px; height: 34px; }
.locked__body { padding: 1.2rem 1.3rem; }
.locked__body h3 { font-size: var(--step-1); }
.locked__body p { color: var(--stone); font-size: var(--step--1); margin-top: 0.4rem; }

/* ------------------------------ Footer --------------------------------- */
.site-footer { background: var(--ink); color: var(--cream); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.site-footer h4 { font-family: var(--body); font-weight: 700; font-size: var(--step--1);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-soft);
  margin-bottom: 1rem; }
.footer-nav { list-style: none; display: grid; gap: 0.6rem; }
.footer-nav a { text-decoration: none; opacity: 0.85; font-size: var(--step--1); }
.footer-nav a:hover { opacity: 1; color: var(--rose-soft); }
.footer-brand p { color: rgba(245,241,233,0.7); font-size: var(--step--1);
  max-width: 38ch; margin-top: 0.8rem; }
.socials { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.socials a { width: 38px; height: 38px; border: 1px solid rgba(245,241,233,0.25);
  border-radius: 50%; display: grid; place-items: center; transition: 0.3s var(--ease); }
.socials a:hover { background: var(--rose); border-color: var(--rose); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(245,241,233,0.14);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: var(--step--1); color: rgba(245,241,233,0.55); }
.disclaimer { font-size: 0.78rem; line-height: 1.6; color: rgba(245,241,233,0.5);
  max-width: 80ch; margin-top: 1.2rem; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; } }

/* ------------------------------ Reveal --------------------------------- */
.reveal { opacity: 0; transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------ Utility -------------------------------- */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1.1rem; }
.measure { max-width: 62ch; }
.page-hero { padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem); }
.page-hero h1 { font-size: var(--step-4); font-weight: 340; margin-top: 0.8rem; max-width: 16ch; }
.page-hero .lede { margin-top: 1.2rem; }

/* ============================ v2 additions ============================= */
/* real logo in brand */
.brand-logo { width: 44px; height: 44px; object-fit: contain; display: block; flex: none; }
.brand-logo--cream { display: none; }
.on-dark:not(.is-solid) .brand-logo--color { display: none; }
.on-dark:not(.is-solid) .brand-logo--cream { display: block; }

/* small uppercase label inside cards (holistic pillars) */
.klabel { font-family: var(--body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose);
  display: block; margin-bottom: 0.5rem; }
.bg-sage .klabel, .bg-ink .klabel { color: var(--rose-soft); }

/* chips (Yin benefits) */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { border: 1px solid var(--sage-soft); border-radius: 100px;
  padding: 0.4rem 0.95rem; font-size: var(--step--1); color: var(--sage-deep);
  background: rgba(151,161,136,0.10); }

/* program week cards */
.weeks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 640px) { .weeks { grid-template-columns: 1fr; } }
.week { background: var(--cream); border: 1px solid rgba(42,38,34,0.08);
  border-radius: var(--radius); padding: 1.3rem 1.4rem; display: flex; gap: 1rem; }
.week__n { font-family: var(--display); font-size: var(--step-2); color: var(--rose);
  line-height: 1; flex: none; width: 2.4ch; }
.week__b h3 { font-size: var(--step-1); margin-bottom: 0.25rem; color: var(--ink); }
.week__b p { color: var(--stone); font-size: var(--step--1); }

/* video / thumbnail cards */
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .videos { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .videos { grid-template-columns: 1fr; } }
.vid { border-radius: var(--radius); overflow: hidden; background: var(--cream);
  border: 1px solid rgba(42,38,34,0.10); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.vid:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(42,38,34,0.4); }
.vid__thumb { aspect-ratio: 16/9; position: relative; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(62,74,58,0.92), rgba(42,38,34,0.92)); color: var(--cream); }
.vid__thumb .ph__note { position: absolute; bottom: 8px; left: 8px; right: 8px; }
.vid__play { width: 54px; height: 54px; border-radius: 50%; background: rgba(245,241,233,0.16);
  border: 1px solid rgba(245,241,233,0.5); display: grid; place-items: center; }
.vid__play svg { width: 22px; height: 22px; margin-left: 3px; }
.vid__b { padding: 1rem 1.2rem; }
.vid__b h3 { font-size: var(--step-0); font-family: var(--display); font-weight: 420; }
.vid__b a { color: var(--sage); font-weight: 600; font-size: var(--step--1); text-decoration: none;
  border-bottom: 1px solid var(--sage-soft); }
.vid__b a:hover { color: var(--ink); border-color: var(--ink); }

/* support / donate blocks */
.support { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 700px) { .support { grid-template-columns: 1fr; } }

/* full badge accent */
.badge-accent { width: min(300px, 70%); margin-inline: auto; display: block; }

/* location strip */
.locstrip { display: inline-flex; align-items: center; gap: 0.6rem; font-size: var(--step--1);
  letter-spacing: 0.04em; color: var(--stone); }
.locstrip svg { width: 18px; height: 18px; color: var(--rose); flex: none; }
.bg-sage .locstrip, .bg-ink .locstrip { color: rgba(245,241,233,0.75); }

/* price note */
.pricenote { font-size: var(--step--1); color: var(--stone); margin-top: 0.5rem; }
.offer__unit small { display:block; color: var(--sage); font-weight:600; }

/* real portrait photo (replaces the .ph slot on About) */
.portrait { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 30%;
  border-radius: var(--radius); display: block;
  box-shadow: 0 26px 60px -34px rgba(42,38,34,0.55); }

/* full-width photo banner (e.g., services) */
.banner { width: 100%; display: block; border-radius: var(--radius); object-fit: cover;
  box-shadow: 0 26px 60px -40px rgba(42,38,34,0.5); }

/* program cover art */
.program-cover { width: 100%; display: block; border-radius: var(--radius);
  border: 1px solid rgba(42,38,34,0.08); box-shadow: 0 26px 60px -38px rgba(42,38,34,0.55);
  transition: transform 0.4s var(--ease); }
.program-cover:hover { transform: translateY(-3px); }

/* responsive video embeds */
.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius);
  overflow: hidden; background: var(--ink); box-shadow: 0 20px 50px -32px rgba(42,38,34,0.5); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
iframe.vid__thumb { display: block; width: 100%; aspect-ratio: 16/9; border: 0; }

/* --- confirm-your-email modal (hard gate) --- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1.25rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(42,38,34,0.55); backdrop-filter: blur(3px); }
.modal__card { position: relative; z-index: 1; width: min(30rem, 100%); background: var(--cream);
  border-radius: var(--radius); padding: 2.4rem 2rem 2rem; text-align: center;
  box-shadow: 0 40px 90px -30px rgba(42,38,34,0.6); animation: modalIn 0.35s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__x { position: absolute; top: 0.6rem; right: 0.9rem; background: none; border: none;
  font-size: 1.6rem; line-height: 1; color: var(--stone); cursor: pointer; padding: 0.2rem; }
.modal__x:hover { color: var(--ink); }
.modal__mark { width: 62px; height: 62px; margin: 0 auto 1.1rem; border-radius: 50%;
  display: grid; place-items: center; background: rgba(151,161,136,0.18); color: var(--sage-deep); }
.modal__mark svg { width: 30px; height: 30px; }
.modal__card h2 { font-size: var(--step-2); margin-bottom: 0.7rem; }
.modal__card p { color: var(--stone); max-width: 40ch; margin: 0 auto 0.8rem; }
.modal__card .modal__fine { font-size: var(--step--1); color: var(--sage); }
.modal__card .btn { margin-top: 0.6rem; }
@media (prefers-reduced-motion: reduce) { .modal__card { animation: none; } }

/* --- welcome / unlock page --- */
.unlock { min-height: 100vh; display: grid; place-items: center; padding: 3rem 1.25rem;
  background: radial-gradient(120% 90% at 50% 0%, #4a573f 0%, var(--sage-deep) 45%, #313b2e 100%); color: var(--cream); }
.unlock__card { width: min(34rem, 100%); text-align: center; }
.unlock__logo { width: 92px; height: 92px; margin: 0 auto 1.5rem; display: block; }
.unlock h1 { font-size: var(--step-4); font-weight: 340; line-height: 1.05; margin-bottom: 0.9rem; }
.unlock h1 em { color: var(--rose-soft); font-weight: 340; }
.unlock__lede { color: rgba(245,241,233,0.82); font-size: var(--step-1); margin: 0 auto 2rem; max-width: 42ch; }
.unlock__actions { display: grid; gap: 1rem; max-width: 22rem; margin: 0 auto; }
.unlock__actions .btn { width: 100%; justify-content: center; }
.unlock__back { display: inline-block; margin-top: 1.8rem; color: rgba(245,241,233,0.7);
  font-size: var(--step--1); text-decoration: none; border-bottom: 1px solid rgba(245,241,233,0.3); }
.unlock__back:hover { color: var(--cream); }

/* ---- MailerLite embedded form, restyled to match the dark capture panel ---- */
.capture .ml-form-embedContainer,
.capture .ml-form-embedWrapper,
.capture .ml-form-embedBody,
.capture .ml-form-align-center,
.capture .ml-form-successBody {
  background: transparent !important; border: 0 !important; box-shadow: none !important;
  padding: 0 !important; margin: 0 !important; width: 100% !important; max-width: none !important; text-align: left !important;
}
/* hide MailerLite's built-in title/description — the panel already has its own heading */
.capture .ml-form-embedContent { display: none !important; }
.capture .ml-form-formContent { margin: 0 !important; }
.capture .ml-form-fieldRow { margin: 0 0 1rem !important; padding: 0 !important; }

/* input fields → cream, rounded, Mulish */
.capture .ml-form-fieldRow input.form-control,
.capture .ml-form-embedBody input.form-control,
.capture .ml-field-group input,
.capture .ml-form-fieldRow textarea {
  width: 100% !important; box-sizing: border-box !important; height: auto !important;
  background: var(--cream) !important; color: var(--ink) !important;
  border: 1px solid rgba(42,38,34,0.15) !important; border-radius: 12px !important;
  padding: 0.85rem 1rem !important; font-family: var(--body) !important; font-size: 1rem !important;
  line-height: 1.4 !important; box-shadow: none !important;
}
.capture .ml-form-fieldRow input.form-control::placeholder,
.capture .ml-field-group input::placeholder { color: var(--stone) !important; opacity: 1 !important; }
.capture .ml-form-fieldRow input.form-control:focus,
.capture .ml-field-group input:focus {
  border-color: var(--rose) !important; outline: none !important;
  box-shadow: 0 0 0 3px rgba(188,128,121,0.25) !important;
}
/* any visible labels → cream (on the dark panel) */
.capture .ml-form-fieldRow label,
.capture .ml-form-embedWrapper label { color: var(--cream) !important; font-family: var(--body) !important; }

/* submit button → rose pill, like the site's .btn--rose */
.capture .ml-form-embedSubmit { margin-top: 0.4rem !important; }
.capture .ml-form-embedSubmit button,
.capture .ml-form-embedSubmit button.primary,
.capture .ml-form-embedSubmit button.loading {
  width: 100% !important; background: var(--rose) !important; color: var(--cream) !important;
  border: 0 !important; border-radius: 100px !important; padding: 0.9rem 1.5rem !important;
  font-family: var(--body) !important; font-weight: 600 !important; font-size: 1rem !important;
  letter-spacing: 0.01em !important; cursor: pointer !important; transition: background 0.3s ease !important;
}
.capture .ml-form-embedSubmit button:hover { background: #a86d66 !important; }

/* success / permissions / branding text → readable on dark */
.capture .ml-form-successContent h4 { color: var(--cream) !important; font-family: var(--display) !important; font-weight: 420 !important; }
.capture .ml-form-successContent p,
.capture .ml-form-embedPermissions,
.capture .ml-form-embedPermissions p,
.capture .ml-form-embedMailerLite,
.capture .ml-form-embedMailerLite a { color: rgba(245,241,233,0.72) !important; font-family: var(--body) !important; }
