/* ═══ RESET & BASE ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #c9a84c;
  --gold-lt:    #e8c96e;
  --gold-dk:    #9a7330;
  --maroon:     #6e1a2c;
  --maroon-dk:  #3e0d1a;
  --maroon-mid: #5a1525;
  --cream:      #fdf6ec;
  --cream-dk:   #f0e4cc;
  --cream-md:   #f7ede0;
  --text:       #2c1a0e;
  --text-lt:    #5c3d2e;
  --shadow:     rgba(44,26,14,.14);
  --radius:     12px;
  --tr:         .3s ease;
}

html  { scroll-behavior: smooth; }
body  { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Cinzel', serif; letter-spacing: .04em; }
em  { font-family: 'Cormorant Garamond', serif; font-style: italic; }
img { display: block; max-width: 100%; }
a   { color: inherit; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

/* ═══ NAVBAR ═════════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--maroon-dk);
  transition: box-shadow var(--tr);
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.5); }

.nav-invocation {
  display: flex; align-items: center; justify-content: center; gap: .85rem;
  padding: .3rem 1rem;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.invocation-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: .95rem; color: var(--gold); letter-spacing: .2em;
}
.invocation-deco { color: var(--gold); font-size: .55rem; opacity: .6; }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.5rem;
}
.nav-logo { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold); letter-spacing: .1em; }
.nav-links { list-style: none; display: flex; gap: .9rem; align-items: center; }
.nav-links a { font-family: 'Cinzel', serif; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); text-decoration: none; transition: color var(--tr); white-space: nowrap; }
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a.nav-active { color: var(--gold); }
.nav-links a.nav-home-link { color: rgba(255,255,255,.4); font-size: .58rem; }
.nav-links a.nav-home-link:hover { color: rgba(255,255,255,.75); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ═══ HERO ═══════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: 1fr auto;
  position: relative;
}

.hero-left {
  grid-column: 1; grid-row: 1;
  background: linear-gradient(145deg, var(--maroon-dk) 0%, #2a0812 50%, #1a0520 100%);
  padding: 10rem 5rem 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  z-index: 2;
}
/* decorative gold border on right edge of left panel */
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: .4;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic; letter-spacing: .2em;
  color: var(--gold); text-transform: uppercase; margin-bottom: .75rem;
}
.hero-title {
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: .6rem;
  background: linear-gradient(160deg, #fff 50%, var(--gold-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--gold); letter-spacing: .25em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-ornament {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 2rem; opacity: .5;
}
.orn-line { flex: 1; height: 1px; background: var(--gold); }
.orn-diamond { color: var(--gold); font-size: .7rem; flex-shrink: 0; }

.hero-meta { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.5rem; }
.hero-meta-item { display: flex; align-items: flex-start; gap: .8rem; }
.meta-icon { color: var(--gold); font-size: .8rem; margin-top: .25rem; flex-shrink: 0; }
.meta-label { display: block; font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .15em; color: rgba(255,255,255,.45); text-transform: uppercase; }
.meta-value { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--cream); letter-spacing: .03em; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right {
  grid-column: 2; grid-row: 1;
  position: relative; overflow: hidden;
  background: #f2ece0;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30,5,15,.25) 0%, transparent 40%);
  pointer-events: none;
}

.hero-countdown {
  grid-column: 1 / 3; grid-row: 2;
  background: rgba(20,4,10,.85);
  border-top: 1px solid rgba(201,168,76,.2);
  backdrop-filter: blur(10px);
  padding: .9rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: .95rem; color: rgba(253,246,236,.5); letter-spacing: .1em;
}
.countdown-units { display: flex; align-items: center; gap: .4rem; }
.cu { display: flex; flex-direction: column; align-items: center; min-width: 3.5rem; }
.cu span { font-family: 'Cinzel', serif; font-size: 1.8rem; color: var(--gold); line-height: 1; }
.cu label { font-size: .6rem; color: rgba(253,246,236,.5); letter-spacing: .12em; text-transform: uppercase; }
.cu-sep { font-size: 1.6rem; color: var(--gold); opacity: .4; padding-bottom: .35rem; }

/* ═══ BUTTONS ════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block; padding: .75rem 2.2rem;
  font-family: 'Cinzel', serif; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; border-radius: 40px; border: 2px solid transparent;
  cursor: pointer; transition: all var(--tr);
}
.btn-gold { background: var(--gold); color: var(--maroon-dk); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,.5); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(201,168,76,.5); }
.btn-ghost:hover { background: rgba(201,168,76,.12); border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-outline-dark:hover { background: var(--maroon); color: var(--cream); }
.btn-ghost-dark { background: transparent; color: var(--text-lt); border-color: var(--cream-dk); }
.btn-ghost-dark:hover { background: var(--cream-dk); }
.btn-full { width: 100%; text-align: center; }

/* ═══ WELCOME BANNER ═════════════════════════════════════════════════════════ */
.welcome-banner {
  background: var(--maroon);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,.3);
  border-bottom: 1px solid rgba(201,168,76,.3);
}
.welcome-inner { display: flex; align-items: center; justify-content: center; gap: 1.5rem; max-width: 860px; margin: 0 auto; flex-wrap: wrap; }
.welcome-deco { color: var(--gold); font-size: 1rem; opacity: .7; flex-shrink: 0; }
.welcome-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem); font-style: italic;
  color: var(--cream); line-height: 1.7; text-align: center;
}

/* ═══ SECTION COMMONS ════════════════════════════════════════════════════════ */
.section { padding: 5.5rem 0; }

.section-eyebrow {
  font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold-dk); margin-bottom: .4rem; text-align: center;
}
.section-eyebrow.light { color: var(--gold-lt); }

