/* ============================================================
   ARUNA — "Mother Earthed": deep, moody, grounded
   Palette: forest near-black · moss green · antique gold · rust · cream
   ============================================================ */

:root {
  --bg:        #14180F;   /* page, deepest forest-black */
  --bg-2:      #1A1F13;   /* alternating sections */
  --panel:     #222818;   /* cards / panels */
  --panel-2:   #2B331E;   /* raised / accent panel */
  --moss:      #3C4730;
  --sage:      #98A07E;   /* muted sage accent */
  --cream:     #ECE3CD;   /* bright text, headings */
  --text:      #C8C2AC;   /* body text */
  --text-dim:  rgba(236,227,205,0.55);
  --gold:      #C6A05A;
  --gold-soft: #DCC086;
  --rust:      #B0613A;
  --rust-soft: #C77E50;
  --line:      rgba(198,160,90,0.18);
  --line-soft: rgba(236,227,205,0.10);

  --max: 1200px;
  --pad: clamp(1.25rem, 5vw, 6rem);

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Atmosphere: soft gold halo + grounding vignette ---- */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(72% 46% at 50% -8%, rgba(198,160,90,0.07), transparent 60%),
    radial-gradient(120% 72% at 50% 118%, rgba(60,71,48,0.24), transparent 55%);
}

/* ---- Botanical silhouettes drifting behind content ---- */
.botanical { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.leaf { position: absolute; opacity: 0.11; filter: brightness(0.82) saturate(0.9); will-change: transform; }
.leaf--tl { top: -9vw;  left: -10vw; width: 42vw; rotate: 18deg;   animation: drift-a 24s ease-in-out infinite; }
.leaf--tr { top: -12vw; right: -12vw; width: 40vw; rotate: -26deg;  transform: scaleX(-1); animation: drift-b 28s ease-in-out infinite; }
.leaf--ml { top: 42%;   left: -16vw; width: 30vw; rotate: 58deg;   opacity: 0.07; animation: drift-b 32s ease-in-out infinite; }
.leaf--bl { bottom: -13vw; left: -11vw; width: 36vw; rotate: -200deg; transform: scaleX(-1); animation: drift-a 26s ease-in-out infinite; }
.leaf--br { bottom: -12vw; right: -12vw; width: 44vw; rotate: 168deg;  animation: drift-b 30s ease-in-out infinite; }
/* eucalyptus is paler & airier — needs a touch more presence than the monstera */
.leaf--euc { opacity: 0.16; filter: brightness(0.95) saturate(0.8); }
.leaf--ml.leaf--euc { opacity: 0.11; }
@keyframes drift-a { 0%,100% { translate: 0 0; } 50% { translate: 0 -20px; } }
@keyframes drift-b { 0%,100% { translate: 0 0; } 50% { translate: 0 18px; } }

/* ---- Film grain overlay ---- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.14; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Typography helpers ---- */
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.h2 em { font-style: italic; color: var(--gold-soft); }

.eyebrow {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.76rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; flex: none; width: 32px; height: 1px;
  background: var(--gold); opacity: 0.6;
}
.sample .eyebrow, .pricing .eyebrow { justify-content: center; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  background: var(--rust); color: var(--cream);
  font-family: var(--sans); font-weight: 600; font-size: 0.96rem;
  padding: 0.95em 1.8em; border-radius: 100px;
  text-decoration: none; border: 1px solid var(--rust);
  cursor: pointer; transition: all 0.35s var(--ease);
  letter-spacing: 0.02em;
}
.btn:hover { background: var(--rust-soft); border-color: var(--rust-soft); transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(176,97,58,0.7); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(236,227,205,0.32); }
.btn--ghost:hover { background: var(--cream); color: var(--bg); border-color: var(--cream); box-shadow: none; }
.btn--small { padding: 0.65em 1.3em; font-size: 0.88rem; }
.btn--full { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(20,24,15,0.82);
  backdrop-filter: blur(14px);
  padding-top: 0.7rem; padding-bottom: 0.7rem;
  box-shadow: 0 1px 0 var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav__emblem { width: 26px; height: 26px; }
.nav__word { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; letter-spacing: 0.22em; color: var(--cream); }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  text-decoration: none; font-size: 0.95rem; font-weight: 500; color: var(--cream);
  position: relative; transition: color 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1.5px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--gold-soft); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--cream); transition: 0.3s var(--ease); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  transform: translateY(-100%); transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.8rem; text-decoration: none; color: var(--cream); }
