/* ============================================================
 * FILE: style.css
 * PATH: .../themes/theme-biebrich-garden/css/style.css
 * PROJECT: Studio 85 — Website Relaunch
 * THEME: Biebrich Garden
 * PURPOSE: Komplettes Premium-Stylesheet — Botanische Eleganz
 * ============================================================ */

/* ─── IMPORTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');

/* ─── CSS CUSTOM PROPERTIES ──────────────────────────────── */
:root {
  /* Farbpalette — Biebrich Garden */
  --clr-primary: #4A7C59;
  --clr-primary-light: #6B9E7A;
  --clr-primary-dark: #3A6247;
  --clr-secondary: #D4C4A8;
  --clr-secondary-light: #E5D9C4;
  --clr-secondary-dark: #B8A88C;
  --clr-accent: #C77D8E;
  --clr-accent-light: #D9A0AE;
  --clr-accent-dark: #A86070;
  --clr-dark: #141E14;
  --clr-dark-mid: #1E3320;
  --clr-dark-light: #2A4A30;
  --clr-light: #F4F7F0;
  --clr-light-mid: #E8EDE3;
  --clr-white: #FAFCF8;
  --clr-text: #2C2C2C;
  --clr-text-light: #6B6B6B;
  --clr-text-on-dark: #E8EDE3;

  /* Gradients */
  --grad-hero: linear-gradient(160deg, #141E14 0%, #1E3320 30%, #2A4A30 60%, #4A7C59 100%);
  --grad-section: linear-gradient(180deg, #F4F7F0 0%, #E8EDE3 100%);
  --grad-card: linear-gradient(135deg, rgba(74,124,89,0.05) 0%, rgba(199,125,142,0.05) 100%);
  --grad-overlay: linear-gradient(180deg, rgba(20,30,20,0.7) 0%, rgba(20,30,20,0.3) 50%, rgba(20,30,20,0.6) 100%);

  /* Typography */
  --font-headline: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-hero: clamp(3rem, 6vw, 5.5rem);
  --fs-h1: clamp(2.2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.8rem, 3vw, 2.8rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.8rem);
  --fs-h4: clamp(1.1rem, 1.5vw, 1.4rem);
  --fs-body: clamp(1rem, 1.2vw, 1.125rem);
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  --lh-headline: 1.2;
  --lh-body: 1.7;
  --ls-headline: -0.02em;
  --ls-wide: 0.15em;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 8rem;
  --sp-section: clamp(5rem, 10vw, 9rem);

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 900px;
  --max-width-wide: 1440px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --border-radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(20,30,20,0.06);
  --shadow-md: 0 4px 20px rgba(20,30,20,0.08);
  --shadow-lg: 0 8px 40px rgba(20,30,20,0.12);
  --shadow-xl: 0 16px 64px rgba(20,30,20,0.16);
  --shadow-glow: 0 0 40px rgba(74,124,89,0.15);
  --shadow-accent: 0 0 30px rgba(199,125,142,0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 200ms;
  --dur-normal: 400ms;
  --dur-slow: 700ms;
  --dur-xslow: 1200ms;
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--clr-text);
  background-color: var(--clr-white);
  overflow-x: hidden;
}

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

a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

a:hover {
  color: var(--clr-primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 600;
  line-height: var(--lh-headline);
  letter-spacing: var(--ls-headline);
  color: var(--clr-dark);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p + p { margin-top: var(--sp-sm); }

::selection {
  background: rgba(74,124,89,0.2);
  color: var(--clr-dark);
}

/* ─── UTILITY CLASSES ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--wide {
  max-width: var(--max-width-wide);
}

.section {
  padding: var(--sp-section) 0;
}

.section--dark {
  background: var(--clr-dark);
  color: var(--clr-text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--clr-white);
}

.section--light {
  background: var(--clr-light);
}

.section--gradient {
  background: var(--grad-section);
}

.text-center { text-align: center; }
.text-accent { color: var(--clr-accent); }
.text-primary { color: var(--clr-primary); }
.text-light { color: var(--clr-text-light); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── BOTANICAL ORNAMENTS ────────────────────────────────── */
.ornament-leaf {
  position: relative;
}

.ornament-leaf::before,
.ornament-leaf::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  opacity: 0.12;
  border-radius: 0 50% 50% 50%;
}

.ornament-leaf::before {
  top: -10px;
  left: -20px;
  transform: rotate(-45deg);
}

.ornament-leaf::after {
  bottom: -10px;
  right: -20px;
  transform: rotate(135deg);
}

.divider-botanical {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: var(--sp-lg) 0;
}

.divider-botanical::before,
.divider-botanical::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-primary), transparent);
}

