/* ═══════════════════════════════════════════════════════
   Reformer Ready — Landing Page Styles
   Brand tokens aligned with portal design system
═══════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  /* Colours */
  --rr-black:    #1a1a1a;
  --rr-dark:     #2c2c2c;
  --rr-mid:      #4a4a4a;
  --rr-muted:    #6b6b6b;
  --rr-subtle:   #9a9a9a;
  --rr-line:     #d4d4d4;
  --rr-grey:     #e8e8e8;
  --rr-offwhite: #f4f4f4;
  --rr-white:    #ffffff;
  --rr-accent:   #987456;

  /* Level colours */
  --level-beginner:     #2d7a3c;
  --level-intermediate: #8a6200;
  --level-advanced:     #9b2335;

  --level-beginner-bg:     #e8f5ec;
  --level-intermediate-bg: #fdf3dc;
  --level-advanced-bg:     #fdedef;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Jost', system-ui, sans-serif;

  /* Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.18);

  /* Motion */
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --dur-fast: 160ms;
  --dur-base: 260ms;
  --dur-slow: 440ms;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  color: var(--rr-dark);
  background: var(--rr-white);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

/* ── Layout helpers ── */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--rr-black);
  margin-top: 8px;
}
.section-title em { font-style: italic; font-weight: 400; }
.section-sub {
  margin-top: 16px;
  color: var(--rr-muted);
  font-size: 1.0625rem;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rr-accent);
}
.eyebrow--light { color: rgba(255,255,255,.65); }
.body-text {
  font-size: 1.0625rem;
  color: var(--rr-mid);
  line-height: 1.75;
  margin-top: 16px;
}


/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 12px 24px;
  border-radius: var(--r-full);
  transition: background var(--dur-fast) var(--ease-out),
              color     var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm   { padding: 9px 18px; font-size: 0.875rem; }
.btn-lg   { padding: 16px 36px; font-size: 1rem; font-weight: 600; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary  { background: var(--rr-black); color: var(--rr-white); border-color: var(--rr-black); }
.btn-primary:hover { background: var(--rr-dark); border-color: var(--rr-dark); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--rr-black); border-color: transparent; }
.btn-ghost:hover { background: var(--rr-offwhite); }

.btn-outline { background: transparent; color: var(--rr-black); border-color: var(--rr-line); }
.btn-outline:hover { border-color: var(--rr-black); box-shadow: var(--shadow-sm); }

.btn-white { background: var(--rr-white); color: var(--rr-black); border-color: var(--rr-white); }
.btn-white:hover { box-shadow: var(--shadow-md); }


/* ── Level badges ── */
.level-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.level-beginner     { background: var(--level-beginner-bg);     color: var(--level-beginner); }
.level-intermediate { background: var(--level-intermediate-bg); color: var(--level-intermediate); }
.level-advanced     { background: var(--level-advanced-bg);     color: var(--level-advanced); }


/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }
.reveal:nth-child(5) { transition-delay: 300ms; }


/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.nav.scrolled {
  box-shadow: 0 1px 0 var(--rr-line);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-logo-fallback {
  align-items: center;
  gap: 10px;
}
.logo-rr {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--rr-black);
  line-height: 1;
}
.logo-wordmark {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--rr-black);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rr-mid);
  padding: 6px 12px;
  border-radius: var(--r-full);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--rr-black);
  background: var(--rr-offwhite);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-cta { flex-shrink: 0; }

