/* ═══════════════════════════════════════════════════════════
   Ilesha Singh — Kuchipudi Rangapravesham
   Palette drawn from the invitation: maroon, teal, gold, cream
   Typography: Cormorant Garamond (display) + Jost (text)
   ═══════════════════════════════════════════════════════════ */

:root {
  /* palette drawn from the official invitation card:
     rose-pink panel, jade-mint damask, cream bands, antique gold */
  --maroon: #B84A63;
  --maroon-deep: #9A3850;
  --wine: #6E2438;
  --teal: #5FA189;
  --teal-deep: #3E7A63;
  --gold: #B99B55;
  --gold-bright: #D9BC72;
  --gold-soft: #EADDB6;
  --cream: #F8F4E9;
  --sage: #DDEDE4;
  --ink: #3D332C;
  --line: #D9CDAE;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  /* jade damask in the spirit of the invitation card, tiled behind the page */
  background: #7FB5A0 url("../images/damask.svg") repeat;
  background-size: 150px auto;
  /* keep the green frame visible at every screen width */
  padding: 0 clamp(12px, 3.5vw, 56px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* the site sits as a cream card over the green damask, like the invite */
.page-shell {
  max-width: 1560px;
  margin: 0 auto;
  background: var(--cream);
  box-shadow:
    0 0 0 1px rgba(185, 155, 85, 0.55),
    0 0 0 5px rgba(248, 244, 233, 0.35),
    0 24px 90px -20px rgba(31, 60, 50, 0.55);
}

img { max-width: 100%; display: block; }

a { color: var(--maroon); text-decoration: none; }

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 233, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  border-top: 3px solid var(--maroon);
  box-shadow: 0 1px 0 rgba(185, 155, 85, 0.35), 0 10px 30px -22px rgba(110, 36, 56, 0.4);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; align-items: center; gap: 0.65rem; }

.brand-mark {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.02em;
}
.brand-text em {
  font-style: normal;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--teal-deep);
}

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 400;
  color: var(--ink);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.site-nav a:hover, .site-nav a.active { color: var(--maroon); border-bottom-color: var(--gold); }

.site-nav a.nav-cta {
  background: var(--maroon);
  color: var(--cream);
  padding: 0.45rem 1.15rem;
  border-radius: 2rem;
  border: 1px solid var(--maroon);
}
.site-nav a.nav-cta:hover { background: var(--maroon-deep); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--maroon); transition: 0.3s; }

