/* ═══════════════════════════════════════════
   YODARA — Main Stylesheet
   Brand: Cormorant Garamond + Jost
   Palette: Cream / Linen / Gold / Blush / Stone / Espresso / Dark
═══════════════════════════════════════════ */

/* ─── BREATHING EXPERIENCE ─── */
#breathOverlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: opacity 0.8s ease;
}

#breathOverlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.breath-logo {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}

.breath-circle-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.breath-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
}

.breath-ring-1 {
  width: 200px;
  height: 200px;
  animation: ringPulse 4s ease-in-out infinite;
}

.breath-ring-2 {
  width: 200px;
  height: 200px;
  animation: ringPulse 4s ease-in-out infinite 0.6s;
}

.breath-ring-3 {
  width: 200px;
  height: 200px;
  animation: ringPulse 4s ease-in-out infinite 1.2s;
}

@keyframes ringPulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.breath-core {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,169,125,0.25) 0%, rgba(196,169,125,0.04) 100%);
  border: 1px solid rgba(196,169,125,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition: transform 4s ease-in-out, opacity 4s ease-in-out;
  opacity: 0.7;
}

.breath-text-wrap {
  text-align: center;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
}

.breath-word {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 8px;
  color: var(--cream);
  opacity: 0;
  position: absolute;
  text-transform: uppercase;
  transition: opacity 0.8s ease;
}

.breath-word.visible { opacity: 1; }

.breath-technique {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.breath-technique-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
}

.breath-technique-desc {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 1px;
  color: rgba(250,247,243,0.35);
  max-width: 300px;
  line-height: 1.7;
}

.breath-scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 1s ease;
}

.breath-scroll-hint.visible { opacity: 1; }

.breath-scroll-hint span {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(250,247,243,0.25);
}

.breath-scroll-arrow {
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

.breath-skip {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(250,247,243,0.25);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  transition: color 0.3s;
  position: absolute;
  bottom: 40px;
}

.breath-skip:hover { color: rgba(250,247,243,0.6); }

.breath-counter {
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 80px;
}

.breath-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(196,169,125,0.3);
  transition: background 0.4s;
}

.breath-dot.active { background: var(--gold); }

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

:root {
  --cream:    #faf7f3;
  --linen:    #e8ddd0;
  --gold:     #c4a97d;
  --gold-dark:#d4b98d;
  --blush:    #d4c5b8;
  --stone:    #9a8c82;
  --espresso: #3d3530;
  --dark:     #2e2822;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --nav-h: 72px;
  --max-w: 1200px;
  --pad:   clamp(20px, 5vw, 80px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ─── TYPOGRAPHY HELPERS ─── */
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 28px;
}

.section-title em {
  font-style: italic;
  color: var(--stone);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-dark {
  background: var(--espresso);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--dark);
}

.btn-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--cream);
}

/* ─── PLACEHOLDERS ─── */
.img-placeholder,
.hero-placeholder,
.yoga-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.yoga-img-placeholder {
  height: 320px;
  background: #ede5da;
}

.placeholder-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.placeholder-icon { opacity: 0.6; margin-bottom: 4px; }

.placeholder-text {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--stone);
  text-transform: uppercase;
}

.placeholder-size {
  font-size: 10px;
  color: var(--blush);
  letter-spacing: 1px;
}

/* ─── STORY SCROLL ─── */
.story-scroll {
  height: 1400vh;
  position: relative;
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,169,125,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.story-img-bg {
  position: absolute;
  inset: 0;
  background-image: url('Adara leitet klasse.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.story-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46,40,34,0.65);
}

.story-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  padding: 0 var(--pad);
  text-align: center;
}

.story-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 100%;
  padding: 0 var(--pad);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: opacity 0.7s ease, transform 0.7s ease;
  text-align: center;
}

.story-line.enter {
  opacity: 0;
  transform: translate(-50%, -44%);
}

.story-line.active {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.story-line.exit {
  opacity: 0;
  transform: translate(-50%, -56%);
}

.story-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
}

.story-line p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.15;
  color: var(--cream);
}

.story-line p em {
  font-style: italic;
  color: var(--gold);
}

.story-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 4vw, 48px);
  color: var(--gold);
  line-height: 1.3;
}

/* Trust logos — shared */
.story-trust-logos,
.about-trust-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.story-trust-logos {
  justify-content: center;
  margin-top: 16px;
}

.about-trust-logos {
  padding: 24px 0;
  margin-bottom: 8px;
}

/* All logos same height */
.story-trust-logos img,
.about-trust-logos img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── Story (dark background) ── */
/* RYS 200: dark circular logo — invert to white */
.story-trust-logos .trust-rys {
  filter: invert(1) brightness(0.9);
  opacity: 0.8;
}

/* Yoga Alliance: keep own brand colors */
.story-trust-logos .trust-ya {
  opacity: 0.9;
}