.section-title { font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--maroon); text-align: center; margin-bottom: .4rem; }
.section-title.light { color: #fff; }

.section-subtitle { text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--text-lt); max-width: 580px; margin: .5rem auto 0; }
.section-subtitle.light { color: rgba(253,246,236,.65); }

.title-ornament {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  margin: .75rem auto 2.5rem; max-width: 200px;
}
.title-ornament span:not(.orn-dot) { flex: 1; height: 1px; background: var(--gold-dk); opacity: .5; }
.title-ornament.light span:not(.orn-dot) { background: var(--gold); opacity: .4; }
.orn-dot { color: var(--gold-dk); font-size: .6rem; flex-shrink: 0; }
.title-ornament.light .orn-dot { color: var(--gold); }

.body-text { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; color: var(--text-lt); line-height: 1.9; margin-bottom: 1rem; }

/* ═══ ABOUT ADITI ════════════════════════════════════════════════════════════ */
.about-section { background: var(--cream); }

.about-grid {
  display: grid; grid-template-columns: 420px 1fr; gap: 5rem;
  align-items: start;
}
.about-photo-wrap { position: sticky; top: 5rem; }

.about-photo-frame {
  position: relative; border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 48px var(--shadow);
  border: 3px solid var(--cream-dk);
}
.about-photo-frame::before {
  content: '';
  position: absolute; inset: 8px;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 8px;
  z-index: 1; pointer-events: none;
}
.about-photo-frame img { width: 100%; }
.about-photo-caption {
  text-align: center; margin-top: .75rem;
  font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .12em;
  color: var(--text-lt); text-transform: uppercase; opacity: .6;
}

.about-text { padding-top: 1rem; }
.about-highlight {
  background: linear-gradient(135deg, var(--maroon-dk), var(--maroon));
  border-radius: var(--radius); padding: 1.5rem 2rem; margin: 1.5rem 0;
  border-left: 3px solid var(--gold);
}
.about-highlight blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.1rem; color: var(--cream); line-height: 1.7;
}

.about-costume-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; margin-top: 2rem; }
.costume-thumb {
  border-radius: 10px; overflow: hidden; border: 2px solid;
  cursor: pointer; transition: transform var(--tr), box-shadow var(--tr);
  box-shadow: 0 4px 16px var(--shadow);
}
.costume-thumb:hover { transform: translateY(-5px); box-shadow: 0 10px 30px var(--shadow); }
.costume-thumb img { width: 100%; aspect-ratio: 2/3; object-fit: cover; object-position: top; }

/* ═══ GURU SECTION ═══════════════════════════════════════════════════════════ */
.guru-section {
  background: linear-gradient(165deg, var(--maroon-dk) 0%, #2a0810 50%, #1a051e 100%);
  padding: 6rem 0;
  position: relative;
}
.guru-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}

.guru-school-name {
  text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.15rem; color: rgba(201,168,76,.7); letter-spacing: .1em; margin-bottom: .25rem;
}

/* Main guru portrait */
.guru-hero-portrait {
  display: grid; grid-template-columns: 460px 1fr; gap: 4rem;
  align-items: center; margin-bottom: 3.5rem;
}
.guru-portrait-img {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.guru-portrait-img::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 6px rgba(201,168,76,.2);
  border-radius: var(--radius); pointer-events: none;
}
.guru-portrait-img img { width: 100%; }

.guru-portrait-caption-title {
  font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold);
  margin-bottom: 1rem; letter-spacing: .06em;
}
.guru-portrait-caption-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.08rem;
  color: rgba(253,246,236,.8); line-height: 1.9;
}

/* Three smaller photos */
.guru-trio {
  display: grid; grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.25rem; margin-bottom: 3rem; align-items: end;
}
.guru-trio-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transition: transform var(--tr);
}
.guru-trio-item:hover { transform: translateY(-5px); }
.guru-trio-item img { width: 100%; }
.guru-trio-item p {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  padding: 1.5rem .75rem .5rem;
  font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .1em;
  color: var(--gold); text-align: center;
}
.guru-trio-center { transform: translateY(-10px); }
.guru-trio-center:hover { transform: translateY(-15px); }

/* Group photo */
.guru-group-wrap {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem;
  align-items: center; margin-bottom: 2rem;
}
.guru-group-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,.5); }
.guru-group-img img { width: 100%; }
.guru-group-caption h3 {
  font-size: 1.15rem; color: var(--gold); margin-bottom: 1rem;
}
.guru-group-caption p {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  color: rgba(253,246,236,.75); line-height: 1.9;
}

/* Circle photo */
.guru-circle-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.5);
  max-width: 680px; margin: 0 auto;
}
.guru-circle-wrap img { width: 100%; }

/* ═══ EXPLAINER ══════════════════════════════════════════════════════════════ */
.explainer-section { background: var(--cream-md); }
.explainer-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: center;
}
.explainer-photo-main {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow);
  margin-bottom: 1rem;
}
.explainer-photo-main img { width: 100%; }
.explainer-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.explainer-photo-row img { border-radius: 8px; width: 100%; box-shadow: 0 4px 16px var(--shadow); }

/* ═══ PROGRAM ════════════════════════════════════════════════════════════════ */
.program-section {
  background: linear-gradient(160deg, var(--maroon-mid) 0%, var(--maroon-dk) 100%);
}
.program-list { max-width: 740px; margin: 0 auto 3rem; display: flex; flex-direction: column; gap: 1rem; }

