/* =========================================================
   Fine-Tuned Frequencies — shared styles
   Palette: night indigo · warm gold · cream · sage
   Type: Cormorant Garamond (display serif) + Inter (body)
   ========================================================= */

:root {
  --night:      #1a1630;   /* deep indigo/plum background */
  --night-2:    #241f45;   /* raised night panel */
  --night-3:    #2f2958;   /* card on night */
  --gold:       #6f77b8;   /* warm gold accent */
  --gold-soft:  #a9afe0;
  --sand:       #c3b491;
  --sand-soft:  #d8ccaa;
  --cream:      #f4efe0;   /* warm paper */
  --cream-2:    #eae2d0;
  --sage:       #6f76a3;   /* muted grounding green */
  --sage-deep:  #474a72;
  --clay:       #b98f6a;   /* soft terracotta */
  --ink:        #211d3b;   /* text on cream */
  --ink-soft:   #4a4560;
  --mist:       rgba(245,239,228,0.72); /* text on night */
  --line:       rgba(111,119,184,0.28);
  --shadow:     0 24px 60px -28px rgba(10,8,25,0.7);
  --radius:     18px;
  --maxw:       1160px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--cream);
  background-image: url("img/paper.png");
  background-repeat: repeat;
  background-size: 480px 480px;
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

p { margin: 0 0 1.1em; }

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

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

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1.1em;
}
.eyebrow.on-night { color: var(--gold-soft); background: transparent; }

.script {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  text-align: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--gold);
  color: var(--night);
}
.btn:hover { background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
}
.btn-ghost:hover { background: rgba(111,119,184,0.12); color: var(--gold-soft); transform: translateY(-2px); }

.btn-ghost.on-night { color: var(--cream); border-color: rgba(245,239,228,0.5); }
.btn-ghost.on-night:hover { background: rgba(245,239,228,0.08); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22,19,42,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 26px;
  max-width: 1280px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
  flex: none;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--cream);
}
.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--mist);
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  background: none; border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- section scaffolding ---------- */
section { position: relative; }
.pad { padding: clamp(64px, 9vw, 120px) 0; }
.pad-sm { padding: clamp(46px, 6vw, 80px) 0; }

.on-night { background: var(--night); color: var(--cream); }
.on-night h1, .on-night h2, .on-night h3 { color: var(--cream); }
.on-night p { color: var(--mist); }
.on-cream { background: transparent; }
.on-cream-2 { background: rgba(70,55,20,0.05); }
.on-sage { background: var(--sage-deep); color: var(--cream); }
.on-sage h2, .on-sage h3 { color: var(--cream); }
.on-sage p { color: rgba(245,239,228,0.82); }

