:root {
  --sage: #8a9a7b;
  --sage-dark: #5e6e52;
  --sage-light: #e7ede1;
  --cream: #f7f4ee;
  --cream-deep: #efe9df;
  --clay: #c98a6b;
  --clay-dark: #b06f50;
  --ink: #3a3a36;
  --ink-soft: #6a6a63;
  --white: #fffdf9;
  --forest: #37432f;
  --royal: #2547c9;
  --shadow: 0 12px 40px rgba(90, 100, 80, 0.12);
  --radius: 18px;
  --maxw: 1140px;
  font-size: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.18;
}
h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  color: var(--clay-dark);
  font-weight: 700;
  margin-bottom: 14px;
}

.btn {
  display: inline-block;
  background: var(--sage-dark);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: transform .2s ease, background .2s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--ink); transform: translateY(-2px); }
.btn.alt { background: transparent; color: var(--sage-dark); border: 1.5px solid var(--sage-dark); }
.btn.alt:hover { background: var(--sage-dark); color: var(--white); }

/* ---------- Nav ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(140,154,123,0.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { display: inline-flex; align-items: center; gap: 9px; color: var(--forest); }
.logo .logo-mark-wrap { display: inline-flex; color: var(--sage-dark); }
.logo .logo-mark { display: block; }
.logo .logo-img { height: 48px; width: 48px; object-fit: contain; border-radius: 10px; display: block; }
.logo .word { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: 1.5rem; letter-spacing: 0.6px; line-height: 1; color: var(--forest); }
/* Footer brand sits on the dark footer, so flip colors to light */
.foot .foot-brand { color: #fff; }
.foot .foot-brand .logo-mark-wrap { color: var(--sage-light); }
.foot .foot-brand .word { color: #fff; }
nav ul { list-style: none; display: flex; gap: 20px; align-items: center; }
nav a { font-size: 0.83rem; letter-spacing: 0.3px; color: var(--ink-soft); transition: color .2s; }
nav a:hover { color: var(--sage-dark); }
nav a.active { color: var(--sage-dark); font-weight: 700; }
nav a.btn.active { color: #fff; }
/* Animated royal-blue underline on nav links (not the Book button) */
nav ul a:not(.btn) { position: relative; padding-bottom: 6px; }
nav ul a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  border-radius: 2px; background: var(--royal);
  transform: scaleX(0); transform-origin: center; transition: transform .28s ease;
}
nav ul a:not(.btn):hover::after { transform: scaleX(1); }
nav ul a:not(.btn).active::after { transform: scaleX(1); animation: underline-grow .45s ease both; }
@keyframes underline-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  nav ul a:not(.btn)::after { transition: none; }
  nav ul a:not(.btn).active::after { animation: none; }
}
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--sage-dark); }

/* ---------- Hero (home) ---------- */
.hero {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 60%);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero h1 { font-size: 3.3rem; margin-bottom: 20px; color: var(--sage-dark); }
.hero p.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 480px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  aspect-ratio: 4/5;
  border-radius: 200px 200px 24px 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.5), transparent 60%),
    linear-gradient(160deg, var(--sage) 0%, var(--sage-dark) 100%);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-art .lotus { font-size: 6rem; opacity: 0.9; }
.hero-logo { width: 66%; max-width: 300px; border-radius: 28px; box-shadow: 0 18px 50px rgba(40,50,35,0.28); display: block; }
.hero-badge {
  position: absolute; bottom: 24px; left: -20px;
  background: var(--white); border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow); font-size: 0.8rem; line-height: 1.4;
}
.hero-badge strong { display: block; font-size: 1.3rem; color: var(--clay-dark); font-family: Georgia, serif; }

