/* ============================================================
   Tracy Harris — Edition v4b · "Soft Modern Studio"
   Airy white canvas, sage green + dusty-rose accents.
   Structured, slightly asymmetric grid. Rounded image frames.
   Warm pill buttons. Full-bleed + 2-col sections; ONE card cluster.
   Self-contained look (no site.css). Uses /styles/tokens.css vars.
   ============================================================ */

/* ---------- LOCAL THEME VARS ---------- */
:root {
  --v4-bg: var(--p-white);
  --v4-bg-warm: var(--p-oatmeal);     /* #f6f4f1 */
  --v4-bg-cream: var(--p-cream);      /* #ece7de */
  --v4-sage: var(--p-sage);           /* #6e8e77 */
  --v4-sage-deep: #5a7a63;
  --v4-aztek: var(--p-aztek);         /* #1e3735 */
  --v4-rose: var(--p-dusty-rose);     /* #CC9989 */
  --v4-gold: var(--p-gold-mid);       /* #c9a46c */
  --v4-ink: var(--p-ink);             /* #313131 */
  --v4-mute: var(--p-mute);           /* #727272 */
  --v4-line: rgba(30, 55, 53, 0.12);

  --v4-radius: 14px;
  --v4-radius-sm: 8px;
  --v4-radius-lg: 22px;
  --v4-shadow: 0 18px 50px -28px rgba(30, 55, 53, 0.28);
  --v4-shadow-soft: 0 10px 30px -20px rgba(30, 55, 53, 0.22);

  --v4-wrap: 1200px;
  --v4-gutter: clamp(20px, 5vw, 56px);
}

/* ---------- RESET / BASE ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--v4-bg);
  color: var(--v4-ink);
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: var(--l-relaxed);
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; color: var(--v4-aztek); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.section { padding-block: clamp(56px, 9vw, 120px); }

/* ---------- TYPE PRIMITIVES ---------- */
.eyebrow {
  font-family: var(--f-sans-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--v4-sage);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--v4-rose);
  border-radius: 2px;
}
.eyebrow--light { color: #e9efe9; }
.eyebrow--light::before { background: var(--v4-gold); }

h1, h2, h3 { font-family: var(--f-serif-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--v4-sage); }

/* ---------- BUTTONS (warm pill system) ---------- */
.btn {
  --_bg: var(--v4-sage);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  background: var(--_bg);
  color: var(--_fg);
  border: 2px solid var(--_bg);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 24px -14px rgba(110, 142, 119, 0.7);
}
.btn:hover { transform: translateY(-2px); background: var(--v4-sage-deep); border-color: var(--v4-sage-deep); }
.btn--lg { padding: 18px 38px; font-size: 16px; }
.btn--solid { --_bg: var(--v4-sage); --_fg: #fff; }
.btn--outline {
  --_bg: transparent; --_fg: var(--v4-aztek);
  border-color: var(--v4-aztek);
  box-shadow: none;
}
.btn--outline:hover { background: var(--v4-aztek); border-color: var(--v4-aztek); color: #fff; }
.btn--on-dark {
  --_bg: var(--v4-gold); --_fg: var(--v4-aztek);
  box-shadow: 0 10px 24px -14px rgba(201, 164, 108, 0.8);
}
.btn--on-dark:hover { background: #d9b885; border-color: #d9b885; }

.textlink {
  font-weight: 600;
  font-size: 15px;
  color: var(--v4-aztek);
  border-bottom: 2px solid var(--v4-rose);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.textlink:hover { color: var(--v4-sage); border-color: var(--v4-sage); }
.textlink--dark { color: var(--v4-aztek); }
.textlink--light { color: #f3efe9; border-color: var(--v4-gold); }
.textlink--light:hover { color: #fff; border-color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--v4-line); box-shadow: 0 8px 24px -22px rgba(30,55,53,.4); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}
.nav__lead { display: flex; align-items: center; gap: 18px; }
.nav__brand { display: inline-flex; align-items: center; gap: 10px; }
.nav__mark { width: 20px; height: auto; }
.nav__name {
  font-family: var(--f-serif-display);
  font-size: 21px;
  color: var(--v4-aztek);
  letter-spacing: -0.01em;
}
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--v4-ink);
  position: relative;
  padding-block: 4px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--v4-sage); transition: width .25s ease;
}
.nav__links a:hover { color: var(--v4-aztek); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 11px 22px; font-size: 14px; }

/* view switcher */
.vswitch { position: relative; }
.vswitch__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-sans-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--v4-aztek);
  background: var(--v4-bg-cream);
  border: 1px solid var(--v4-line);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  cursor: pointer;
}
.vswitch__pre { color: var(--v4-mute); }
.vswitch__btn strong { font-weight: 700; }
.vswitch__chev { width: 14px; height: 14px; transition: transform .25s ease; }
.vswitch[data-open="true"] .vswitch__chev { transform: rotate(180deg); }
.vswitch__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 300px;
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: var(--v4-radius);
  box-shadow: var(--v4-shadow);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 110;
}
.vswitch[data-open="true"] .vswitch__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.vswitch__head {
  font-family: var(--f-sans-label);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v4-mute);
  margin: 6px 10px 10px;
}
.vswitch__item {
  display: block;
  padding: 11px 12px;
  border-radius: var(--v4-radius-sm);
  transition: background .18s ease;
}
.vswitch__item:hover { background: var(--v4-bg-warm); }
.vswitch__item.is-current { background: #eef3ee; }
.vswitch__name {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-serif-display);
  font-size: 17px;
  color: var(--v4-aztek);
}
.vswitch__tick {
  font-family: var(--f-sans-label);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--v4-sage);
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.vswitch__desc { display: block; font-size: 13px; color: var(--v4-mute); margin-top: 2px; }

