/* ═══════════════════════════════════════════════════════════════════════
   JanaOlfer Beauty — Refined Styles
   Three palettes (noir / ivory / champagne) via [data-palette] on <body>.
   Typography via [data-type]. Accent + grain via CSS custom props.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* Type systems — swapped via [data-type] on body */
  --serif: 'Cormorant Garamond', 'Cardo', Georgia, serif;
  --serif-italic: 'Cardo', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Accent intensity (0.6 – 1.2) multiplier, grain opacity, all tweakable */
  --accent-strength: 1;
  --grain-opacity: 0.15;
}

/* ── PALETTE: NOIR (refined dark) ────────────────────────────────────── */
body[data-palette="noir"] {
  --bg: #14110d;
  --bg-soft: #1b1713;
  --bg-elev: #1f1a15;
  --ink: #f4ecdc;
  --ink-dim: rgba(244, 236, 220, 0.92);
  --ink-mute: rgba(244, 236, 220, 0.75);
  --ink-faint: rgba(244, 236, 220, 0.58);
  --gold: #f0c865;
  --gold-deep: #d6a23a;
  --gold-dim: rgba(240, 200, 101, 0.78);
  --gold-faint: rgba(240, 200, 101, 0.34);
  --hairline: rgba(244, 236, 220, 0.14);
  --hairline-strong: rgba(244, 236, 220, 0.22);
  --vignette: rgba(0, 0, 0, 0.35);
  --grain-blend: overlay;
  color-scheme: dark;
}

/* ── PALETTE: IVORY (editorial bright) ───────────────────────────────── */
body[data-palette="ivory"] {
  --bg: #f6f0e3;
  --bg-soft: #ede5d3;
  --bg-elev: #fbf6eb;
  --ink: #1c1510;
  --ink-dim: rgba(28, 21, 16, 0.78);
  --ink-mute: rgba(28, 21, 16, 0.6);
  --ink-faint: rgba(28, 21, 16, 0.5);
  --gold: #c9932a;
  --gold-deep: #9a6f13;
  --gold-dim: rgba(201, 147, 42, 0.82);
  --gold-faint: rgba(201, 147, 42, 0.32);
  --hairline: rgba(28, 21, 16, 0.14);
  --hairline-strong: rgba(28, 21, 16, 0.24);
  --vignette: rgba(120, 90, 40, 0.08);
  --grain-blend: multiply;
  color-scheme: light;
}

/* ── PALETTE: CHAMPAGNE (warm mid) ───────────────────────────────────── */
body[data-palette="champagne"] {
  --bg: #ece1cc;
  --bg-soft: #e1d4ba;
  --bg-elev: #f2e9d5;
  --ink: #2a1f14;
  --ink-dim: rgba(42, 31, 20, 0.8);
  --ink-mute: rgba(42, 31, 20, 0.62);
  --ink-faint: rgba(42, 31, 20, 0.5);
  --gold: #b57e14;
  --gold-deep: #8a5f08;
  --gold-dim: rgba(181, 126, 20, 0.82);
  --gold-faint: rgba(181, 126, 20, 0.34);
  --hairline: rgba(42, 31, 20, 0.14);
  --hairline-strong: rgba(42, 31, 20, 0.22);
  --vignette: rgba(80, 50, 20, 0.08);
  --grain-blend: multiply;
  color-scheme: light;
}

/* ── TYPE PAIRINGS ───────────────────────────────────────────────────── */
body[data-type="classic"] {
  --serif: 'Cormorant Garamond', Georgia, serif;
  --serif-italic: 'Cardo', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
}
body[data-type="editorial"] {
  --serif: 'Fraunces', Georgia, serif;
  --serif-italic: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}
body[data-type="bold"] {
  --serif: 'DM Serif Display', Georgia, serif;
  --serif-italic: 'DM Serif Display', Georgia, serif;
  --sans: 'Work Sans', system-ui, sans-serif;
}
/* Editorial & Bold variants override the italic flag on <em> since those
   display faces don't ship true italics — we lean on the deep gold + size
   shift for emphasis instead. */
body[data-type="editorial"] em,
body[data-type="bold"] em {
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════════════════
   BASE
   ═══════════════════════════════════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
::selection { background: var(--gold); color: var(--bg); }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  line-height: 1.5;
  position: relative;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  opacity: var(--grain-opacity);
  mix-blend-mode: var(--grain-blend);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.7'/></svg>");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  background: radial-gradient(ellipse at center, transparent 55%, var(--vignette) 100%);
}