/* ---------- Cinematic hero (home — nature video) ---------- */
.hero-cinema {
  position: relative; overflow: hidden; min-height: 86vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 110px 0;
}
.hero-cinema video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-cinema .hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(24,30,20,0.5), rgba(24,30,20,0.62));
}
.hero-cinema .wrap { position: relative; z-index: 2; max-width: 780px; }
.hero-cinema .hero-mark { width: 84px; height: 84px; border-radius: 20px; margin: 0 auto 26px; display: block; box-shadow: 0 14px 44px rgba(0,0,0,0.35); }
.hero-cinema .eyebrow { color: #e4c9a4; }
.hero-cinema h1 { font-size: 4rem; color: #fffdf9; margin-bottom: 20px; text-shadow: 0 2px 30px rgba(0,0,0,0.45); }
.hero-cinema p.lead { font-size: 1.18rem; color: rgba(255,253,249,0.92); max-width: 560px; margin: 0 auto 34px; text-shadow: 0 1px 18px rgba(0,0,0,0.5); }
.hero-cinema .hero-cta { justify-content: center; }
.btn.gold { background: var(--clay); }
.btn.gold:hover { background: var(--clay-dark); }
.btn.ghost-light { background: transparent; color: #fffdf9; border: 1.5px solid rgba(255,253,249,0.75); }
.btn.ghost-light:hover { background: rgba(255,253,249,0.16); transform: translateY(-2px); }
.hero-cinema .hero-note { margin-top: 30px; font-size: 0.82rem; letter-spacing: 1px; color: rgba(255,253,249,0.75); }
@media (max-width: 700px) { .hero-cinema h1 { font-size: 2.6rem; } .hero-cinema { min-height: 72vh; } }

/* ---------- Video page-hero (inner pages, e.g. Events sea) ---------- */
.page-hero.video-hero { position: relative; overflow: hidden; padding: 96px 0 86px; }
.page-hero.video-hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero.video-hero .hero-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(rgba(20,30,34,0.45), rgba(20,30,34,0.58)); }
.page-hero.video-hero .wrap { position: relative; z-index: 2; }
.page-hero.video-hero h1 { color: #fffdf9; text-shadow: 0 2px 26px rgba(0,0,0,0.5); }
.page-hero.video-hero p { color: rgba(255,253,249,0.9); text-shadow: 0 1px 14px rgba(0,0,0,0.5); }
.page-hero.video-hero .eyebrow { color: #e4c9a4; }

/* ---------- Destination band (ocean-sunset meditation) ---------- */
.destination-band {
  position: relative; overflow: hidden; padding: 130px 24px; text-align: center;
  background-image: url("spirit-band.jpg"); background-size: cover; background-position: center;
}
.destination-band::before { content: ""; position: absolute; inset: 0; background: rgba(8,10,20,0.45); }
.destination-band .band-inner { position: relative; max-width: 680px; margin: 0 auto; }
.destination-band .eyebrow { color: #e4c9a4; }
.destination-band h2 {
  font-size: 2.6rem; color: #fffdf9; margin-bottom: 14px; text-shadow: 0 2px 26px rgba(0,0,0,0.55);
}
.destination-band p { color: rgba(255,253,249,0.88); margin-bottom: 28px; font-size: 1.05rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 60%);
  padding: 66px 0 56px; text-align: center;
}
.page-hero .lotus { font-size: 2.4rem; display: block; margin-bottom: 8px; }
.page-hero h1 { font-size: 2.7rem; color: var(--sage-dark); margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; font-size: 1.08rem; }

/* ---------- Section base ---------- */
section.block { padding: 70px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: 2.3rem; color: var(--sage-dark); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); }

/* ---------- Teaser cards (home) ---------- */
.teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.teaser {
  display: block; background: var(--white); border: 1px solid rgba(140,154,123,0.18);
  border-radius: var(--radius); padding: 32px 28px; transition: transform .25s ease, box-shadow .25s ease;
}
.teaser:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.teaser .ico { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.teaser h3 { font-size: 1.25rem; color: var(--ink); margin-bottom: 8px; }
.teaser p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 12px; }
.teaser .link { color: var(--clay-dark); font-size: 0.85rem; font-weight: 700; }

/* ---------- Services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white);
  border: 1px solid rgba(140,154,123,0.18);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .ico { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--ink); }
.card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 14px; }
.card .price { font-family: Georgia, serif; color: var(--clay-dark); font-size: 1.05rem; }

/* ---------- Events / Retreats ---------- */
.events { display: grid; gap: 18px; max-width: 880px; margin: 0 auto; }
.event {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 24px; align-items: center;
  background: var(--white); border-radius: var(--radius); padding: 22px 28px;
  border: 1px solid rgba(140,154,123,0.18);
}
.event .date {
  text-align: center; background: var(--sage-light); border-radius: 12px; padding: 12px 8px;
}
.event .date .d { font-family: Georgia, serif; font-size: 1.8rem; color: var(--sage-dark); line-height: 1; }
.event .date .m { text-transform: uppercase; font-size: 0.72rem; letter-spacing: 1.5px; color: var(--clay-dark); margin-top: 4px; }
.event h3 { font-size: 1.25rem; margin-bottom: 4px; }
.event .meta { font-size: 0.85rem; color: var(--ink-soft); }
.event .tag {
  display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px;
  background: var(--clay); color: #fff; padding: 3px 10px; border-radius: 30px; margin-bottom: 8px;
}
.event .tag.retreat { background: var(--sage-dark); }

/* ---------- Booking ---------- */
.day-group { margin-bottom: 30px; }
.day-label {
  font-family: Georgia, serif; font-size: 1.15rem; color: var(--sage-dark);
  border-bottom: 1px solid rgba(140,154,123,0.25); padding-bottom: 8px; margin-bottom: 16px;
}
.class-list { display: grid; gap: 14px; max-width: 880px; margin: 0 auto; }
.class-row {
  display: grid; grid-template-columns: 84px 1fr auto; gap: 22px; align-items: center;
  background: var(--white); border: 1px solid rgba(140,154,123,0.18);
  border-radius: var(--radius); padding: 20px 24px; transition: box-shadow .2s;
}
.class-row:hover { box-shadow: var(--shadow); }
.class-row .ctime {
  text-align: center; background: var(--sage-light); border-radius: 12px; padding: 10px 6px;
}
.class-row .ctime .t { font-family: Georgia, serif; font-size: 1.25rem; color: var(--sage-dark); line-height: 1; }
.class-row .ctime .dur { font-size: 0.68rem; color: var(--clay-dark); margin-top: 4px; letter-spacing: .5px; }
.class-row h4 { font-size: 1.15rem; margin-bottom: 3px; }
.class-row .cmeta { font-size: 0.85rem; color: var(--ink-soft); }
.class-row .spots { font-size: 0.8rem; margin-top: 4px; font-weight: 700; }
.spots.open { color: var(--sage-dark); }
.spots.low { color: var(--clay-dark); }
.spots.full { color: #b1453a; }
.class-row .actions { display: flex; flex-direction: column; gap: 6px; align-items: stretch; }
.class-row .btn { padding: 10px 22px; text-align: center; white-space: nowrap; }
.btn.waitlist { background: var(--clay); }
.btn.waitlist:hover { background: var(--clay-dark); }
.link-cancel { font-size: 0.72rem; color: var(--ink-soft); text-align: center; cursor: pointer; text-decoration: underline; }
.booking-empty, .booking-error { text-align: center; padding: 40px; color: var(--ink-soft); }

/* Modal */
.modal-bg {
  display: none; position: fixed; inset: 0; background: rgba(40,44,36,0.55);
  z-index: 100; align-items: center; justify-content: center; padding: 20px;
}
.modal-bg.show { display: flex; }
.modal {
  background: var(--cream); border-radius: var(--radius); padding: 34px 32px; max-width: 420px; width: 100%;
  box-shadow: var(--shadow);
}
.modal h3 { font-size: 1.4rem; color: var(--sage-dark); margin-bottom: 4px; }
.modal .sub { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 20px; }
.modal label { display: block; font-size: 0.8rem; letter-spacing: .5px; margin-bottom: 5px; color: var(--ink); }
.modal input {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(140,154,123,0.4);
  margin-bottom: 16px; font-size: 1rem; background: var(--white); color: var(--ink);
}
.modal input:focus { outline: 2px solid var(--sage); border-color: transparent; }
.modal-actions { display: flex; gap: 10px; }
.modal-actions .btn { flex: 1; }
.modal .btn.ghost { background: transparent; color: var(--ink-soft); border: 1px solid rgba(140,154,123,0.4); }
.modal-msg { font-size: 0.88rem; margin-top: 14px; min-height: 1.1em; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); position: relative;
}
.quote .mark { font-family: Georgia, serif; font-size: 3.5rem; color: var(--sage-light); line-height: 0.5; position: absolute; top: 26px; left: 22px; }
.quote p { position: relative; font-style: italic; color: var(--ink); margin: 18px 0 20px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--sage), var(--clay)); display:flex; align-items:center; justify-content:center; color:#fff; font-family:Georgia,serif; }
.quote .who strong { display: block; font-size: 0.92rem; }
.quote .who small { color: var(--ink-soft); }
.stars { color: var(--clay); letter-spacing: 2px; font-size: 0.9rem; }

/* ---------- Resources ---------- */
.resources { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.resource {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius); padding: 26px;
  border: 1px solid rgba(140,154,123,0.18); transition: background .2s;
}
.resource:hover { background: var(--sage-light); }
.resource .ico { font-size: 1.8rem; background: var(--white); border-radius: 12px; padding: 10px 12px; box-shadow: var(--shadow); }
.resource h3 { font-size: 1.12rem; margin-bottom: 6px; }
.resource p { font-size: 0.9rem; color: var(--ink-soft); }
.resource .link { color: var(--clay-dark); font-size: 0.85rem; font-weight: 700; margin-top: 8px; display: inline-block; }
.support-note {
  margin-top: 30px; text-align: center; font-size: 0.9rem; color: var(--ink-soft);
  background: var(--sage-light); border-radius: var(--radius); padding: 18px;
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: center; }
.about-portrait {
  aspect-ratio: 1/1; border-radius: 24px;
  background:
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.45), transparent 55%),
    linear-gradient(150deg, var(--clay) 0%, var(--sage-dark) 100%);
  box-shadow: var(--shadow); display:flex; align-items:center; justify-content:center;
  font-size: 5rem; color: rgba(255,255,255,0.9);
}
.about-text h2 { font-size: 2.3rem; color: var(--sage-dark); margin-bottom: 18px; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.credentials span {
  background: var(--sage-light); color: var(--sage-dark); font-size: 0.78rem;
  padding: 6px 14px; border-radius: 30px; letter-spacing: 0.4px;
}

/* ---------- Newsletter ---------- */
.newsletter-block {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: var(--white); text-align: center; border-radius: var(--radius); padding: 60px 24px;
  max-width: 760px; margin: 0 auto;
}
.newsletter-block h2 { color: var(--white); font-size: 2.1rem; margin-bottom: 12px; }
.newsletter-block p { color: rgba(255,255,255,0.88); max-width: 520px; margin: 0 auto 28px; }
.news-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.news-form input {
  flex: 1; min-width: 220px; padding: 14px 20px; border-radius: 50px; border: none;
  font-size: 1rem; background: rgba(255,255,255,0.95); color: var(--ink);
}
.news-form input:focus { outline: 2px solid var(--clay); }
.news-form .btn { background: var(--clay); }
.news-form .btn:hover { background: var(--clay-dark); }
.news-small { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 16px; }
.news-msg { margin-top: 18px; font-size: 0.95rem; min-height: 1.2em; }

/* ---------- Footer ---------- */
footer.foot { background: var(--ink); color: rgba(255,255,255,0.75); padding: 50px 0 30px; margin-top: 10px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; margin-bottom: 34px; }
.foot-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; font-family: Georgia, serif; }
.foot-grid a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.foot-grid a:hover { color: var(--clay); }
.foot-logo { font-family: Georgia, serif; font-size: 1.5rem; color: #fff; margin-bottom: 10px; }
.foot-tagline { font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--clay); margin-top: 12px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.powered-by { margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.76rem; color: rgba(255,255,255,0.5); }
.powered-by a { display: inline-flex; transition: opacity .2s; }
.powered-by a:hover { opacity: 0.8; }
.powered-by img { height: 22px; width: auto; border-radius: 5px; display: block; }
.socials { display: flex; gap: 14px; margin-top: 14px; }
.socials a { font-size: 1.2rem; }

/* ---------- Timeline (History) ---------- */
.tl { position: relative; max-width: 820px; margin: 0 auto; padding-left: 40px; }
.tl::before { content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--sage), var(--clay)); }
.era { position: relative; margin-bottom: 46px; }
.era::before { content: ""; position: absolute; left: -34px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--clay); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--clay); }
.era .period { display: inline-block; background: var(--sage-light); color: var(--sage-dark); font-size: 0.74rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; padding: 4px 12px; border-radius: 30px; margin-bottom: 10px; }
.era h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 8px; }
.era p { color: var(--ink-soft); }
.limb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.limb { background: var(--white); border: 1px solid rgba(140,154,123,0.18); border-radius: var(--radius); padding: 22px 20px; transition: transform .25s ease, box-shadow .25s ease; }
.limb:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.limb .num { font-family: Georgia, serif; font-size: 1.5rem; color: var(--clay); }
.limb h4 { font-size: 1.05rem; margin: 4px 0 6px; }
.limb small { color: var(--ink-soft); font-size: 0.85rem; }
.band { background: linear-gradient(135deg, var(--sage-dark), var(--sage)); color: var(--white); text-align: center; padding: 60px 24px; border-radius: var(--radius); max-width: 820px; margin: 0 auto; }
.band blockquote { font-family: Georgia, serif; font-size: 1.6rem; margin: 0 auto 14px; font-style: italic; }
.band cite { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-style: normal; letter-spacing: 1px; }