/* burger + drawer */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: var(--v4-bg-cream);
  border: 1px solid var(--v4-line);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
}
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--v4-aztek); margin-inline: auto; transition: transform .25s ease, opacity .25s ease; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 76px 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--v4-line);
  box-shadow: var(--v4-shadow);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 95;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.drawer__links { display: flex; flex-direction: column; gap: 4px; padding: 18px var(--v4-gutter) 28px; }
.drawer__links a {
  font-family: var(--f-serif-display);
  font-size: 22px;
  color: var(--v4-aztek);
  padding: 10px 0;
  border-bottom: 1px solid var(--v4-line);
}
.drawer__cta { margin-top: 16px; font-family: var(--f-sans); font-size: 15px; }
body.drawer-open { overflow: hidden; }

/* ============================================================
   HERO — 2-col, copy left, photo in RIGHT column.
   Karl rule #1: the only person sits in the right-hand column,
   never centred behind text.
   ============================================================ */
.hero { background: linear-gradient(180deg, var(--v4-bg-warm) 0%, #fff 78%); overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 96px);
}
.hero__title {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.04;
  margin: 0 0 22px;
  max-width: 15ch; /* keeps to ~2 lines, Karl rule #5 */
}
.hero__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--v4-ink);
  max-width: 44ch;
  margin-bottom: 30px;
}
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 26px; }
.hero__stats {
  display: flex;
  gap: clamp(22px, 4vw, 48px);
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--v4-line);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--f-serif-display);
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--v4-aztek);
  line-height: 1;
}
.stat__label {
  font-family: var(--f-sans-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--v4-mute);
}
.hero__media {
  margin: 0;
  position: relative;
  border-radius: var(--v4-radius-lg);
  overflow: hidden;
  box-shadow: var(--v4-shadow);
  aspect-ratio: 4 / 5;
}
.hero__media::after {
  /* soft rose corner glow framing */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  pointer-events: none;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center; /* figure pushed toward right third */
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--v4-aztek);
  color: #eaf0ea;
  overflow: hidden;
  padding-block: 16px;
  border-block: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  font-family: var(--f-serif-display);
  font-style: italic;
  font-size: 20px;
  animation: v4marquee 34s linear infinite;
}
.marquee__track span { opacity: .92; }
.marquee__track i { color: var(--v4-gold); font-style: normal; }
@keyframes v4marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   RECOGNITION — centred, generous white space
   ============================================================ */