.divider-botanical .leaf-icon {
  width: 24px;
  height: 24px;
  color: var(--clr-primary);
  opacity: 0.6;
}

/* Organische Shapes */
.organic-shape {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.06;
  pointer-events: none;
}

.organic-shape--1 {
  width: 500px;
  height: 500px;
  background: var(--clr-primary);
  top: -200px;
  right: -150px;
  animation: morph 20s ease-in-out infinite;
}

.organic-shape--2 {
  width: 350px;
  height: 350px;
  background: var(--clr-accent);
  bottom: -100px;
  left: -100px;
  animation: morph 15s ease-in-out infinite reverse;
}

@keyframes morph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  25% { border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%; }
  50% { border-radius: 50% 50% 60% 40% / 40% 50% 60% 50%; }
  75% { border-radius: 70% 30% 40% 60% / 50% 50% 40% 60%; }
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--sp-md) 0;
  transition: all var(--dur-slow) var(--ease-out);
  background: transparent;
}

.nav.scrolled {
  background: rgba(20,30,20,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--sp-sm) 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.nav__logo-text {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: -0.02em;
}

.nav__logo-text span {
  color: var(--clr-accent);
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--clr-secondary);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--clr-text-on-dark);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  position: relative;
  padding: var(--sp-xs) 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--dur-normal) var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--clr-accent-light);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-dark);
  background: var(--clr-secondary);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: all var(--dur-fast) var(--ease-out);
}

.nav__cta:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-xs);
}

.nav__toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--clr-white);
  transition: all var(--dur-normal) var(--ease-out);
  transform-origin: center;
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-hero);
  overflow: hidden;
}

.hero__parallax {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__parallax-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero__parallax-layer--sky {
  background: linear-gradient(180deg, #0D1A0F 0%, #1E3320 40%, #2A4A30 70%, #4A7C59 100%);
  opacity: 0.4;
}

.hero__parallax-layer--castle {
  bottom: 15%;
  height: 60%;
  opacity: 0.08;
}

.hero__parallax-layer--trees {
  bottom: 5%;
  height: 50%;
  opacity: 0.12;
}

.hero__parallax-layer--bushes {
  bottom: 0;
  height: 35%;
  opacity: 0.15;
}

.hero__parallax-layer--flowers {
  bottom: -5%;
  height: 25%;
  opacity: 0.1;
}

/* Castle SVG Silhouette */
.castle-silhouette {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  opacity: 0.06;
  color: var(--clr-secondary);
}

/* Tree Silhouettes */
.tree-silhouettes {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  opacity: 0.08;
}

.hero__petal-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__sunrays {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 80%;
  height: 80%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  background: conic-gradient(
    from 200deg at 70% 20%,
    transparent 0deg,
    rgba(212,196,168,0.3) 10deg,
    transparent 20deg,
    transparent 40deg,
    rgba(212,196,168,0.2) 50deg,
    transparent 60deg,
    transparent 100deg,
    rgba(212,196,168,0.15) 110deg,
    transparent 120deg,
    transparent 160deg,
    rgba(212,196,168,0.25) 170deg,
    transparent 180deg,
    transparent 220deg,
    rgba(212,196,168,0.1) 230deg,
    transparent 240deg,
    transparent 360deg
  );
  animation: sunrays-rotate 60s linear infinite;
}

@keyframes sunrays-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 var(--sp-lg);
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-secondary);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--sp-lg);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(212,196,168,0.3);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  background: rgba(212,196,168,0.08);
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-headline);
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: var(--sp-md);
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--clr-accent-light);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--clr-secondary-light);
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.9s forwards;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  color: var(--clr-secondary);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}