/* ---------- Offering feature blocks ---------- */
.offering { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 46px; align-items: center; margin-bottom: 64px; }
.offering:last-child { margin-bottom: 0; }
.offering.reverse .offering-visual { order: 2; }
.offering-visual { aspect-ratio: 4/5; border-radius: 24px; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; font-size: 4.5rem; color: rgba(255,255,255,0.92); }
.ov-coach { background: linear-gradient(150deg, var(--clay), var(--sage-dark)); }
.ov-retreat { background: linear-gradient(150deg, var(--sage), var(--sage-dark)); }
.ov-events { background: linear-gradient(150deg, var(--sage-dark), var(--clay)); }
.offering-photo { width: 100%; object-fit: cover; }
.offering-text h2 { font-size: 2rem; color: var(--sage-dark); margin-bottom: 14px; }
.offering-text p { color: var(--ink-soft); margin-bottom: 14px; }
.includes-title { font-family: Georgia, serif; color: var(--clay-dark); font-size: 1.02rem; margin-top: 8px; }
.includes { list-style: none; margin: 12px 0 6px; }
.includes li { position: relative; padding-left: 26px; margin-bottom: 9px; color: var(--ink); font-size: 0.95rem; }
.includes li::before { content: "🌿"; position: absolute; left: 0; top: 0; font-size: 0.85rem; }
@media (max-width: 900px) {
  .offering { grid-template-columns: 1fr; gap: 26px; }
  .offering.reverse .offering-visual { order: 0; }
  .offering-visual { max-width: 300px; margin: 0 auto; aspect-ratio: 1/1; font-size: 3.5rem; }
}

