/* ===================================================================
   Know Thyself — Eco Wellness Retreat
   Fresh green + white · rounded · soft · interactive
=================================================================== */

:root {
  --green: #4f9d3f;
  --green-deep: #3a7a2c;
  --green-dark: #2c5f24;
  --green-bright: #62b84e;
  --leaf: #eaf3e3;
  --leaf-2: #f3f8ee;
  --mist: #f6f9f2;
  --paper: #ffffff;
  --ink: #23301f;
  --ink-soft: #43513d;
  --muted: #718169;
  --faint: #9aa891;
  --line: rgba(35, 48, 31, 0.10);
  --line-soft: rgba(35, 48, 31, 0.06);
  --terra: #cf6b4a;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 30px 60px -34px rgba(44, 74, 34, 0.35);
  --shadow-sm: 0 16px 34px -22px rgba(44, 74, 34, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
img, video { max-width: 100%; }

body {
  background: var(--mist);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--green); color: #fff; }

h1, h2, h3, .brand-name, .section-title, .hero-title { font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
em { font-style: normal; color: var(--green-deep); }

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); }
.cursor { width: 34px; height: 34px; border: 1.5px solid var(--green); transition: width .25s var(--ease), height .25s var(--ease), background .25s; }
.cursor-dot { width: 5px; height: 5px; background: var(--green); }
.cursor.grow { width: 60px; height: 60px; background: rgba(79,157,63,.14); border-color: transparent; }
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 900; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--green-deep), var(--green-bright)); }