.wrap { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════════════ */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--hairline);
  position: sticky; top: 0;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  z-index: 10;
}
.logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex; align-items: baseline; gap: 10px;
  color: var(--ink);
}
.logo .mark {
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0;
  font-family: var(--serif-italic);
  text-transform: lowercase;
  font-size: 18px;
}
.nav-right {
  display: flex; align-items: center; gap: 20px;
}
.nav-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);           /* was ink-faint → now fully readable */
  display: none;
  text-decoration: none;
  transition: color 0.3s;
}
@media (hover: hover) {
  .nav-meta:hover { color: var(--gold); }
}
@media (min-width: 640px) { .nav-meta { display: inline; } }
.nav-cta {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 11px 20px;
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 1px 0 color-mix(in srgb, var(--gold) 40%, white),
              0 6px 18px color-mix(in srgb, var(--gold) 32%, transparent);
}
@media (hover: hover) {
  .nav-cta:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 1px 0 color-mix(in srgb, var(--gold) 60%, white),
                0 10px 26px color-mix(in srgb, var(--gold) 50%, transparent);
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */

.hero {
  padding: 56px 24px 80px;
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%,
      color-mix(in srgb, var(--gold) calc(var(--accent-strength) * 12%), transparent),
      transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 90%,
      color-mix(in srgb, var(--gold) calc(var(--accent-strength) * 5%), transparent),
      transparent 60%);
  overflow: hidden;
}
.hero-meta {
  display: flex; justify-content: space-between;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
  gap: 16px;
  flex-wrap: wrap;
}
.hero-meta span:first-child {
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-meta span:first-child::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 20%, transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 11vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em {
  font-family: var(--serif-italic);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 520px;
  margin-bottom: 44px;
  text-wrap: pretty;
}

.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 48px;
}
.btn-gold {
  background: var(--gold); color: var(--bg);
  padding: 17px 30px; border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 color-mix(in srgb, var(--gold) 40%, white),
              0 8px 24px color-mix(in srgb, var(--gold) 30%, transparent);
}
.btn-gold::before {
  content: ""; position: absolute;
  inset: 0;
  background: var(--gold-deep);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .btn-gold:hover::before { transform: translateY(0); }
  .btn-gold:hover { color: #fff; }
}
.btn-gold span { position: relative; z-index: 1; }

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  padding: 17px 30px; border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
@media (hover: hover) {
  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: color-mix(in srgb, var(--gold) 6%, transparent);
  }
}