.program-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.15);
  border-left: 3px solid var(--gold); border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: background var(--tr), transform var(--tr);
}
.program-item:hover { background: rgba(255,255,255,.09); transform: translateX(4px); }
.program-item.prog-featured {
  background: rgba(201,168,76,.1); border-left-color: var(--gold-lt);
  border-color: rgba(201,168,76,.3);
}
.prog-num { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold); min-width: 2rem; padding-top: .15rem; }
.prog-body h4 { font-size: .95rem; color: var(--cream); margin-bottom: .25rem; }
.prog-body p { font-size: .9rem; color: rgba(253,246,236,.6); line-height: 1.6; }
.prog-tag {
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: var(--maroon-dk); padding: .1rem .5rem;
  border-radius: 20px; margin-left: .5rem; vertical-align: middle;
}

.program-ensemble-photo {
  max-width: 580px; margin: 0 auto; text-align: center;
}
.program-ensemble-photo img {
  border-radius: var(--radius);
  border: 2px solid rgba(201,168,76,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  width: 100%;
}
.program-ensemble-photo p {
  margin-top: .75rem; font-family: 'Cinzel', serif; font-size: .7rem;
  letter-spacing: .15em; color: var(--gold-lt); opacity: .7;
}

/* ═══ GALLERY ════════════════════════════════════════════════════════════════ */
.gallery-section { background: var(--cream); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2rem; }
.filter-btn {
  padding: .45rem 1.2rem; border-radius: 30px;
  border: 2px solid var(--cream-dk); background: var(--cream);
  color: var(--text-lt); font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: .08em;
  cursor: pointer; transition: all var(--tr);
}
.filter-btn.active, .filter-btn:hover { background: var(--maroon); border-color: var(--maroon); color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 8px;
}
.gallery-loading { grid-column: 1/-1; text-align: center; color: var(--text-lt); padding: 4rem; font-family: 'Cormorant Garamond', serif; font-style: italic; }

.g-item {
  aspect-ratio: 3/4; overflow: hidden;
  border-radius: 8px; cursor: pointer; background: var(--cream-dk);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.g-item:hover img { transform: scale(1.06); }

/* ═══ LIGHTBOX ═══════════════════════════════════════════════════════════════ */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.93); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-content { position: relative; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.lb-content img { max-width: 88vw; max-height: 85vh; object-fit: contain; border-radius: 4px; box-shadow: 0 8px 60px rgba(0,0,0,.9); }
.lb-caption { margin-top: .6rem; font-family: 'Cinzel', serif; font-size: .75rem; color: var(--gold); letter-spacing: .12em; text-transform: capitalize; opacity: .75; }
.lb-close, .lb-prev, .lb-next {
  position: fixed; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold); cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(201,168,76,.35); }
.lb-close { top: 1.25rem; right: 1.25rem; width: 38px; height: 38px; font-size: .9rem; }
.lb-prev { left: .75rem; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 2rem; }
.lb-next { right: .75rem; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 2rem; }

/* ═══ RSVP ═══════════════════════════════════════════════════════════════════ */
.rsvp-section { background: linear-gradient(155deg, #1a0520 0%, var(--maroon-dk) 60%, #240a14 100%); }
.rsvp-section .section-eyebrow { color: var(--gold-lt); }
.rsvp-wrapper { max-width: 660px; margin: 0 auto; }

.rsvp-form {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius); padding: 2.5rem;
  backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group + .form-group { margin-top: 1.2rem; }
.form-row + .form-group { margin-top: 1.2rem; }

.form-group label {
  font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
}
.req { color: #e06060; }
.opt { color: rgba(201,168,76,.4); font-family: 'Lato', sans-serif; font-size: .65rem; text-transform: none; letter-spacing: 0; }

.form-group input, .form-group textarea {
  background: rgba(255,255,255,.07); border: 1px solid rgba(201,168,76,.25);
  border-radius: 8px; padding: .65rem 1rem;
  color: var(--cream); font-family: 'Lato', sans-serif; font-size: .95rem;
  transition: border-color var(--tr); width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(253,246,236,.25); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.1); }
.form-group textarea { resize: vertical; min-height: 80px; }

.status-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .1rem; }
.spill input[type=radio] { display: none; }
.pill {
  display: inline-block; padding: .45rem .9rem; border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,.2); color: rgba(253,246,236,.6);
  font-size: .8rem; cursor: pointer; transition: all var(--tr); white-space: nowrap;
}
.spill input:checked + .pill.yes   { background: #2d6a4f; border-color: #52b788; color: #fff; }
.spill input:checked + .pill.maybe { background: #7a5c00; border-color: var(--gold); color: var(--gold-lt); }
.spill input:checked + .pill.no    { background: #7b1c2f; border-color: #e06060; color: #fdd; }

.counter { display: flex; align-items: center; gap: .4rem; }
.cbtn {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold); font-size: 1.1rem; cursor: pointer; flex-shrink: 0;
  transition: background var(--tr);
}
.cbtn:hover { background: rgba(201,168,76,.3); }
.counter input { width: 4rem; text-align: center; }

.form-alert {
  display: none; padding: .65rem 1rem; border-radius: 8px;
  margin-bottom: .75rem; font-size: .88rem;
}
.form-alert.error   { background: rgba(220,50,50,.15); border: 1px solid rgba(220,50,50,.4); color: #fdd; }
.form-alert.success { background: rgba(45,106,79,.25); border: 1px solid #52b788; color: #b7e4c7; }
.rsvp-note { text-align: center; font-size: .78rem; color: rgba(253,246,236,.35); margin-top: .6rem; }

.rsvp-success { text-align: center; padding: 3.5rem 2rem; color: var(--cream); }
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.rsvp-success h3 { color: var(--gold); font-size: 1.6rem; margin-bottom: .75rem; }
.rsvp-success p  { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; margin-bottom: 1.5rem; opacity: .85; }

/* ═══ DETAILS ════════════════════════════════════════════════════════════════ */
.details-section { background: var(--cream-dk); }
.details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.detail-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; text-align: center;
  border-top: 4px solid var(--maroon);
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform var(--tr);
}
.detail-card:hover { transform: translateY(-4px); }
.dc-icon { font-size: 2rem; margin-bottom: .75rem; }
.detail-card h4 { font-size: .75rem; color: var(--gold-dk); letter-spacing: .15em; text-transform: uppercase; margin-bottom: .5rem; }
.detail-card p { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--text); }
.dc-venue-name { font-weight: 600; margin-bottom: .25rem !important; }
.dc-address { font-size: .95rem !important; color: var(--text-lt) !important; }
.dc-note { font-size: .88rem !important; color: var(--maroon) !important; margin-top: .4rem; }
.dc-map-link { display: inline-block; margin-top: .75rem; color: var(--maroon); font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: .06em; text-decoration: none; }
.dc-map-link:hover { color: var(--gold-dk); }

/* ═══ FOOTER ═════════════════════════════════════════════════════════════════ */
.footer-photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 3px solid var(--maroon);
  overflow: hidden;
}
.footer-photo-strip img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
  filter: grayscale(25%) brightness(.85);
  transition: filter var(--tr), transform var(--tr);
  display: block;
}
.footer-photo-strip img:hover { filter: grayscale(0) brightness(1); transform: scale(1.04); }

.footer-body {
  background: var(--maroon-dk); padding: 2.5rem 1.5rem; text-align: center;
}
.footer-title { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--gold); letter-spacing: .12em; margin-bottom: .25rem; }
.footer-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; color: rgba(253,246,236,.5); margin-bottom: .25rem; }
.footer-school { font-size: .78rem; color: rgba(253,246,236,.35); letter-spacing: .08em; margin-bottom: .75rem; }
.footer-orn { color: var(--gold); opacity: .3; letter-spacing: .5rem; margin-bottom: .75rem; }
.footer-copy { font-size: .75rem; color: rgba(253,246,236,.25); letter-spacing: .1em; }