/* House of Om dark version: already white, just opacity */
.story-trust-logos .trust-om-dark {
  opacity: 0.85;
}

/* ── About (light background) ── */
/* RYS 200: dark circular logo — keep, just soften */
.about-trust-logos .trust-rys {
  opacity: 0.7;
  filter: saturate(0) brightness(0.4);
}

/* Yoga Alliance */
.about-trust-logos .trust-ya {
  opacity: 0.85;
}

/* House of Om light version: black logo */
.about-trust-logos .trust-om-light {
  opacity: 0.6;
  filter: saturate(0) brightness(0.3);
}

/* Story flags */
.story-flags {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.story-flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.story-flag-item span:first-child {
  font-size: 26px;
  line-height: 1;
  filter: saturate(0.7) brightness(0.95);
}

.story-flag-name {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250,247,243,0.35);
}

.story-progress-wrap {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: rgba(196,169,125,0.2);
}

.story-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--linen);
}

.nav-logo svg { display: block; }

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.3s;
}

.nav.scrolled .nav-links a { color: var(--espresso); }
.nav-links a:hover { color: var(--gold); }
.nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(250,247,243,0.7);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav.scrolled .nav-location { color: var(--stone); }
.nav-location:hover { color: var(--gold) !important; }

.nav-location-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.5;
}

.nav-location-next-label { color: var(--gold); opacity: 0.8; }
.nav-location-sep { opacity: 0.3; margin: 0 4px; }
.nav-location-divider { display: inline-flex; align-items: center; gap: 6px; }

.location-sep { opacity: 0.3; margin: 0 8px; }
.location-next { display: inline-flex; align-items: center; gap: 8px; }
.location-next .location-label { opacity: 0.5; color: var(--gold); }
.location-next-date {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(250,247,243,0.4);
}

.nav-location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Nav logo color on scroll */
.nav .nav-logo text { transition: fill 0.4s; }
.nav.scrolled .nav-logo text { fill: var(--espresso) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: background 0.3s;
}

.nav.scrolled .nav-toggle span { background: var(--espresso); }

/* ─── LANG SWITCHER ─── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(196,169,125,0.25);
  border-radius: 20px;
  padding: 3px 4px;
  transition: background 0.4s, border-color 0.4s;
}

.nav.scrolled .lang-switcher {
  background: rgba(0,0,0,0.04);
  border-color: rgba(196,169,125,0.3);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250,247,243,0.5);
  transition: background 0.25s, color 0.25s;
}

.nav.scrolled .lang-btn {
  color: var(--stone);
}

.lang-btn.active {
  background: rgba(196,169,125,0.2);
  color: var(--gold);
}

.nav.scrolled .lang-btn.active {
  background: rgba(196,169,125,0.15);
  color: var(--gold);
}

.lang-btn:hover:not(.active) {
  color: rgba(250,247,243,0.85);
}

.nav.scrolled .lang-btn:hover:not(.active) {
  color: var(--espresso);
}

.lang-divider {
  width: 1px;
  height: 12px;
  background: rgba(196,169,125,0.2);
  flex-shrink: 0;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  z-index: 99;
  padding: 32px var(--pad) 48px;
  border-bottom: 1px solid var(--linen);
  transform: translateY(-8px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--espresso);
}

.mobile-lang-switcher {
  display: flex;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--linen);
  gap: 0;
  background: rgba(0,0,0,0.03);
  border-radius: 20px;
  padding: 3px 4px;
  margin-top: 32px;
  width: fit-content;
  border: 1px solid rgba(196,169,125,0.25);
}

.mobile-lang-switcher .lang-btn {
  color: var(--stone);
}

.mobile-lang-switcher .lang-btn.active {
  background: rgba(196,169,125,0.15);
  color: var(--gold);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: #d4c9bc;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(46,40,34,0.65) 0%,
    rgba(46,40,34,0.3) 60%,
    rgba(46,40,34,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 110px);
  line-height: 1;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-title em { font-style: italic; }

.hero-subtitle {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(250,247,243,0.7);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.hero-scroll:hover { opacity: 1; }

.scroll-dot {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(6px); opacity: 0.4; }
}

/* ─── INTRO STRIP ─── */
.intro-strip {
  background: var(--dark);
  padding: 20px var(--pad);
  overflow: hidden;
}

.intro-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(240,232,223,0.5);
}

.intro-strip-inner span { color: rgba(240,232,223,0.5); }
.intro-strip-inner .dot { color: var(--gold); opacity: 0.4; }

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--dark);
  padding: clamp(80px, 14vw, 160px) var(--pad);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,169,125,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 64px;
  display: block;
}