/* ---------- Stripe pay cards (Book page) ---------- */
.pay-grid { max-width: 980px; margin: 0 auto; }
.pay-card { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.pay-card .price { font-size: 1.5rem; margin: 6px 0 16px; }
.pay-card .pay-btn { margin-top: auto; }
.pay-note { text-align: center; margin-top: 26px; font-size: 0.82rem; color: var(--ink-soft); }
.pay-msg { text-align: center; max-width: 640px; margin: 0 auto 26px; font-size: 0.95rem; border-radius: 12px; }
.pay-msg.ok { background: var(--sage-light); color: var(--sage-dark); padding: 14px 18px; }
.pay-msg.soft { background: var(--cream-deep); color: var(--ink-soft); padding: 14px 18px; }
.pay-msg.err { background: #f6ddd7; color: #b1453a; padding: 14px 18px; }

/* ---------- Contact-for-booking card ---------- */
.contact-card {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--white); border: 1px solid rgba(140,154,123,0.18);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 54px 40px;
}
.contact-card .ico { font-size: 3rem; display: block; margin-bottom: 14px; }
.contact-card h2 { font-size: 2rem; color: var(--sage-dark); margin-bottom: 12px; }
.contact-card p { color: var(--ink-soft); max-width: 460px; margin: 0 auto 24px; }
.contact-card .email-btn { font-size: 1rem; padding: 15px 30px; }
.contact-card .divider { color: var(--ink-soft); font-size: 0.85rem; margin: 26px 0 16px; }

/* ---------- My Space (PIN-protected) ---------- */
.btn.small { padding: 8px 16px; font-size: 0.8rem; }
.pin-input {
  width: 220px; max-width: 100%; margin: 4px auto 18px; display: block; text-align: center;
  letter-spacing: 10px; font-size: 1.5rem; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(140,154,123,0.4); background: var(--white); color: var(--ink);
}
.pin-input:focus { outline: 2px solid var(--sage); border-color: transparent; }
.myspace-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.myspace-head h2 { color: var(--sage-dark); font-size: 1.8rem; }
.myspace-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.myspace-notes {
  width: 100%; min-height: 340px; padding: 18px; border-radius: var(--radius);
  border: 1px solid rgba(140,154,123,0.3); background: var(--white); font-family: inherit;
  font-size: 0.98rem; line-height: 1.6; color: var(--ink); margin-top: 14px; resize: vertical;
}
.myspace-notes:focus { outline: 2px solid var(--sage); border-color: transparent; }
.save-status { font-size: 0.8rem; color: var(--sage-dark); margin-top: 8px; min-height: 1.1em; }

/* ---------- Research highlight (animated) ---------- */
.research {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: var(--white); border: 1px solid rgba(140,154,123,0.18);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 48px 40px;
  animation: reveal-up 0.9s ease both;
}
.research .badge {
  display: inline-block; font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 700; color: #fff; background: var(--clay); padding: 4px 12px; border-radius: 30px;
  margin-bottom: 16px; animation: soft-pulse 2.4s ease-in-out infinite;
}
.research h2.shimmer {
  font-size: 2rem; line-height: 1.25; margin-bottom: 6px;
  background: linear-gradient(90deg, var(--sage-dark), var(--clay), var(--sage-dark));
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 5s linear infinite;
}
.research-sub { color: var(--ink-soft); font-style: italic; margin-bottom: 24px; }
.research-quote {
  font-family: Georgia, serif; font-size: 1.28rem; line-height: 1.6; color: var(--ink);
  border: none; margin: 0 auto 22px; max-width: 600px;
}
.research-quote .word { display: inline-block; opacity: 0; animation: word-up 0.5s ease forwards; }
.research-cite { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 24px; }
.research-cite strong { color: var(--sage-dark); }

@keyframes reveal-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes word-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes soft-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.06); opacity: 0.85; } }

