/* =====================================================================
   Tracy Harris — Edition v4a · Quiet Luxury / Editorial
   Warm oatmeal/cream canvas · deep-green (aztek) + gold-dark accents
   Oversized Editors Note display · generous whitespace · gold hairlines
   Self-contained look. Uses tokens.css vars + fonts.css faces only.
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--p-oatmeal);
  color: var(--p-ink);
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: var(--l-relaxed);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ---------- Layout primitives ---------- */
.wrap {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
}
.section { padding-block: clamp(72px, 11vw, 168px); }

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--f-sans-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: var(--t-widest);
  text-transform: uppercase;
  color: var(--p-gold-dark);
  margin: 0 0 22px;
}
.eyebrow--light { color: var(--p-gold-mid); }

.section__head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 72px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title {
  font-family: var(--f-serif-display);
  font-weight: 400;
  color: var(--p-aztek);
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: var(--t-tight);
  margin: 0;
}

/* thin gold hairline divider */
.rule {
  border: 0;
  height: 1px;
  background: var(--p-gold-mid);
  opacity: 0.6;
  margin: 32px 0;
  max-width: 120px;
}

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--p-aztek);
  --_fg: var(--p-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-sans-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: var(--r-sm);
  border: 1px solid var(--_bg);
  background: var(--_bg);
  color: var(--_fg);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 19px 40px; font-size: 14px; }

/* solid aztek — primary CTA, high contrast on light canvas */
.btn--solid { --_bg: var(--p-aztek); --_fg: var(--p-white); }
.btn--solid:hover { background: #16292a; border-color: #16292a; }

/* gold — strong contrast on dark surfaces */
.btn--gold {
  --_bg: var(--p-gold-dark); --_fg: var(--p-white);
  border-color: var(--p-gold-dark);
}
.btn--gold:hover { background: var(--p-gold-mid); border-color: var(--p-gold-mid); color: var(--p-aztek); }

/* ghost — nav, on light */
.btn--ghost {
  --_bg: transparent; --_fg: var(--p-aztek);
  border-color: var(--p-aztek);
  padding: 12px 22px;
}
.btn--ghost:hover { background: var(--p-aztek); color: var(--p-white); transform: none; }

/* ---------- Text links ---------- */
.textlink {
  font-family: var(--f-sans-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--p-aztek);
  border-bottom: 1px solid var(--p-gold-mid);
  padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.textlink:hover { color: var(--p-gold-dark); border-color: var(--p-gold-dark); }
.textlink--dark { color: var(--p-aztek); }
.textlink--light { color: var(--p-oatmeal); border-color: var(--p-gold-mid); }
.textlink--light:hover { color: var(--p-white); border-color: var(--p-gold-mid); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 241, 0.86);
  backdrop-filter: saturate(1.1) blur(12px);
  -webkit-backdrop-filter: saturate(1.1) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.nav.is-scrolled {
  border-bottom-color: rgba(123, 98, 60, 0.18);
  box-shadow: 0 8px 28px -22px rgba(30, 55, 53, 0.5);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}
.nav__lead { display: flex; align-items: center; gap: 22px; }
.nav__brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav__mark { display: block; }
.nav__name {
  font-family: var(--f-serif-display);
  font-size: 22px;
  color: var(--p-aztek);
  letter-spacing: var(--t-tight);
}
.nav__links {
  margin-left: auto;
  display: flex;
  gap: 34px;
}
.nav__links a {
  font-family: var(--f-sans-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--p-ink);
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--p-gold-dark);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--p-aztek); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { flex: none; }

/* 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.05em;
  background: var(--p-cream);
  border: 1px solid rgba(123, 98, 60, 0.28);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  color: var(--p-aztek);
  cursor: pointer;
}
.vswitch__pre { color: var(--p-mute); text-transform: uppercase; font-weight: 600; }
.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% + 12px);
  left: 0;
  width: 320px;
  max-width: 80vw;
  background: var(--p-white);
  border: 1px solid rgba(123, 98, 60, 0.2);
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px -30px rgba(30, 55, 53, 0.4);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.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.18em;
  text-transform: uppercase;
  color: var(--p-gold-dark);
  margin: 4px 8px 12px;
}
.vswitch__item {
  display: block;
  text-decoration: none;
  padding: 11px 12px;
  border-radius: var(--r-sm);
  transition: background .18s ease;
}
.vswitch__item:hover { background: var(--p-oatmeal); }
.vswitch__item.is-current { background: var(--p-cream); }
.vswitch__name {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-serif-display);
  font-size: 18px;
  color: var(--p-aztek);
}
.vswitch__tick {
  font-family: var(--f-sans-label);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--p-aztek);
  color: var(--p-white);
  padding: 2px 7px;
  border-radius: var(--r-pill);
}
.vswitch__desc {
  display: block;
  font-size: 12.5px;
  color: var(--p-mute);
  margin-top: 2px;
}

/* burger + drawer */
.nav__burger {
  display: none;
  flex: none;
  width: 42px; height: 42px;
  margin-left: auto;
  border: 1px solid rgba(123, 98, 60, 0.3);
  border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 11px; right: 11px; height: 1.6px;
  background: var(--p-aztek);
  transition: transform .25s ease, opacity .2s ease;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { bottom: 16px; }

.drawer {
  position: fixed;
  inset: 78px 0 0;
  background: var(--p-oatmeal);
  z-index: 95;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 40px 28px;
}
.drawer.is-open { transform: translateX(0); }
.drawer__links { display: flex; flex-direction: column; gap: 8px; }
.drawer__links a {
  font-family: var(--f-serif-display);
  font-size: 30px;
  color: var(--p-aztek);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(123, 98, 60, 0.15);
}
.drawer__cta {
  margin-top: 24px;
  font-family: var(--f-sans-label) !important;
  font-size: 13px !important;
  border-bottom: none !important;
  text-align: center;
}

/* =====================================================================
   HERO  (Karl rule 1: figure in right column / right-third)
   ===================================================================== */
.hero { padding-top: clamp(40px, 6vw, 80px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero__text { max-width: 560px; }
.hero__title {
  font-family: var(--f-serif-display);
  font-weight: 400;
  color: var(--p-aztek);
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--p-gold-dark);
  display: block;
}
.hero__lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--p-ink);
  max-width: 520px;
  margin: 0 0 38px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* tall portrait frame; figure naturally right of the text column */
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 50px 90px -50px rgba(30, 55, 53, 0.55);
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Karl rule 1: push the figure to the far-right third of the frame */
  object-position: 78% center;
}
.hero__media::before {
  /* thin gold inner frame */
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(246, 244, 241, 0.55);
  z-index: 2;
  pointer-events: none;
}
.hero__media-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,55,53,0) 55%, rgba(30,55,53,0.28) 100%);
  z-index: 1;
}