.hero__scroll-indicator span {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--clr-secondary), transparent);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.btn--primary:hover {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74,124,89,0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(212,196,168,0.4);
}

.btn--secondary:hover {
  background: rgba(212,196,168,0.1);
  border-color: var(--clr-secondary);
  color: var(--clr-secondary);
  transform: translateY(-3px);
}

.btn--accent {
  background: var(--clr-accent);
  color: var(--clr-white);
}

.btn--accent:hover {
  background: var(--clr-accent-dark);
  color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.btn--outline {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}

.btn--outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-3px);
}

.btn--lg {
  padding: 1.2rem 2.8rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-xs);
}

/* ─── SECTION HEADERS ────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--sp-2xl);
}

.section-header__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-primary);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}

.section-header__title {
  margin-bottom: var(--sp-md);
}

.section-header__description {
  color: var(--clr-text-light);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
}

.section--dark .section-header__tag {
  color: var(--clr-accent-light);
}

.section--dark .section-header__description {
  color: rgba(232,237,227,0.7);
}

/* ─── LEAF BORDER DECORATION ─────────────────────────────── */
.leaf-border {
  position: relative;
}

.leaf-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' fill='none'%3E%3Cpath d='M0,30 Q60,0 120,30 Q180,60 240,30 Q300,0 360,30 Q420,60 480,30 Q540,0 600,30 Q660,60 720,30 Q780,0 840,30 Q900,60 960,30 Q1020,0 1080,30 Q1140,60 1200,30 Q1260,0 1320,30 Q1380,60 1440,30' stroke='%234A7C59' stroke-width='1.5' opacity='0.15'/%3E%3C/svg%3E") repeat-x center;
  pointer-events: none;
}

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  position: relative;
  background: var(--clr-white);
  border-radius: var(--border-radius-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-normal) var(--ease-out);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  opacity: 0;
  transition: opacity var(--dur-normal);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74,124,89,0.08);
  border-radius: var(--border-radius);
  margin-bottom: var(--sp-md);
  color: var(--clr-primary);
  font-size: 1.5rem;
  transition: all var(--dur-normal);
}

.card:hover .card__icon {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: scale(1.1) rotate(-5deg);
}

.card__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--sp-sm);
}

.card__text {
  color: var(--clr-text-light);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* Dark card variant */
.card--dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.card--dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.card--dark .card__icon {
  background: rgba(199,125,142,0.15);
  color: var(--clr-accent-light);
}

.card--dark:hover .card__icon {
  background: var(--clr-accent);
  color: var(--clr-white);
}

/* ─── GRID LAYOUTS ───────────────────────────────────────── */
.grid {
  display: grid;
  gap: var(--sp-lg);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ─── ABOUT / INTRODUCTION ───────────────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.intro__image-wrap {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--grad-card);
}

.intro__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(74,124,89,0.1);
  border-radius: var(--border-radius-xl);
  pointer-events: none;
}

.intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__decorative-leaf {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  opacity: 0.15;
  color: var(--clr-primary);
  transform: rotate(30deg);
}

.intro__content {
  padding: var(--sp-lg) 0;
}

.intro__tag {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-primary);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}

.intro__title {
  margin-bottom: var(--sp-md);
}

.intro__text {
  color: var(--clr-text-light);
  margin-bottom: var(--sp-lg);
}

.intro__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}

.intro__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
}

.intro__feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--clr-primary);
  margin-top: 2px;
}

/* ─── COURSE CARDS ───────────────────────────────────────── */
.course-card {
  position: relative;
  background: var(--clr-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-normal) var(--ease-out);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.course-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--grad-hero);
}