/* Language toggle */
.lang-toggle {
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--rr-black);
  color: var(--rr-black);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--dur-base), color var(--dur-base);
}
.lang-toggle:hover {
  background: var(--rr-black);
  color: var(--rr-offwhite);
}
.nav.scrolled .lang-toggle {
  border-color: var(--rr-black);
  color: var(--rr-black);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  padding: 6px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--rr-black);
  border-radius: 2px;
  transition: transform var(--dur-base), opacity var(--dur-base);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #faf8f4 0%, #f0e9de 100%);
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .04;
  filter: blur(60px);
}
.hero-bg-shape--1 {
  width: 680px; height: 680px;
  background: var(--rr-black);
  top: -180px; right: -120px;
  animation: heroFloat1 18s ease-in-out infinite;
}
.hero-bg-shape--2 {
  width: 480px; height: 480px;
  background: var(--rr-mid);
  bottom: -100px; left: -60px;
  animation: heroFloat2 22s ease-in-out infinite;
}
.hero-bg-shape--3 {
  width: 320px; height: 320px;
  background: var(--rr-subtle);
  top: 40%; left: 45%;
  animation: heroFloat3 26s ease-in-out infinite;
}
@keyframes heroFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(-30px, 40px) scale(1.04); }
  66%       { transform: translate(20px,-30px) scale(.97); }
}
@keyframes heroFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(40px,-30px) scale(1.06); }
}
@keyframes heroFloat3 {
  0%, 100% { transform: translate(0,0); }
  40%       { transform: translate(-20px, 30px); }
  70%       { transform: translate(20px, -10px); }
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-text .eyebrow { margin-bottom: 20px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--rr-black);
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: 1.125rem;
  color: var(--rr-mid);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-disclaimer {
  font-size: 0.8125rem;
  color: var(--rr-subtle);
  letter-spacing: .01em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 520px;
  border-radius: var(--r-xl);
}

/* Background photo */
.hero-photo-wrap {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  z-index: 0;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,.18) 100%);
}


/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--rr-line), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}


/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.stats { background: var(--rr-black); padding: 56px 0; }
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 32px;
  flex: 1;
  min-width: 0;
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rr-white);
  margin-top: 0;
}
.stat-desc {
  font-size: 0.75rem;
  font-family: var(--font-ui);
  font-weight: 300;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
  line-height: 1.45;
  margin-top: 5px;
  text-align: center;
  max-width: 140px;
}
.stat-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services { background: var(--rr-white); }

/* Service pillars grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  background: var(--rr-white);
  border: 1px solid var(--rr-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.service-img-tag {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.25);
}
.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--rr-offwhite);
  border: 1px solid var(--rr-grey);
  border-radius: var(--r-md);
  color: var(--rr-black);
  flex-shrink: 0;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--rr-black);
  line-height: 1.2;
}
.service-desc {
  font-size: 0.9375rem;
  color: var(--rr-muted);
  line-height: 1.65;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--rr-grey);
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--rr-mid);
}
.service-list li::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rr-subtle);
  flex-shrink: 0;
}

/* Levels sub-section */
.levels-section {
  padding-top: 80px;
  border-top: 1px solid var(--rr-grey);
}
.levels-header {
  text-align: center;
  margin-bottom: 48px;
}
.levels-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--rr-black);
  margin-top: 8px;
}
.levels-title em { font-style: italic; font-weight: 400; }
.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.level-card {
  background: var(--rr-white);
  border: 1px solid var(--rr-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.level-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.level-card--featured {
  border-color: var(--rr-black);
  box-shadow: var(--shadow-md);
}
.level-img-wrap {
  position: relative;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}
.level-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.level-card:hover .level-img { transform: scale(1.05); }
.level-badge--overlay {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 1;
}
.level-popular {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--rr-black);
  color: var(--rr-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  z-index: 1;
}
.level-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.level-count {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rr-subtle);
}
.level-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--rr-black);
  line-height: 1.2;
}
.level-desc {
  font-size: 0.9rem;
  color: var(--rr-muted);
  line-height: 1.65;
  flex: 1;
}
.level-body .btn { margin-top: 8px; align-self: flex-start; }


/* ═══════════════════════════════════════════════════════
   ABOUT US
═══════════════════════════════════════════════════════ */
.about { background: var(--rr-offwhite); }

/* Story row — 2 cols */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 96px;
}
.about-story-text .eyebrow { margin-bottom: 12px; }
.about-story-text .section-title { margin-bottom: 0; }