/* ═══ ADMIN MODAL ════════════════════════════════════════════════════════════ */
.modal { position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center; }
.modal-bg { position: absolute; inset: 0; background: rgba(0,0,0,.75); }
.modal-box {
  position: relative; z-index: 1; background: var(--cream);
  border-radius: var(--radius); padding: 2.5rem; width: 95%; max-width: 1050px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 70px rgba(0,0,0,.6);
}
.modal-x { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-lt); }
.modal-box h3 { font-size: 1.3rem; color: var(--maroon); margin-bottom: 1.5rem; }
.admin-stats { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.stat-pill { background: var(--maroon); color: var(--cream); padding: .4rem 1.1rem; border-radius: 30px; font-family: 'Cinzel', serif; font-size: .75rem; letter-spacing: .06em; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .83rem; }
.admin-table th { background: var(--maroon); color: var(--gold); font-family: 'Cinzel', serif; font-size: .68rem; letter-spacing: .08em; padding: .55rem .75rem; text-align: left; white-space: nowrap; }
.admin-table td { padding: .55rem .75rem; border-bottom: 1px solid var(--cream-dk); vertical-align: top; }
.admin-table tr:hover td { background: var(--cream-md); }
.sbadge { display: inline-block; padding: .15rem .55rem; border-radius: 20px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.sbadge.yes   { background: #d4edda; color: #155724; }
.sbadge.maybe { background: #fff3cd; color: #856404; }
.sbadge.no    { background: #f8d7da; color: #721c24; }
.del-btn { background: none; border: none; color: #dc3545; cursor: pointer; font-size: 1rem; opacity: .55; transition: opacity var(--tr); }
.del-btn:hover { opacity: 1; }

/* ═══ RESPONSIVE ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .hero-left { grid-column: 1; grid-row: 1; padding: 9rem 2.5rem 3rem; }
  .hero-right { grid-column: 1; grid-row: 2; height: 60vw; max-height: 480px; }
  .hero-countdown { grid-column: 1; grid-row: 3; }
  .hero-left::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-wrap { position: static; max-width: 420px; margin: 0 auto; }
  .guru-hero-portrait { grid-template-columns: 1fr; gap: 2rem; }
  .guru-group-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .explainer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .explainer-photos { order: -1; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .nav-links { gap: .6rem; }
  .nav-links a { font-size: .58rem; letter-spacing: .08em; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--maroon-dk); padding: 1rem 1.5rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-left { padding: 8rem 1.5rem 2.5rem; }
  .tab-strip { top: 72px; }
  .form-row { grid-template-columns: 1fr; }
  .guru-trio { grid-template-columns: 1fr 1fr; }
  .guru-trio-item:last-child { display: none; }
  .guru-trio-center { transform: none; }
  .guru-trio-center:hover { transform: translateY(-5px); }
  .hero-countdown { flex-direction: column; gap: .5rem; }
  .footer-photo-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-photo-strip img:nth-child(n+4) { display: none; }
  .rsvp-form { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .guru-trio { grid-template-columns: 1fr; }
  .guru-trio-item:last-child { display: block; }
  .about-costume-strip { gap: .5rem; grid-template-columns: repeat(2, 1fr); }
  .hero-left { padding: 6.5rem 1rem 2rem; }
  .hero-actions { flex-direction: column; gap: .75rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

/* ═══ ANIMATIONS ══════════════════════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp .6s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ═══ TIMELINE ═══════════════════════════════════════════════════════════════ */
.timeline-section { background: var(--cream-md); }

.timeline {
  position: relative; max-width: 760px; margin: 0 auto; padding: 1rem 0 2rem;
}
.timeline::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold-dk) 10%, var(--gold-dk) 90%, transparent);
  opacity: .35;
}

.tl-item { display: flex; gap: 0; margin-bottom: 2.5rem; position: relative; align-items: flex-start; }
.tl-left  { flex-direction: row-reverse; }
.tl-right { flex-direction: row; }

.tl-dot {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--cream-md);
  box-shadow: 0 0 0 2px var(--gold-dk);
  flex-shrink: 0; margin-top: .55rem; z-index: 1;
}
.tl-dot-final {
  width: 22px; height: 22px; transform: translateX(-50%);
  background: var(--maroon); border-color: var(--cream-md);
  box-shadow: 0 0 0 3px var(--gold), 0 0 16px rgba(201,168,76,.5);
}

.tl-card {
  width: calc(50% - 2.5rem);
  background: var(--cream); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; border-top: 3px solid var(--gold-dk);
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform var(--tr);
}
.tl-left  .tl-card { margin-right: 2.5rem; text-align: right; }
.tl-right .tl-card { margin-left: 2.5rem; text-align: left; }
.tl-card:hover { transform: translateY(-3px); }
.tl-card-final { border-top-color: var(--maroon); }

.tl-year { font-family: 'Cinzel', serif; font-size: .68rem; letter-spacing: .15em; color: var(--gold-dk); text-transform: uppercase; margin-bottom: .3rem; }
.tl-year-final { color: var(--maroon); font-size: .78rem; }
.tl-card h4 { font-size: .85rem; color: var(--text); margin-bottom: .4rem; }
.tl-card p  { font-family: 'Cormorant Garamond', serif; font-size: .98rem; color: var(--text-lt); line-height: 1.7; }
.tl-card-final h4 { color: var(--maroon); }

/* ═══ MESSAGES WALL ══════════════════════════════════════════════════════════ */
.messages-section { background: var(--cream); }
.messages-section .section-subtitle { margin-bottom: 0; }
.messages-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.messages-loading { grid-column: 1/-1; text-align: center; color: var(--text-lt); padding: 3rem; font-family: 'Cormorant Garamond', serif; font-style: italic; }

.msg-card {
  background: var(--cream-md); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; border-left: 3px solid var(--gold);
  box-shadow: 0 4px 16px var(--shadow); position: relative;
}
.msg-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 4rem;
  color: var(--gold); opacity: .22; position: absolute; top: .5rem; left: 1rem;
  line-height: 1; pointer-events: none;
}
.msg-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  color: var(--text); line-height: 1.75; margin-bottom: 1rem; position: relative; z-index: 1;
}
.msg-footer { display: flex; justify-content: space-between; align-items: center; }
.msg-name { font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: .08em; color: var(--maroon); }
.msg-date { font-size: .78rem; color: var(--text-lt); opacity: .6; }