.course-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.course-card:hover .course-card__image img {
  transform: scale(1.08);
}

.course-card__badge {
  position: absolute;
  top: var(--sp-md);
  left: var(--sp-md);
  padding: 0.3rem 0.8rem;
  background: rgba(20,30,20,0.8);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-accent-light);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.course-card__body {
  padding: var(--sp-lg);
}

.course-card__level {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-xs);
  color: var(--clr-primary);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--sp-xs);
}

.course-card__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--sp-xs);
}

.course-card__text {
  color: var(--clr-text-light);
  font-size: var(--fs-small);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
}

.course-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding-top: var(--sp-sm);
  border-top: 1px solid rgba(74,124,89,0.1);
  font-size: var(--fs-small);
  color: var(--clr-text-light);
}

.course-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.course-card__meta-icon {
  width: 16px;
  height: 16px;
  color: var(--clr-primary);
}

/* ─── TEAM SECTION ───────────────────────────────────────── */
.team-card {
  text-align: center;
  padding: var(--sp-xl);
}

.team-card__avatar {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto var(--sp-md);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--clr-primary);
  box-shadow: 0 0 0 8px rgba(74,124,89,0.08);
  transition: all var(--dur-normal) var(--ease-out);
}

.team-card:hover .team-card__avatar {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 8px rgba(199,125,142,0.12);
  transform: scale(1.05);
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-size: var(--fs-h4);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: var(--fs-small);
  color: var(--clr-accent);
  font-weight: 500;
  margin-bottom: var(--sp-sm);
}

.team-card__bio {
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  line-height: 1.6;
}

/* ─── PRICING ────────────────────────────────────────────── */
.pricing-card {
  position: relative;
  background: var(--clr-white);
  border-radius: var(--border-radius-lg);
  padding: var(--sp-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-normal) var(--ease-out);
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--clr-primary);
  background: linear-gradient(180deg, rgba(74,124,89,0.03), var(--clr-white));
  transform: scale(1.05);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1.2rem;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-headline);
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-xs);
}

.pricing-card__desc {
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  margin-bottom: var(--sp-lg);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--sp-lg);
}

.pricing-card__amount {
  font-family: var(--font-headline);
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1;
}

.pricing-card__currency {
  font-size: var(--fs-h3);
  color: var(--clr-primary);
  font-weight: 600;
}

.pricing-card__period {
  font-size: var(--fs-small);
  color: var(--clr-text-light);
}

.pricing-card__features {
  text-align: left;
  margin-bottom: var(--sp-xl);
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-xs) 0;
  font-size: var(--fs-small);
  color: var(--clr-text);
}

.pricing-card__feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--clr-primary);
}

/* ─── LOCATIONS ──────────────────────────────────────────── */
.location-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.location-card__bg {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.location-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.location-card:hover .location-card__bg img {
  transform: scale(1.08);
}

.location-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-overlay);
  transition: background var(--dur-normal);
}

.location-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-xl);
  z-index: 2;
}

.location-card__tag {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-accent-light);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--sp-xs);
}

.location-card__title {
  font-size: var(--fs-h3);
  color: var(--clr-white);
  margin-bottom: var(--sp-xs);
}

.location-card__address {
  font-size: var(--fs-small);
  color: var(--clr-secondary);
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonial {
  position: relative;
  padding: var(--sp-xl);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
}

.testimonial__quote {
  font-family: var(--font-headline);
  font-size: var(--fs-h4);
  font-style: italic;
  color: var(--clr-secondary-light);
  line-height: 1.6;
  margin-bottom: var(--sp-lg);
  position: relative;
  padding-left: var(--sp-lg);
}

.testimonial__quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--clr-accent);
  line-height: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(74,124,89,0.2);
  overflow: hidden;
}

.testimonial__name {
  font-weight: 600;
  color: var(--clr-white);
  font-size: var(--fs-small);
}