.recognition { background: #fff; }
.recognition__inner { max-width: 880px; margin-inline: auto; text-align: center; }
.recognition__inner .eyebrow { justify-content: center; }
.recognition__title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  margin: 0 auto 40px;
  max-width: 18ch;
}
.recognition__list {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: left;
}
.recognition__list li {
  position: relative;
  padding: 20px 24px 20px 56px;
  background: var(--v4-bg-warm);
  border-radius: var(--v4-radius);
  border: 1px solid var(--v4-line);
  font-size: 17px;
  color: var(--v4-ink);
}
.recognition__list li::before {
  content: "";
  position: absolute;
  left: 22px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--v4-rose);
  box-shadow: 0 0 0 5px rgba(204,153,137,.16);
}
.recognition__close {
  font-family: var(--f-serif-display);
  font-style: italic;
  font-size: clamp(19px, 2vw, 24px);
  color: var(--v4-aztek);
  max-width: 40ch;
  margin: 0 auto;
  line-height: 1.4;
}

/* ============================================================
   PATHWAY — the ONE focused card cluster (3 cards)
   Cards are a different colour from the page bg (Karl rule #4)
   ============================================================ */
.pathway { background: var(--v4-bg-warm); }
.pathway__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.pathway__head h2 { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.14; max-width: 22ch; }
.pathway__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: var(--v4-radius-lg);
  padding: 36px 32px 38px;
  box-shadow: var(--v4-shadow-soft);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--v4-shadow); }
.pillar__num {
  font-family: var(--f-serif-display);
  font-style: italic;
  font-size: 18px;
  color: var(--v4-rose);
  display: inline-block;
  margin-bottom: 22px;
}
.pillar__name {
  font-family: var(--f-serif-display);
  font-size: 30px;
  color: var(--v4-aztek);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 14px;
}
.pillar__name::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 36px; height: 3px; background: var(--v4-sage); border-radius: 3px;
}
.pillar p { color: var(--v4-ink); font-size: 15.5px; margin: 0; }
.pathway__link { margin-top: 38px; }

/* ============================================================
   FREE CLASS — 2-col, text left, photo right
   ============================================================ */
.class { background: #fff; }
.class__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.class__title { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.12; margin-bottom: 22px; max-width: 16ch; }
.class p { font-size: 16.5px; max-width: 48ch; }
.class__points { display: grid; gap: 14px; margin: 26px 0 34px; max-width: 46ch; }
.class__points li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  color: var(--v4-ink);
}
.class__points li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--v4-sage);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/72% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/72% no-repeat;
}
.class__media {
  margin: 0;
  border-radius: var(--v4-radius-lg);
  overflow: hidden;
  box-shadow: var(--v4-shadow);
  aspect-ratio: 4 / 5;
}
.class__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }

/* ============================================================
   PROOF — placeholder quote cards (different colour from bg)
   ============================================================ */
.proof { background: var(--v4-bg-warm); }
.proof__head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px, 5vw, 54px); }
.proof__head .eyebrow { justify-content: center; }
.proof__head h2 { font-size: clamp(26px, 3.4vw, 42px); line-height: 1.12; }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: var(--v4-radius-lg);
  padding: 34px 30px 30px;
  box-shadow: var(--v4-shadow-soft);
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: var(--f-serif-display);
  font-size: 64px;
  line-height: 1;
  color: var(--v4-rose);
  display: block;
  margin-bottom: 6px;
}
.quote p {
  font-family: var(--f-serif-display);
  font-style: italic;
  font-size: 19px;
  color: var(--v4-aztek);
  line-height: 1.4;
  margin-bottom: 18px;
}
.quote cite {
  font-family: var(--f-sans-label);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--v4-mute);
}
.proof__note {
  text-align: center;
  margin: 40px auto 0;
  max-width: 50ch;
  font-size: 14.5px;
  color: var(--v4-mute);
}