/* ═══ CALENDAR & SHARE ═══════════════════════════════════════════════════════ */
.cal-share-row {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.1); text-align: center;
}
.cal-share-label {
  font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-lt); margin-bottom: 1rem;
}
.cal-share-btns { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }

.cal-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .6rem 1.35rem; border-radius: 30px;
  font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: .08em;
  text-decoration: none; border: 1.5px solid; cursor: pointer;
  transition: all var(--tr); white-space: nowrap; background: #fff;
}
.cal-btn-google { border-color: #4285f4; color: #4285f4; }
.cal-btn-google:hover { background: #4285f4; color: #fff; }
.cal-btn-apple  { border-color: #555; color: #333; }
.cal-btn-apple:hover  { background: #333; color: #fff; }
.cal-btn-whatsapp { border-color: #25d366; color: #25d366; }
.cal-btn-whatsapp:hover { background: #25d366; color: #fff; }
.cal-btn-copy { border-color: var(--maroon); color: var(--maroon); }
.cal-btn-copy:hover { background: var(--maroon); color: var(--cream); }

/* ═══ SHARE CHECKBOX ═════════════════════════════════════════════════════════ */
.share-check-group { margin-top: 1rem; }
.share-check-label {
  display: flex; align-items: center; gap: .6rem; cursor: pointer;
  font-family: 'Lato', sans-serif; font-size: .88rem; color: rgba(253,246,236,.7);
}
.share-check-label input[type=checkbox] { width: 17px; height: 17px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }

/* ═══ PARKING ════════════════════════════════════════════════════════════════ */
.parking-section { background: var(--cream-dk); }
.parking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.parking-info { display: flex; flex-direction: column; gap: 1.25rem; }

.parking-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 1.5rem 1.75rem; border-top: 3px solid var(--maroon);
  box-shadow: 0 4px 20px var(--shadow);
}
.parking-icon { font-size: 1.75rem; margin-bottom: .5rem; }
.parking-card h4 { font-family: 'Cinzel', serif; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: .5rem; }
.parking-card p  { font-family: 'Cormorant Garamond', serif; font-size: 1.02rem; color: var(--text-lt); line-height: 1.75; }
.parking-card strong { color: var(--text); }
.parking-link { color: var(--maroon); text-decoration: underline; }
.parking-link:hover { color: var(--gold-dk); }
.parking-map { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 40px var(--shadow); }

/* ═══ FAQ ════════════════════════════════════════════════════════════════════ */
.faq-section {
  background: linear-gradient(165deg, var(--maroon-dk) 0%, #2a0810 60%, var(--maroon-mid) 100%);
}
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius); overflow: hidden; transition: background var(--tr);
}
.faq-item[open] { background: rgba(201,168,76,.08); }

.faq-q {
  padding: 1.1rem 1.5rem; font-family: 'Cinzel', serif; font-size: .82rem;
  letter-spacing: .06em; color: var(--cream); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; gap: 1rem; user-select: none; transition: color var(--tr);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '\＋'; color: var(--gold); flex-shrink: 0; font-size: 1.1rem; transition: transform var(--tr); }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-item[open] .faq-q { color: var(--gold); }

.faq-a { padding: 0 1.5rem 1.25rem; border-top: 1px solid rgba(201,168,76,.12); }
.faq-a p { font-family: 'Cormorant Garamond', serif; font-size: 1.02rem; color: rgba(253,246,236,.75); line-height: 1.85; }
.faq-a em { color: var(--gold-lt); font-style: italic; }

/* ═══ TEASER MODAL ═══════════════════════════════════════════════════════════ */
.teaser-modal {
  display: none; position: fixed; inset: 0; z-index: 4000; background: #000; overflow: hidden;
}
.teaser-modal.open { display: block; }

.teaser-close {
  position: fixed; top: 1.25rem; right: 1.25rem; z-index: 4010;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}
.teaser-close:hover { background: rgba(201,168,76,.4); }

.teaser-letterbox { position: fixed; left: 0; right: 0; z-index: 4005; background: #000; pointer-events: none; }
.teaser-top    { top: 0;    height: 8vh; }
.teaser-bottom { bottom: 0; height: 8vh; }

.teaser-slides { position: absolute; inset: 0; }

.ts-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; overflow: hidden; }
.ts-slide.active { opacity: 1; }

.ts-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform-origin: center; }

/* Ken Burns — 6 variants */
@keyframes kb1 { from { transform: scale(1)    translate(0,0);       } to { transform: scale(1.12) translate(-2%,-1%); } }
@keyframes kb2 { from { transform: scale(1.1)  translate(-1.5%,0);   } to { transform: scale(1)    translate(1%,1%);   } }
@keyframes kb3 { from { transform: scale(1)    translate(1%,1%);     } to { transform: scale(1.1)  translate(-1%,-2%); } }
@keyframes kb4 { from { transform: scale(1.08) translate(1%,-1%);    } to { transform: scale(1)    translate(-1%,1%);  } }
@keyframes kb5 { from { transform: scale(1)    translate(-1%,-1.5%); } to { transform: scale(1.1)  translate(2%,1%);   } }
@keyframes kb6 { from { transform: scale(1.1)  translate(0,1%);      } to { transform: scale(1)    translate(-1%,-1%); } }

.ts-slide.active .ts-kb-1 { animation: kb1 6s ease-in-out forwards; }
.ts-slide.active .ts-kb-2 { animation: kb2 6s ease-in-out forwards; }
.ts-slide.active .ts-kb-3 { animation: kb3 6s ease-in-out forwards; }
.ts-slide.active .ts-kb-4 { animation: kb4 6s ease-in-out forwards; }
.ts-slide.active .ts-kb-5 { animation: kb5 6s ease-in-out forwards; }
.ts-slide.active .ts-kb-6 { animation: kb6 6s ease-in-out forwards; }

.teaser-overlay-text {
  position: fixed; bottom: 14vh; left: 50%; transform: translateX(-50%);
  z-index: 4006; text-align: center; pointer-events: none; width: 90%;
  font-family: 'Cinzel', serif; font-size: clamp(1.1rem, 3vw, 2.2rem);
  color: #fff; letter-spacing: .08em;
  text-shadow: 0 2px 24px rgba(0,0,0,.9), 0 0 60px rgba(0,0,0,.5);
  opacity: 0;
}
.teaser-overlay-text.fade-in-out { animation: textFadeInOut 4.2s ease forwards; }
@keyframes textFadeInOut {
  0%   { opacity: 0; transform: translateX(-50%) translateY(10px); }
  18%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  78%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-8px); }
}

/* ═══ RESPONSIVE ADDITIONS ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .parking-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .timeline::before { left: 1.25rem; transform: none; }
  .tl-item { flex-direction: row !important; }
  .tl-dot  { left: 1.25rem; transform: translateX(-50%); }
  .tl-left  .tl-card,
  .tl-right .tl-card { width: auto; flex: 1; margin-left: 3rem; margin-right: 0; text-align: left; }
  .cal-share-btns { gap: .5rem; }
  .cal-btn { padding: .55rem 1rem; font-size: .68rem; }
}

/* ═══ TAB STRIP ══════════════════════════════════════════════════════════════ */
.tabs-section { background: var(--cream); }

.tab-strip {
  background: var(--maroon-dk);
  border-bottom: 1px solid rgba(201,168,76,.2);
  position: sticky; top: 80px; z-index: 800;
}
.tab-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; overflow-x: auto; scrollbar-width: none;
}
.tab-strip-inner::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: .85rem 1.5rem;
  font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: color .2s ease, border-color .2s ease; flex-shrink: 0;
}
.tab-btn:hover { color: rgba(255,255,255,.8); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ═══ TAB PANELS ═════════════════════════════════════════════════════════════ */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Reduce padding for sections inside tab panels */
.tab-panel section.section,
.tab-panel .section { padding: 2.5rem 0; }
.tp-guru { padding: 3rem 0 !important; }

/* ═══ STORY TAB ══════════════════════════════════════════════════════════════ */
.tp-story {
  display: grid; grid-template-columns: 400px 1fr;
  align-items: start; min-height: 60vh;
}
.tp-story-photo {
  position: sticky; top: 66px;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  background: var(--cream);
  align-self: start;
}
.tp-story-photo .about-photo-frame { position: static; }
.tp-story-content {
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  background: var(--cream-md);
  border-left: 1px solid var(--cream-dk);
}
.tp-about { margin-bottom: 0; }
.tp-h2 { text-align: left; font-size: clamp(1.4rem, 3vw, 2rem); }
.tp-timeline { }

.tp-divider {
  text-align: center; color: var(--gold); opacity: .35;
  letter-spacing: .5rem; font-size: .8rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--cream-dk);
  border-bottom: 1px solid var(--cream-dk);
  margin: 1.5rem 0;
}