.testimonial__detail {
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
}

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: var(--sp-md);
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: var(--sp-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--clr-text);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-light-mid);
  border-radius: var(--border-radius-sm);
  padding: 0.9rem 1.2rem;
  transition: all var(--dur-fast) var(--ease-out);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(74,124,89,0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Dark form variant */
.section--dark .form-label {
  color: var(--clr-secondary);
}

.section--dark .form-input,
.section--dark .form-textarea,
.section--dark .form-select {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: var(--clr-white);
}

.section--dark .form-input:focus,
.section--dark .form-textarea:focus,
.section--dark .form-select:focus {
  border-color: var(--clr-primary-light);
  box-shadow: 0 0 0 4px rgba(74,124,89,0.15);
}

.section--dark .form-input::placeholder,
.section--dark .form-textarea::placeholder {
  color: rgba(232,237,227,0.4);
}

/* ─── SCHEDULE TABLE ─────────────────────────────────────── */
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.schedule-table thead {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.schedule-table th {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 1rem 1.2rem;
  text-align: left;
}

.schedule-table td {
  padding: 1rem 1.2rem;
  font-size: var(--fs-small);
  border-bottom: 1px solid var(--clr-light-mid);
  vertical-align: top;
}

.schedule-table tbody tr {
  transition: background var(--dur-fast);
}

.schedule-table tbody tr:hover {
  background: rgba(74,124,89,0.04);
}

.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: var(--fs-xs);
  font-weight: 600;
}

.schedule-tag--beginner {
  background: rgba(74,124,89,0.1);
  color: var(--clr-primary);
}

.schedule-tag--intermediate {
  background: rgba(212,196,168,0.3);
  color: var(--clr-secondary-dark);
}

.schedule-tag--advanced {
  background: rgba(199,125,142,0.15);
  color: var(--clr-accent);
}

/* ─── MAP EMBED ──────────────────────────────────────────── */
.map-embed {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--clr-dark);
  color: var(--clr-text-on-dark);
  padding: var(--sp-3xl) 0 var(--sp-lg);
  position: relative;
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}

.footer__brand-name {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  color: var(--clr-white);
  margin-bottom: var(--sp-xs);
}

.footer__brand-name span {
  color: var(--clr-accent);
}

.footer__brand-text {
  color: rgba(232,237,227,0.6);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: var(--sp-sm);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--clr-secondary);
  transition: all var(--dur-fast) var(--ease-out);
}

.footer__social-link:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-3px);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

.footer__link {
  display: block;
  font-size: var(--fs-small);
  color: rgba(232,237,227,0.6);
  padding: var(--sp-xs) 0;
  transition: color var(--dur-fast);
}

.footer__link:hover {
  color: var(--clr-accent-light);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-xs);
  color: rgba(232,237,227,0.4);
}

.footer__bottom a {
  color: rgba(232,237,227,0.4);
}

.footer__bottom a:hover {
  color: var(--clr-accent-light);
}

/* ─── BOTANICAL GROWTH ANIMATION ─────────────────────────── */
.botanical-growth {
  position: relative;
  width: 200px;
  height: 300px;
  margin: 0 auto;
}

.botanical-growth__stem {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 3px;
  height: 0;
  background: linear-gradient(to top, var(--clr-primary-dark), var(--clr-primary));
  transform: translateX(-50%);
  transform-origin: bottom center;
  border-radius: 2px;
  transition: height 1.5s var(--ease-out);
}

.botanical-growth.animate .botanical-growth__stem {
  height: 70%;
}

.botanical-growth__leaf {
  position: absolute;
  width: 40px;
  height: 20px;
  background: var(--clr-primary);
  border-radius: 0 50% 50% 0;
  opacity: 0;
  transition: all 0.8s var(--ease-bounce);
}

.botanical-growth__leaf--left {
  border-radius: 50% 0 0 50%;
  transform-origin: right center;
  transform: scale3d(0, 0, 0) rotateZ(30deg);
}

.botanical-growth__leaf--right {
  transform-origin: left center;
  transform: scale3d(0, 0, 0) rotateZ(-30deg);
}