.hero__stats {
  display: flex;
  gap: clamp(32px, 6vw, 96px);
  margin-top: clamp(56px, 7vw, 100px);
  padding-top: 40px;
  border-top: 1px solid rgba(123, 98, 60, 0.28);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--f-serif-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--p-aztek);
}
.stat__label {
  font-family: var(--f-sans-label);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p-mute);
}

/* =====================================================================
   RECOGNITION
   ===================================================================== */
.recognition { background: var(--p-cream); }
.recognition__inner { max-width: 840px; }
.recognition__title {
  font-family: var(--f-serif-display);
  font-weight: 400;
  color: var(--p-aztek);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: var(--t-tight);
  margin: 0;
  max-width: 16ch;
}
.recognition__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  gap: 0;
}
.recognition__list li {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--p-ink);
  padding: 22px 0 22px 40px;
  border-bottom: 1px solid rgba(123, 98, 60, 0.22);
  position: relative;
}
.recognition__list li::before {
  content: "—";
  position: absolute; left: 0; top: 22px;
  color: var(--p-gold-dark);
}
.recognition__close {
  font-family: var(--f-serif-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  color: var(--p-aztek);
  max-width: 30ch;
}

/* =====================================================================
   PATHWAY
   ===================================================================== */
.pathway { background: var(--p-oatmeal); }
.pathway__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  border-top: 1px solid rgba(123, 98, 60, 0.28);
}
.pillar {
  padding-top: 36px;
  border-top: 2px solid var(--p-gold-dark);
  margin-top: -1px;
}
.pillar__num {
  font-family: var(--f-serif-display);
  font-size: 18px;
  color: var(--p-gold-dark);
  letter-spacing: 0.1em;
}
.pillar__name {
  font-family: var(--f-serif-display);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  color: var(--p-aztek);
  margin: 14px 0 16px;
}
.pillar p { margin: 0; color: var(--p-ink); }
.pathway__link { margin-top: clamp(40px, 5vw, 64px); }