.manifesto-lines {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.manifesto-line {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.2;
  color: rgba(240,232,223,0.15);
  transition: color 0.6s ease;
}

.manifesto-line em {
  font-style: italic;
  color: inherit;
}

.manifesto-line.in-view {
  color: var(--cream);
}

.manifesto-line--gold.in-view {
  color: var(--gold);
}

/* ─── ABOUT ─── */
.about {
  padding: clamp(80px, 12vw, 140px) var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 620px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 78%;
}

.about-img-small {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 44%;
  border: 6px solid var(--cream);
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about-body p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
  margin-bottom: 32px;
}

.detail-item {
  display: flex;
  gap: 16px;
  font-size: 12px;
}

.detail-label {
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blush);
  min-width: 100px;
}

.detail-value { color: var(--espresso); }

/* ─── WHERE IS ADARA ─── */
.location-strip {
  background: var(--espresso);
  padding: 18px var(--pad);
}

.location-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.location-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(250,247,243,0.4);
}

.location-flag {
  font-size: 20px;
  line-height: 1;
}

.location-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 1px;
}

.location-cta {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 8px;
  transition: letter-spacing 0.3s;
}

.location-cta:hover { letter-spacing: 5px; }

/* ─── YOGA STYLES ─── */
.yoga {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--linen);
}

.yoga .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

.yoga-header {
  text-align: center;
  margin-bottom: 60px;
}

.yoga-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.yoga-card { background: var(--cream); }

.yoga-img-placeholder {
  position: relative;
  height: 320px;
  background: #ddd4c6;
  overflow: hidden;
}

.yoga-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.yoga-card:hover .yoga-img-placeholder img {
  transform: scale(1.04);
}

.yoga-card-body {
  padding: 28px 28px 36px;
}

.yoga-card-body h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--espresso);
}

.yoga-card-body p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.8;
}

/* ─── QUOTE ─── */
.quote-section {
  padding: clamp(60px, 10vw, 120px) var(--pad);
  background: var(--dark);
  text-align: center;
}

.quote-section blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 4vw, 40px);
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-section cite {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ─── EVENTS ─── */
.events {
  padding: clamp(60px, 10vw, 120px) 0;
}

.events .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.events-subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blush);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Event Card */
.event-card {
  background: var(--cream);
  border: 1px solid var(--linen);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46,40,34,0.1);
}

.event-card-image {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--linen);
}

.event-card-image img {
  transition: transform 0.6s ease;
}

.event-card:hover .event-card-image img {
  transform: scale(1.04);
}

.event-card-body {
  padding: 24px 24px 28px;
}

.event-card-location {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.event-card-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--espresso);
  margin-bottom: 12px;
  line-height: 1.3;
}

.event-card-date {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--stone);
  margin-bottom: 12px;
}

.event-card-price {
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.modal-price-note {
  font-size: 12px;
  color: var(--stone);
  font-style: italic;
  margin-top: 4px;
  display: block;
}

.event-card-cta {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, gap 0.3s;
}

.event-card:hover .event-card-cta {
  color: var(--gold);
  gap: 12px;
}

.event-card-cta::after {
  content: '→';
}

/* Loading & Empty */
.events-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--stone);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loading-leaf {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.9); }
}

.events-empty {
  text-align: center;
  padding: 80px 0;
}

.events-empty-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 12px;
}

.events-empty-sub {
  font-size: 13px;
  color: var(--stone);
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46,40,34,0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 90%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--cream);
  z-index: 201;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1;
}

.modal-image-wrap {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.modal-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--linen);
}

.modal-body {
  padding: 36px 40px 44px;
}

.modal-eyebrow {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--espresso);
  margin-bottom: 28px;
  line-height: 1.2;
}

.modal-meta {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--linen);
  flex-wrap: wrap;
}

.modal-meta-label {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 6px;
}

.modal-meta-value {
  font-size: 14px;
  color: var(--espresso);
}

.modal-description {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 36px;
}

.modal-cta { width: 100%; text-align: center; }

/* ─── CONTACT ─── */
.contact {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--linen);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
}

.contact-image { overflow: hidden; }

.img-placeholder.tall {
  height: 100%;
  min-height: 500px;
}

.contact-content {
  padding: clamp(40px, 8vw, 100px) clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-body {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--espresso);
  transition: color 0.3s;
}

.contact-link:hover { color: var(--gold); }

.contact-link-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.contact-link:hover .contact-link-icon { border-color: var(--gold); }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  padding: 48px var(--pad);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-tagline {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240,232,223,0.3);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(240,232,223,0.4);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(240,232,223,0.2);
}

.footer-admin-link {
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(240,232,223,0.1);
  transition: color 0.3s;
}

.footer-admin-link:hover { color: rgba(240,232,223,0.35); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    height: 400px;
  }

  .yoga-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-image { display: none; }

  .contact-content {
    padding: clamp(40px, 8vw, 80px) var(--pad);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
  .nav-location { display: none; }
  #langSwitcher { display: none; }

  .events-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-body {
    padding: 28px 24px 36px;
  }

  .modal-meta { gap: 24px; }
}

@media (max-width: 480px) {
  .about-images { height: 300px; }
  .events-grid { grid-template-columns: 1fr; }
}