.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--rr-mid);
  line-height: 1.5;
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--rr-white);
  border: 1px solid var(--rr-grey);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--rr-black);
}

/* Story image side */
.about-story-img {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.about-photo-badge {
  position: absolute;
  bottom: -18px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--rr-black);
  color: var(--rr-white);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.about-photo-badge svg { color: #2d7a3c; }

/* Instructors */
.instructors {
  padding-top: 80px;
  border-top: 1px solid var(--rr-line);
  margin-top: 24px;
}
.instructors-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.instructors-grid--single {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.instructors-grid--duo {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.instructor-avatar {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--rr-offwhite) 0%, #ede5d8 100%);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--rr-accent);
  letter-spacing: -0.02em;
  user-select: none;
}
.instructor-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--rr-accent);
  text-decoration: none;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--rr-grey);
  width: 100%;
  transition: color var(--dur-fast);
}
.instructor-linkedin:hover { color: var(--rr-black); }
.instructor-card {
  background: var(--rr-white);
  border: 1px solid var(--rr-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.instructor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.instructor-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
}
.instructor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out);
}
.instructor-card:hover .instructor-img { transform: scale(1.04); }
.instructor-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.instructor-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--rr-black);
}
.instructor-title {
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--rr-subtle);
  margin-bottom: 4px;
}
.instructor-bio {
  font-size: 0.9rem;
  color: var(--rr-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 4px;
}
/* creds + linkedin both sit at the bottom, visually aligned */
.instructor-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rr-grey);
}
.cred-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--rr-mid);
  background: var(--rr-offwhite);
  border: 1px solid var(--rr-grey);
  padding: 4px 10px;
  border-radius: var(--r-full);
}


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials { background: var(--rr-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--rr-offwhite);
  border: 1px solid var(--rr-grey);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--dur-base), border-color var(--dur-base);
}
.testimonial:hover { box-shadow: var(--shadow-md); border-color: var(--rr-line); }
.testimonial-stars {
  color: #e6b430;
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 400;
  font-style: italic;
  color: var(--rr-dark);
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--rr-line);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--rr-grey);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rr-black);
  line-height: 1.2;
}
.author-meta {
  font-size: 0.8rem;
  color: var(--rr-subtle);
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.pricing { background: var(--rr-offwhite); }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
}
.toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--rr-mid);
  cursor: pointer;
  transition: color var(--dur-fast);
}
.toggle-label.active { color: var(--rr-black); }
.save-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--level-beginner-bg);
  color: var(--level-beginner);
  padding: 3px 9px;
  border-radius: var(--r-full);
}
.price-switch {
  position: relative;
  width: 44px; height: 24px;
  cursor: pointer;
}
.price-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.price-slider {
  position: absolute;
  inset: 0;
  background: var(--rr-grey);
  border-radius: var(--r-full);
  transition: background var(--dur-base);
}
.price-slider::after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: var(--rr-white);
  border-radius: 50%;
  transition: transform var(--dur-base) var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.price-switch input:checked + .price-slider { background: var(--rr-black); }
.price-switch input:checked + .price-slider::after { transform: translateX(20px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 auto;
  max-width: 820px;
}
.price-card {
  background: var(--rr-white);
  border: 1.5px solid var(--rr-line);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-base);
}
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card--featured {
  background: var(--rr-black);
  border-color: var(--rr-black);
  color: var(--rr-white);
}

.price-popular-flag {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--rr-white);
  color: var(--rr-black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.price-tier {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--rr-subtle);
  margin-bottom: 16px;
}
.price-card--featured .price-tier { color: rgba(255,255,255,.5); }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
  line-height: 1;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--rr-muted);
  align-self: flex-start;
  margin-top: 8px;
}
.price-card--featured .price-currency { color: rgba(255,255,255,.55); }
.price-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -.04em;
  color: var(--rr-black);
  transition: opacity var(--dur-fast);
}
.price-card--featured .price-num { color: var(--rr-white); }
.price-period { font-size: 1rem; color: var(--rr-subtle); }
.price-card--featured .price-period { color: rgba(255,255,255,.5); }