/* =====================================================================
   FREE CLASS  (split, portrait image left)
   ===================================================================== */
.class { background: var(--p-cream); }
.class__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.class__media {
  margin: 0;
  position: relative;
  aspect-ratio: 1000 / 1500;
  max-height: 720px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 50px 90px -55px rgba(30, 55, 53, 0.5);
}
.class__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.class__media::before {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(246, 244, 241, 0.5);
  z-index: 2; pointer-events: none;
}
.class__title {
  font-family: var(--f-serif-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.1;
  color: var(--p-aztek);
  letter-spacing: var(--t-tight);
  margin: 0 0 22px;
}
.class__text > p { margin: 0 0 24px; max-width: 52ch; }
.ticklist { list-style: none; margin: 0 0 36px; padding: 0; }
.ticklist li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid rgba(123, 98, 60, 0.2);
  color: var(--p-ink);
}
.ticklist li::before {
  content: "";
  position: absolute; left: 0; top: 21px;
  width: 16px; height: 1px;
  background: var(--p-gold-dark);
}

/* =====================================================================
   PROOF
   ===================================================================== */
.proof { background: var(--p-oatmeal); }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
/* Karl rule 4: cards distinct from page bg (white on oatmeal, gold edge) */
.quote {
  margin: 0;
  background: var(--p-white);
  border: 1px solid rgba(123, 98, 60, 0.18);
  border-top: 3px solid var(--p-gold-mid);
  border-radius: var(--r-md);
  padding: 40px 32px;
  box-shadow: 0 30px 60px -50px rgba(30, 55, 53, 0.4);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 260px;
}
.quote p {
  font-family: var(--f-serif-display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  color: var(--p-aztek);
  margin: 0;
  flex: 1;
}
.quote cite {
  font-family: var(--f-sans-label);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-mute);
}
.proof__note {
  text-align: center;
  margin: 48px auto 0;
  max-width: 46ch;
  color: var(--p-mute);
  font-size: 14px;
}

/* =====================================================================
   PRODUCTS
   ===================================================================== */