/* ---------- Ambient ---------- */
.ambient { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--mist); }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .4; }
.orb-1 { width: 40vw; height: 40vw; background: radial-gradient(circle, #cfe6c0, transparent 70%); top: -8%; left: -6%; animation: drift 24s ease-in-out infinite; }
.orb-2 { width: 34vw; height: 34vw; background: radial-gradient(circle, #d9eccb, transparent 70%); bottom: -10%; right: -8%; animation: drift 30s ease-in-out infinite reverse; }
.orb-3 { display: none; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4vw,-3vh) scale(1.08); } }
.grain { display: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 800;
  width: min(1200px, calc(100% - 32px)); display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px 12px 26px; background: rgba(255,255,255,.82); backdrop-filter: blur(16px);
  border: 1px solid var(--line-soft); border-radius: 100px; box-shadow: var(--shadow-sm);
  transition: padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled { box-shadow: 0 20px 44px -26px rgba(44,74,34,.5); }
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand-name { font-size: 24px; font-weight: 700; color: var(--green-deep); letter-spacing: .01em; }
.brand-sub { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 14.5px; font-weight: 500; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--green); border-radius: 2px; transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--green-deep); }
.nav-links a:hover::after { width: 100%; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none;
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 15px; border: none;
  border-radius: 100px; padding: 15px 28px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s; will-change: transform;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 14px 30px -12px rgba(79,157,63,.7); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(79,157,63,.8); }
.btn-ghost { background: var(--green); color: #fff; padding: 12px 24px; font-size: 14px; box-shadow: 0 10px 22px -12px rgba(79,157,63,.7); }
.btn-ghost:hover { background: var(--green-deep); transform: translateY(-2px); }
.nav-cta svg, .btn-ghost::before { }

/* ---------- Sections ---------- */
.section { padding: clamp(60px, 9vw, 120px) clamp(20px, 6vw, 80px); max-width: 1200px; margin: 0 auto; }
.section-title { font-size: clamp(30px, 5vw, 52px); font-weight: 700; line-height: 1.1; margin-bottom: 14px; max-width: 18ch; }
.section-title em { color: var(--green); }
.section-lead { color: var(--muted); font-size: clamp(15px, 2vw, 18px); margin-bottom: 46px; max-width: 54ch; }
.eyebrow { font-size: clamp(24px, 3.4vw, 36px); font-weight: 700; font-family: 'Poppins', sans-serif; margin-bottom: 34px; }
.eyebrow em { color: var(--green); }
.overline { display: block; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }

/* ---------- HERO ---------- */
.hero-wrap { position: relative; padding: 92px clamp(12px, 3vw, 22px) 0; }
.hero {
  position: relative; min-height: 86vh; min-height: 86dvh; display: flex; align-items: center; overflow: hidden;
  border-radius: var(--radius-lg); background: linear-gradient(135deg, #3f7a34, #6bb84e);
  box-shadow: var(--shadow);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(20,38,14,.66) 0%, rgba(20,38,14,.34) 46%, transparent 78%), linear-gradient(0deg, rgba(20,38,14,.45), transparent 45%); }
.hero-scrim--soft { background: linear-gradient(0deg, rgba(20,38,14,.34), transparent 40%), radial-gradient(120% 90% at 50% 50%, transparent 60%, rgba(20,38,14,.28)); }
.hero--video-only { min-height: 90vh; min-height: 90dvh; }

/* Register Now button over the hero video */
.hero-cta-wrap { position: absolute; left: 0; right: 0; bottom: 54px; z-index: 4; display: flex; justify-content: center; pointer-events: none; padding: 0 20px; }
.hero-register {
  position: relative; pointer-events: auto; display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  background: var(--green); color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: clamp(14px, 1.6vw, 16px); letter-spacing: .01em; padding: 12px 30px; border-radius: 100px;
  box-shadow: 0 14px 34px -14px rgba(0,0,0,.55); transition: transform .3s var(--ease), background .3s, box-shadow .3s;
  will-change: transform;
}
.hero-register svg { width: 17px; height: 17px; }
.hero-register:hover { background: var(--green-deep); box-shadow: 0 24px 52px -14px rgba(0,0,0,.65); }
.hero-register::after { content: ''; position: absolute; inset: 0; border-radius: 100px; box-shadow: 0 0 0 0 rgba(98,184,78,.6); animation: reg-pulse 2.4s ease-out infinite; }
@keyframes reg-pulse { 0% { box-shadow: 0 0 0 0 rgba(98,184,78,.5); } 70% { box-shadow: 0 0 0 16px rgba(98,184,78,0); } 100% { box-shadow: 0 0 0 0 rgba(98,184,78,0); } }
@media (max-width: 560px) {
  /* button sits below the video, in the gap — not over the footage */
  .hero-cta-wrap { position: static; inset: auto; padding: 0; margin: 14px 0 2px; pointer-events: auto; }
  .hero-register { padding: 12px 30px; font-size: 14px; gap: 8px; box-shadow: 0 12px 28px -12px rgba(79,157,63,.6); }
  .hero-register svg { width: 16px; height: 16px; }
  .hero-register::after { display: none; }
  /* smaller volume control — round mute button only */
  .audio-control { bottom: 10px; right: 10px; padding: 5px; }
  .audio-toggle { width: 32px; height: 32px; flex-basis: 32px; }
  .audio-toggle svg { width: 16px; height: 16px; }
  .audio-control .audio-slider { display: none; }
}

/* Floating Register button — appears on scroll, stays to the end */
.float-register {
  position: fixed; right: 20px; bottom: 20px; z-index: 700;
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  background: var(--green); color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: 100px; box-shadow: 0 16px 38px -12px rgba(0,0,0,.5);
  transform: translateY(130px); opacity: 0; pointer-events: none;
  transition: transform .45s var(--ease), opacity .45s var(--ease), background .3s;
}
.float-register.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.float-register:hover { background: var(--green-deep); }
.float-register svg { width: 18px; height: 18px; }
@media (max-width: 560px) { .float-register { right: 14px; bottom: 14px; padding: 12px 22px; font-size: 14px; } }

/* On phones, let the video define the hero height (no green bars, no crop) */
@media (max-width: 640px) {
  .hero, .hero--video-only { display: block; min-height: 0; }
  .hero-bg { position: relative; width: 100%; height: auto; display: block; }
}

/* Audio control (mute button + volume slider) */
.audio-control {
  position: absolute; z-index: 4; right: 22px; bottom: 22px;
  display: inline-flex; align-items: center; gap: 4px; padding: 8px 10px 8px 8px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border-radius: 100px;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); transition: transform .3s var(--ease);
}
.audio-control:hover { transform: translateY(-2px); }
.audio-toggle {
  cursor: pointer; display: inline-grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px;
  background: var(--leaf); border: none; border-radius: 50%; color: var(--green-deep);
  transition: background .3s, color .3s;
}
.audio-toggle svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.audio-toggle .ico-sound { display: none; }
.audio-control.is-on .audio-toggle { background: var(--green); color: #fff; }
.audio-control.is-on .ico-muted { display: none; }
.audio-control.is-on .ico-sound { display: block; }

.audio-slider {
  -webkit-appearance: none; appearance: none; width: 96px; height: 5px; border-radius: 100px;
  background: rgba(35,48,31,.18); outline: none; cursor: pointer; margin: 0 10px 0 6px;
  transition: width .35s var(--ease), opacity .35s var(--ease), margin .35s var(--ease);
  background-image: linear-gradient(var(--green), var(--green)); background-repeat: no-repeat;
  background-size: 70% 100%;
}
.audio-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 15px; height: 15px; border-radius: 50%; background: var(--green-deep); border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.3); cursor: pointer; }
.audio-slider::-moz-range-thumb { width: 15px; height: 15px; border-radius: 50%; background: var(--green-deep); border: 2px solid #fff; cursor: pointer; }
.audio-slider::-moz-range-track { background: transparent; }
/* collapse the slider until sound is on, so it reads as a tidy button first */
.audio-control:not(.is-on):not(:hover) .audio-slider { width: 0; margin: 0; opacity: 0; pointer-events: none; }
@media (hover: none) { .audio-control .audio-slider { width: 80px; opacity: 1; } }
.hero-content { position: relative; z-index: 2; width: 100%; padding: clamp(34px, 6vw, 78px); }
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--green-deep); background: rgba(255,255,255,.92); padding: 9px 18px; border-radius: 100px;
  margin-bottom: 24px; box-shadow: 0 10px 24px -14px rgba(0,0,0,.4);
}
.pill-ico { color: var(--green); }
.pill-dot { display: none; }