/* Compact timeline */
.tl-compact {
  display: flex; flex-direction: column;
  position: relative; padding-left: 3.5rem; gap: 0;
}
.tl-compact::before {
  content: ''; position: absolute; left: 1.8rem; top: .6rem; bottom: .6rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dk) 10%, var(--gold-dk) 90%, transparent);
  opacity: .35;
}
.tlc-item {
  position: relative; padding: .75rem 0 .75rem .4rem;
}
.tlc-item::before {
  content: ''; position: absolute; left: -1.8rem; top: 1.05rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-dk);
}
.tlc-final::before {
  background: var(--maroon); width: 10px; height: 10px;
  left: -1.9rem; top: 1rem;
  box-shadow: 0 0 0 2px var(--gold), 0 0 8px rgba(201,168,76,.4);
}
.tlc-year {
  font-family: 'Cinzel', serif; font-size: .63rem; letter-spacing: .1em;
  color: var(--gold-dk); display: block; margin-bottom: .1rem;
}
.tlcy-final { color: var(--maroon); font-weight: 600; }
.tlc-body {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  color: var(--text-lt); line-height: 1.6;
}
.tlc-body strong {
  font-family: 'Cinzel', serif; font-size: .78rem;
  letter-spacing: .03em; color: var(--text);
}

