/* ═══════════════════════════════════════════════════════════════
   Shriya Ramanaharan · Bharathanatyam Arangetram
   Design language drawn from the printed invitation:
   near-black stage, antique gold, ivory — Bodoni Moda / Jost / script
   ═══════════════════════════════════════════════════════════════ */

/* ---------- Fonts ---------- */
@font-face { font-family: 'Bodoni Moda'; src: url('../assets/fonts/BodoniModa_9pt-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Bodoni Moda'; src: url('../assets/fonts/BodoniModa_9pt-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Bodoni Moda'; src: url('../assets/fonts/BodoniModa_9pt-SemiBoldItalic.ttf') format('truetype'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('../assets/fonts/Jost-Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('../assets/fonts/Jost-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('../assets/fonts/Jost-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Ephesis'; src: url('../assets/fonts/Ephesis-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0806;
  --bg-2: #0f0c09;
  --bg-3: #14100b;
  --ink: #f2ead9;
  --ink-dim: #b3a888;
  --gold: #c9a24b;
  --gold-bright: #e9cd8a;
  --gold-deep: #8a6a2f;
  --muted: #8f8672;
  --hairline: rgba(201, 162, 75, 0.28);
  --hairline-soft: rgba(201, 162, 75, 0.14);
  --serif: 'Bodoni Moda', 'Didot', Georgia, serif;
  --sans: 'Jost', 'Futura', sans-serif;
  --script: 'Ephesis', 'Snell Roundhand', cursive;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
html, body { overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
small { font-size: 0.72em; letter-spacing: 0.08em; }
::selection { background: var(--gold); color: #14100b; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0806; }
::-webkit-scrollbar-thumb { background: #2a2317; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* ---------- Curtain preloader ---------- */
.curtain {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.9s var(--ease-out), visibility 0.9s;
}
.curtain__mark { width: 84px; mix-blend-mode: screen; opacity: 0; animation: markIn 1s var(--ease-out) 0.1s forwards; }
@keyframes markIn { from { opacity: 0; transform: scale(0.92) translateY(8px); } to { opacity: 1; transform: none; } }
.curtain.is-done { opacity: 0; visibility: hidden; pointer-events: none; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }
.reveal[data-delay="5"] { transition-delay: 0.6s; }
.reveal[data-delay="6"] { transition-delay: 0.72s; }
.reveal[data-delay="7"] { transition-delay: 0.84s; }
.reveal[data-delay="8"] { transition-delay: 0.96s; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--tight { letter-spacing: 0.34em; }
.eyebrow--ruled { display: flex; align-items: center; justify-content: center; gap: 1.2rem; }
.eyebrow--ruled::before, .eyebrow--ruled::after {
  content: ""; height: 1px; width: clamp(40px, 8vw, 96px);
  background: linear-gradient(90deg, transparent, var(--hairline));
}
.eyebrow--ruled::after { background: linear-gradient(90deg, var(--hairline), transparent); }
.eyebrow--left { justify-content: flex-start; }

.script { font-family: var(--script); color: var(--gold-bright); font-weight: 400; }
.script-accent {
  font-family: var(--script);
  color: var(--gold-bright);
  font-size: 1.32em;
  line-height: 0.9;
  font-weight: 400;
  margin-left: 0.06em;
}
.script-accent--lg { font-size: 1.6em; }

.section { padding: clamp(5.5rem, 10vw, 9rem) clamp(1.4rem, 6vw, 6rem); max-width: 1360px; margin: 0 auto; }
.section__head { text-align: center; max-width: 780px; margin: 0 auto clamp(3rem, 6vw, 5rem); }
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.15;
  margin-top: 1.4rem;
  color: var(--ink);
}
.section__intro { margin-top: 1.6rem; color: var(--muted); font-size: 1.02rem; }
.section__intro em { color: var(--ink-dim); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1rem 2.1rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  position: relative;
  overflow: hidden;
  transition: color 0.45s var(--ease-out), border-color 0.45s, background 0.45s;
  background: transparent;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--gold-deep), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn:hover::after { transform: scaleX(1); }
.btn--gold { background: linear-gradient(100deg, rgba(201,162,75,0.16), rgba(201,162,75,0.05)); }
.btn--gold:hover { color: #120e08; }
.btn--ghost { border-color: rgba(201,162,75,0.4); color: var(--ink-dim); }
.btn--ghost:hover { color: #120e08; border-color: var(--gold); }
.btn--lg { padding: 1.15rem 2.6rem; font-size: 0.82rem; }
.btn { z-index: 0; }

/* ---------- Ornament divider ---------- */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  padding: 0.4rem 0;
}
.ornament span { height: 1px; width: clamp(70px, 16vw, 220px); background: linear-gradient(90deg, transparent, var(--hairline)); }
.ornament span:last-child { background: linear-gradient(90deg, var(--hairline), transparent); }
.ornament i { color: var(--gold); font-size: 0.5rem; font-style: normal; opacity: 0.85; }
.ornament--tight span { width: clamp(50px, 8vw, 110px); }

/* ═══════════════ Navigation ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s, height 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  height: 62px;
  background: rgba(10, 8, 6, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline-soft);
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__ganesha { width: 30px; mix-blend-mode: screen; }
.nav__name {
  font-family: var(--serif); font-size: 1.02rem; letter-spacing: 0.06em; color: var(--ink);
}
.nav__name em { color: var(--gold); font-style: normal; padding: 0 0.18em; }
.nav__links { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2rem); }
.nav__link {
  font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted); padding: 0.4rem 0; position: relative;
  transition: color 0.35s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover, .nav__link.is-active { color: var(--gold-bright); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link--cta {
  border: 1px solid var(--gold); padding: 0.5rem 1.15rem; color: var(--gold-bright);
  transition: background 0.35s, color 0.35s;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--gold); color: #14100b; }
.nav__toggle { display: none; }

/* ═══════════════ Hero ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  align-items: center;
  overflow: hidden;
  background: radial-gradient(120% 90% at 78% 30%, #171208 0%, var(--bg) 55%);
}
.hero__media { position: relative; height: 100%; min-height: 100svh; }
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 68% 30%;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.6s ease 0.3s, transform 6s var(--ease-out) 0.3s;
}
.hero.is-ready .hero__img { opacity: 0.94; transform: scale(1); }
@media (min-width: 861px) {
  .hero__img { mix-blend-mode: lighten; }
  .hero.is-ready .hero__img { opacity: 1; }
}
.hero__veil { position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,8,6,0) 40%, rgba(10,8,6,0.55) 78%, var(--bg) 98%),
    linear-gradient(0deg, var(--bg) 2%, rgba(10,8,6,0) 26%),
    linear-gradient(180deg, rgba(10,8,6,0.5) 0%, rgba(10,8,6,0) 22%);
}
.hero__mandala {
  position: absolute; z-index: 0; right: -12%; top: 50%;
  width: clamp(420px, 52vw, 780px); aspect-ratio: 1;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: 0.1;
  pointer-events: none;
}
.mandala { width: 100%; height: 100%; animation: spin 240s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__content {
  position: relative; z-index: 2;
  min-width: 0;
  padding: calc(var(--nav-h) + 2rem) clamp(1.6rem, 5vw, 5.5rem) 6rem clamp(1rem, 2vw, 2rem);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hero__ganesha { width: 62px; margin: 0 auto 1.6rem; mix-blend-mode: screen; }
.hero__hosts {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  letter-spacing: 0.05em; color: var(--ink);
}
.hero__content .eyebrow { margin-top: 0.9rem; font-size: 0.66rem; color: var(--muted); }
.hero__title {
  font-family: var(--script);
  font-weight: 400;
  color: var(--gold-bright);
  font-size: clamp(3.4rem, 8.5vw, 6.2rem);
  line-height: 0.92;
  margin: 1.4rem 0 1rem;
  text-shadow: 0 0 60px rgba(201, 162, 75, 0.25);
}
.script-line { display: block; }
.script-line--two { font-size: 0.94em; }
.hero__content .eyebrow--tight { color: var(--gold); }
.hero__name {
  font-family: var(--serif); font-weight: 600; font-style: italic;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  letter-spacing: 0.02em; margin-top: 0.7rem; color: var(--ink);
}
.hero__guru { margin-top: 1.2rem; font-family: var(--serif); font-size: clamp(1.7rem, 3.8vw, 2.6rem); font-weight: 400; color: var(--ink); }
.hero__guru span {
  display: block; font-family: var(--sans); font-size: 0.66rem;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem;
}
.hero__meta {
  margin: 2.2rem auto 0;
  max-width: 620px;
  padding: 1.1rem 0.5rem;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0.9rem;
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
}
.hero__meta span:first-child { color: var(--gold-bright); font-weight: 500; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); display: inline-block; }
.hero__actions { margin-top: 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  z-index: 3; height: 90px; width: 40px; display: flex; justify-content: center;
}
.hero__scroll-line {
  width: 1px; height: 100%; position: relative; overflow: hidden;
  background: rgba(201,162,75,0.18);
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: -40%;
  width: 100%; height: 40%;
  background: linear-gradient(180deg, transparent, var(--gold-bright));
  animation: scrollHint 2.4s var(--ease-out) infinite;
}
@keyframes scrollHint { 0% { top: -40%; } 60%, 100% { top: 110%; } }

/* ═══════════════ Countdown ═══════════════ */
.countdown {
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}
.countdown__lead { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1.6rem; }
.countdown__grid { display: flex; align-items: baseline; justify-content: center; gap: clamp(0.8rem, 3vw, 2.2rem); }
.countdown__cell { display: flex; flex-direction: column; gap: 0.35rem; min-width: 74px; }
.countdown__num {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem); line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.countdown__label { font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }
.countdown__sep { color: var(--gold-deep); font-size: 1.6rem; align-self: center; }

/* ═══════════════ Occasion cards ═══════════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.card {
  position: relative;
  border: 1px solid var(--hairline-soft);
  padding: 2.4rem 2rem 2.2rem;
  text-align: center;
  background: linear-gradient(170deg, rgba(201,162,75,0.045), rgba(201,162,75,0) 55%);
  transition: transform 0.6s var(--ease-out), border-color 0.6s, box-shadow 0.6s;
}
.card::before, .card::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border-color: var(--gold); border-style: solid; opacity: 0.7;
  transition: width 0.5s var(--ease-out), height 0.5s var(--ease-out);
}
.card::before { top: 7px; left: 7px; border-width: 1px 0 0 1px; }
.card::after { bottom: 7px; right: 7px; border-width: 0 1px 1px 0; }
.card:hover { transform: translateY(-6px); border-color: var(--hairline); box-shadow: 0 24px 50px -30px rgba(0,0,0,0.9); }
.card:hover::before, .card:hover::after { width: 24px; height: 24px; }
.card__label { font-size: 0.66rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.card__title { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; line-height: 1.25; margin-bottom: 0.8rem; }
.card__text { font-size: 0.92rem; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- Guru & disciple duet ---------- */
.duet {
  margin-top: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}
.duet__figure { position: relative; }
.duet__figure img {
  border: 1px solid var(--hairline-soft);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  filter: saturate(0.94);
  transition: filter 0.7s;
}
.duet__figure:hover img { filter: saturate(1.05); }
.duet__figure::before {
  content: ""; position: absolute; inset: 12px -12px -12px 12px;
  border: 1px solid var(--hairline-soft); z-index: -1;
  transition: inset 0.6s var(--ease-out);
}
.duet__figure--guru::before { inset: 12px 12px -12px -12px; }
.duet__figure:hover::before { inset: 6px -6px -6px 6px; }
.duet__figure--guru:hover::before { inset: 6px 6px -6px -6px; }
.duet__figure figcaption { margin-top: 1.1rem; text-align: center; }
.duet__figure figcaption strong { font-family: var(--serif); font-weight: 400; font-size: 1.06rem; display: block; }
.duet__figure figcaption span { font-size: 0.64rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-top: 0.3rem; display: block; }
.duet__text { text-align: center; padding: 0 clamp(0rem, 1.5vw, 1.2rem); }
.duet__text .eyebrow { justify-content: center; margin-bottom: 1.2rem; }
.duet__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1.4rem; }
.duet__text p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1rem; }
.duet__text strong { color: var(--ink-dim); font-weight: 400; }

/* ═══════════════ Story ═══════════════ */
.section--story {
  position: relative;
  max-width: none;
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(64, 34, 24, 0.22) 0%, rgba(10,8,6,0) 60%),
    var(--bg-2);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.story__strip {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.story__frame { overflow: hidden; border: 1px solid var(--hairline-soft); position: relative; }
.story__frame img {
  width: 100%; aspect-ratio: 3 / 4.1; object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 1.4s;
  filter: saturate(0.9) brightness(0.96);
}
.story__frame--tall img { aspect-ratio: 3 / 4.7; }
.story__frame:hover img { transform: scale(1.045); filter: saturate(1) brightness(1.02); }
.story__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,8,6,0.35), transparent 40%);
  pointer-events: none;
}
.story__note { text-align: center; margin-top: 2.2rem; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.story__note strong { color: var(--gold); font-weight: 400; }
.section--story .section__intro + .section__intro { margin-top: 1.1rem; }

/* ═══════════════ Journey slider ═══════════════ */
.section--gallery { max-width: none; padding-left: 0; padding-right: 0; padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.slider { position: relative; }
.slider__track {
  display: flex; gap: clamp(0.9rem, 2vw, 1.6rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem clamp(1.4rem, 12vw, 14rem) 1.5rem;
  scrollbar-width: none;
  cursor: grab;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.slide {
  flex: 0 0 auto;
  width: clamp(240px, 30vw, 400px);
  scroll-snap-align: center;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  position: relative;
}
.slide img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter 1.2s;
  filter: brightness(0.94);
}
.slide:hover img { transform: scale(1.05); filter: brightness(1.02); }
.slide::after {
  content: "⤢"; position: absolute; right: 0.8rem; bottom: 0.65rem;
  color: var(--gold-bright); font-size: 1rem; opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.slide:hover::after { opacity: 0.9; }
.slider__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(10, 8, 6, 0.7);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--hairline);
  color: var(--gold-bright); font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.4s, transform 0.4s var(--ease-out);
}
.slider__btn:hover { background: var(--gold-deep); transform: translateY(-50%) scale(1.06); }
.slider__btn--prev { left: clamp(0.8rem, 3vw, 2.5rem); }
.slider__btn--next { right: clamp(0.8rem, 3vw, 2.5rem); }
.slider__count {
  text-align: center; margin-top: 1.4rem;
  font-family: var(--serif); font-size: 1rem; letter-spacing: 0.2em; color: var(--muted);
}
.slider__count i { font-style: normal; color: var(--gold-deep); padding: 0 0.5em; }
.slider__count span:first-child { color: var(--gold-bright); }

/* ═══════════════ Venue ═══════════════ */
.venue { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.6rem, 3.5vw, 3rem); align-items: stretch; }
.venue__photo { overflow: hidden; border: 1px solid var(--hairline-soft); }
.venue__photo img {
  width: 100%; aspect-ratio: 16 / 9.5; object-fit: cover;
  filter: saturate(0.55) sepia(0.18) brightness(0.9) contrast(1.04);
  transition: filter 1s, transform 1.6s var(--ease-out);
}
.venue__photo:hover img { filter: saturate(0.8) sepia(0.1) brightness(1); transform: scale(1.03); }
.venue__blurb { padding: 1.8rem 0.4rem 0; }
.venue__blurb > p { color: var(--muted); font-size: 0.98rem; max-width: 54ch; }
.venue__blurb strong { color: var(--ink-dim); font-weight: 400; }
.venue__address {
  font-style: normal; font-family: var(--serif); font-size: 1.12rem; line-height: 1.55;
  margin: 1.4rem 0; padding-left: 1.1rem; border-left: 1px solid var(--gold);
}
.venue__facts { display: flex; gap: 2.2rem; margin: 1.6rem 0 2rem; flex-wrap: wrap; }
.venue__facts span { font-family: var(--serif); font-size: 1.35rem; display: block; }
.venue__facts em { font-style: normal; font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); }
.venue__map {
  position: relative; min-height: 420px;
  border: 1px solid var(--hairline-soft);
  overflow: hidden;
}
.venue__map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: invert(0.92) hue-rotate(185deg) saturate(0.32) brightness(0.9) contrast(0.92);
}
.venue__map::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 80px 10px rgba(10, 8, 6, 0.55);
}

/* ═══════════════ Ensemble ═══════════════ */
.section--ensemble { max-width: 1200px; }
.maestro {
  position: relative;
  overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
  border: 1px solid var(--hairline);
  outline: 1px solid var(--hairline-soft);
  outline-offset: 7px;
  background:
    radial-gradient(85% 120% at 12% 0%, rgba(201, 162, 75, 0.1) 0%, rgba(201, 162, 75, 0) 55%),
    linear-gradient(120deg, rgba(201,162,75,0.05), rgba(201,162,75,0) 45%);
  padding: clamp(1.4rem, 3vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.maestro::before, .maestro::after {
  content: ""; position: absolute; width: 22px; height: 22px; z-index: 2;
  border-color: var(--gold); border-style: solid; opacity: 0.8;
  pointer-events: none;
}
.maestro::before { top: 9px; left: 9px; border-width: 1px 0 0 1px; }
.maestro::after { bottom: 9px; right: 9px; border-width: 0 1px 1px 0; }
.maestro__mark {
  position: absolute; top: clamp(0.3rem, 1.5vw, 1rem); right: clamp(1.2rem, 4vw, 2.6rem);
  font-family: var(--script);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 1.1;
  color: var(--gold);
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
}
.maestro .card__label::before { content: "✦"; color: var(--gold); padding-right: 0.9em; opacity: 0.9; }
.maestro__media { position: relative; overflow: hidden; }
.maestro__media img {
  width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; object-position: 50% 22%;
  filter: grayscale(0.72) sepia(0.22) saturate(1.25) brightness(1);
}
.maestro__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(15deg, rgba(10,8,6,0.5), transparent 45%);
}
.maestro__name { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0.9rem 0 1.1rem; }
.maestro__bio { color: var(--muted); font-size: 0.99rem; }
.maestro__bio strong { color: var(--ink-dim); font-weight: 400; }
.maestro__bio em { color: var(--ink-dim); }
.maestro__quote {
  margin-top: 1.5rem; padding-left: 1.1rem; border-left: 1px solid var(--gold);
  font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink-dim);
}
.artists { display: grid; gap: clamp(1.6rem, 3vw, 2.4rem); }
.artist--solo { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.artist {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 3.5vw, 3.2rem);
  align-items: center;
  border: 1px solid var(--hairline-soft);
  padding: clamp(1.4rem, 3vw, 2.6rem);
  background: linear-gradient(120deg, rgba(201,162,75,0.04), rgba(201,162,75,0) 45%);
}
.artist--flip {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.42fr);
  background: linear-gradient(240deg, rgba(201,162,75,0.04), rgba(201,162,75,0) 45%);
}
.artist--flip .artist__media { order: 2; }
.artist__media { position: relative; overflow: hidden; }
.artist__media img {
  width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; object-position: 50% 18%;
  filter: grayscale(0.72) sepia(0.22) saturate(1.25) brightness(1);
}
.artist__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(15deg, rgba(10,8,6,0.45), transparent 45%);
}
.artist__name { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0.8rem 0 1rem; }
.artist__bio { color: var(--muted); font-size: 0.95rem; }
.artist__bio + .artist__bio { margin-top: 0.9rem; }
.artist__bio strong { color: var(--ink-dim); font-weight: 400; }
.artist__bio em { color: var(--ink-dim); }

/* ═══════════════ RSVP ═══════════════ */
.rsvp {
  position: relative;
  text-align: center;
  padding: clamp(3.5rem, 6vw, 5.5rem) 1.5rem;
  background:
    radial-gradient(70% 90% at 50% 100%, rgba(201, 162, 75, 0.09) 0%, rgba(10,8,6,0) 60%),
    var(--bg);
  border-top: 1px solid var(--hairline-soft);
  overflow: hidden;
}
.rsvp__ganesha { width: 58px; margin: 0 auto 1.4rem; mix-blend-mode: screen; }
.rsvp__script { font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1; }
.rsvp__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  margin-top: 1.4rem; color: var(--ink-dim);
}
.rsvp__title strong { color: var(--ink); font-weight: 400; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.rsvp__actions { margin-top: 2.6rem; display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }
.rsvp__cal-group {
  margin-top: 2rem;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0.9rem;
}
.rsvp__cal-label {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
}
.rsvp__cal-dot { font-style: normal; color: var(--gold-deep); }
.rsvp__cal {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold-deep); padding-bottom: 2px;
  transition: color 0.4s, border-color 0.4s;
}
.rsvp__cal:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ═══════════════ Footer ═══════════════ */
.footer { text-align: center; padding: 3.5rem 1.5rem 3rem; border-top: 1px solid var(--hairline-soft); background: var(--bg-2); }
.footer__names { font-size: 2.1rem; margin: 1.4rem 0 0.5rem; }
.footer__line { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); }
.footer__love { margin-top: 1.3rem; font-family: var(--serif); font-style: italic; font-size: 0.98rem; color: var(--ink-dim); }
.footer__credit { margin-top: 1.8rem; font-size: 0.64rem; letter-spacing: 0.12em; color: #55503f; }

/* ═══════════════ Lightbox ═══════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(6, 5, 3, 0.94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(88vw, 900px); max-height: 84vh;
  border: 1px solid var(--hairline);
  box-shadow: 0 40px 120px -30px rgba(0,0,0,1);
  transform: scale(0.96);
  transition: transform 0.5s var(--ease-out);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 1.4rem; right: 1.8rem;
  background: none; border: none; color: var(--ink-dim);
  font-size: 2.2rem; cursor: pointer; line-height: 1;
  transition: color 0.3s, transform 0.3s;
}
.lightbox__close:hover { color: var(--gold-bright); transform: rotate(90deg); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(20, 16, 11, 0.6); border: 1px solid var(--hairline);
  color: var(--gold-bright); font-size: 1.1rem; cursor: pointer;
  transition: background 0.35s;
}
.lightbox__nav:hover { background: var(--gold-deep); }
.lightbox__nav--prev { left: clamp(0.6rem, 3vw, 2.5rem); }
.lightbox__nav--next { right: clamp(0.6rem, 3vw, 2.5rem); }

/* ═══════════════ Responsive ═══════════════ */
@media (max-width: 1024px) {
  .duet { grid-template-columns: 1fr 1fr; }
  .duet__text { grid-column: 1 / -1; order: -1; max-width: 640px; margin: 0 auto 1rem; }
  .venue { grid-template-columns: 1fr; }
  .venue__map { min-height: 380px; }
}

@media (max-width: 860px) {
  /* --- Mobile readability: large-print, high-contrast type --- */
  body { font-size: 19px; font-weight: 400; line-height: 1.75; }
  .eyebrow { font-size: 0.82rem; }
  .hero__content .eyebrow { font-size: 0.76rem; }
  .hero__hosts { font-size: clamp(1.5rem, 5.5vw, 1.8rem); }
  .hero__meta { font-size: 1.18rem; letter-spacing: 0.1em; padding: 1.2rem 0.5rem; gap: 0.7rem; }
  .hero__meta span:first-child { font-size: 1.32rem; }
  .section__title { font-size: clamp(2.2rem, 7.5vw, 2.9rem); }
  .countdown__num { font-size: clamp(2.6rem, 9vw, 3.4rem); }
  .countdown__label { font-size: 0.76rem; }
  .section__intro { font-size: 1.16rem; color: var(--ink-dim); }
  .section__intro em { color: var(--ink); }
  .card__label { font-size: 0.76rem; }
  .card__title { font-size: 1.55rem; }
  .card__text { font-size: 1.1rem; }
  .duet__text p { font-size: 1.16rem; }
  .duet__figure figcaption strong { font-size: 1.25rem; }
  .duet__figure figcaption span { font-size: 0.74rem; }
  .maestro__bio, .artist__bio { font-size: 1.14rem; color: var(--ink-dim); }
  .maestro__bio strong, .artist__bio strong { color: var(--ink); }
  .maestro__quote { font-size: 1.2rem; }
  .venue__blurb > p { font-size: 1.14rem; color: var(--ink-dim); }
  .venue__blurb strong { color: var(--ink); }
  .venue__address { font-size: 1.3rem; }
  .venue__facts span { font-size: 1.5rem; }
  .venue__facts em { font-size: 0.72rem; }
  .slider__count { font-size: 1.15rem; }
  .rsvp__title { font-size: clamp(1.5rem, 5vw, 1.85rem); }
  .rsvp__cal, .rsvp__cal-label { font-size: 0.88rem; }
  .footer__line { font-size: 0.84rem; }
  .footer__love { font-size: 1.12rem; }
  .footer__credit { font-size: 0.72rem; }
  .btn { font-size: 0.92rem; }
  .lightbox__close { font-size: 2.8rem; padding: 0.5rem; }

  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 2rem;
    background: rgba(8, 6, 4, 0.97);
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
  }
  .nav__links.is-open { opacity: 1; visibility: visible; z-index: 99; }
  .nav__links .nav__link { font-size: 1.08rem; letter-spacing: 0.3em; }
  .nav__toggle {
    display: flex; flex-direction: column; gap: 7px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 101;
  }
  .nav__toggle span { width: 26px; height: 1px; background: var(--gold-bright); transition: transform 0.4s var(--ease-out), opacity 0.3s; }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .hero { grid-template-columns: 1fr; }
  .hero__media { position: absolute; inset: 0; min-height: 0; }
  .hero__img { object-position: 50% 18%; opacity: 0.38; }
  .hero.is-ready .hero__img { opacity: 0.38; }
  .hero__veil { background: linear-gradient(180deg, rgba(10,8,6,0.55), rgba(10,8,6,0.82) 55%, var(--bg) 92%); }
  .hero__content { padding-bottom: 7rem; }
  .hero__mandala { right: 50%; transform: translate(50%, -50%); opacity: 0.07; }

  .maestro { grid-template-columns: 1fr; }
  .artist, .artist--flip { grid-template-columns: 1fr; }
  .artist--flip .artist__media { order: 0; }
  .artist__media { max-width: 440px; }
  .artist__media img { aspect-ratio: 4 / 4.2; }

  .story__strip { grid-template-columns: 1fr; max-width: 460px; }
  .story__frame--tall img { aspect-ratio: 3 / 4.1; }
  .venue__facts { gap: 1.6rem; }
  .slide { width: min(78vw, 360px); }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .hero__meta { flex-direction: column; gap: 0.45rem; }
  .hero__meta .dot { display: none; }
  .btn { padding: 1rem 1.2rem; letter-spacing: 0.2em; }
  .btn--lg { padding: 1.1rem 1.4rem; }
  .script-accent--lg { font-size: 1.3em; }
  .duet { grid-template-columns: 1fr; }
  .duet__figure { max-width: 380px; margin: 0 auto; }
  .countdown__cell { min-width: 58px; }
  .hero__actions .btn { width: min(100%, 320px); }
  .rsvp__actions .btn { width: min(100%, 340px); }
}

@media (max-width: 360px) {
  .countdown__sep { display: none; }
  .countdown__cell { min-width: 0; flex: 1; }
  .countdown__grid { gap: 0.6rem; }
  .hero__title { font-size: 2.8rem; }
  .hero__name { font-size: 1.85rem; }
  .hero__guru { font-size: 1.55rem; }
  .hero__meta { font-size: 1.08rem; }
  .hero__meta span:first-child { font-size: 1.2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .mandala { animation: none; }
  .hero__img { transition: opacity 0.8s; transform: none; }
  .hero__scroll-line::after { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