.hero-title { font-size: clamp(42px, 7.6vw, 88px); font-weight: 800; line-height: 1.0; color: #fff; max-width: 14ch; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; transform: translateY(110%); animation: rise 1.05s var(--ease-out) forwards; }
.hero-title .line:nth-child(1) > span { animation-delay: .15s; }
.hero-title .line:nth-child(2) > span { animation-delay: .3s; }
.hero-title .line:nth-child(3) > span { animation-delay: .45s; }
.hero-title em { color: #d6f2c4; }
@keyframes rise { to { transform: translateY(0); } }

.hero-sub { color: rgba(255,255,255,.9); font-size: clamp(15px, 2vw, 19px); max-width: 46ch; margin: 24px 0 32px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-social { font-size: 13.5px; color: rgba(255,255,255,.85); display: inline-flex; align-items: center; font-weight: 500; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #cdf3b6; margin-right: 9px; box-shadow: 0 0 0 0 rgba(205,243,182,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(205,243,182,.6); } 70% { box-shadow: 0 0 0 10px rgba(205,243,182,0); } 100% { box-shadow: 0 0 0 0 rgba(205,243,182,0); } }

.scroll-hint { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 7px; font-size: 9.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.scroll-hint i { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.9), transparent); animation: scrolldrop 1.8s ease-in-out infinite; }
@keyframes scrolldrop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Floating booking bar ---------- */
.booking-bar {
  position: relative; z-index: 5; margin: -46px auto 0; width: min(1040px, calc(100% - 48px));
  background: var(--paper); border-radius: 100px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr 0.8fr auto; align-items: center; gap: 8px;
  padding: 12px 12px 12px 30px; border: 1px solid var(--line-soft);
}
.bb-field { display: flex; flex-direction: column; padding: 6px 20px; border-right: 1px solid var(--line); cursor: pointer; transition: transform .3s var(--ease); }
.bb-field:hover { transform: translateY(-1px); }
.bb-field span { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.bb-field strong { font-size: 15px; font-weight: 600; color: var(--ink); }
.bb-btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; cursor: pointer;
  background: var(--green); color: #fff; font-weight: 600; font-size: 15px; padding: 16px 30px;
  border-radius: 100px; transition: transform .3s var(--ease), background .3s; box-shadow: 0 14px 28px -14px rgba(79,157,63,.8);
}
.bb-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bb-btn:hover { background: var(--green-deep); transform: translateY(-2px); }
@media (max-width: 820px) {
  .booking-bar { grid-template-columns: 1fr 1fr; border-radius: 28px; padding: 16px; gap: 12px; }
  .bb-field { border-right: none; padding: 8px 12px; border-bottom: 1px solid var(--line); }
  .bb-btn { grid-column: span 2; justify-content: center; }
}

/* ---------- Feature strip ---------- */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1200px; margin: 46px auto 0; padding: 0 clamp(20px, 6vw, 80px); }
.feat { display: flex; align-items: center; gap: 14px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 20px 22px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feat-ico { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%; background: var(--leaf); color: var(--green-deep); font-size: 18px; }
.feat strong { display: block; font-weight: 700; font-size: 14.5px; color: var(--ink); font-family: 'Poppins', sans-serif; }
.feat em { display: block; font-style: normal; font-size: 12.5px; color: var(--muted); }
@media (max-width: 820px) { .feature-strip { grid-template-columns: 1fr 1fr; } }

/* ---------- Memories ---------- */
.eyebrow::before, .section-title::before { content: ''; display: block; width: 46px; height: 3px; border-radius: 3px; background: var(--green); margin-bottom: 20px; }
.memory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.memory { aspect-ratio: 16/10; border-radius: var(--radius); background: var(--leaf); position: relative; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease); }
.memory:nth-child(3) { grid-column: span 2; aspect-ratio: 24/9; }
.memory:hover { transform: translateY(-6px); }
.memory img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform .7s var(--ease); }
.memory:hover img { transform: scale(1.06); }
.memory::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent, rgba(255,255,255,.3), transparent); transform: translateX(-100%); transition: transform .8s var(--ease); z-index: 2; }
.memory:hover::after { transform: translateX(100%); }
@media (max-width: 680px) { .memory { aspect-ratio: 4/3; } .memory:nth-child(3) { aspect-ratio: 16/10; } }
.memories-more { display: flex; justify-content: center; margin-top: 30px; }

