/* ═══════════════════════════════════════════════════════════
   ELLA ROSE YOGA  —  Design System
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Custom Properties ─────────────────────────────────── */
:root {
  /* Colour palette */
  --sage:          #7a9984;
  --sage-dark:     #526e5a;
  --sage-light:    #a8c0b0;
  --gold:          #c9a96e;
  --gold-light:    #e8d5b0;
  --gold-dim:      rgba(201, 169, 110, 0.18);
  --cream:         #f7f4ef;
  --off-white:     #fefdfb;
  --mist:          #edf1e9;
  --ink:           #1c2820;
  --stone:         #546058;
  --border:        #d5dad2;
  --border-light:  rgba(122, 153, 132, 0.16);

  /* Semantic aliases */
  --bg:            var(--cream);
  --surface:       var(--off-white);
  --text:          var(--ink);
  --text-soft:     var(--stone);
  --primary:       var(--sage);
  --primary-dark:  var(--sage-dark);
  --accent:        var(--gold);

  /* Radii */
  --radius-sm:     10px;
  --radius:        18px;
  --radius-card:   24px;
  --radius-pill:   999px;

  /* Shadows */
  --shadow-xs:     0 2px 8px rgba(28, 40, 32, 0.06);
  --shadow-sm:     0 6px 20px rgba(28, 40, 32, 0.08);
  --shadow:        0 16px 40px rgba(28, 40, 32, 0.10);
  --shadow-lg:     0 28px 64px rgba(28, 40, 32, 0.14);

  /* Layout */
  --max-w:         1160px;
  --gap:           clamp(1.25rem, 2.5vw, 2rem);
  --section-py:    clamp(4rem, 8vw, 7rem);
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.72;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
p { margin: 0; color: var(--text-soft); }

/* ── 3. Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .9rem; }
h3 { font-size: 1.38rem; margin-bottom: .45rem; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .7rem;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: .65rem;
}
.lead {
  font-size: 1.08rem;
  max-width: 54ch;
  line-height: 1.75;
}

/* ── 4. Layout Utilities ──────────────────────────────────── */
.container {
  width: min(var(--max-w), calc(100% - 2rem));
  margin-inline: auto;
}
.section { padding-block: var(--section-py); }
.section-muted { background: var(--mist); }
.section-head { margin-bottom: 2.5rem; }
.section-head .eyebrow { display: block; }
.text-center { text-align: center; }

.split {
  display: grid;
  gap: var(--gap);
  align-items: center;
}

/* ── 5. Navigation ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.site-header.scrolled {
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 6px 24px rgba(28, 40, 32, 0.07);
}
.navbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: min-height .35s ease;
}
.site-header.scrolled .navbar { min-height: 76px; }

/* Logo: mark + stacked text */
.logo {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: #fff;
  flex-shrink: 0;
  transition: color .3s ease, opacity .25s ease;
}
.site-header.scrolled .logo { color: var(--ink); }
.logo:hover { opacity: .82; }

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: border-color .3s ease, background .3s ease;
  position: relative;
}
.logo-mark svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .5s ease;
}
.logo:hover .logo-mark svg { transform: rotate(30deg); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: .28rem;
}
.logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.28rem;
  letter-spacing: .015em;
  font-weight: 600;
}
.logo-tagline {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  opacity: .72;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem 2rem;
}
.nav-link {
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .82);
  padding: .45rem 0;
  transition: color .25s ease;
}
.site-header.scrolled .nav-link { color: var(--stone); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--sage-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.7, 0, .2, 1);
}
.nav-link:hover { color: #fff; }
.site-header.scrolled .nav-link:hover { color: var(--ink); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Nav divider before CTA */
.nav-divider {
  width: 1px;
  height: 20px;
  background: currentColor;
  opacity: .22;
  margin: 0 -.5rem;
}

/* CTA button variant when over hero */
.site-header:not(.scrolled) .nav-menu .btn-sm {
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}
.site-header:not(.scrolled) .nav-menu .btn-sm:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px 4px;
  color: #fff;
  transition: color .3s ease;
}
.site-header.scrolled .menu-toggle { color: var(--ink); }
.menu-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* Offset main content since header is now fixed - handled per-section */
body { padding-top: 0; }

/* ── 6. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  position: relative;
  overflow: hidden;
  background: var(--sage);
  color: #fff;
  padding: .85rem 1.85rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .91rem;
  letter-spacing: .025em;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .28s ease, transform .22s ease, box-shadow .28s ease, color .22s ease, border-color .22s ease;
}

/* Shimmer sweep on hover */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  pointer-events: none;
  transition: left .55s ease;
}
.btn:hover::before { left: 160%; }
.btn:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(82, 110, 90, 0.32);
}
.btn:active { transform: translateY(0); box-shadow: none; }