/* ═══ PROGRAM TAB ════════════════════════════════════════════════════════════ */
.tp-program {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; min-height: 60vh;
}
.tp-expl-col {
  background: var(--cream-md);
  padding: 2.5rem 2.5rem 2.5rem 2rem;
}
.tp-prog-col {
  background: linear-gradient(160deg, var(--maroon-mid) 0%, var(--maroon-dk) 100%);
  padding: 2.5rem 2rem 2.5rem 2.5rem;
}
.tp-prog-col .program-list { max-width: none; margin-bottom: 1.5rem; }
.tp-prog-col .section-title.light,
.tp-prog-col .section-eyebrow.light,
.tp-prog-col .section-subtitle.light { /* already styled */ }

/* ═══ VISIT TAB ══════════════════════════════════════════════════════════════ */
.tp-visit-2col {
  display: grid; grid-template-columns: 1fr 1fr;
}

/* ═══ RESPONSIVE (TABS) ══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .tp-story { grid-template-columns: 1fr; }
  .tp-story-photo { position: static; max-width: 340px; margin: 0 auto; padding: 2rem 1.5rem 0; }
  .tp-story-content { border-left: none; border-top: 1px solid var(--cream-dk); }
  .tp-program { grid-template-columns: 1fr; }
  .tp-expl-col { padding: 2rem 1.5rem; }
  .tp-prog-col { padding: 2rem 1.5rem; }
  .tp-visit-2col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .tab-btn { padding: .75rem .9rem; font-size: .65rem; letter-spacing: .07em; min-height: 44px; }
  .tp-story-content { padding: 1.5rem; }
}

@media (max-width: 600px) {
  .cal-share-btns { display: grid; grid-template-columns: 1fr 1fr; }
  .cal-btn { justify-content: center; }
}

/* ═══ MUSICIANS ══════════════════════════════════════════════════════════════ */
.musicians-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem; margin-bottom: 2rem;
}
.musician-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.2);
  border-top: 3px solid var(--gold); border-radius: var(--radius);
  padding: 1.5rem 1.25rem; text-align: center;
  transition: background var(--tr), transform var(--tr);
}
.musician-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.mc-role { font-family: 'Cinzel', serif; font-size: .85rem; color: var(--gold); letter-spacing: .08em; margin-bottom: .25rem; }
.mc-instrument { font-size: .72rem; color: rgba(253,246,236,.45); letter-spacing: .08em; font-family: 'Cinzel', serif; text-transform: uppercase; margin-bottom: .75rem; }
.mc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: rgba(253,246,236,.6); margin-bottom: .75rem; }
.mc-desc { font-family: 'Cormorant Garamond', serif; font-size: .92rem; color: rgba(253,246,236,.55); line-height: 1.65; }
.musicians-note { text-align: center; font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: .15em; color: rgba(201,168,76,.5); }

/* ═══ MENU COMING SOON ═══════════════════════════════════════════════════════ */
.menu-coming-soon { max-width: 480px; margin: 0 auto; text-align: center; padding: 3rem 2rem; }
.mcs-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.mcs-title { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--maroon); margin-bottom: 1rem; }
.mcs-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--text-lt); line-height: 1.8; margin-bottom: .75rem; }
.mcs-sub { font-size: .88rem; color: var(--text-lt); opacity: .7; }

/* ═══ POST-EVENT GALLERY ═════════════════════════════════════════════════════ */
.post-event-section { background: var(--cream-md); }
.post-event-locked {
  text-align: center; padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--maroon-dk), #1a0520);
  border-radius: var(--radius); max-width: 560px; margin: 0 auto;
  border: 1px solid rgba(201,168,76,.2);
}
.pel-icon { font-size: 3rem; margin-bottom: 1rem; }
.pel-title { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: .75rem; }
.pel-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: rgba(253,246,236,.7); line-height: 1.8; }
.event-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 8px; margin-top: 1rem; }