@media (prefers-reduced-motion: reduce) {
  .research, .research .badge, .research h2.shimmer, .research-quote .word { animation: none !important; }
  .research h2.shimmer { -webkit-text-fill-color: var(--sage-dark); color: var(--sage-dark); }
  .research-quote .word { opacity: 1; }
}

/* ---------- Newsletter two-column layout (form + articles) ---------- */
.news-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; max-width: 980px; margin: 0 auto; }
.news-layout .newsletter-block { margin: 0; }
.articles-head { margin-bottom: 4px; }
.article-list { display: flex; flex-direction: column; gap: 18px; }
.article-card {
  display: block; background: var(--white); border: 1px solid rgba(140,154,123,0.2);
  border-radius: var(--radius); padding: 24px 26px; transition: transform .2s ease, box-shadow .2s ease;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.article-card.featured { border-color: rgba(201,138,107,0.45); }
.article-card h3 { font-size: 1.22rem; color: var(--ink); line-height: 1.3; margin-bottom: 8px; }
.article-card h3.shimmer-sm {
  background: linear-gradient(90deg, var(--sage-dark), var(--clay), var(--sage-dark));
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: shimmer 5s linear infinite;
}
.article-card p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 10px; }
.article-card .article-meta { font-size: 0.8rem; font-style: italic; }
.article-card .article-meta strong { color: var(--sage-dark); font-style: normal; }
.article-card .read { color: var(--clay-dark); font-weight: 700; font-size: 0.85rem; }
.article-card .badge {
  display: inline-block; font-size: 0.66rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 700; color: #fff; background: var(--clay); padding: 4px 12px; border-radius: 30px;
  margin-bottom: 12px; animation: soft-pulse 2.4s ease-in-out infinite;
}
.article-card .tag {
  display: inline-block; font-size: 0.64rem; letter-spacing: 1.2px; text-transform: uppercase;
  font-weight: 700; padding: 3px 11px; border-radius: 30px; margin-bottom: 12px;
  background: var(--sage-light); color: var(--sage-dark);
}
@media (max-width: 760px) { .news-layout { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .article-card .badge, .article-card h3.shimmer-sm { animation: none !important; }
  .article-card h3.shimmer-sm { -webkit-text-fill-color: var(--sage-dark); color: var(--sage-dark); }
}

/* ---------- About page: dynamic beach video background ---------- */
.beach-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--sage-dark); }
.beach-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.beach-tint { position: absolute; inset: 0; background: linear-gradient(rgba(247,244,238,0.55), rgba(231,237,225,0.5)); }
/* Let the fixed beach show through on the About page */
body.about-page { background: var(--sage-dark); }
body.about-page .page-hero { background: transparent; }
body.about-page section.block { background: transparent; }
body.about-page .page-hero h1,
body.about-page .page-hero p,
body.about-page .page-hero .eyebrow { text-shadow: 0 1px 12px rgba(255,255,255,0.6); }
/* Frosted content card over the beach */
.about-card {
  background: rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 24px; padding: 44px 46px; box-shadow: var(--shadow);
}
@media (max-width: 900px) { .about-card { padding: 30px 26px; } }
.about-grid.about-card { align-items: start; }
.about-photos { display: flex; flex-direction: column; gap: 16px; }
.about-photo { width: 100%; border-radius: 20px; display: block; box-shadow: var(--shadow); }