/* ============================================================
   PRODUCTS — two cards (one light, one dark) — clear separation
   ============================================================ */
.products { background: #fff; }
.products__head { max-width: 700px; margin-bottom: clamp(34px, 5vw, 52px); }
.products__head h2 { font-size: clamp(26px, 3.4vw, 42px); line-height: 1.12; max-width: 20ch; }
.products__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product {
  display: flex;
  flex-direction: column;
  background: var(--v4-bg-warm);
  border: 1px solid var(--v4-line);
  border-radius: var(--v4-radius-lg);
  padding: 40px 38px;
  box-shadow: var(--v4-shadow-soft);
}
.product--dark {
  background: var(--v4-aztek);
  border-color: var(--v4-aztek);
  color: #e9efe9;
}
.product__top { margin-bottom: 18px; }
.product__name { font-family: var(--f-serif-display); font-size: clamp(24px, 2.6vw, 32px); color: var(--v4-aztek); margin-bottom: 8px; }
.product--dark .product__name { color: #fff; }
.product__kind {
  font-family: var(--f-sans-label);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--v4-sage);
  margin: 0;
}
.product--dark .product__kind { color: var(--v4-gold); }
.product__body { font-size: 16px; color: var(--v4-ink); flex: 1; }
.product--dark .product__body { color: #d7e0d8; }
.product__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; margin-top: 26px; }

/* ============================================================
   MEET TRACY — 2-col, photo LEFT, text RIGHT
   ============================================================ */
.meet { background: var(--v4-bg-cream); }
.meet__inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.meet__media {
  margin: 0;
  position: relative;
  border-radius: var(--v4-radius-lg);
  overflow: hidden;
  box-shadow: var(--v4-shadow);
  aspect-ratio: 3 / 4;
}
.meet__media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.meet__mark {
  position: absolute;
  right: 18px; bottom: 18px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: var(--v4-shadow-soft);
  margin: 0;
}
.meet__mark img { width: 18px; height: auto; }
.meet__title { font-size: clamp(28px, 3.6vw, 46px); line-height: 1.1; margin-bottom: 24px; max-width: 16ch; }
.meet__text p { font-size: 16.5px; max-width: 50ch; }

/* ============================================================
   PODCAST — sage band, light type
   ============================================================ */
.podcast { background: var(--v4-sage); color: #f3f7f3; }
.podcast__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.podcast__title { color: #fff; font-size: clamp(26px, 3.4vw, 42px); line-height: 1.12; margin-bottom: 18px; max-width: 18ch; }
.podcast__text p { color: #e7efe8; font-size: 17px; max-width: 46ch; margin-bottom: 28px; }
.podcast .btn--outline { --_fg: #fff; border-color: rgba(255,255,255,.85); }
.podcast .btn--outline:hover { background: #fff; color: var(--v4-sage-deep); border-color: #fff; }
.podcast__art { display: flex; justify-content: center; }
.waves { display: flex; align-items: flex-end; gap: 7px; height: 130px; }
.waves span {
  width: 8px;
  background: rgba(255,255,255,.55);
  border-radius: var(--r-pill);
  animation: v4wave 1.4s ease-in-out infinite;
}
.waves span:nth-child(odd) { background: var(--v4-gold); }
.waves span:nth-child(1){height:30%;animation-delay:0s}
.waves span:nth-child(2){height:62%;animation-delay:.1s}
.waves span:nth-child(3){height:90%;animation-delay:.2s}
.waves span:nth-child(4){height:48%;animation-delay:.3s}
.waves span:nth-child(5){height:74%;animation-delay:.4s}
.waves span:nth-child(6){height:100%;animation-delay:.5s}
.waves span:nth-child(7){height:40%;animation-delay:.6s}
.waves span:nth-child(8){height:84%;animation-delay:.7s}
.waves span:nth-child(9){height:54%;animation-delay:.8s}
.waves span:nth-child(10){height:96%;animation-delay:.9s}
.waves span:nth-child(11){height:36%;animation-delay:1s}
.waves span:nth-child(12){height:68%;animation-delay:1.1s}
@keyframes v4wave { 0%,100%{ transform: scaleY(.5); } 50%{ transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .waves span { animation: none; } }

/* ============================================================
   FINAL INVITATION — dark section; text panel LEFT, photo in a
   dedicated RIGHT column so the figure sits firmly in the
   far-right third and never under the text (Karl rules 1,2,3).
   ============================================================ */
.invite { background: var(--v4-aztek); color: #fff; }
.invite__inner {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 110px);
}
.invite__panel { max-width: 34ch; }
.invite__title {
  color: #fff;
  font-size: clamp(29px, 3.8vw, 48px);
  line-height: 1.1;
  margin-bottom: 8px;
  max-width: 20ch; /* keeps to ~2 lines, Karl rule #5 */
}
.invite__sub { font-family: var(--f-serif-display); font-style: italic; font-size: clamp(20px, 2.4vw, 30px); color: var(--v4-gold); margin-bottom: 34px; }
.invite__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 26px; }
.invite__media {
  margin: 0;
  border-radius: var(--v4-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(0,0,0,.6);
  aspect-ratio: 4 / 5;
}
.invite__media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }

/* ============================================================
   FOOTER — matches global links/structure (Karl rule #6)
   ============================================================ */
.footer { background: var(--v4-aztek); color: #cdd8ce; padding-top: clamp(56px, 8vw, 88px); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo { display: inline-flex; align-items: center; gap: 12px; }
.footer__logo img { filter: brightness(0) invert(1); }
.footer__logo span { font-family: var(--f-serif-display); font-size: 24px; color: #fff; }
.footer__tag { font-family: var(--f-serif-display); font-style: italic; font-size: 17px; color: #aebbb0; margin-top: 14px; }
.footer__col h4 {
  font-family: var(--f-sans-label);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v4-gold);
  margin-bottom: 16px;
}
.footer__col a { display: block; font-size: 15px; color: #cdd8ce; padding: 6px 0; transition: color .2s ease; }
.footer__col a:hover { color: #fff; }
.footer__base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 24px 36px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: #92a298;
}
.footer__base p { margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner,
  .class__inner,
  .meet__inner,
  .podcast__inner,
  .invite__inner { grid-template-columns: 1fr; }
  .invite__media { order: -1; aspect-ratio: 16 / 11; max-height: 420px; }
  .invite__panel { max-width: none; }
  .hero__inner { padding-block: clamp(36px, 8vw, 56px); }
  .hero__copy { display: contents; } /* let title/media/lead reorder on mobile */
  .hero__title { order: 1; max-width: none; margin-bottom: 18px; }
  .hero__media { order: 2; margin-bottom: 26px; }
  .hero__lead { order: 3; }
  .hero__actions { order: 4; }
  .hero__stats { order: 5; }
  .hero__media,
  .class__media { aspect-ratio: 16 / 11; }
  .meet__inner { gap: 32px; }
  .meet__media { order: -1; aspect-ratio: 16 / 12; max-height: 460px; }
  .class__media { order: -1; }
  .podcast__art { order: -1; }
  .pathway__grid,
  .proof__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .products__grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .vswitch { display: none; } /* keep mobile nav clean; switcher lives in desktop chrome */
}

@media (max-width: 560px) {
  .hero__stats { flex-wrap: wrap; gap: 22px 28px; }
  .hero__actions,
  .invite__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn,
  .invite__actions .btn { width: 100%; }
  .hero__actions .textlink,
  .invite__actions .textlink { text-align: center; }
  .product__foot { flex-direction: column; align-items: stretch; }
  .product__foot .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 400px) {
  .recognition__list li { padding-left: 50px; }
}