/* ── Hero ───────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse at 18% -5%, rgba(217, 188, 114, 0.16), transparent 52%),
    radial-gradient(ellipse at 92% 105%, rgba(95, 161, 137, 0.14), transparent 52%),
    radial-gradient(ellipse at 60% 40%, rgba(131, 32, 63, 0.05), transparent 60%),
    var(--cream);
  padding: 3rem 1.5rem 4.5rem;
}

.hero-frame {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--gold);
  outline: 4px double rgba(185, 155, 85, 0.5);
  outline-offset: 6px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  box-shadow: 0 30px 70px -40px rgba(110, 36, 56, 0.35);
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.hero-text { text-align: center; }

.hero-line {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: 0.06em;
}

.hero-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--ink);
  opacity: 0.75;
  margin: 0.5rem 0;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  color: var(--maroon);
  margin: 0.6rem 0;
}

.hero-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: var(--teal-deep);
  margin: 0.4rem 0 0.8rem;
}

.hero-disciple { font-size: 0.86rem; letter-spacing: 0.04em; line-height: 1.8; }
.hero-disciple strong { font-weight: 500; color: var(--maroon); }

.hero-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.4rem auto;
  max-width: 320px;
}
.hero-rule::before, .hero-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, var(--gold));
}
.hero-rule::after { --dir: left; }
.hero-rule span { color: var(--gold); font-size: 0.8rem; }

.hero-date {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 600;
  color: var(--ink);
}
.hero-venue { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-deep); margin-top: 0.25rem; }

.hero-actions { display: flex; gap: 0.9rem; justify-content: center; margin: 1.6rem 0 0.4rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  padding: 0.8rem 1.9rem;
  border-radius: 2rem;
  transition: all 0.25s;
}
.btn-solid {
  background: linear-gradient(165deg, var(--maroon), var(--maroon-deep));
  color: var(--cream);
  border: 1px solid var(--maroon-deep);
  box-shadow: 0 10px 24px -12px rgba(110, 36, 56, 0.6);
}
.btn-solid:hover {
  background: linear-gradient(165deg, var(--maroon-deep), var(--wine));
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(110, 36, 56, 0.7);
}
.btn-ghost { border: 1px solid var(--teal); color: var(--teal-deep); }
.btn-ghost:hover { background: var(--sage); border-color: var(--teal-deep); transform: translateY(-2px); }

.countdown-wrap {
  margin-top: 2rem;
  display: inline-block;
  padding: 1.3rem 2.2rem 1.5rem;
  border: 1px solid rgba(185, 155, 85, 0.55);
  border-radius: 0.4rem;
  position: relative;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(234, 217, 174, 0.22)),
    var(--cream);
  box-shadow:
    inset 0 0 0 4px var(--cream),
    inset 0 0 0 5px rgba(185, 155, 85, 0.35),
    0 14px 34px -18px rgba(110, 36, 56, 0.35);
}
.countdown-wrap::before, .countdown-wrap::after {
  content: "✦";
  position: absolute;
  top: -0.72rem;
  color: var(--gold);
  background: var(--cream);
  padding: 0 0.45rem;
  font-size: 0.78rem;
}
.countdown-wrap::before { left: 1.4rem; }
.countdown-wrap::after { right: 1.4rem; }

.countdown-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--teal-deep);
  margin-bottom: 0.7rem;
  letter-spacing: 0.04em;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(0.7rem, 2.2vw, 1.6rem);
}
.cd-cell { text-align: center; min-width: 3.2rem; }
.cd-cell b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.05;
  background: linear-gradient(170deg, var(--maroon) 30%, var(--maroon-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.cd-cell span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--teal-deep);
}
.cd-sep {
  font-style: normal;
  color: var(--gold);
  font-size: 1.4rem;
  align-self: center;
  transform: translateY(-0.5rem);
  opacity: 0.8;
}

.hero-tradition {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(185, 155, 85, 0.35);
  text-align: center;
  position: relative;
}
.hero-tradition::before {
  content: "❖";
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  color: var(--gold);
  font-size: 0.72rem;
  padding: 0 0.7rem;
}
.hero-tradition p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  color: var(--ink);
  opacity: 0.82;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.75;
}

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%;
  border-radius: 0.4rem;
  box-shadow: 0 24px 60px -20px rgba(56, 48, 42, 0.45);
  border: 6px solid #fff;
}
.hero-photo figcaption {
  text-align: center;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--teal-deep);
  margin-top: 0.8rem;
}

/* ── Sections (shared) ──────────────────────────── */
.section { padding: clamp(3.5rem, 8vw, 6rem) 1.5rem; }
.section-cream { background: var(--cream); }
.section-sage { background: linear-gradient(180deg, var(--sage), #e9f3ec); }
.section-dark {
  background:
    radial-gradient(ellipse at 15% 10%, rgba(200, 155, 60, 0.08), transparent 50%),
    linear-gradient(170deg, #2A151D, #45202E 55%, #22322A);
  color: #EDE4D8;
}
.section-maroon {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200, 155, 60, 0.14), transparent 55%),
    linear-gradient(160deg, var(--maroon-deep), var(--maroon));
  color: var(--cream);
}

.container { max-width: 1200px; margin: 0 auto; }
.container.narrow { max-width: 780px; }
.center { text-align: center; }

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--teal-deep);
  text-align: center;
  margin-bottom: 0.6rem;
}
.eyebrow.light { color: var(--gold); }
.eyebrow.gold-text { color: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: var(--maroon);
  text-align: center;
  line-height: 1.15;
}
.section-title.light { color: #F5EDE0; }
.section-title.left { text-align: left; }

.title-rule {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 260px;
  margin: 1rem auto 1.8rem;
}
.title-rule.left { margin-left: 0; }
.title-rule::before, .title-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.title-rule span { color: var(--gold); font-size: 0.75rem; }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.7;
  text-align: center;
  color: var(--ink);
}
.lede.light { color: #EDE4D8; }

.body-text { margin-top: 1.1rem; font-size: 0.95rem; }

/* ── Gurus ──────────────────────────────────────── */
.guru-honorific {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin: 0.5rem 0 1rem;
}

.guru-note { margin-top: 1.2rem; font-size: 0.75rem; color: #DACFC0; opacity: 0.7; }
.guru-note a { color: var(--gold); border-bottom: 1px dotted var(--gold); }

.guru-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: 3rem;
}

.guru-card {
  background: rgba(248, 244, 233, 0.05);
  border: 1px solid rgba(200, 155, 60, 0.28);
  border-radius: 0.4rem;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.guru-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-bright);
  box-shadow: 0 22px 50px -20px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(217, 188, 114, 0.25);
}

.guru-card figure { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.guru-card figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: sepia(0.18) contrast(1.02);
  transition: transform 0.6s ease;
}
.guru-card:hover figure img { transform: scale(1.04); }