.mobile-menu .btn { font-family: var(--sans); font-size: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--bg); }
.hero__media { position: absolute; inset: 0; z-index: 0; background: #0E1109; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82) contrast(1.04) brightness(0.82); animation: heroZoom 20s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12,15,8,0.94) 0%, rgba(16,20,11,0.55) 42%, rgba(16,20,11,0.32) 100%),
    radial-gradient(120% 80% at 82% 8%, rgba(198,160,90,0.22), transparent 55%);
}
.hero__inner { position: relative; z-index: 2; padding: 0 var(--pad) clamp(3.5rem, 9vh, 7rem); max-width: 900px; }
.hero__emblem { width: 56px; height: 56px; margin-bottom: 1.2rem; opacity: 0.95; }
.hero__title {
  font-family: var(--serif); color: var(--cream); font-weight: 400;
  font-size: clamp(3.2rem, 12vw, 8rem); line-height: 0.95; letter-spacing: -0.02em;
  margin: 0.2rem 0 1.4rem;
}
.hero__title span { display: block; }
.hero__title em { font-style: italic; color: var(--gold-soft); }
.hero__lead { color: rgba(236,227,205,0.9); font-size: clamp(1.1rem, 2vw, 1.4rem); max-width: 40ch; }
.hero__lead strong { color: var(--cream); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__meta { display: flex; align-items: center; gap: 0.9rem; margin-top: 2rem; color: rgba(236,227,205,0.72); font-size: 0.92rem; letter-spacing: 0.06em; }
.hero__meta .dot { color: var(--gold); }
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2; }
.hero__scroll span { display: block; width: 22px; height: 36px; border: 1.5px solid rgba(236,227,205,0.5); border-radius: 14px; position: relative; }
.hero__scroll span::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px; background: var(--gold);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--bg-2); color: var(--cream); overflow: hidden; padding: 0.95rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee__track { display: flex; gap: 2.4rem; white-space: nowrap; width: max-content; animation: marquee 36s linear infinite; }
.marquee__track span { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--cream); }
.marquee__track .sep { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STATEMENT BAND (editorial centerpiece)
   ============================================================ */
.statement {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(5rem, 15vh, 9.5rem) var(--pad);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.statement__leaf {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: min(440px, 64vw); opacity: 0.06; rotate: 4deg; pointer-events: none;
}
.statement__emblem { position: relative; width: 46px; height: 46px; margin: 0 auto 1.5rem; opacity: 0.95; }
.statement__kicker { position: relative; font-size: 0.78rem; letter-spacing: 0.55em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.statement__title {
  position: relative; font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: clamp(2.3rem, 7vw, 4.8rem); line-height: 1.04; letter-spacing: 0.005em;
}
.statement__title em { font-style: italic; color: var(--gold-soft); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(4rem, 11vh, 8.5rem) var(--pad); max-width: var(--max); margin: 0 auto; }
.section--alt { background: var(--bg-2); }
.section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.band { background: var(--bg-2); }
.band-inner { max-width: var(--max); margin: 0 auto; }

/* ---- Concept ---- */
.concept__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.concept__text p + p { margin-top: 1.1rem; }
.concept__text .lead { margin-top: 1.4rem; color: var(--cream); }
.concept__pillars { display: flex; flex-direction: column; gap: 0.9rem; }
.pillar { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.pillar:hover { transform: translateY(-4px); border-color: rgba(198,160,90,0.4); }
.pillar__num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.2rem; }
.pillar h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; margin: 0.3rem 0 0.4rem; color: var(--cream); }
.pillar p { color: var(--text); font-size: 0.97rem; }

/* ---- For whom ---- */
.forwhom { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; max-width: var(--max); margin: 0 auto; padding: clamp(3rem, 8vh, 6rem) var(--pad); }
.forwhom__media { border-radius: 18px; overflow: hidden; aspect-ratio: 1/1; background: var(--panel); border: 1px solid var(--line); }
.forwhom__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.02); }
.ticks { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.95rem; }
.ticks li { position: relative; padding-left: 2.1rem; font-size: 1.08rem; color: var(--cream); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.42em; width: 15px; height: 9px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg);
}

/* ---- Program cards ---- */
.program { background: radial-gradient(130% 60% at 100% 0%, rgba(60,71,48,0.5), transparent 60%); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 2.2rem 1.9rem;
  display: flex; flex-direction: column; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(198,160,90,0.4); box-shadow: 0 30px 50px -34px rgba(0,0,0,0.8); }
.card--accent { background: var(--panel-2); border-color: rgba(198,160,90,0.45); }
.card__icon { font-size: 1.5rem; color: var(--gold); width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: rgba(198,160,90,0.10); border: 1px solid var(--line); margin-bottom: 1.1rem; }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.55rem; color: var(--cream); }
.card__by { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 0.2rem 0 1rem; font-weight: 600; }
.card > p { color: var(--text); font-size: 0.98rem; }
.card ul { margin: 1.3rem 0 0; padding-left: 1.1rem; display: flex; flex-direction: column; gap: 0.45rem; }
.card ul li { font-size: 0.94rem; color: var(--text); }
.card ul li::marker { color: var(--gold); }

/* ---- Sample day timeline ---- */
.sample { background: var(--panel); border: 1px solid var(--line); border-radius: 28px; }
.sample .sample__head { max-width: 640px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); text-align: center; }
.timeline { list-style: none; max-width: 760px; margin: 0 auto; border-left: 2px solid rgba(198,160,90,0.4); }
.timeline li { position: relative; display: flex; gap: 1.6rem; padding: 0.85rem 0 0.85rem 2rem; align-items: baseline; }
.timeline li::before {
  content: ""; position: absolute; left: -7px; top: 1.3rem; width: 12px; height: 12px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--panel);
}
.timeline__time { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold-soft); min-width: 64px; }
.timeline__act { font-size: 1.05rem; color: var(--cream); }