/* Light variant (on dark backgrounds) */
.btn-light {
  background: #fff;
  color: var(--sage-dark);
  border-color: rgba(255, 255, 255, .3);
}
.btn-light:hover {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* Ghost variant */
.btn-ghost {
  background: transparent;
  border-color: var(--sage);
  color: var(--sage);
}
.btn-ghost:hover {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 10px 28px rgba(82, 110, 90, 0.25);
}

/* Ghost-light variant (on dark/hero backgrounds) */
.btn-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .45);
  color: rgba(255, 255, 255, .92);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

/* Small variant */
.btn-sm {
  padding: .55rem 1.2rem;
  font-size: .83rem;
}

/* ── 7. Hero Section ──────────────────────────────────────── */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&w=1920&q=80") center / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(14, 20, 16, 0.82) 0%,
    rgba(14, 20, 16, 0.52) 55%,
    rgba(14, 20, 16, 0.22) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding-block: 4rem;
}
.hero-content .eyebrow { color: var(--gold-light); margin-bottom: .8rem; }
.hero-content h1 { color: #fff; margin: 0 0 1rem; }
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-content .lead { color: rgba(255, 255, 255, .85); margin-bottom: 2rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
}

/* ── Decorative: Mandala Compass ─────────────────────────── */
.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

/* Soft warm glow behind mandala */
.hero-glow {
  fill: url(#heroGlow);
  opacity: .55;
}

/* Outer thin ring */
.ring-outer {
  fill: none;
  stroke: rgba(255, 255, 255, .22);
  stroke-width: 1;
}

/* Dashed rotating ring */
.ring-dashed {
  fill: none;
  stroke: rgba(232, 213, 176, .55);
  stroke-width: 1.2;
  stroke-dasharray: 3 14;
  animation: spin 60s linear infinite;
}

/* Tick ring — fine radial pulse */
.ring-ticks {
  fill: none;
  stroke: rgba(255, 255, 255, .5);
  stroke-width: 14;
  stroke-dasharray: 1.5 27.5;
  animation: spin 140s linear infinite reverse;
}

/* Major spokes — 12 elegant lines */
.spokes line {
  stroke: rgba(255, 255, 255, .42);
  stroke-width: 1;
  stroke-linecap: round;
}
.spokes-major {
  animation: spin 180s linear infinite;
  transform-origin: 0 0;
}
.spokes-major line { stroke: rgba(232, 213, 176, .55); stroke-width: 1.2; }

/* Inner lotus petals */
.lotus {
  animation: spin 90s linear infinite reverse;
  transform-origin: 0 0;
}
.lotus ellipse {
  fill: none;
  stroke: rgba(255, 255, 255, .28);
  stroke-width: 1;
}
.lotus .petal-accent {
  stroke: rgba(232, 213, 176, .6);
  stroke-width: 1.2;
}

/* Center dot */
.center-dot {
  fill: rgba(232, 213, 176, .9);
  animation: pulse 4s ease-in-out infinite;
  transform-origin: 0 0;
}

/* Floating luminous orbs (CSS elements, not SVG) */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-orbs .orb {
  position: absolute;
  bottom: -40px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 229, .85) 0%, rgba(232, 213, 176, .3) 50%, transparent 80%);
  box-shadow: 0 0 14px rgba(232, 213, 176, .5);
  animation: floatUp 16s ease-in infinite;
  opacity: 0;
}
.hero-orbs .orb:nth-child(1) { left:  8%; width:  6px; height:  6px; animation-duration: 18s; animation-delay:  0s; }
.hero-orbs .orb:nth-child(2) { left: 22%; width: 10px; height: 10px; animation-duration: 22s; animation-delay: -4s; }
.hero-orbs .orb:nth-child(3) { left: 36%; width:  5px; height:  5px; animation-duration: 15s; animation-delay: -9s; }
.hero-orbs .orb:nth-child(4) { left: 48%; width:  8px; height:  8px; animation-duration: 20s; animation-delay: -2s; }
.hero-orbs .orb:nth-child(5) { left: 62%; width:  4px; height:  4px; animation-duration: 17s; animation-delay: -12s; }
.hero-orbs .orb:nth-child(6) { left: 78%; width:  9px; height:  9px; animation-duration: 24s; animation-delay: -6s; }
.hero-orbs .orb:nth-child(7) { left: 88%; width:  6px; height:  6px; animation-duration: 19s; animation-delay: -14s; }