.guru-card-body { padding: 1.4rem 1.5rem 1.7rem; text-align: center; }
.guru-card-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #F5EDE0;
}
.guru-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C9BBA8;
  margin-bottom: 0.7rem;
}
.guru-bio { font-size: 0.86rem; color: #DACFC0; line-height: 1.65; }

.guru-footline {
  text-align: center;
  max-width: 760px;
  margin: 3rem auto 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #DACFC0;
}
.guru-footline strong { color: var(--gold); font-weight: 600; }

/* ── Split (dancer) ─────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.8rem, 4.5vw, 4rem);
  align-items: center;
}

.split-photo img {
  border-radius: 0.4rem;
  border: 6px solid #fff;
  box-shadow: 0 24px 60px -20px rgba(56, 48, 42, 0.4);
}
.split-photo figcaption {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal-deep);
  text-align: center;
  margin-top: 0.8rem;
}

.split-text .eyebrow { text-align: left; }
.split-text .body-text { font-size: 0.97rem; }

.accolades { list-style: none; margin-top: 1.4rem; }
.accolades li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.7rem;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--line);
}
.accolades li:last-child { border-bottom: none; }
.accolades li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ── Repertoire ─────────────────────────────────── */
.repertoire { max-width: 860px; margin: 0 auto; }

.rep-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(95, 161, 137, 0.25);
}
.rep-item:last-child { border-bottom: none; }

.rep-no {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  background: linear-gradient(170deg, var(--gold-bright), var(--gold) 60%, #9A7326);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  text-align: right;
  padding-top: 0.2rem;
}

.rep-type {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--teal-deep);
  font-weight: 500;
}

.rep-body h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--maroon);
  margin: 0.2rem 0 0.5rem;
}

.rep-body p { font-size: 0.92rem; }

/* Musicians */
.musicians {
  margin-top: 3.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(95, 161, 137, 0.3);
  border-radius: 0.5rem;
  padding: 2rem clamp(1.2rem, 3vw, 2.5rem);
}
.musicians-title {
  font-family: var(--serif);
  text-align: center;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 0.4rem;
}
.musicians-sub {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.75;
  margin-bottom: 1.4rem;
}
.musicians-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem 1.5rem;
}
.musicians-list li { text-align: center; padding: 0.5rem 0; }
.musicians-list strong { display: block; font-weight: 500; font-size: 0.92rem; color: var(--ink); }
.musicians-list span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--maroon);
}

/* ── Schedule & venue ───────────────────────────── */
.schedule-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline { position: relative; padding-left: 0; }

.tl-item {
  display: grid;
  grid-template-columns: 90px 24px 1fr;
  gap: 0.8rem;
  position: relative;
  padding-bottom: 2rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(90px + 0.8rem + 11px);
  top: 26px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(200, 155, 60, 0.25));
}

.tl-time {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--maroon);
  text-align: right;
  padding-top: 0.05rem;
}

.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--gold);
  margin-top: 6px;
  justify-self: center;
}

.tl-body h4 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teal-deep);
}
.tl-body p { font-size: 0.88rem; }

.venue-card {
  background: linear-gradient(175deg, #fff, #FCF8EE);
  border: 1px solid var(--line);
  border-top: 4px solid var(--maroon);
  border-radius: 0.5rem;
  padding: 2.2rem 2rem;
  text-align: center;
  box-shadow:
    inset 0 4px 0 rgba(185, 155, 85, 0.55),
    0 20px 50px -22px rgba(110, 36, 56, 0.3);
}
.venue-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--maroon);
}
.venue-addr { margin: 0.6rem 0 1.4rem; font-size: 0.95rem; }
.venue-note { margin-top: 1.2rem; font-size: 0.78rem; color: var(--teal-deep); }

/* ── Gallery (horizontal scroller) ──────────────── */
.gallery-wrap { position: relative; }

.gallery-scroll {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-color: var(--gold) rgba(56, 48, 42, 0.12);
  scrollbar-width: thin;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: rgba(56, 48, 42, 0.1); border-radius: 3px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.g-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(248, 244, 233, 0.92);
  color: var(--maroon);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px -8px rgba(56, 48, 42, 0.45);
  transition: background 0.3s, transform 0.2s;
}
.g-arrow:hover { background: var(--gold); color: #fff; transform: translateY(-50%) scale(1.06); }
.g-arrow.prev { left: -10px; }
.g-arrow.next { right: -10px; }

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.35rem;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
  background: #ddd;
  flex: 0 0 clamp(230px, 27vw, 330px);
  scroll-snap-align: start;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.g-item:hover img { transform: scale(1.05); }
.g-item::after {
  content: attr(data-caption);
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(44, 21, 29, 0.85));
  color: #F5EDE0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.35s;
}
.g-item:hover::after { opacity: 1; }

/* ── RSVP ───────────────────────────────────────── */
.rsvp-cards {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.2rem 0 1.6rem;
}