/* ombré band: dark plum (top) fading to dusty mauve (bottom). Treated as a dark section for legibility. */
.on-lilac {
  background: linear-gradient(180deg, #483a4b 0%, #564759 16%, #665567 32%, #7f6b7f 52%, #9a8299 72%, #af94ac 88%, #bd9fb8 100%);
  color: var(--cream);
}
.on-lilac p, .on-lilac li { color: var(--cream); }
.on-lilac h1, .on-lilac h2, .on-lilac h3, .on-lilac h4 { color: var(--cream); }
.on-lilac .eyebrow { color: var(--gold-soft); }
.on-lilac .cal-label { color: var(--gold-soft); }
.on-lilac .tag { color: var(--cream); background: rgba(245,239,228,0.16); }
.on-lilac .btn-ghost { color: var(--cream); border-color: rgba(245,239,228,0.5); }
.on-lilac .btn-ghost:hover { background: rgba(245,239,228,0.08); color: var(--cream); }
/* white cards & quotes sitting on a lilac band keep their dark-on-light styling */
.on-lilac .card h3, .on-lilac .card h4 { color: var(--ink); }
.on-lilac .card p, .on-lilac .card li { color: var(--ink); }
.on-lilac .card .meta { color: var(--sage-deep); }
.on-lilac .card a { color: var(--gold); }
.on-lilac .card .btn-ghost { color: var(--gold); border-color: var(--gold); }
.on-lilac .quote p { color: var(--ink); }
/* white offering cards on a lilac band keep dark-on-light text */
.on-lilac .offering h3, .on-lilac .offering h4 { color: #483a4b; }
.on-lilac .offering p, .on-lilac .offering li { color: #483a4b; }
.on-lilac .offering .cal-label { color: #564759; }
.on-lilac .offering .tag { color: #564759; background: rgba(72,58,75,0.10); }
.on-lilac .offering .offering-body p[style*="italic"] { color: #564759 !important; }

.center { text-align: center; }
.measure { max-width: 720px; margin-left: auto; margin-right: auto; }
.lead { font-size: 1.22rem; line-height: 1.6; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 10%, #2a2550 0%, #1a1630 60%, #120e28 100%);
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(111,119,184,0.18), transparent 70%),
    repeating-radial-gradient(circle at 50% 45%, rgba(111,119,184,0.06) 0 2px, transparent 2px 46px);
  opacity: 0.9;
}
.hero-media::after {
  /* video placeholder ring — evokes singing bowl */
  content: "";
  position: absolute;
  left: 50%; top: 44%;
  width: min(58vw, 520px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(111,119,184,0.35);
  box-shadow: 0 0 120px 20px rgba(111,119,184,0.12), inset 0 0 80px rgba(111,119,184,0.1);
  animation: breathe 9s ease-in-out infinite;
}
@keyframes breathe {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity:0.75; }
  50%     { transform: translate(-50%,-50%) scale(1.06); opacity:1; }
}
.hero-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14,11,31,0.35) 0%, rgba(14,11,31,0.15) 40%, rgba(14,11,31,0.75) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero h1 { color: var(--cream); margin-bottom: 0.2em; }
.hero .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold-soft);
  margin-bottom: 0.6em;
}
.hero .sub {
  color: var(--mist);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2em;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.video-tag {
  position: absolute;
  bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.45);
  border: 1px dashed rgba(245,239,228,0.28);
  padding: 7px 16px;
  border-radius: 999px;
}

/* ---------- generic grid / cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid rgba(33,29,59,0.08);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 40px -30px rgba(20,15,40,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -28px rgba(20,15,40,0.55); }
.card.on-night { background: var(--night-3); border-color: rgba(111,119,184,0.18); }

.icon-badge {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(111,119,184,0.14);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* image placeholder blocks */
.img-slot {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(111,119,184,0.14), rgba(154,143,191,0.14)),
    var(--night-2);
  display: grid; place-items: center;
  min-height: 240px;
  color: rgba(245,239,228,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  border: 1px dashed rgba(111,119,184,0.3);
}
.img-slot.tall { min-height: 420px; }
.img-slot span { padding: 8px 14px; }

/* ---------- offering card (catalogue) ---------- */
.offering {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(33,29,59,0.08);
}
.offering:nth-child(even) .offering-media { order: 2; }
.offering-media { min-height: 340px; }
.offering-body { padding: clamp(28px, 4vw, 48px); }
.offering-body h3 { margin-bottom: 0.4em; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: rgba(154,143,191,0.16);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* ---------- interest note ---------- */
.interest-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  margin: 14px 0 20px;
}

/* ---------- testimonials ---------- */
.quote {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 18px 40px -30px rgba(20,15,40,0.5);
  border: 1px solid rgba(33,29,59,0.08);
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 0.6;
  color: rgba(111,119,184,0.4);
  position: absolute; top: 24px; left: 22px;
}
.quote p { font-family: var(--serif); font-size: 1.24rem; font-style: italic; color: var(--ink); padding-top: 30px; }
.quote .who { font-family: var(--sans); font-style: normal; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 0; }
.quote.on-night { background: var(--night-3); }
.quote.on-night p { color: var(--cream); }

/* ---------- schedule table ---------- */
.schedule { width: 100%; border-collapse: collapse; }
.schedule td { padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.schedule td.time { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-soft); white-space: nowrap; width: 120px; }
.schedule td.evt { color: var(--mist); }

/* ---------- checklist ---------- */
.checks { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.checks li { position: relative; padding-left: 30px; }
.checks li::before {
  content: "\273F";
  position: absolute; left: 0; top: 1px;
  color: var(--gold);
}

/* ---------- forms ---------- */
.form { display: grid; gap: 16px; max-width: 560px; }
.form.wide { max-width: 100%; }
.field { display: grid; gap: 6px; }
.field label { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(245,239,228,0.22);
  background: rgba(245,239,228,0.05);
  color: var(--cream);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(245,239,228,0.4); }
.form.on-cream .field label { color: var(--sage-deep); }
.form.on-cream .field input, .form.on-cream .field select, .form.on-cream .field textarea {
  background: #fff; color: var(--ink); border-color: rgba(33,29,59,0.14);
}
.form.on-cream .field input::placeholder, .form.on-cream .field textarea::placeholder { color: rgba(33,29,59,0.4); }
/* dropdown menu: dark background, light text throughout (legible on both form styles) */
.field select { background-color: var(--night-2); }
.field select option { background: var(--night-2); color: var(--cream); }
.form.on-cream .field select { background-color: #fff; }
.form.on-cream .field select option { background: #fff; color: var(--ink); }

/* workshop per-card calendar embed */
.cal-label { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--sage-deep); margin: 20px 0 8px; }
.wsp-cal { margin-bottom: 4px; }
.wsp-cal iframe { width: 100%; }

/* ---------- footer ---------- */
.site-footer { background: #120e28; color: var(--mist); padding: 64px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: var(--gold-soft); font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: var(--mist); display: block; margin-bottom: 10px; font-size: 0.94rem; transition: color 0.2s; }
.site-footer a:hover { color: var(--gold); }
.footer-brand p { max-width: 320px; font-size: 0.96rem; }
.footer-bottom { border-top: 1px solid rgba(245,239,228,0.1); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(245,239,228,0.45); }

/* ---------- misc ---------- */
.divider-om { text-align: center; color: var(--sand); font-family: var(--serif); font-size: 1.6rem; margin: 6px 0 26px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list span { border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 0.86rem; color: var(--ink-soft); }
.on-night .pill-list span { color: var(--mist); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--night); padding: 22px 26px; gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .offering, .split, .footer-grid { grid-template-columns: 1fr; }
  .offering:nth-child(even) .offering-media { order: 0; }
  .checks { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- real logo in brand mark ---------- */
.brand-mark { overflow: hidden; background: var(--cream); padding: 0; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- hero video backdrop ---------- */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* ---------- section video banner (e.g. testimonials hero) ---------- */
.vid-hero { position: relative; overflow: hidden; }
.vid-hero > .wrap { position: relative; z-index: 2; }
.vid-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(22,18,36,0.42), rgba(18,15,30,0.62));
}
/* ---------- photo hero: lift text off a bright background image ---------- */
.photo-hero h1,
.photo-hero .lead,
.photo-hero .eyebrow {
  text-shadow: 0 2px 24px rgba(6,4,16,0.98), 0 0 12px rgba(6,4,16,0.92), 0 1px 3px rgba(6,4,16,0.95);
}
/* ---------- filled image slots ---------- */
.img-slot { position: relative; }
.img-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.img-slot:has(img) { border: none; }

/* ---------- film hero (video only, no text) ---------- */
.hero-film {
  min-height: 100vh;
  background: #120e28;
}
.hero-film .hero-video { z-index: 0; }
/* gentle scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(245,239,228,0.7);
  border-radius: 14px;
  display: grid; place-items: start center;
}
.scroll-cue span {
  width: 4px; height: 8px; margin-top: 7px;
  background: var(--sand-soft);
  border-radius: 2px;
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ---------- invocation: words summoned on scroll ---------- */
.invocation { padding-top: clamp(90px, 16vh, 180px); padding-bottom: clamp(90px, 16vh, 180px); }
.invocation h1 { font-size: clamp(2.8rem, 7vw, 5rem); color: var(--cream); margin-bottom: 0.2em; }
.invocation .tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold-soft); margin-bottom: 0.7em;
}
.invocation .sub { color: var(--mist); font-size: 1.18rem; margin: 0 auto 2em; max-width: 620px; }

/* scroll-reveal — "from nothing into something" */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  filter: blur(6px);
  transition: opacity 1.1s ease, transform 1.1s ease, filter 1.1s ease;
}
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.invocation .tagline.reveal { transition-delay: 0.15s; }
.invocation .sub.reveal { transition-delay: 0.3s; }
.invocation .hero-cta.reveal { transition-delay: 0.45s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .scroll-cue span { animation: none; }
}

/* ---------- full (uncropped) photo ---------- */
.photo-full {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- schedule meta line (offering cards) ---------- */
.card .meta {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 0.9em;
}
.card.on-night .meta { color: var(--gold-soft); }

/* ---------- bio: floated photo with text wrap ---------- */
.bio-float {
  float: left;
  width: min(42%, 400px);
  height: auto;
  margin: 6px 38px 20px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
@media (max-width: 700px) {
  .bio-float { float: none; width: 100%; margin: 0 0 24px; }
}

/* ---------- booking (Calendly) frame ---------- */
.booking-frame {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  overflow: hidden;
}

/* ---------- opt-in checkbox row ---------- */
.opt-in {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 6px; cursor: pointer;
  font-size: 0.95rem; line-height: 1.5;
}
.opt-in input[type="checkbox"] {
  width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto;
  accent-color: var(--gold);
}

/* ---------- photo galleries ---------- */
.gallery { display: grid; gap: 14px; }
.gallery.g-2 { grid-template-columns: repeat(2, 1fr); }
.gallery.g-3 { grid-template-columns: repeat(3, 1fr); }
.gallery img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; aspect-ratio: 4 / 5;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.gallery.g-3 img { aspect-ratio: 3 / 4; }
.gallery .only-mobile { display: none; }
.photo-band {
  width: 100%; display: block; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
@media (max-width: 700px) {
  .gallery.g-3 { grid-template-columns: 1fr 1fr; }
  .gallery .only-mobile { display: block; }
}
@media (max-width: 480px) {
  .gallery.g-2, .gallery.g-3 { grid-template-columns: 1fr; }
}

/* ================= FILM HERO: pinned video + scroll-scrubbed text ================= */
.film-stage { position: relative; height: 220vh; background: #120e28; }
.film-sticky {
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
}
.film-sticky .hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.film-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 95% at 50% 55%, rgba(14,11,31,0.10), rgba(14,11,31,0.78));
  opacity: calc(var(--p, 0) * 0.72);
  pointer-events: none;
}
.film-copy {
  position: absolute; z-index: 2;
  left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  padding: 0 26px;
  max-width: 820px; margin: 0 auto;
}
.film-copy h1 { color: var(--cream); font-size: clamp(2.8rem, 7vw, 5.2rem); margin-bottom: 0.2em; }
.film-copy .tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold-soft); margin-bottom: 0.7em;
}
.film-copy .sub { color: var(--mist); font-size: 1.18rem; max-width: 620px; margin: 0 auto 2em; }

/* each line dragged in over its own slice of scroll progress (--p from JS) */
.film-copy > * {
  --local: clamp(0, calc((var(--p, 0) - var(--s)) / (var(--e) - var(--s))), 1);
  opacity: var(--local);
  transform: translateY(calc((1 - var(--local)) * 46px));
  filter: blur(calc((1 - var(--local)) * 7px));
  will-change: opacity, transform, filter;
}
.film-copy h1        { --s: .05; --e: .42; }
.film-copy .tagline  { --s: .18; --e: .58; }
.film-copy .sub      { --s: .32; --e: .74; }
.film-copy .hero-cta { --s: .48; --e: .90; }

.film-sticky .scroll-cue { z-index: 3; opacity: calc(1 - var(--p, 0) * 2.2); }

@media (prefers-reduced-motion: reduce) {
  .film-stage { height: 100vh; }
  .film-copy > * { opacity: 1; transform: none; filter: none; }
  .film-scrim { opacity: 0.5; }
  .film-sticky .scroll-cue { display: none; }
}

/* ================= INTRO SPLASH (home) ================= */
.intro {
  position: fixed; inset: 0; z-index: 3000;
  display: grid; place-items: center;
  background-color: #efe7d2;
  background-image: radial-gradient(circle at 50% 42%, rgba(255,255,255,0.38), rgba(20,14,4,0.06) 78%), url("img/paper.png");
  background-repeat: no-repeat, repeat;
  background-size: cover, 480px 480px;
  animation: introOut 3.6s cubic-bezier(.4,0,.2,1) forwards;
}
.intro-logo {
  width: min(64vw, 380px); height: auto; display: block;
  animation: introLogo 2.6s ease both;
}
/* logo settles in, holds, then the whole veil lifts to the video */
@keyframes introLogo {
  0%   { opacity: 0; transform: scale(.90); filter: blur(8px); }
  38%  { opacity: 1; transform: scale(1);   filter: blur(0); }
  100% { opacity: 1; transform: scale(1.03); }
}
@keyframes introOut {
  0%, 62% { opacity: 1; visibility: visible; }
  100%    { opacity: 0; visibility: hidden; }
}
/* if the visitor prefers reduced motion, keep it brief and still */
@media (prefers-reduced-motion: reduce) {
  .intro { animation-duration: 1.4s; }
  .intro-logo { animation: none; }
}

/* ---------- Luma booking embed ---------- */
.luma-embed { max-width: 920px; margin: 0 auto; }
.luma-embed iframe { display: block; width: 100%; }

/* ---------- custom svg icons in badges ---------- */
.icon-badge svg { width: 26px; height: 26px; display: block; }

/* ================= v2 home refinements ================= */
/* Section headers (eyebrows) — more present, less "in the background" */
.eyebrow { font-size: 1rem; letter-spacing: 0.2em; font-weight: 700; margin-bottom: 0.95em; }
.eyebrow.on-night { color: var(--gold-soft); }

/* Hero: stronger readability over the video */
.film-copy h1 { text-shadow: 0 2px 26px rgba(10,8,25,0.55); }
.film-copy .sub {
  font-size: 1.32rem; line-height: 1.62;
  color: rgba(245,239,228,0.96);
  text-shadow: 0 1px 16px rgba(10,8,25,0.6);
  max-width: 680px;
}
/* Hero buttons — just noticeably transparent, glassy */
.film-copy .btn {
  background: rgba(111,119,184,0.78);
  border-color: rgba(169,175,224,0.7);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.film-copy .btn:hover { background: rgba(111,119,184,0.92); }
/* Explore Offerings — logo pastel-blue fill with dark text so it never gets lost on light footage */
.film-copy .btn-ghost.on-night {
  background: rgba(194,214,236,0.85);
  color: var(--night);
  border-color: rgba(194,214,236,0.9);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.film-copy .btn-ghost.on-night:hover {
  background: rgba(194,214,236,0.97);
  border-color: rgba(194,214,236,1);
  color: var(--night);
}

/* Section headers (eyebrows) — noticeably larger, still clearly a kicker above the big subhead */
.eyebrow {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 0.8em;
}

/* Section headers — go big & unmistakable (kicker sits clearly above the serif subhead) */
.eyebrow {
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.55em;
}

/* ---------- footer NAP (local SEO) ---------- */
.footer-nap {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 22px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--mist);
  max-width: 900px;
}
.footer-nap strong { color: var(--gold-soft); font-weight: 600; }
.footer-nap a { color: var(--gold-soft); text-decoration: none; }
.footer-nap a:hover { text-decoration: underline; }

/* ---------- FAQ (GEO/AEO) ---------- */
.faq h3 { margin: 1.5em 0 0.35em; font-size: 1.3rem; }
.faq h3:first-child { margin-top: 0; }
.faq p { margin: 0 0 0.4em; }

/* ---------- placeholder highlight (staging review only — remove before launch) ---------- */
.ph { background: #ffe14d; color: #1a1630; padding: 0 .3em; border-radius: 3px; font-weight: 700; box-shadow: inset 0 0 0 1px rgba(0,0,0,.3); }
a.ph, .ph a { color: #1a1630; text-decoration: underline; }


/* ---------- donation hero: photo of Mitchell — heading top-left, blurb right ---------- */
.donate-hero {
  min-height: 84vh;
  display: flex;
  align-items: flex-start;
  background-size: cover;
  background-position: center 24%;
  background-repeat: no-repeat;
  padding-top: 46px;
}
.donate-hero .wrap { position: relative; width: 100%; min-height: 62vh; }
.donate-hero .dh-head {
  position: absolute; left: 0; top: 2%; transform: none;
  max-width: 480px; text-align: left;
  text-shadow: 0 2px 16px rgba(10,8,25,0.72), 0 1px 3px rgba(10,8,25,0.55);
}
.donate-hero .dh-head h1 {
  font-size: clamp(3rem, 5.6vw, 4.4rem);
  line-height: 1.08; margin: 0;
}
.donate-hero .dh-body {
  position: absolute; right: 0; top: 16%;
  max-width: 360px; text-align: left;
  text-shadow: 0 2px 14px rgba(10,8,25,0.7);
}
.donate-hero .dh-body .hero-cta { justify-content: flex-start; margin-top: 20px; }
.donate-hero .hero-cta, .donate-hero .hero-cta * { text-shadow: none; }
@media (max-width: 860px) {
  .donate-hero { position: relative; min-height: auto; padding-top: 80px; padding-bottom: 90px; background-position: 45% 16%; }
  .donate-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: linear-gradient(180deg, rgba(16,12,26,0.9) 0%, rgba(16,12,26,0.48) 30%, rgba(16,12,26,0.48) 52%, rgba(16,12,26,0.92) 100%); }
  .donate-hero .dh-head h1 { font-size: clamp(2rem, 8.5vw, 2.7rem); }
  .donate-hero .wrap { position: relative; z-index: 1; min-height: 0; }
  .donate-hero .dh-head, .donate-hero .dh-body { position: static; max-width: 100%; transform: none;
    text-shadow: -1px -1px 1px rgba(12,9,26,0.98), 1px -1px 1px rgba(12,9,26,0.98), -1px 1px 1px rgba(12,9,26,0.98), 1px 1px 1px rgba(12,9,26,0.98), 0 2px 14px rgba(10,8,25,0.95); }
  .donate-hero .dh-head { margin-bottom: 26px; }
}