/* ---------- My Space: realistic space video background ---------- */
.space-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: #05070f; }
.space-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.space-tint { position: absolute; inset: 0; background: radial-gradient(circle at 50% 25%, rgba(20,26,55,0.12), rgba(5,7,15,0.72)); }
body.space-page { background: #05070f; }
body.space-page .page-hero { background: transparent; }
body.space-page section.block { background: transparent; }
body.space-page .page-hero h1 { color: #fff; text-shadow: 0 2px 26px rgba(0,0,0,0.6); }
body.space-page .page-hero .eyebrow { color: rgba(255,255,255,0.72); }
body.space-page .page-hero p { color: rgba(255,255,255,0.85); text-shadow: 0 1px 14px rgba(0,0,0,0.55); }

/* ---------- Shloka (animated Sanskrit verse) ---------- */
.shloka { text-align: center; margin: 6px 0 34px; padding: 26px 16px; }
.shloka-line {
  font-family: "Tiro Devanagari Sanskrit", Georgia, serif;
  font-size: 2rem; line-height: 2; margin: 4px 0;
  color: transparent;
  background: linear-gradient(90deg, var(--sage-dark), var(--clay), var(--royal), var(--sage-dark));
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: shloka-in 1s ease both, shimmer 7s linear infinite;
}
.shloka-line:nth-of-type(2) { animation-delay: 0.5s, 0s; }
.shloka-translation {
  max-width: 620px; margin: 22px auto 0; font-family: Georgia, "Times New Roman", serif;
  font-style: italic; font-size: 1.08rem; line-height: 1.7; color: var(--ink);
  opacity: 0; animation: shloka-in 1s ease both; animation-delay: 0.9s;
}
.shloka-src {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem; color: var(--clay-dark); margin-top: 16px; letter-spacing: 1px;
  opacity: 0; animation: shloka-in 1s ease both; animation-delay: 1.3s;
}
@keyframes shloka-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (max-width: 600px) { .shloka-line { font-size: 1.5rem; line-height: 1.85; } }
@media (prefers-reduced-motion: reduce) {
  .shloka-line, .shloka-src, .shloka-translation { animation: none !important; opacity: 1 !important; }
  .shloka-line { -webkit-text-fill-color: var(--sage-dark); color: var(--sage-dark); }
}

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 34px; align-items: start; max-width: 1000px; margin: 0 auto; }
.contact-form-card {
  background: var(--white); border: 1px solid rgba(140,154,123,0.2);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px 38px;
}
.contact-form-card h2 { color: var(--sage-dark); font-size: 1.9rem; margin-bottom: 6px; }
.form-sub { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 0.78rem; letter-spacing: 0.6px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(140,154,123,0.4);
  font-size: 1rem; font-family: inherit; background: var(--cream); color: var(--ink); resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--sage); border-color: transparent; }
.contact-aside {
  background: var(--sage-light); border-radius: var(--radius); padding: 32px 28px;
}
.contact-aside h3 { color: var(--sage-dark); font-size: 1.3rem; margin-bottom: 16px; }
.contact-line { display: block; padding: 10px 0; border-bottom: 1px dashed rgba(94,110,82,0.25); font-size: 0.95rem; color: var(--ink); transition: color .2s; }
.contact-line:hover { color: var(--clay-dark); }
.aside-note { margin-top: 18px; font-size: 0.85rem; color: var(--ink-soft); font-style: italic; }
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ---------- Generic CTA ---------- */
.cta { text-align: center; padding: 20px 0 0; }
.cta .btn { margin: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 360px; margin: 0 auto; }
  .hero h1 { font-size: 2.5rem; }
  .cards, .quotes, .resources, .teasers { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .limb-grid { grid-template-columns: 1fr 1fr; }
  nav ul {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; background: var(--cream); padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid rgba(140,154,123,0.25);
  }
  nav ul.open { display: flex; }
  .nav-toggle { display: block; }
  .event { grid-template-columns: 80px 1fr; }
  .event .btn { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 560px) { .limb-grid { grid-template-columns: 1fr; } }