/* ---- Instructors ---- */
.instructors__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.instructor { display: flex; flex-direction: column; }
.instructor__photo { aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; background: var(--panel); border: 1px solid var(--line); }
.instructor__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(1.02); transition: transform 0.7s var(--ease); }
.instructor:hover .instructor__photo img { transform: scale(1.05); }
.instructor__body { padding-top: 1.4rem; }
.instructor__role { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.instructor__body h3 { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; margin: 0.2rem 0 0.7rem; color: var(--cream); }
.instructor__body p { color: var(--text); }

/* ---- Place ---- */
.place { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; max-width: var(--max); margin: 0 auto; padding: clamp(4rem,11vh,8.5rem) var(--pad); }
.place__media { border-radius: 18px 18px 18px 120px; overflow: hidden; aspect-ratio: 5/4; background: var(--panel); border: 1px solid var(--line); }
.place__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(1.03); }
.place__features { list-style: none; margin: 1.7rem 0 1.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.place__features li { display: flex; flex-direction: column; }
.place__features strong { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; color: var(--cream); }
.place__features span { color: var(--text); font-size: 0.92rem; }
.note { font-size: 0.9rem; color: var(--text-dim); font-style: italic; }

/* ---- Pricing ---- */
.pricing .section__head { text-align: center; margin-left: auto; margin-right: auto; }
.price-card {
  max-width: 560px; margin: 0 auto; background: var(--panel); color: var(--cream);
  border: 1px solid rgba(198,160,90,0.45); border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem); box-shadow: 0 40px 80px -50px rgba(0,0,0,0.9);
}
.price-card__top { text-align: center; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.price-card__name { letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.8rem; color: var(--gold); font-weight: 600; }
.price-card__amount { font-family: var(--serif); font-size: clamp(2.8rem, 7vw, 4rem); font-weight: 400; margin: 0.4rem 0; line-height: 1; color: var(--cream); }
.price-card__amount span { font-size: 1.1rem; font-style: italic; color: var(--text-dim); margin-right: 0.3rem; }
.price-card__amount small { font-size: 1rem; color: var(--text-dim); margin-left: 0.3rem; }
.price-card__sub { color: var(--text); }
.price-card__list { list-style: none; margin: 1.6rem 0; display: flex; flex-direction: column; gap: 0.85rem; }
.price-card__list li { padding-left: 1.9rem; position: relative; color: var(--cream); }
.price-card__list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ---- FAQ ---- */
.faq { max-width: 820px; }
.faq__list { display: flex; flex-direction: column; }
.faq details { border-bottom: 1px solid var(--line); padding: 0.4rem 0; }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2.5rem 1.1rem 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.4rem); font-weight: 500; color: var(--cream);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.6rem; color: var(--gold); transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 1.3rem; color: var(--text); max-width: 64ch; }

/* ---- Contact ---- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,5rem); align-items: start; }
.contact__direct { margin-top: 1.6rem; font-size: 1.05rem; color: var(--cream); }
.contact__direct a { color: var(--gold-soft); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); }
.contact__form { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.6rem, 3vw, 2.4rem); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.45rem; color: var(--cream); }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--cream);
  background: var(--bg); border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 0.85rem 1rem; transition: border 0.25s, box-shadow 0.25s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,160,90,0.18); }
.form__status { margin-top: 0.9rem; font-size: 0.92rem; min-height: 1.2em; }
.form__status.ok { color: var(--sage); }
.form__status.err { color: var(--rust-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0F120A; color: var(--cream); text-align: center; padding: clamp(3rem,7vh,5rem) var(--pad); border-top: 1px solid var(--line); }
.footer__brand { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer__emblem { width: 30px; height: 30px; }
.footer__brand .nav__word { color: var(--cream); }
.footer__tag { color: var(--text-dim); font-family: var(--serif); font-style: italic; font-size: 1.05rem; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; margin: 1.8rem 0; }
.footer__links a { text-decoration: none; font-size: 0.95rem; color: rgba(236,227,205,0.78); transition: color 0.3s; }
.footer__links a:hover { color: var(--gold); }
.footer__copy { font-size: 0.85rem; color: var(--text-dim); }
.footer__copy a { color: rgba(236,227,205,0.7); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

.reveal { opacity: 0; transform: translateY(28px); animation: rise 1s var(--ease) forwards; }
.reveal--d1 { animation-delay: 0.12s; }
.reveal--d2 { animation-delay: 0.24s; }
.reveal--d3 { animation-delay: 0.42s; }
.reveal--d4 { animation-delay: 0.56s; }
.reveal--d5 { animation-delay: 0.72s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .concept__grid, .forwhom, .place, .contact__grid, .instructors__grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .forwhom__media { max-width: 420px; margin-inline: auto; }
  .place__media { order: -1; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .place__features { grid-template-columns: 1fr; }
  .hero__meta { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
}