/* ---------- Experience ---------- */
.exp-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.exp-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.exp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.exp-media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--leaf); margin: 12px 12px 0; border-radius: 18px; }
.exp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform .7s var(--ease); }
.exp-card:hover .exp-media img { transform: scale(1.07); }
.exp-media span { display: none; }
.exp-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.exp-body h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; line-height: 1.15; font-family: 'Poppins', sans-serif; }
.exp-body h3 em { color: var(--green); }
.exp-body p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.ticks { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: auto; }
.ticks li { position: relative; padding-left: 28px; font-size: 13.5px; color: var(--ink-soft); }
.ticks li strong { color: var(--green-deep); font-weight: 700; }
.ticks li::before { content: ''; position: absolute; left: 0; top: 2px; width: 19px; height: 19px; border-radius: 50%; background: var(--leaf); }
.ticks li::after { content: ''; position: absolute; left: 6px; top: 6px; width: 7px; height: 4px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
@media (max-width: 900px) { .exp-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .exp-list { grid-template-columns: 1fr; } }

/* ---------- Upcoming retreats (date-block cards) ---------- */
.ret-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 46px; }
.ret-card {
  position: relative; display: block; text-decoration: none; background: var(--paper);
  border: 1px solid var(--line-soft); border-radius: 16px; padding: 26px 26px 28px;
  box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.ret-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--green); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease); }
.ret-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(79,157,63,.35); }
.ret-card:hover::before { transform: scaleY(1); }