.products { background: var(--p-cream); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
/* Karl rule 4: cards visibly distinct from cream bg */
.product {
  background: var(--p-white);
  border: 1px solid rgba(123, 98, 60, 0.18);
  border-radius: var(--r-md);
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 80px -60px rgba(30, 55, 53, 0.45);
}
.product--dark { background: var(--p-aztek); color: var(--p-oatmeal); border-color: var(--p-aztek); }
.product__top { padding-bottom: 24px; margin-bottom: 28px; border-bottom: 1px solid rgba(123, 98, 60, 0.25); }
.product--dark .product__top { border-bottom-color: rgba(201, 164, 108, 0.4); }
.product__name {
  font-family: var(--f-serif-display);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--p-aztek);
  margin: 0 0 10px;
}
.product--dark .product__name { color: var(--p-white); }
.product__kind {
  font-family: var(--f-sans-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-gold-dark);
  margin: 0;
}
.product--dark .product__kind { color: var(--p-gold-mid); }
.product__body { margin: 0 0 32px; flex: 1; }
.product--dark .product__body { color: var(--p-oatmeal); }
.product__foot { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* =====================================================================
   MEET TRACY (portrait left, copy right)
   ===================================================================== */
.meet { background: var(--p-oatmeal); }
.meet__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.meet__media {
  margin: 0;
  position: relative;
  aspect-ratio: 1100 / 1466;
  max-height: 760px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 50px 90px -55px rgba(30, 55, 53, 0.5);
}
.meet__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.meet__mark {
  position: absolute;
  bottom: 18px; right: 18px;
  background: rgba(246, 244, 241, 0.92);
  padding: 12px 13px;
  border-radius: var(--r-sm);
  z-index: 3;
  margin: 0;
}
.meet__media::before {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(246, 244, 241, 0.5);
  z-index: 2; pointer-events: none;
}
.meet__title {
  font-family: var(--f-serif-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  color: var(--p-aztek);
  letter-spacing: var(--t-tight);
  margin: 0 0 28px;
}
.meet__text p { margin: 0 0 22px; max-width: 54ch; }
.meet__text p:last-child {
  font-family: var(--f-serif-display);
  font-style: italic;
  font-size: clamp(19px, 1.7vw, 24px);
  color: var(--p-gold-dark);
}

/* =====================================================================
   PODCAST (dark aztek band)
   ===================================================================== */
.podcast { background: var(--p-aztek); color: var(--p-oatmeal); }
.podcast__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.podcast__title {
  font-family: var(--f-serif-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.1;
  color: var(--p-white);
  letter-spacing: var(--t-tight);
  margin: 0 0 22px;
  max-width: 18ch;
}
.podcast__lead { color: var(--p-oatmeal); max-width: 48ch; margin: 0 0 34px; }
.podcast__art { display: flex; justify-content: center; }
.waves {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 160px;
}
.waves span {
  width: 5px;
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, var(--p-gold-mid), var(--p-gold-dark));
  animation: wave 1.6s ease-in-out infinite;
  height: 30%;
}
.waves span:nth-child(odd) { animation-delay: .2s; }
.waves span:nth-child(3n) { animation-delay: .4s; }
.waves span:nth-child(4n) { animation-delay: .6s; }
@keyframes wave {
  0%, 100% { height: 22%; }
  50% { height: 92%; }
}
@media (prefers-reduced-motion: reduce) {
  .waves span { animation: none; height: 55%; }
}

/* =====================================================================
   FINAL INVITATION (full-bleed image, figure right-third)
   ===================================================================== */
.invite {
  position: relative;
  overflow: hidden;
  background: var(--p-aztek);
  padding-block: clamp(96px, 14vw, 220px);
}
.invite__media { position: absolute; inset: 0; z-index: 0; }
.invite__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Karl rule 1: figure pushed to far-right third */
  object-position: 85% center;
}
/* Karl rule 2: scrim keeps text readable; darkest on the left where text sits */
.invite__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,33,33,0.92) 0%, rgba(20,33,33,0.78) 38%, rgba(20,33,33,0.32) 70%, rgba(20,33,33,0.1) 100%),
    linear-gradient(180deg, rgba(20,33,33,0.4), rgba(20,33,33,0.4));
}
.invite__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.invite__title {
  font-family: var(--f-serif-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.08;
  color: var(--p-white);
  letter-spacing: var(--t-tight);
  margin: 0 0 36px;
}
.invite__title em { font-style: italic; color: var(--p-gold-mid); display: block; }
.invite__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--p-oatmeal); border-top: 1px solid rgba(123, 98, 60, 0.25); padding-top: clamp(56px, 7vw, 96px); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(123, 98, 60, 0.2);
}
.footer__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.footer__logo span {
  font-family: var(--f-serif-display);
  font-size: 26px;
  color: var(--p-aztek);
}
.footer__tag {
  font-family: var(--f-serif-display);
  font-style: italic;
  color: var(--p-gold-dark);
  margin: 16px 0 0;
  font-size: 18px;
}
.footer__col h4 {
  font-family: var(--f-sans-label);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--p-gold-dark);
  margin: 0 0 18px;
}
.footer__col a {
  display: block;
  text-decoration: none;
  color: var(--p-ink);
  font-size: 15px;
  padding: 6px 0;
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--p-aztek); }
.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 28px 40px;
}
.footer__base p { margin: 0; font-size: 12.5px; color: var(--p-mute); letter-spacing: 0.02em; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .vswitch { display: none; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 16 / 11; max-height: 460px; order: -1; }
  .hero__media img { object-position: 75% center; }

  .class__inner,
  .meet__inner,
  .podcast__inner { grid-template-columns: 1fr; }
  .class__media { order: -1; max-height: 560px; aspect-ratio: 4/3; }
  .meet__media { max-width: 520px; }
  .podcast__art { order: -1; }
  .waves { height: 110px; }
}

@media (max-width: 760px) {
  .pathway__grid { grid-template-columns: 1fr; gap: 8px; border-top: none; }
  .pillar { border-top: 2px solid var(--p-gold-dark); padding-top: 28px; padding-bottom: 12px; }
  .proof__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .wrap { width: 100% - 36px; width: calc(100% - 36px); }
  .hero__actions,
  .invite__actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero__actions .btn,
  .invite__actions .btn { width: 100%; }
  .hero__stats { gap: 28px; flex-wrap: wrap; }
  .stat { flex: 1 1 40%; }
  .product__foot { flex-direction: column; align-items: flex-start; }
  .product__foot .btn { width: 100%; }
}