/* ── 8. Stats Band ────────────────────────────────────────── */
.stats-band {
  background: var(--ink);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  text-align: center;
}
.stat-value {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .5);
}

/* ── 9. Image Frame ───────────────────────────────────────── */
.image-frame {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
}
.image-frame:hover img { transform: scale(1.04); }

/* ── 10. Benefit Cards ────────────────────────────────────── */
.benefit-grid { display: grid; gap: 1.25rem; }
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.benefit-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--sage);
  margin-bottom: 1.1rem;
  border: 1px solid var(--border-light);
}
.benefit-card p { margin-top: .4rem; font-size: .93rem; }

/* ── 11. Class Cards ──────────────────────────────────────── */
.card-grid { display: grid; gap: 1.25rem; }
.class-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.class-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.class-card-img { height: 240px; overflow: hidden; flex-shrink: 0; }
.class-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s ease;
}
.class-card:hover .class-card-img img { transform: scale(1.07); }
.card-body { padding: 1.5rem; flex: 1; }
.card-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--sage-dark);
  background: var(--mist);
  padding: .22rem .75rem;
  border-radius: var(--radius-pill);
  margin-bottom: .75rem;
}
.card-body p { font-size: .92rem; margin-top: .3rem; }

/* ── 12. Marquee Band ─────────────────────────────────────── */
.marquee-band {
  background: var(--mist);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
}
.marquee-track span {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--stone);
  white-space: nowrap;
  padding: 0 2rem;
}
.marquee-track .dot {
  color: var(--sage);
  padding: 0 .1rem;
  font-size: 1.1rem;
}

/* ── 13. Testimonials ─────────────────────────────────────── */
.testimonial-grid { display: grid; gap: 1.25rem; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 2.2rem 1.9rem 1.8rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  margin: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--mist);
  position: absolute;
  top: .6rem;
  left: 1.6rem;
  pointer-events: none;
  font-weight: 700;
  user-select: none;
}
.testimonial p {
  font-style: italic;
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: .82rem;
  color: var(--sage-dark);
  letter-spacing: .05em;
}

/* ── 14. CTA Panel ────────────────────────────────────────── */
.cta-panel {
  background: linear-gradient(130deg, #3c5b47 0%, #5c7d6a 50%, #8a6d4c 100%);
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=1920&q=80") center / cover;
  opacity: .1;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner h2,
.cta-inner p { color: #fff; }
.cta-inner .lead { color: rgba(255, 255, 255, .82); margin: 0 auto 2.2rem; }
.cta-inner .eyebrow { color: rgba(255, 255, 255, .6); }

/* ── 15. Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .85);
  padding: 3.2rem 0 2.4rem;
}
.footer-grid { display: grid; gap: 2rem; }
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: #fff;
  display: block;
  margin-bottom: .45rem;
  transition: color .2s ease;
}
.footer-logo:hover { color: var(--gold-light); }
.footer-tagline { font-size: .83rem; color: rgba(255, 255, 255, .42); margin: 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; align-items: flex-start; }
.footer-nav a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  transition: color .2s ease;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact a,
.footer-contact p {
  font-size: .88rem;
  display: block;
  margin-bottom: .35rem;
  transition: color .2s ease;
}
.footer-contact a { color: rgba(255, 255, 255, .65); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { color: rgba(255, 255, 255, .35); }
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 2rem 0 1.4rem;
}
.footer-bottom { font-size: .78rem; color: rgba(255, 255, 255, .3); }

/* ── 16. Page Hero (About / Classes) ─────────────────────── */
.page-hero {
  position: relative;
  min-height: 62vh;
  padding: 10rem 0 5rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  animation: kenBurns 22s ease-out forwards;
  will-change: transform;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(14, 20, 16, .82) 0%, rgba(14, 20, 16, .55) 55%, rgba(14, 20, 16, .35) 100%),
    linear-gradient(180deg, rgba(14, 20, 16, .3) 0%, transparent 35%);
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  margin: .55rem 0 1rem;
  max-width: 18ch;
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero .lead { color: rgba(255, 255, 255, .88); font-size: 1.06rem; max-width: 52ch; }

/* Gold accent bar under hero */
.page-hero-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, transparent 100%);
  z-index: 1;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .55);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  pointer-events: none;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  animation: pulse 2.4s ease-in-out infinite;
}

/* ── 17. About Page ───────────────────────────────────────── */
.principles-grid { display: grid; gap: 1.25rem; }
.principles-grid article {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--sage);
  border-radius: var(--radius-card);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.principles-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.principles-grid article p { margin-top: .45rem; font-size: .93rem; }