/* ═══ GUESTBOOK ══════════════════════════════════════════════════════════════ */
.gb-layout { display: grid; grid-template-columns: 420px 1fr; gap: 3rem; align-items: start; }
.gb-form .form-group label { font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dk); display: block; margin-bottom: .35rem; }
.gb-entries { display: flex; flex-direction: column; gap: 1rem; max-height: 70vh; overflow-y: auto; padding-right: .5rem; }
.gb-card {
  background: var(--cream-md); border-radius: var(--radius);
  padding: 1.5rem; border-left: 3px solid var(--gold);
  box-shadow: 0 4px 16px var(--shadow); position: relative;
}
.gb-quote { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: var(--gold); opacity: .2; position: absolute; top: .25rem; left: .85rem; line-height: 1; pointer-events: none; }
.gb-msg { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--text); line-height: 1.75; margin-bottom: .75rem; position: relative; z-index: 1; }
.gb-footer { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: .5rem; }
.gb-name { font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: .08em; color: var(--maroon); }
.gb-connection { font-size: .78rem; color: var(--text-lt); opacity: .6; font-style: italic; }
.gb-date { font-size: .75rem; color: var(--text-lt); opacity: .5; }
.gb-empty { text-align: center; padding: 2.5rem; font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--text-lt); opacity: .7; }

@media (max-width: 900px) {
  .gb-layout { grid-template-columns: 1fr; }
  .gb-entries { max-height: none; }
  .musicians-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

/* ═══ TIMELINE INLINE PHOTOS ═════════════════════════════════════════════════ */
.tlc-photo {
  float: right;
  width: 105px;
  aspect-ratio: 3/4;
  margin: 0 0 .5rem .85rem;
  border-radius: 8px; overflow: hidden;
  border: 2px solid var(--cream-dk);
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--tr);
}
.tlc-photo:hover { transform: scale(1.04); }
.tlc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

/* ═══ GALLERY GATE ═══════════════════════════════════════════════════════════ */
.gallery-gate {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--maroon-dk) 0%, #1a0520 100%);
  padding: 4rem 1.5rem;
}
.gg-box {
  text-align: center; max-width: 380px; width: 100%;
}
.gg-icon {
  font-size: 2rem; color: var(--gold); opacity: .5;
  margin-bottom: 1.25rem; letter-spacing: .2em;
}
.gg-title {
  font-family: 'Cinzel', serif; font-size: 1.6rem;
  color: #fff; margin-bottom: .5rem;
}
.gg-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.05rem; color: rgba(253,246,236,.5);
  margin-bottom: 1.75rem;
}
.gg-input {
  width: 100%; padding: .75rem 1.25rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(201,168,76,.3);
  border-radius: 8px; color: var(--cream);
  font-family: 'Lato', sans-serif; font-size: 1rem;
  text-align: center; letter-spacing: .15em;
  margin-bottom: .75rem;
  transition: border-color var(--tr);
}
.gg-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.1); }
.gg-input::placeholder { color: rgba(253,246,236,.2); letter-spacing: .05em; }
.gg-error {
  font-size: .85rem; color: #f8a0a0;
  min-height: 1.2rem; margin-bottom: .75rem;
}
.tlc-item { overflow: hidden; }

/* ═══ RSVP ATTENDING COUNT ═══════════════════════════════════════════════════ */
.rsvp-attending-count {
  display: none; text-align: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1rem; color: rgba(201,168,76,.6);
  letter-spacing: .12em; margin-bottom: 1.75rem; margin-top: -.75rem;
}

/* ═══ RSVP LOOKUP ════════════════════════════════════════════════════════════ */
.rsvp-lookup-wrap {
  max-width: 660px; margin: 1.5rem auto 0;
  text-align: center;
}
.lookup-toggle-row {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: .95rem; color: rgba(253,246,236,.4);
}
.lookup-toggle-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(201,168,76,.65); font-family: 'Cinzel', serif;
  font-size: .72rem; letter-spacing: .06em;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s ease;
}
.lookup-toggle-btn:hover { color: var(--gold); }

.lookup-panel {
  margin-top: 1.25rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius); padding: 1.5rem;
  backdrop-filter: blur(6px);
}
.lookup-input-row {
  display: flex; gap: .75rem;
}
.lookup-email-input {
  flex: 1; background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.25); border-radius: 8px;
  padding: .65rem 1rem; color: var(--cream);
  font-family: 'Lato', sans-serif; font-size: .95rem;
  transition: border-color .2s ease;
}
.lookup-email-input::placeholder { color: rgba(253,246,236,.25); }
.lookup-email-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.1); }

.lookup-result {
  margin-top: 1.25rem; border-radius: 8px; padding: 1rem 1.25rem;
  text-align: left;
}
.lookup-found {
  background: rgba(45,106,79,.15); border: 1px solid rgba(82,183,136,.3);
}
.lookup-not-found {
  background: rgba(220,50,50,.1); border: 1px solid rgba(220,50,50,.3);
  color: rgba(253,246,236,.7); font-family: 'Cormorant Garamond', serif; font-size: 1rem;
}
.lookup-found-header {
  display: flex; align-items: center; gap: .6rem;
  color: #b7e4c7; font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; margin-bottom: .75rem;
}
.lookup-check { font-size: 1.2rem; color: #52b788; }

.lookup-details { display: flex; flex-direction: column; gap: .4rem; }
.lookup-detail-row { display: flex; gap: .75rem; align-items: baseline; }
.ldr-label {
  font-family: 'Cinzel', serif; font-size: .62rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(201,168,76,.55);
  min-width: 5rem; flex-shrink: 0;
}
.ldr-val { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--cream); }
.slookup-yes   { color: #52b788; }
.slookup-maybe { color: var(--gold-lt); }
.slookup-no    { color: #f8a0a0; }

.lookup-link-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(253,246,236,.8); font-family: 'Cinzel', serif;
  font-size: .72rem; letter-spacing: .05em;
  text-decoration: underline; text-underline-offset: 3px;
}

@media (max-width: 520px) {
  .lookup-input-row { flex-direction: column; }
}