.botanical-growth.animate .botanical-growth__leaf {
  opacity: 1;
  transform: scale3d(1, 1, 1) rotateZ(0deg);
}

.botanical-growth__leaf:nth-child(2) { left: calc(50% - 43px); bottom: 55%; transition-delay: 0.6s; }
.botanical-growth__leaf:nth-child(3) { left: 50%; bottom: 55%; transition-delay: 0.6s; }
.botanical-growth__leaf:nth-child(4) { left: calc(50% - 43px); bottom: 40%; transition-delay: 0.9s; }
.botanical-growth__leaf:nth-child(5) { left: 50%; bottom: 40%; transition-delay: 0.9s; }
.botanical-growth__leaf:nth-child(6) { left: calc(50% - 43px); bottom: 25%; transition-delay: 1.2s; }
.botanical-growth__leaf:nth-child(7) { left: 50%; bottom: 25%; transition-delay: 1.2s; }

.botanical-growth__flower {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 50px;
  height: 50px;
  transition: transform 1s var(--ease-bounce) 1.5s;
}

.botanical-growth.animate .botanical-growth__flower {
  transform: translateX(-50%) scale(1);
}

/* ─── 3D FLOWER BLOOM ────────────────────────────────────── */
.flower-bloom {
  position: relative;
  width: 120px;
  height: 120px;
  cursor: pointer;
  perspective: 600px;
}

.flower-bloom__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: var(--clr-secondary);
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 15px rgba(212,196,168,0.4);
}

.flower-bloom__petal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 50px;
  background: var(--clr-accent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform-origin: center bottom;
  transform: translate(-50%, -100%) rotateX(80deg);
  transition: transform 0.8s var(--ease-out);
  opacity: 0.85;
}

.flower-bloom:hover .flower-bloom__petal,
.flower-bloom.bloom .flower-bloom__petal {
  transform: translate(-50%, -100%) rotateX(15deg);
}

.flower-bloom__petal:nth-child(2) { transform: translate(-50%, -100%) rotate(45deg) rotateX(80deg); }
.flower-bloom__petal:nth-child(3) { transform: translate(-50%, -100%) rotate(90deg) rotateX(80deg); }
.flower-bloom__petal:nth-child(4) { transform: translate(-50%, -100%) rotate(135deg) rotateX(80deg); }
.flower-bloom__petal:nth-child(5) { transform: translate(-50%, -100%) rotate(180deg) rotateX(80deg); }
.flower-bloom__petal:nth-child(6) { transform: translate(-50%, -100%) rotate(225deg) rotateX(80deg); }
.flower-bloom__petal:nth-child(7) { transform: translate(-50%, -100%) rotate(270deg) rotateX(80deg); }
.flower-bloom__petal:nth-child(8) { transform: translate(-50%, -100%) rotate(315deg) rotateX(80deg); }

.flower-bloom:hover .flower-bloom__petal:nth-child(2),
.flower-bloom.bloom .flower-bloom__petal:nth-child(2) { transform: translate(-50%, -100%) rotate(45deg) rotateX(15deg); transition-delay: 0.05s; }
.flower-bloom:hover .flower-bloom__petal:nth-child(3),
.flower-bloom.bloom .flower-bloom__petal:nth-child(3) { transform: translate(-50%, -100%) rotate(90deg) rotateX(15deg); transition-delay: 0.1s; }
.flower-bloom:hover .flower-bloom__petal:nth-child(4),
.flower-bloom.bloom .flower-bloom__petal:nth-child(4) { transform: translate(-50%, -100%) rotate(135deg) rotateX(15deg); transition-delay: 0.15s; }
.flower-bloom:hover .flower-bloom__petal:nth-child(5),
.flower-bloom.bloom .flower-bloom__petal:nth-child(5) { transform: translate(-50%, -100%) rotate(180deg) rotateX(15deg); transition-delay: 0.2s; }
.flower-bloom:hover .flower-bloom__petal:nth-child(6),
.flower-bloom.bloom .flower-bloom__petal:nth-child(6) { transform: translate(-50%, -100%) rotate(225deg) rotateX(15deg); transition-delay: 0.25s; }
.flower-bloom:hover .flower-bloom__petal:nth-child(7),
.flower-bloom.bloom .flower-bloom__petal:nth-child(7) { transform: translate(-50%, -100%) rotate(270deg) rotateX(15deg); transition-delay: 0.3s; }
.flower-bloom:hover .flower-bloom__petal:nth-child(8),
.flower-bloom.bloom .flower-bloom__petal:nth-child(8) { transform: translate(-50%, -100%) rotate(315deg) rotateX(15deg); transition-delay: 0.35s; }