.price-billed {
  font-size: 0.8125rem;
  color: var(--rr-subtle);
  margin-bottom: 28px;
}
.price-card--featured .price-billed { color: rgba(255,255,255,.45); }

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}
.price-features li.included { color: var(--rr-dark); }
.price-features li.excluded { color: var(--rr-subtle); }
.price-card--featured .price-features li.included { color: rgba(255,255,255,.85); }
.price-card--featured .price-features li.excluded { color: rgba(255,255,255,.35); }

.price-trial {
  text-align: center;
  font-size: 0.8rem;
  color: var(--rr-subtle);
  margin-top: 12px;
}
.price-card--featured .price-trial { color: rgba(255,255,255,.4); }

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--rr-subtle);
  letter-spacing: .02em;
  margin-top: 36px;
}


/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq { background: var(--rr-white); }
.faq-wrap { max-width: 720px; }
.faq-header { text-align: left; margin-bottom: 40px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--rr-line); }
.faq-item:first-child { border-top: 1px solid var(--rr-line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--rr-black);
  cursor: pointer;
  transition: color var(--dur-fast);
}
.faq-q:hover { color: var(--rr-mid); }
.faq-icon {
  flex-shrink: 0;
  color: var(--rr-subtle);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-a p {
  padding-bottom: 20px;
  font-size: 0.9375rem;
  color: var(--rr-muted);
  line-height: 1.7;
}
.faq-a.open { max-height: 400px; }


/* ═══════════════════════════════════════════════════════
   CONTACT US
═══════════════════════════════════════════════════════ */
.contact { background: var(--rr-offwhite); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info { padding-top: 4px; }
.contact-info .eyebrow { margin-bottom: 12px; }
.contact-info .body-text { margin-bottom: 40px; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--rr-white);
  border: 1px solid var(--rr-line);
  border-radius: var(--r-md);
  color: var(--rr-black);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-label {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--rr-subtle);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--rr-dark);
  font-weight: 500;
}
a.contact-detail-value:hover { color: var(--rr-black); text-decoration: underline; }

.contact-socials-label {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rr-subtle);
  margin-bottom: 12px;
}
.contact-social-links { display: flex; gap: 8px; flex-wrap: wrap; }
.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rr-mid);
  padding: 8px 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--rr-line);
  transition: border-color var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast);
}
.contact-social-link:hover {
  border-color: var(--rr-black);
  color: var(--rr-black);
  box-shadow: var(--shadow-sm);
}

/* Contact form */
.contact-form {
  background: var(--rr-white);
  border: 1px solid var(--rr-line);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--rr-mid);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: var(--rr-dark);
  background: var(--rr-white);
  border: 1.5px solid var(--rr-line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rr-black);
  box-shadow: 0 0 0 3px rgba(26,26,26,.08);
}
.field textarea { resize: vertical; line-height: 1.6; min-height: 120px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239a9a9a' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--rr-subtle); }
.form-status {
  font-size: 0.875rem;
  text-align: center;
  padding: 8px 0;
  min-height: 24px;
  font-weight: 500;
  transition: opacity var(--dur-base);
}
.form-status.success { color: var(--level-beginner); }
.form-status.error   { color: var(--level-advanced); }


/* ═══════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════ */
.cta-final {
  background: var(--rr-black);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-wrap {
  text-align: center;
  max-width: 680px;
  position: relative;
}
.cta-final-wrap .eyebrow { margin-bottom: 16px; }
.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--rr-white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.cta-final-title em { font-style: italic; font-weight: 400; }
.cta-final-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .02em;
}


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--rr-dark);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-bottom: 64px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 260px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo .logo-rr       { color: var(--rr-white); font-size: 1.375rem; }
.footer-logo .logo-wordmark { color: var(--rr-white); font-size: 0.9375rem; }
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer-logo-fallback { display: flex; align-items: center; gap: 10px; }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
}
.footer-social { display: flex; gap: 8px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.social-link:hover { background: rgba(255,255,255,.14); color: var(--rr-white); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--dur-fast);
}
.footer-col ul a:hover { color: var(--rr-white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,.25); }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* ── 1100px ── */
@media (max-width: 1100px) {
  .hero-wrap    { gap: 48px; }
  .hero-visual  { height: 440px; }
  .about-story  { gap: 48px; }
  .contact-wrap { gap: 48px; }
  .services-grid { gap: 16px; }
  .instructors-grid { gap: 20px; }
}