.ret-badge {
  position: absolute; top: 0; right: 0; font-size: 12px; font-weight: 700; letter-spacing: .01em;
  color: #fff; background: var(--green); padding: 9px 16px; border-radius: 0 16px 0 14px;
}
.ret-badge--wait { background: #e0a021; }

.ret-date { margin-bottom: 22px; }
.ret-mon { display: inline-block; font-family: 'Poppins', sans-serif; font-size: 19px; font-weight: 500; color: var(--ink-soft); padding-bottom: 4px; border-bottom: 3px solid var(--green); }
.ret-day { display: block; font-family: 'Poppins', sans-serif; font-size: 44px; font-weight: 700; color: var(--ink); line-height: 1.05; margin-top: 6px; }

.ret-loc { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 600; color: var(--green-deep); margin-bottom: 8px; transition: color .3s; }
.ret-card:hover .ret-loc { color: var(--green); }
.ret-type { color: var(--ink-soft); font-size: 15px; margin-bottom: 16px; }
.ret-range { color: var(--muted); font-size: 14.5px; }

/* ---------- Stories of Transformation ---------- */
.section-title.center, .section-lead.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title.center { max-width: none; }
.section-title.center::before { margin-left: auto; margin-right: auto; }
.section-lead.center { margin-bottom: 8px; }

.stories-slider { position: relative; margin-top: 46px; }
.stories-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 2px 12px; -ms-overflow-style: none; scrollbar-width: none;
}
.stories-track::-webkit-scrollbar { display: none; }
.slider-nav {
  position: absolute; top: 32%; z-index: 5; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-soft); background: #fff; color: var(--green-deep); cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: background .3s, transform .3s, opacity .3s;
}
.slider-nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.slider-nav:hover { background: var(--green); color: #fff; }
.slider-nav.prev { left: -10px; }
.slider-nav.next { right: -10px; }
.slider-nav[disabled] { opacity: 0; pointer-events: none; }
@media (max-width: 560px) { .slider-nav.prev { left: 2px; } .slider-nav.next { right: 2px; } }

.story-card {
  scroll-snap-align: start; flex: 0 0 calc((100% - 48px) / 3); min-width: 0;
  text-align: left; cursor: pointer; border: 1px solid var(--line-soft); border-radius: 18px;
  overflow: hidden; background: var(--paper); box-shadow: var(--shadow-sm); padding: 0;
  display: flex; flex-direction: column; font-family: inherit;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
@media (max-width: 900px) { .story-card { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 620px) { .story-card { flex-basis: 86%; } }
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.story-thumb { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--leaf); }
.story-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.story-card:hover .story-thumb img { transform: scale(1.06); }
.story-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: grid; place-items: center; box-shadow: 0 12px 28px -10px rgba(0,0,0,.5);
  transition: transform .3s var(--ease), background .3s;
}
.story-play svg { width: 24px; height: 24px; fill: var(--green-deep); margin-left: 3px; }
.story-card:hover .story-play { transform: translate(-50%,-50%) scale(1.1); background: #fff; }
.story-body { display: flex; flex-direction: column; padding: 22px 22px 24px; flex: 1; }
.story-title { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; color: var(--green-deep); line-height: 1.25; margin-bottom: 10px; }
.story-desc { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; flex: 1; }
.story-link { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-weight: 700; font-size: 14.5px; margin-top: auto; transition: gap .3s; }
.story-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.story-card:hover .story-link { gap: 12px; }

/* video modal */
.story-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; }
.story-modal[hidden] { display: none; }
.story-modal-bg { position: absolute; inset: 0; background: rgba(12,20,8,.82); backdrop-filter: blur(4px); animation: fadeUp .3s ease; }
.story-modal-inner { position: relative; z-index: 1; width: min(760px, 100%); }
.story-modal-inner video { width: 100%; max-height: 78vh; border-radius: 16px; background: #000; display: block; box-shadow: 0 40px 90px -30px rgba(0,0,0,.7); }
.story-modal-name { color: rgba(255,255,255,.9); text-align: center; font-family: 'Poppins', sans-serif; font-weight: 600; margin-top: 14px; }
.story-modal-close { position: absolute; top: -46px; right: 0; width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(255,255,255,.15); color: #fff; font-size: 24px; line-height: 1; cursor: pointer; transition: background .3s; }
.story-modal-close:hover { background: rgba(255,255,255,.28); }

/* ---------- Not for you ---------- */
.notfor { }
.section-title em.neg { color: #d64541; }
.neg-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
.neg-list li { position: relative; padding: 18px 20px 18px 54px; border-radius: 18px; background: var(--paper); border: 1px solid var(--line-soft); font-size: 15px; color: var(--ink-soft); transition: transform .3s var(--ease), box-shadow .3s; }
.neg-list li strong { color: var(--terra); font-weight: 700; }
.neg-list li:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.neg-list li::before { content: '×'; position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border-radius: 50%; background: #fbe7e0; color: var(--terra); display: grid; place-items: center; font-size: 15px; font-weight: 700; }
@media (min-width: 720px) { .neg-list { grid-template-columns: 1fr 1fr; } }

/* ---------- Why join ---------- */
.why .section-title { max-width: none; }
.why .section-title em.nowrap { white-space: nowrap; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 44px; }
.why-card { display: flex; gap: 15px; align-items: flex-start; padding: 22px; border-radius: 20px; background: var(--paper); border: 1px solid var(--line-soft); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.why-card p { font-size: 14.5px; color: var(--muted); }
.why-card p strong { color: var(--green-deep); font-weight: 700; }
.chk { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; margin-top: 2px; background: var(--green); position: relative; box-shadow: 0 6px 14px -6px rgba(79,157,63,.7); }
.chk::after { content: ''; position: absolute; left: 9px; top: 7px; width: 7px; height: 11px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(40deg); }
.center-cta { display: inline-flex; margin: 48px auto 0; }
@media (max-width: 620px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Voices ---------- */
.voices { }
.quote-slider { margin-top: 44px; position: relative; max-width: 860px; }
.quote-track { position: relative; min-height: 220px; }
.quote { position: absolute; inset: 0; opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); pointer-events: none; padding: 44px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.quote.is-active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.quote p { font-family: 'Poppins', sans-serif; font-size: clamp(19px, 2.6vw, 27px); font-weight: 500; line-height: 1.35; margin-bottom: 20px; color: var(--ink); letter-spacing: -0.01em; }
.quote cite { color: var(--green-deep); font-style: normal; font-size: 14px; font-weight: 700; }
.quote-dots { display: flex; gap: 10px; margin-top: 24px; }
.qdot { width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer; background: rgba(79,157,63,.28); transition: all .3s; }
.qdot.is-active { background: var(--green); width: 28px; border-radius: 100px; }

/* ---------- Coach ---------- */
.coach { }
.coach-card { display: grid; grid-template-columns: 340px 1fr; gap: 44px; align-items: center; padding: clamp(24px, 4vw, 48px); border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); margin-top: 44px; }
.coach-photo { aspect-ratio: 4/5; border-radius: var(--radius); background: var(--leaf); display: grid; place-items: center; color: var(--faint); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; position: relative; overflow: hidden; }
.coach-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.coach-hi { color: var(--muted); font-size: 16px; }
.coach-name { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; color: var(--green-deep); line-height: 1.05; }
.coach-role { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.coach-bio { color: var(--muted); font-size: 15px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.stat { text-align: center; padding: 28px 16px; border-radius: 20px; background: var(--leaf-2); border: 1px solid var(--line-soft); }
.stat .num { display: block; font-family: 'Poppins', sans-serif; font-size: clamp(30px, 4.2vw, 46px); font-weight: 800; color: var(--green); line-height: 1; }
.stat label { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; letter-spacing: .04em; }
@media (max-width: 760px) { .coach-card { grid-template-columns: 1fr; } .coach-photo { width: 100%; max-width: 300px; margin: 0 auto; } }
@media (max-width: 560px) {
  .stats { gap: 8px; }
  .stat { padding: 18px 6px; border-radius: 14px; }
  .stat .num { font-size: 24px; }
  .stat label { font-size: 10px; letter-spacing: 0; margin-top: 6px; }
}

/* ---------- Book / CTA ---------- */
.book-card { position: relative; text-align: center; padding: clamp(46px, 7vw, 88px) clamp(24px, 5vw, 70px); border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(150deg, var(--green), var(--green-deep) 60%, var(--green-dark)); box-shadow: var(--shadow); }
.book-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.22), transparent 55%); }
.book-card h2 { position: relative; font-family: 'Poppins', sans-serif; font-size: clamp(30px, 5vw, 54px); font-weight: 700; color: #fff; }
.book-card h2 em { color: #d6f2c4; }
.book-card > p { position: relative; color: rgba(255,255,255,.9); max-width: 52ch; margin: 18px auto 32px; font-size: 15.5px; }
.book-phone { position: relative; display: inline-flex; align-items: center; gap: 12px; text-decoration: none; background: #fff; color: var(--green-deep); font-weight: 700; font-size: clamp(17px, 2.6vw, 24px); padding: 16px 36px; border-radius: 100px; transition: transform .3s var(--ease), box-shadow .3s; box-shadow: 0 16px 34px -14px rgba(0,0,0,.4); }
.book-phone svg { width: 22px; height: 22px; fill: var(--green); }
.book-phone:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(0,0,0,.5); }
.book-actions { position: relative; display: inline-flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.book-slot {
  display: inline-flex; align-items: center; gap: 12px; cursor: pointer; border: 1.5px solid rgba(255,255,255,.75);
  background: transparent; color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: clamp(16px, 2.4vw, 22px); padding: 15px 34px; border-radius: 100px;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
}
.book-slot svg { width: 21px; height: 21px; }
.book-slot:hover { transform: translateY(-3px); background: #fff; color: var(--green-deep); box-shadow: 0 20px 40px -16px rgba(0,0,0,.5); }
.book-slot:disabled { opacity: .7; cursor: wait; }
.book-foot { position: relative; color: rgba(255,255,255,.85); margin-top: 22px; font-size: 14px; }

/* ---------- Footer ---------- */
.footer { text-align: center; padding: 54px 20px; color: var(--muted); font-size: 13.5px; background: var(--leaf-2); border-top: 1px solid var(--line-soft); }
.footer-sub { margin-top: 8px; color: var(--faint); }

/* ---------- Event detail page ---------- */
.evd-nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 16px clamp(18px, 5vw, 60px); background: rgba(250,252,247,.9); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-soft); }
.evd-back { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--green-deep); font-weight: 600; font-size: 14.5px; }
.evd-back svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.evd-brand { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--green-deep); letter-spacing: .04em; }

.evd-hero { max-width: 1120px; margin: 0 auto; padding: clamp(22px, 4vw, 40px) clamp(18px, 5vw, 40px) 0; }
.evd-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--leaf); }
.evd-banner img { width: 100%; display: block; }

.evd-body { max-width: 1120px; margin: 0 auto; padding: clamp(30px, 5vw, 56px) clamp(18px, 5vw, 40px) 80px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.evd-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.evd-title { font-family: 'Poppins', sans-serif; font-size: clamp(30px, 5vw, 50px); font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; }
.evd-title em { color: var(--green); }
.evd-sub { color: var(--muted); font-size: clamp(15px, 2vw, 18px); margin: 14px 0 28px; }
.evd-lead { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 26px; }
.evd-h3 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; margin: 30px 0 14px; }
.evd-incl { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.evd-incl li { position: relative; padding: 14px 16px 14px 48px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; font-size: 14.5px; color: var(--ink-soft); }
.evd-incl li::before { content: ''; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%; background: var(--green); }
.evd-incl li::after { content: ''; position: absolute; left: 20px; top: 50%; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: translateY(-62%) rotate(45deg); }
.evd-sched { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.evd-sched li { display: flex; gap: 14px; padding: 14px 18px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; font-size: 14.5px; }
.evd-sched b { color: var(--green-deep); min-width: 62px; }

/* sticky booking card */
.evd-card { position: sticky; top: 90px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px; }
.evd-facts { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 22px; }
.evd-facts li { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.evd-facts li:last-child { border-bottom: none; }
.evd-facts span { color: var(--muted); }
.evd-facts strong { color: var(--ink); font-weight: 600; }
.evd-price-breakdown { list-style: none; display: flex; flex-direction: column; gap: 0; margin: 4px 0 14px; }
.evd-price-breakdown li { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--muted); border-bottom: 1px dashed var(--line-soft); }
.evd-price-breakdown strong { color: var(--ink-soft); font-weight: 600; }
.evd-map {
  display: inline-flex; align-items: center; gap: 10px; color: var(--green-deep); font-weight: 600;
  font-size: 15.5px; text-decoration: none; background: var(--leaf); border: 1.5px solid var(--green);
  padding: 12px 22px; border-radius: 100px; transition: background .3s, transform .3s, box-shadow .3s;
}
.evd-map svg { width: 20px; height: 20px; }
.evd-map:hover { background: var(--green); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(79,157,63,.7); }
.evd-wait-note { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 6px 0 20px; }
.evd-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.evd-price .now { font-family: 'Poppins', sans-serif; font-size: clamp(30px, 5vw, 40px); font-weight: 800; color: var(--green-deep); }
.evd-price .was { color: var(--faint); text-decoration: line-through; font-size: 17px; }
.evd-price-note { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.evd-form { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 16px; }
.evd-input { width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--mist); font-family: 'Manrope', sans-serif; font-size: 16px; color: var(--ink); transition: border-color .25s, background .25s; }
.evd-input::placeholder { color: var(--faint); }
.evd-input:focus { outline: none; border-color: var(--green); background: #fff; }
.evd-btn { width: 100%; justify-content: center; font-size: 16px; padding: 17px 28px; }
.evd-btn.is-wait { background: #e6a817; color: #221a00; box-shadow: 0 14px 30px -12px rgba(230,168,23,.7); }
.evd-btn.is-wait:hover { background: #cf9410; transform: translateY(-2px); }
.evd-note { text-align: center; color: var(--faint); font-size: 12.5px; margin-top: 14px; }
@media (max-width: 820px) { .evd-body { grid-template-columns: 1fr; } .evd-card { position: static; } .evd-incl { grid-template-columns: 1fr; } }

/* ---------- Event detail v2 (gallery + countdown + tabs) ---------- */
.evd2 { max-width: 1180px; margin: 0 auto; padding: clamp(24px, 4vw, 44px) clamp(18px, 5vw, 40px) 90px; }
.evd2-hero { display: grid; grid-template-columns: 1fr 1.15fr 0.95fr; gap: 34px; align-items: start; padding-bottom: 34px; border-bottom: 1px solid var(--line-soft); }

.evd2-gallery { display: flex; flex-direction: column; gap: 12px; }
.evd2-main { border-radius: 16px; overflow: hidden; background: var(--leaf); box-shadow: var(--shadow-sm); }
.evd2-main img { width: 100%; height: auto; display: block; }
.evd2-thumbs { display: flex; gap: 10px; }
.evd2-thumbs button { flex: 1; aspect-ratio: 4/3; border: 2px solid transparent; border-radius: 10px; overflow: hidden; cursor: pointer; padding: 0; background: var(--leaf); transition: border-color .3s, transform .3s; }
.evd2-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.evd2-thumbs button:hover { transform: translateY(-2px); }
.evd2-thumbs button.is-active { border-color: var(--green); }

.evd2-title { font-family: 'Poppins', sans-serif; font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.evd2-tags { display: flex; gap: 10px; margin: 16px 0 20px; flex-wrap: wrap; }
.evd2-tag { font-size: 12.5px; font-weight: 700; padding: 6px 16px; border-radius: 100px; }
.evd2-tag.dark { background: var(--ink); color: #fff; }
.evd2-tag.light { background: var(--leaf); color: var(--green-deep); }
.evd2-meta p { font-size: 16px; color: var(--ink-soft); margin-bottom: 4px; }
.evd2-meta { margin-bottom: 22px; }

.cd-label { font-size: 15px; color: var(--green-deep); font-weight: 600; margin-bottom: 10px; }
.countdown { display: flex; gap: 14px; }
.countdown > div { text-align: center; min-width: 54px; }
.cd-num { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--ink); line-height: 1; display: block; }
.countdown label { font-size: 12px; color: var(--muted); letter-spacing: .04em; }

.evd2-aside { position: sticky; top: 90px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px; padding: 26px; box-shadow: var(--shadow-sm); }
.evd2-price { display: flex; align-items: baseline; gap: 10px; }
.evd2-price .now { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 36px); font-weight: 800; color: var(--green-deep); }
.evd2-price-note { color: var(--muted); font-size: 13px; margin: 4px 0 18px; }
.evd2-elig { color: var(--ink-soft); font-size: 14px; line-height: 1.6; background: var(--leaf-2); border-radius: 12px; padding: 14px 16px; margin-top: 6px; }

/* tabs */
.evd2-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line-soft); margin: 30px 0 0; overflow-x: auto; }
.evd2-tab { flex: 1; min-width: 160px; background: none; border: none; cursor: pointer; font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 600; color: var(--muted); padding: 16px 18px; border-bottom: 2px solid transparent; transition: color .3s, border-color .3s, background .3s; white-space: nowrap; }
.evd2-tab:hover { color: var(--green-deep); }
.evd2-tab.is-active { color: var(--green-deep); border-bottom-color: var(--green); background: var(--leaf-2); }
.evd2-panel { display: none; padding-top: 12px; }
.evd2-panel.is-active { display: block; animation: fadeUp .5s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* section with centered divider heading */
.evd2-sec { padding: 34px 0; border-bottom: 1px solid var(--line-soft); }
.evd2-sec:last-child { border-bottom: none; }
.evd2-sec h2 { display: flex; align-items: center; gap: 20px; justify-content: center; font-family: 'Poppins', sans-serif; font-size: clamp(19px, 2.4vw, 24px); font-weight: 600; color: var(--green-deep); text-align: center; margin-bottom: 24px; }
.evd2-sec h2::before, .evd2-sec h2::after { content: ''; height: 1px; flex: 1; max-width: 200px; background: var(--line); }
.evd2-sec p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.evd2-sec p.muted { color: var(--muted); }
.evd2-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 6px 0 14px; }
.evd2-list li { position: relative; padding-left: 30px; font-size: 15px; color: var(--ink-soft); }
.evd2-list li::before { content: ''; position: absolute; left: 6px; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.evd2-list.check li::before { width: 18px; height: 18px; left: 0; top: 2px; }
.evd2-list.check li { padding-left: 30px; }
.evd2-list.check li::after { content: ''; position: absolute; left: 5px; top: 6px; width: 5px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.evd2-sched { display: flex; flex-direction: column; gap: 18px; max-width: 620px; margin: 0 auto; }
.evd2-sched-day { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.evd2-sched-row { display: flex; gap: 14px; font-size: 15px; color: var(--ink-soft); padding: 4px 0; }
.evd2-sched-row b { color: var(--green-deep); min-width: 130px; }
.evd2-diet { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; max-width: 420px; }

@media (max-width: 900px) {
  .evd2-hero { grid-template-columns: 1fr; }
  .evd2-aside { position: static; }
  .evd2-diet { grid-template-columns: 1fr; }
  .evd2-sched-row { flex-direction: column; gap: 2px; }
}

/* ---------- Success page ---------- */
.success-body { min-height: 100vh; display: grid; place-items: center; padding: 40px 20px; }
.success-wrap { width: 100%; max-width: 560px; }
.success-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(34px, 6vw, 64px) clamp(24px, 5vw, 56px); text-align: center; }
.success-check { width: 92px; height: 92px; margin: 0 auto 26px; border-radius: 50%; background: var(--leaf); display: grid; place-items: center; }
.success-check svg { width: 56px; height: 56px; }
.sc-circle { fill: none; stroke: var(--green); stroke-width: 2.5; stroke-dasharray: 151; stroke-dashoffset: 151; animation: sc-draw .6s var(--ease-out) forwards; }
.sc-tick { fill: none; stroke: var(--green); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; animation: sc-draw .4s .5s var(--ease-out) forwards; }
@keyframes sc-draw { to { stroke-dashoffset: 0; } }
.success-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.success-title { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 5vw, 42px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.success-title em { color: var(--green); }
.success-text { color: var(--muted); font-size: 15.5px; margin: 16px auto 28px; max-width: 44ch; }
.success-text strong { color: var(--ink); font-weight: 600; }
.success-receipt { text-align: left; background: var(--leaf-2); border: 1px solid var(--line-soft); border-radius: 18px; padding: 8px 22px; margin-bottom: 30px; }
.rc-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.rc-row:last-child { border-bottom: none; }
.rc-row span { color: var(--muted); }
.rc-row strong { color: var(--ink); font-weight: 600; font-family: 'Manrope', sans-serif; }
.rc-paid { color: var(--green-deep) !important; }
.success-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.success-ghost { background: var(--leaf); color: var(--green-deep); }
.success-ghost:hover { background: var(--leaf-2); transform: translateY(-2px); }
.success-foot { margin-top: 26px; font-size: 13.5px; color: var(--faint); }
.success-foot a { color: var(--green-deep); font-weight: 600; text-decoration: none; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
.hero-content [data-reveal] { opacity: 1; transform: none; }

/* ---------- Mobile refinements (Android + iOS) ---------- */
.nav-cta { white-space: nowrap; }
@media (max-width: 560px) {
  .nav { top: 10px; width: calc(100% - 20px); padding: 9px 10px 9px 18px; }
  .brand-name { font-size: 20px; }
  .brand-sub { font-size: 8px; letter-spacing: .16em; white-space: nowrap; }
  .btn-ghost { padding: 10px 16px; font-size: 12.5px; }
  .hero-wrap { padding: 78px 10px 0; }
  .section { padding: 56px 18px; }
  .book-actions { flex-direction: column; }
  .book-phone, .book-slot { width: 100%; justify-content: center; }
  .vt-main { aspect-ratio: 4/5; }
}
@media (max-width: 380px) {
  .brand-sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-title .line > span { transform: none; }
  .hero-bg { display: none; }
}