.rsvp-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: rgba(248, 244, 233, 0.08);
  border: 1px solid rgba(200, 155, 60, 0.5);
  border-radius: 0.5rem;
  padding: 1.6rem 2.6rem;
  min-width: 240px;
  transition: background 0.3s, transform 0.3s;
}
.rsvp-card:hover { background: rgba(248, 244, 233, 0.16); transform: translateY(-3px); }

.rsvp-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: #F5EDE0; }
.rsvp-role { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); }
.rsvp-phone { margin-top: 0.5rem; font-size: 1rem; letter-spacing: 0.08em; color: var(--cream); }

.rsvp-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1rem;
}
.rsvp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--cream);
  border: 1px solid rgba(248, 244, 233, 0.45);
  border-radius: 2rem;
  padding: 0.5rem 1.05rem;
  transition: all 0.25s;
}
.rsvp-btn:hover {
  background: rgba(248, 244, 233, 0.14);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}
.rsvp-btn.whatsapp {
  background: #1DA851;
  border-color: #1DA851;
  color: #fff;
}
.rsvp-btn.whatsapp:hover {
  background: #178C43;
  border-color: #E0B54D;
}

.rsvp-close {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-top: 1rem;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: #2A151D;
  color: #C9BBA8;
  padding: 2.8rem 1.5rem;
  font-size: 0.8rem;
}
.footer-mark {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
}
.footer-fine { margin-top: 0.8rem; font-size: 0.7rem; opacity: 0.75; }
.footer-fine a { color: var(--gold); }

/* ── Lightbox ───────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 13, 18, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
.lightbox.open { display: flex; }
.lightbox figure { max-width: min(92vw, 900px); text-align: center; }
.lightbox img {
  max-height: 78vh;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  border: 5px solid rgba(245, 237, 224, 0.15);
  border-radius: 0.3rem;
}
.lightbox figcaption {
  color: #EDE4D8;
  font-size: 0.85rem;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}
.lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  background: none;
  border: none;
  color: #F5EDE0;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}
.lb-close:hover { opacity: 1; }

/* ── Reveal on scroll ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .guru-feature, .split, .schedule-grid { grid-template-columns: 1fr; }
  .hero-grid > *, .split > *, .schedule-grid > * { min-width: 0; }
  .hero-photo { max-width: 420px; margin: 0 auto; }
  .guru-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .g-item { flex-basis: clamp(220px, 42vw, 300px); }
  .musicians-list { grid-template-columns: repeat(2, 1fr); }
  .split-photo { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .site-nav {
    position: fixed;
    top: 58px;
    right: 0;
    background: var(--cream);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 2rem 2rem;
    gap: 1.1rem;
    transform: translateX(110%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
    box-shadow: -12px 20px 40px rgba(56, 48, 42, 0.15);
  }
  .site-nav.open { transform: none; visibility: visible; transition: transform 0.35s ease; }
  .nav-toggle { display: flex; }
  .rep-item { grid-template-columns: 56px 1fr; gap: 1rem; }
  .rep-no { font-size: 1.9rem; }
  .tl-item { grid-template-columns: 64px 20px 1fr; }
  .tl-item:not(:last-child)::after { left: calc(64px + 0.8rem + 9px); }
  .tl-time { font-size: 0.95rem; }
}

@media (max-width: 560px) {
  /* landing tuned for phones */
  .hero { padding: 1.4rem 0.9rem 3rem; }
  .hero-frame { padding: 1.6rem 1rem 2rem; outline-offset: 4px; }
  .hero-sub { letter-spacing: 0.09em; font-size: 0.68rem; }
  .hero-title { font-size: clamp(2.1rem, 11vw, 2.6rem); }
  .hero-name { font-size: clamp(1.7rem, 9vw, 2.3rem); }
  .hero-disciple { font-size: 0.8rem; }
  .hero-venue { letter-spacing: 0.05em; font-size: 0.78rem; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-top: 1.3rem; }
  .hero-actions .btn { text-align: center; }
  .hero-photo { max-width: 100%; }
  .hero-photo img { border-width: 4px; }

  .countdown-wrap {
    display: block;
    width: 100%;
    padding: 1rem 0.5rem 1.2rem;
    margin-top: 1.6rem;
  }
  .countdown-label { font-size: 0.95rem; margin-bottom: 0.5rem; }
  .countdown { gap: 0.55rem; }
  .cd-cell { min-width: 0; flex: 1; max-width: 4.4rem; }
  .cd-cell b { font-size: clamp(1.5rem, 7.5vw, 1.9rem); }
  .cd-cell span { font-size: 0.52rem; letter-spacing: 0.16em; }
  .cd-sep { display: none; }

  .section { padding-left: 1.1rem; padding-right: 1.1rem; }
  .g-item { flex-basis: 78vw; }
  .g-arrow { display: none; }
  .musicians-list { grid-template-columns: 1fr; }
  .rsvp-card { min-width: 0; width: 100%; padding: 1.4rem 1.2rem; }
}