/* ─── BUTTERFLY ANIMATION ────────────────────────────────── */
.butterfly {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.7;
}

.butterfly__body {
  width: 4px;
  height: 16px;
  background: var(--clr-accent-dark);
  border-radius: 2px;
  position: relative;
}

.butterfly__wing {
  position: absolute;
  width: 18px;
  height: 24px;
  border-radius: 50% 50% 30% 50%;
  top: 0;
}

.butterfly__wing--left {
  right: 100%;
  transform-origin: right center;
  animation: wingFlap 0.3s ease-in-out infinite alternate;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
}

.butterfly__wing--right {
  left: 100%;
  transform-origin: left center;
  animation: wingFlap 0.3s ease-in-out infinite alternate-reverse;
  background: linear-gradient(-135deg, var(--clr-accent), var(--clr-accent-light));
  border-radius: 50% 50% 50% 30%;
}

@keyframes wingFlap {
  from { transform: rotateY(0deg) scaleX(1); }
  to { transform: rotateY(60deg) scaleX(0.6); }
}

/* ─── CTA / BANNER ───────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--grad-hero);
  border-radius: var(--border-radius-xl);
  padding: var(--sp-3xl) var(--sp-2xl);
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.cta-banner__bg-shape--1 {
  width: 400px;
  height: 400px;
  background: var(--clr-primary);
  top: -150px;
  right: -100px;
}

.cta-banner__bg-shape--2 {
  width: 300px;
  height: 300px;
  background: var(--clr-accent);
  bottom: -100px;
  left: -80px;
}

.cta-banner__title {
  font-size: var(--fs-h2);
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
  position: relative;
  z-index: 2;
}

.cta-banner__text {
  color: var(--clr-secondary);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 550px;
  margin: 0 auto var(--sp-xl);
  position: relative;
  z-index: 2;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
}

/* ─── FAQ ACCORDION ──────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--clr-light-mid);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-headline);
  font-size: var(--fs-h4);
  color: var(--clr-dark);
  text-align: left;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--clr-primary);
  transition: transform var(--dur-normal) var(--ease-out);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-normal) var(--ease-out);
}

.faq-item.open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 0 var(--sp-md);
  color: var(--clr-text-light);
  line-height: 1.7;
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--dur-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--left.visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--right.visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.9);
}

.reveal--scale.visible {
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--dur-slow) var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: none; }

/* ─── ANIMATIONS KEYFRAMES ───────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes gentleRotate {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .intro { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .intro__image-wrap { max-width: 500px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  /* Mobile Menu */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20,30,20,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: var(--sp-xl);
    z-index: 999;
  }

  .nav__links.open .nav__link {
    font-size: 1.4rem;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding: 0 var(--sp-sm);
  }

  .hero__actions {
    flex-direction: column;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-8px);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-sm);
    text-align: center;
  }

  .section {
    padding: var(--sp-2xl) 0;
  }

  .schedule-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .card { padding: var(--sp-lg); }
  .course-card__body { padding: var(--sp-md); }
  .pricing-card { padding: var(--sp-lg); }
}

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

  .reveal,
  .stagger-children > * {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ─── PRINT ──────────────────────────────────────────────── */
@media print {
  .nav,
  .hero__petal-canvas,
  .hero__sunrays,
  .organic-shape,
  .butterfly,
  .hero__scroll-indicator {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