.credential-list { display: flex; flex-direction: column; gap: .9rem; padding: 0; }
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .96rem;
  color: var(--stone);
}
.credential-list li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 8 7 12 13 5'/%3E%3C/svg%3E") center / 12px no-repeat;
  border-radius: 50%;
  margin-top: 2px;
  flex-shrink: 0;
}

.visual-break { overflow: hidden; padding-block: 0; }
.visual-break img {
  width: 100%;
  height: min(56vh, 520px);
  object-fit: cover;
  display: block;
}

.about-cta {
  background: var(--mist);
  border-top: 1px solid var(--border);
}
.about-cta-inner { text-align: center; max-width: 500px; margin: 0 auto; }
.about-cta-inner h2 { margin-bottom: .8rem; }
.about-cta-inner p { margin-bottom: 1.8rem; }

/* ── 18. Classes Page ─────────────────────────────────────── */
.class-list-grid { display: grid; gap: 1.25rem; }
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.offer-card h3 { margin-bottom: .5rem; }
.offer-card > p { font-size: .93rem; margin-bottom: .4rem; }
.offer-price {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--sage-dark);
  font-weight: 600;
  line-height: 1;
  margin: 1.2rem 0 .2rem;
}
.offer-price-note { font-size: .78rem; color: rgba(84, 96, 88, .7); margin-bottom: .8rem; }
.offer-meta {
  font-size: .85rem;
  color: var(--stone);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: .5rem 0 0;
}
.offer-meta span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.offer-divider { height: 1px; background: var(--border); margin: 1.4rem 0; }
.offer-cta { margin-top: auto; }

/* Schedule */
.schedule-grid { display: grid; gap: .85rem; }
.schedule-item {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: var(--shadow-xs);
  transition: transform .25s ease, box-shadow .25s ease;
}
.schedule-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.schedule-day {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-dark);
  min-width: 5.5rem;
  flex-shrink: 0;
}
.schedule-detail { font-size: .9rem; color: var(--stone); }
.schedule-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── 19. Booking Form ─────────────────────────────────────── */
.form-wrap { max-width: 740px; }
.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2.6rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.booking-form label {
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .02em;
  color: var(--ink);
}
.booking-form input,
.booking-form select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .84rem 1rem;
  font: inherit;
  font-size: .95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
  appearance: none;
  -webkit-appearance: none;
}
.booking-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23546058'%3E%3Cpath d='M8 10.5l-4-4h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}
.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3.5px rgba(122, 153, 132, .15);
  background: var(--surface);
}
.form-submit-row { margin-top: .5rem; }
.error { min-height: .9rem; color: #9d3f49; font-size: .8rem; display: block; margin-top: .15rem; }
.form-status { font-weight: 600; margin-top: 1rem; font-size: .95rem; }

/* ── 20. Reveal / Scroll Animations ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal.show { opacity: 1; transform: none; }

/* ── 21. Keyframes ────────────────────────────────────────── */
@keyframes flow { to { stroke-dashoffset: -500; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50%      { transform: scale(1.8); opacity: .4; }
}
@keyframes floatUp {
  0%    { transform: translateY(0)     translateX(0);   opacity: 0; }
  10%   { opacity: 1; }
  50%   { transform: translateY(-55vh) translateX(20px); }
  90%   { opacity: .8; }
  100%  { transform: translateY(-105vh) translateX(-15px); opacity: 0; }
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

/* ── 22. Mobile Navigation ────────────────────────────────── */
@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .logo-tagline { display: none; }
  .logo-name { font-size: 1.2rem; }
  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 6px);
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    padding: 1.2rem 1.4rem;
    background: rgba(247, 244, 239, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
  .nav-menu .nav-link {
    padding: .65rem 0;
    color: var(--stone);
    border-bottom: 1px solid rgba(213, 218, 210, .5);
  }
  .nav-menu .nav-link:last-of-type { border-bottom: 0; }
  .nav-menu .nav-link::after { display: none; }
  .nav-menu .nav-link:hover { color: var(--ink); }
  .nav-divider { display: none; }
  .nav-menu .btn {
    width: 100%;
    justify-content: center;
    margin-top: .5rem;
    background: var(--sage) !important;
    color: #fff !important;
    border-color: transparent !important;
  }
}

/* ── 23. Responsive Grids ─────────────────────────────────── */
@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .class-list-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr auto 1fr; align-items: start; }
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .class-list-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .principles-grid { grid-template-columns: repeat(3, 1fr); }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 24. Accessibility ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