.hero-tags {
  display: flex; flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  padding-bottom: 4px;
  border-top: 1px solid var(--hairline);
}
.hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 18px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  background: color-mix(in srgb, var(--gold) calc(var(--accent-strength) * 6%), transparent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.hero-tag::before {
  content: "◆";
  font-size: 8px;
  color: var(--gold);
  transition: transform 0.3s;
}
@media (hover: hover) {
  .hero-tag:hover {
    border-color: var(--gold);
    background: color-mix(in srgb, var(--gold) calc(var(--accent-strength) * 14%), transparent);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--gold) 20%, transparent);
  }
  .hero-tag:hover::before {
    transform: rotate(45deg);
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════════════ */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stats.stats--2 {
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-soft);
}
.stat {
  padding: 32px 12px;
  text-align: center;
  border-right: 1px solid var(--hairline);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 7.5vw, 52px);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-num em {
  font-family: var(--serif-italic);
  font-style: italic;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION PRIMITIVES
   ═══════════════════════════════════════════════════════════════════════ */

.section {
  padding: 96px 24px;
  position: relative;
}
.section-header { margin-bottom: 56px; }
.section-chapter {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.section-num {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  font-weight: 500;
}
.section-num::before {
  content: "§ ";
  opacity: 0.7;
}
.section-rule {
  flex: 1; height: 1px;
  background: var(--hairline-strong);
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.section h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 7.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 720px;
  color: var(--ink);
  text-wrap: balance;
}
.section h2 em {
  font-family: var(--serif-italic);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════════
   VIDEO
   ═══════════════════════════════════════════════════════════════════════ */

.video-section { padding: 96px 24px; }
.video {
  aspect-ratio: 16/10;
  background:
    radial-gradient(circle at 35% 40%,
      color-mix(in srgb, var(--gold) calc(var(--accent-strength) * 18%), transparent),
      transparent 55%),
    linear-gradient(145deg, var(--bg-elev) 0%, var(--bg-soft) 100%);
  border-radius: 3px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid var(--gold-faint);
}
.video--portrait {
  aspect-ratio: 9/16;
  max-width: 360px;
  margin: 0 auto;
}
.video-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: #000;
  z-index: 1;
}
.play {
  width: 88px; height: 88px; border-radius: 50%;
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.play::before {
  content: ""; position: absolute;
  inset: -10px; border-radius: 50%;
  border: 1px solid var(--gold-dim);
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (hover: hover) {
  .play:hover { transform: scale(1.08); }
}
.play::after {
  content: ""; width: 0; height: 0;
  border-left: 16px solid var(--gold);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 5px;
}
.video-meta {
  position: absolute; z-index: 3;
  left: 22px; right: 22px;
  bottom: 20px;
  display: flex; justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.video-meta span:first-child { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════
   INSTRUCTOR
   ═══════════════════════════════════════════════════════════════════════ */

.instructor { padding: 0 24px 96px; }
.instructor-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 56px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.instructor-label {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 14px;
}
.instructor-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: var(--ink);
  text-wrap: balance;
}
.instructor-name em { font-family: var(--serif-italic); font-style: italic; color: var(--gold); }
.instructor-bio {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 500px;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.instructor-credentials {
  list-style: none;
  display: grid; gap: 10px;
}
.instructor-credentials li {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-left: 22px;
  position: relative;
  font-family: var(--sans);
}
.instructor-credentials li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--gold);
}
.instructor-photo {
  aspect-ratio: 4/5;
  background:
    radial-gradient(circle at 50% 30%,
      color-mix(in srgb, var(--gold) calc(var(--accent-strength) * 16%), transparent),
      transparent 65%),
    linear-gradient(160deg, var(--bg-elev) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--gold-faint);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.instructor-photo::before {
  content: "";
  position: absolute; inset: 16px;
  border: 1px solid var(--gold-faint);
  z-index: 2;
  pointer-events: none;
}
.instructor-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  z-index: 1;
}
.instructor-photo-caption {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
  padding: 12px 24px;
  z-index: 1;
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════════════
   MODULES
   ═══════════════════════════════════════════════════════════════════════ */

.modules { display: grid; gap: 0; }
.module {
  padding: 36px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--hairline);
  transition: padding-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .module:hover { padding-left: 8px; }
}
.module:last-child { border-bottom: 1px solid var(--hairline); }
.module-num {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 40px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.module h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.module-sub {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 14px;
}
.module p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 580px;
  text-wrap: pretty;
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════ */

.testimonials {
  padding: 104px 24px;
  position: relative;
  background: radial-gradient(ellipse at center,
    color-mix(in srgb, var(--gold) calc(var(--accent-strength) * 5%), transparent),
    transparent 70%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.testimonials-grid {
  display: grid;
  gap: 64px;
  max-width: 720px;
  margin: 56px auto 0;
}
.testimonial {
  margin: 0;
  display: grid;
  gap: 24px;
  justify-items: center;
}
.testimonial-image {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 2px;
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--gold) 18%, transparent) inset,
    0 24px 60px -12px rgba(0, 0, 0, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.35);
}
.testimonial-caption {
  text-align: center;
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
}
.testimonial-source {
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════════ */

.pricing-section { padding: 96px 24px; }
.pricing {
  padding: 52px 30px;
  background: linear-gradient(160deg,
    color-mix(in srgb, var(--gold) calc(var(--accent-strength) * 8%), transparent),
    transparent 60%);
  border: 1px solid var(--gold-faint);
  position: relative;
}
.pricing::before, .pricing::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--gold);
}
.pricing::before {
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
}
.pricing::after {
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}
.pricing-left .price-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
/* ── PRICING — refined pricing card ──────────────────────────────────── */

.price-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.price-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.price-plan {
  position: relative;
}

.price-plan--featured {
  padding-bottom: 28px;
}

.price-plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.price-plan-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
}
.price-plan-badge {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 10px;
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  background: color-mix(in srgb, var(--gold) calc(var(--accent-strength) * 6%), transparent);
}

/* Main figure: 6× R$ 315 — editorial hero */
.price-figure {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.9;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.price-figure-x {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 40px);
  color: var(--gold);
  font-weight: 400;
  margin-right: 4px;
}
.price-figure-cur {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--gold);
  font-weight: 400;
  vertical-align: 0.4em;
}
.price-figure-num {
  font-size: clamp(72px, 13vw, 112px);
  font-weight: 300;
}

/* Matrícula row */
.price-plan-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 12px;
}
.price-plan-meta-key {
  flex: 0 0 auto;
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-dim);
}
.price-plan-meta-val {
  flex: 1;
  text-align: right;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.price-plan-note {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ── Divider between plans ───────────────────────────────────────────── */

.price-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 4px 0 24px;
}
.price-divider::before,
.price-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairline-strong);
}
.price-divider-label {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ── Secondary: à vista ─────────────────────────────────────────────── */

.price-plan--secondary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--hairline-strong);
  border-radius: 2px;
  background: var(--bg-soft);
  margin-bottom: 32px;
  transition: border-color 0.3s, background 0.3s;
}
@media (hover: hover) {
  .price-plan--secondary:hover {
    border-color: var(--gold-dim);
  }
}
.price-plan-sec-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 30px);
  letter-spacing: -0.015em;
  color: var(--gold);
}
.price-plan-sec-value .price-figure-cur {
  font-size: 0.55em;
  vertical-align: 0.35em;
  margin-right: 4px;
}