/* ── 960px ── */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  /* Hero → stack */
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text  { align-items: center; order: 1; }
  .hero-sub   { max-width: 100%; }
  .hero-visual { order: 2; height: 320px; width: 100%; }

  /* Services → 2 col on tablet */
  .services-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }

  /* Levels → 2 col on tablet */
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
  .levels-section { padding-top: 56px; }

  /* About → stack */
  .about-story {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
  }
  .about-story-img { order: 2; }
  .about-photo-badge { bottom: -16px; font-size: 0.75rem; padding: 10px 18px; }

  /* Instructors → 2 col */
  .instructors-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials → 1 col */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Pricing → already 2 col in base; keep centred */
  .pricing-grid { max-width: 700px; }

  /* CTA section */
  .cta-final { padding: 80px 0; }

  /* Contact → stack */
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }

  /* Stats dividers hidden on tablet */
  .stat-divider { display: none; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 0 20px; height: 64px; }
  .hero { padding-top: 64px; }
  .section-header { margin-bottom: 36px; }

  /* Mobile nav — overlay lives outside <nav> to escape backdrop-filter stacking context */
  .nav-mobile-overlay {
    display: none;
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 950;
    list-style: none;
    margin: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--rr-line);
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
  }
  .nav-mobile-overlay.open { display: flex; }
  .nav-mobile-link {
    font-size: 1rem;
    padding: 14px 24px;
    color: var(--rr-black);
    font-weight: 500;
    display: block;
    border-radius: 0;
  }
  .nav-mobile-link:hover { background: var(--rr-offwhite); }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-visual { height: 260px; }

  /* Stats bar → 2 × 2 grid */
  .stats-inner {
    flex-wrap: wrap;
    gap: 0;
  }
  .stat {
    flex: 0 0 50%;
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.07); }
  .stat:nth-child(3),
  .stat:nth-child(4)    { border-bottom: none; }
  .stat-desc { max-width: none; }
  .stat-divider { display: none; }

  /* Services → 1 col */
  .services-grid { grid-template-columns: 1fr; }

  /* Levels → 1 col */
  .levels-grid { grid-template-columns: 1fr; }

  /* Pricing → 1 col */
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  /* About photo badge */
  .about-photo-badge {
    font-size: 0.7rem;
    padding: 8px 14px;
    white-space: normal;
    text-align: center;
    max-width: 90%;
  }

  /* Instructors → 1 col */
  .instructors-grid,
  .instructors-grid--duo { grid-template-columns: 1fr; }

  /* CTA */
  .cta-final { padding: 64px 0; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }

  /* Footer */
  .footer-inner  { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand  { max-width: 100%; }
  .footer-links  { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .section      { padding: 56px 0; }
  .section-header { margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-visual  { height: 220px; }
  .levels-grid  { gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .price-card   { padding: 28px 24px; }

  /* Stats bar → full-width stacked */
  .stat {
    flex: 0 0 100%;
    padding: 16px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.07) !important;
  }
  .stat:last-child { border-bottom: none !important; }

  /* CTA */
  .cta-final { padding: 56px 0; }
  .cta-final-actions { gap: 10px; }

  /* Footer */
  .footer-links { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 20px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