/* Pricing note below CTA */
.pricing-left .price-note {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.price-note {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.pricing-right { padding-top: 8px; }
.pricing-right .label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline-strong);
}
.included {
  list-style: none;
  display: grid; gap: 16px;
}
.included li {
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  color: var(--ink);
  line-height: 1.45;
}
.included li::before {
  content: "◆";
  position: absolute; left: 0; top: 4px;
  font-size: 8px;
  color: var(--gold);
}
.included li small {
  display: block;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 3px;
  font-style: italic;
  font-family: var(--serif-italic);
}

/* ═══════════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════════════ */

.final-cta {
  padding: 96px 24px;
  text-align: center;
  background: radial-gradient(ellipse at center top,
    color-mix(in srgb, var(--gold) calc(var(--accent-strength) * 12%), transparent),
    transparent 70%);
}
.final-cta .urgency {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 18px;
}
.final-cta h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--ink);
  text-wrap: balance;
}
.final-cta h3 em {
  font-family: var(--serif-italic);
  font-style: italic;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */

.footer {
  padding: 56px 24px;
  border-top: 1px solid var(--hairline-strong);
  display: grid;
  gap: 28px;
  background: var(--bg-soft);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
}
.footer-top .logo {
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.footer-ig {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);           /* was ink-faint */
  text-decoration: none;
  transition: color 0.3s;
  font-family: var(--sans);
}
@media (hover: hover) {
  .footer-ig:hover { color: var(--gold); }
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);          /* was ink-faint */
  font-family: var(--sans);
}
.footer-address {
  font-family: var(--serif-italic);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--ink-dim);
  max-width: 380px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════════════════════════════════
   MOBILE TIGHTENING (≤480px)
   ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .nav { padding: 14px 16px; }
  .nav-right { gap: 12px; }
  .logo { font-size: 15px; letter-spacing: 0.18em; gap: 8px; }
  .logo .mark { font-size: 14px; }
  .nav-cta { padding: 9px 14px; font-size: 10px; letter-spacing: 0.16em; }
}

/* ═══════════════════════════════════════════════════════════════════════
   DESKTOP
   ═══════════════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .nav { padding: 24px 48px; }
  .hero { padding: 80px 48px 104px; }
  .video-section, .instructor, .pricing-section { padding-left: 48px; padding-right: 48px; }
  .section { padding: 128px 48px; }
  .testimonials, .final-cta, .footer { padding-left: 48px; padding-right: 48px; }
  .pricing-grid { grid-template-columns: 5fr 4fr; gap: 72px; }
  .instructor-inner { grid-template-columns: 3fr 2fr; gap: 72px; align-items: center; }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 980px;
    align-items: start;
  }
  .testimonial-image { max-width: 100%; }
  .video:not(.video--portrait) { aspect-ratio: 21/10; }
  .video--portrait { max-width: 400px; }
}
@media (min-width: 1100px) {
  .hero { padding: 104px 72px 128px; }
  .nav, .video-section, .instructor, .pricing-section,
  .section, .testimonials, .final-cta, .footer {
    padding-left: 72px; padding-right: 72px;
  }
}
