/* Julio & Soujanya — wedding site */
@import url('https://fonts.googleapis.com/css2?family=Yatra+One&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Tiro+Bangla:ital@0;1&family=Baloo+Da+2:wght@600;700;800&family=Spectral:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Cinzel:wght@400;500;600;700&display=swap');

:root {
  --sindoor: #C4161C;
  --sindoor-deep: #8E0D12;
  --maroon: #5A0E12;
  --saffron: #E08D2E;
  --saffron-soft: #EFB261;
  --gold: #B8862F;
  --gold-soft: #D4A84A;
  --ivory: #F6EBD9;
  --ivory-deep: #EAD9BD;
  --paper: #FBF3E2;
  --ink: #1A0F0A;
  --ink-soft: #3D2418;

  --serif: 'Cormorant Garamond', 'Spectral', Georgia, serif;
  --display: 'Yatra One', 'Cinzel', serif;
  --bangla: 'Tiro Bangla', 'Yatra One', serif;
  --span-italic: 'Cormorant Garamond', serif;
}

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

html, body {
  font-family: var(--serif);
  color: var(--ink);
  background: var(--paper);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(224, 141, 46, 0.10), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(196, 22, 28, 0.08), transparent 50%),
    var(--paper);
  background-attachment: fixed;
}

/* Paper grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.25 0 0 0 0 0.1 0 0 0 0.18 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

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

/* Selection */
::selection { background: var(--sindoor); color: var(--ivory); }

/* ───────── Navigation ───────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  background: linear-gradient(to bottom, rgba(251, 243, 226, 0.92), rgba(251, 243, 226, 0.72));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 134, 47, 0.18);
  font-family: var(--serif);
  transition: padding .35s ease, background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.nav.scrolled {
  padding: 12px 36px;
  background: rgba(251, 243, 226, 0.98);
  border-bottom-color: rgba(184, 134, 47, 0.4);
  box-shadow: 0 6px 24px rgba(90, 14, 18, 0.08);
}
@media (max-width: 900px) {
  .nav.scrolled { padding: 10px 18px; }
}

.nav-monogram {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--maroon);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-monogram .amp { color: var(--sindoor); font-style: italic; font-family: var(--serif); font-weight: 500; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav-links a:hover { color: var(--sindoor); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--sindoor);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s;
}
.nav-links a:hover::after { transform: scaleX(1); }

/* Prominent RSVP CTA in nav */
.nav-cta a {
  position: relative;
  background: var(--sindoor-deep);
  color: var(--ivory) !important;
  padding: 9px 22px;
  border: none;
  border-radius: 2px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 4px 14px -6px rgba(142, 13, 18, 0.55);
}
.nav-cta a::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(246, 235, 217, 0.4);
  pointer-events: none;
  transition: inset .25s;
}
.nav-cta a:hover {
  background: var(--maroon);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(90, 14, 18, 0.6);
}
.nav-cta a:hover::before { inset: 5px; }
.nav-cta a::after { display: none; }

/* Mobile hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid rgba(184, 134, 47, 0.55);
  border-radius: 3px;
  cursor: pointer;
  flex: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--maroon);
  border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease;
}
.nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--gold);
  border-radius: 999px;
  overflow: hidden;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.lang-toggle button {
  background: transparent;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-family: var(--serif);
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all .25s;
  font-weight: 500;
}
.lang-toggle button.active {
  background: var(--sindoor);
  color: var(--ivory);
}

/* ───────── Common Section ───────── */
section {
  position: relative;
  padding: 110px 32px;
  z-index: 2;
}

.section-inner { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  font-family: var(--display);
  color: var(--sindoor);
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 72px);
  text-align: center;
  color: var(--maroon);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 18px;
}
.section-title .accent { color: var(--sindoor); font-style: italic; font-family: var(--serif); }
.section-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 26px);
  text-align: center;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto 60px;
  line-height: 1.55;
}

/* Bengali subtitle in titles */
.bn-mark {
  display: none;
}
.day-name-bn { display: none; }
.hero-eyebrow { display: none; }
.bn-mark-original {
  display: block;
  font-family: var(--bangla);
  font-size: 0.45em;
  color: var(--saffron);
  letter-spacing: 0.04em;
  margin-bottom: 0.2em;
  font-weight: 400;
}

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--sindoor-deep);
  color: var(--ivory);
  border: none;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: all .3s;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(142, 13, 18, 0.3);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(246, 235, 217, 0.4);
  pointer-events: none;
  transition: inset .3s;
}
.btn:hover { background: var(--maroon); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(90, 14, 18, 0.4); }
.btn:hover::before { inset: 6px; }

.btn-ghost {
  background: transparent;
  color: var(--maroon);
  border: 1px solid var(--gold);
  box-shadow: none;
}
.btn-ghost::before { border-color: rgba(184, 134, 47, 0.3); }
.btn-ghost:hover { background: var(--maroon); color: var(--ivory); border-color: var(--maroon); }

/* ───────── Decorative borders ───────── */
.border-paisley {
  height: 28px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 28' preserveAspectRatio='xMidYMid meet'><g fill='none' stroke='%23B8862F' stroke-width='0.8'><path d='M0 14 Q 12 4, 25 14 T 50 14 T 75 14 T 100 14'/><path d='M0 14 Q 12 24, 25 14 T 50 14 T 75 14 T 100 14'/><circle cx='12.5' cy='9' r='1.2' fill='%23C4161C'/><circle cx='37.5' cy='9' r='1.2' fill='%23C4161C'/><circle cx='62.5' cy='9' r='1.2' fill='%23C4161C'/><circle cx='87.5' cy='9' r='1.2' fill='%23C4161C'/><circle cx='12.5' cy='19' r='1.2' fill='%23C4161C'/><circle cx='37.5' cy='19' r='1.2' fill='%23C4161C'/><circle cx='62.5' cy='19' r='1.2' fill='%23C4161C'/><circle cx='87.5' cy='19' r='1.2' fill='%23C4161C'/></g></svg>");
  background-repeat: repeat-x;
  background-size: 100px 28px;
  opacity: 0.85;
}

.divider-ornate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 48px auto;
  max-width: 600px;
  color: var(--gold);
}
.divider-ornate::before, .divider-ornate::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-ornate svg { width: 36px; height: 36px; flex: none; }

/* ───────── HERO ───────── */
.hero {
  min-height: 100vh;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center 30%, rgba(224, 141, 46, 0.18), transparent 60%),
    linear-gradient(180deg, #FCF4E2 0%, #F4E5C9 100%);
}

.hero-mandala {
  position: absolute;
  width: 480px;
  height: 480px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.18;
  animation: spin 180s linear infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-corner {
  position: absolute;
  width: 280px;
  height: 280px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}
.hero-corner.tl { top: 80px; left: 24px; }
.hero-corner.tr { top: 80px; right: 24px; transform: scaleX(-1); }
.hero-corner.bl { bottom: 24px; left: 24px; transform: scaleY(-1); }
.hero-corner.br { bottom: 24px; right: 24px; transform: scale(-1, -1); }

/* Curtain reveal — confined to hero */
.curtain-wrap {
  position: absolute;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  overflow: hidden;
}
.curtain-wrap.gone { display: none; }
.curtain {
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  background:
    repeating-linear-gradient(90deg, var(--sindoor) 0, var(--sindoor) 18px, var(--sindoor-deep) 18px, var(--sindoor-deep) 36px),
    var(--sindoor);
  transition: transform 1.6s cubic-bezier(.7,.05,.3,.95);
  pointer-events: auto;
}
.curtain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='160' viewBox='0 0 80 160'><g fill='none' stroke='%23E0B040' stroke-width='1.2' opacity='0.8'><path d='M40 10 Q 60 30, 40 50 Q 20 30, 40 10 Z'/><path d='M40 60 Q 60 80, 40 100 Q 20 80, 40 60 Z'/><path d='M40 110 Q 60 130, 40 150 Q 20 130, 40 110 Z'/><circle cx='40' cy='30' r='3' fill='%23E0B040'/><circle cx='40' cy='80' r='3' fill='%23E0B040'/><circle cx='40' cy='130' r='3' fill='%23E0B040'/></g></svg>");
  background-size: 80px 160px;
  opacity: 0.55;
}
.curtain.left { left: 0; box-shadow: inset -10px 0 30px rgba(0,0,0,0.3); }
.curtain.right { right: 0; box-shadow: inset 10px 0 30px rgba(0,0,0,0.3); }
.curtain-rope {
  position: absolute;
  top: 0; bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold), var(--gold-soft));
  box-shadow: 0 0 12px rgba(184, 134, 47, 0.6);
}
.curtain.left .curtain-rope { right: 0; }
.curtain.right .curtain-rope { left: 0; }
.curtain-tassel {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 80px;
  background: radial-gradient(ellipse at top, var(--gold) 30%, var(--saffron) 100%);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
}
.curtain.left .curtain-tassel { right: -30px; }
.curtain.right .curtain-tassel { left: -30px; }

.curtain.opened.left { transform: translateX(-100%); }
.curtain.opened.right { transform: translateX(100%); }

/* Marigolds — confined to hero */
.petals { position: absolute; inset: 0; pointer-events: none; z-index: 5; overflow: hidden; }
.petal {
  position: absolute;
  top: -60px;
  width: 26px; height: 26px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-50 -50 100 100'><g fill='%23E08D2E'><circle r='28' fill='%23F4C04A'/><g><ellipse cx='0' cy='-26' rx='8' ry='14' fill='%23E08D2E'/><ellipse cx='0' cy='-26' rx='5' ry='9' fill='%23F4C04A'/></g><g transform='rotate(45)'><ellipse cx='0' cy='-26' rx='8' ry='14' fill='%23D97706'/><ellipse cx='0' cy='-26' rx='5' ry='9' fill='%23E08D2E'/></g><g transform='rotate(90)'><ellipse cx='0' cy='-26' rx='8' ry='14' fill='%23E08D2E'/><ellipse cx='0' cy='-26' rx='5' ry='9' fill='%23F4C04A'/></g><g transform='rotate(135)'><ellipse cx='0' cy='-26' rx='8' ry='14' fill='%23D97706'/><ellipse cx='0' cy='-26' rx='5' ry='9' fill='%23E08D2E'/></g><g transform='rotate(180)'><ellipse cx='0' cy='-26' rx='8' ry='14' fill='%23E08D2E'/><ellipse cx='0' cy='-26' rx='5' ry='9' fill='%23F4C04A'/></g><g transform='rotate(225)'><ellipse cx='0' cy='-26' rx='8' ry='14' fill='%23D97706'/><ellipse cx='0' cy='-26' rx='5' ry='9' fill='%23E08D2E'/></g><g transform='rotate(270)'><ellipse cx='0' cy='-26' rx='8' ry='14' fill='%23E08D2E'/><ellipse cx='0' cy='-26' rx='5' ry='9' fill='%23F4C04A'/></g><g transform='rotate(315)'><ellipse cx='0' cy='-26' rx='8' ry='14' fill='%23D97706'/><ellipse cx='0' cy='-26' rx='5' ry='9' fill='%23E08D2E'/></g><g><ellipse cx='0' cy='-18' rx='6' ry='10' fill='%23F4C04A' opacity='0.9'/></g><g transform='rotate(22)'><ellipse cx='0' cy='-18' rx='6' ry='10' fill='%23E08D2E' opacity='0.85'/></g><g transform='rotate(67)'><ellipse cx='0' cy='-18' rx='6' ry='10' fill='%23F4C04A' opacity='0.9'/></g><g transform='rotate(112)'><ellipse cx='0' cy='-18' rx='6' ry='10' fill='%23E08D2E' opacity='0.85'/></g><g transform='rotate(157)'><ellipse cx='0' cy='-18' rx='6' ry='10' fill='%23F4C04A' opacity='0.9'/></g><g transform='rotate(202)'><ellipse cx='0' cy='-18' rx='6' ry='10' fill='%23E08D2E' opacity='0.85'/></g><g transform='rotate(247)'><ellipse cx='0' cy='-18' rx='6' ry='10' fill='%23F4C04A' opacity='0.9'/></g><g transform='rotate(292)'><ellipse cx='0' cy='-18' rx='6' ry='10' fill='%23E08D2E' opacity='0.85'/></g><circle r='10' fill='%23D97706'/><circle r='4' fill='%235A0E12'/></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
  animation: petalFall 14s linear infinite;
  filter: drop-shadow(0 3px 5px rgba(217, 119, 6, 0.35));
}
@keyframes petalFall {
  0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.95; }
  100% { transform: translateY(110vh) translateX(40px) rotate(540deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 116px 24px 52px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 1.6s, transform 1s ease 1.6s;
}
.hero-content.shown { opacity: 1; transform: translateY(0); }
.hero-eyebrow-en { flex: 0 0 auto; }
.hero-headline {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-eyebrow {
  font-family: var(--bangla);
  color: var(--saffron);
  font-size: 22px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.hero-eyebrow-en {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 16px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 4vh;
  margin-bottom: 0;
}
.hero-eyebrow-en .eb-dash { display: none; }

.hero-names {
  font-family: var(--display);
  color: var(--maroon);
  font-size: clamp(56px, 9.5vw, 144px);
  line-height: 0.95;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.hero-names .amp {
  font-family: var(--serif);
  font-style: italic;
  color: var(--sindoor);
  font-size: 0.6em;
  font-weight: 400;
  margin: -20px 0;
  position: relative;
}
.hero-names .amp::before, .hero-names .amp::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-names .amp::before { right: calc(100% + 20px); }
.hero-names .amp::after { left: calc(100% + 20px); }

.hero-meta {
  flex: 0 0 auto;
  margin-top: 0;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-meta .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: rotate(45deg);
}

/* Countdown */
.countdown {
  flex: 0 0 auto;
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cd-cell {
  background: linear-gradient(180deg, rgba(255, 250, 235, 0.85), rgba(234, 217, 189, 0.55));
  border: 1px solid rgba(184, 134, 47, 0.7);
  padding: 14px 18px 12px;
  min-width: 84px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 12px rgba(90, 14, 18, 0.06);
}
/* four corner brackets via gradient borders on overlay */
.cd-cell::before,
.cd-cell::after {
  content: '';
  position: absolute;
  inset: 5px;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--gold) 10px, transparent 10px) top left / 10px 1px no-repeat,
    linear-gradient(to bottom, var(--gold) 10px, transparent 10px) top left / 1px 10px no-repeat,
    linear-gradient(to left, var(--gold) 10px, transparent 10px) top right / 10px 1px no-repeat,
    linear-gradient(to bottom, var(--gold) 10px, transparent 10px) top right / 1px 10px no-repeat,
    linear-gradient(to right, var(--gold) 10px, transparent 10px) bottom left / 10px 1px no-repeat,
    linear-gradient(to top, var(--gold) 10px, transparent 10px) bottom left / 1px 10px no-repeat,
    linear-gradient(to left, var(--gold) 10px, transparent 10px) bottom right / 10px 1px no-repeat,
    linear-gradient(to top, var(--gold) 10px, transparent 10px) bottom right / 1px 10px no-repeat;
}
.cd-cell::after { display: none; }
.cd-num {
  font-family: var(--display);
  font-size: 32px;
  color: var(--maroon);
  line-height: 1;
}
.cd-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  z-index: 4;
}
.scroll-cue .line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 50% { opacity: 0.3; } }

/* ───────── Story ───────── */
.story {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(224, 141, 46, 0.08), transparent 50%),
    var(--paper);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 40px;
}
.story-text p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.story-text p:first-letter {
  /* drop cap removed */
}
.story-text .signature {
  font-family: var(--serif);
  font-style: italic;
  color: var(--maroon);
  font-size: 22px;
  margin-top: 32px;
  text-align: right;
}
.story-text .signature .bn { font-family: var(--bangla); font-size: 18px; display: block; color: var(--saffron); margin-top: 4px; }

.story-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 340px;
  width: 100%;
  margin-left: auto;
  background: linear-gradient(135deg, #efb261 0%, #c4161c 100%);
  padding: 18px;
  box-shadow: 0 30px 60px -20px rgba(90, 14, 18, 0.5);
}
.story-frame::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.story-frame::after {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(184, 134, 47, 0.4);
  pointer-events: none;
}
.story-illus {
  width: 100%; height: 100%;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

/* timeline removed */

/* ───────── Events ───────── */
.events {
  background:
    linear-gradient(180deg, var(--maroon) 0%, var(--sindoor-deep) 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.events::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><g fill='none' stroke='%23E0B040' stroke-width='0.6' opacity='0.18'><circle cx='80' cy='80' r='30'/><circle cx='80' cy='80' r='50'/><circle cx='80' cy='80' r='70'/><path d='M80 10 L80 150 M10 80 L150 80 M30 30 L130 130 M130 30 L30 130'/><circle cx='80' cy='80' r='8' fill='%23E0B040' opacity='0.3'/></g></svg>");
  background-size: 220px;
  opacity: 0.4;
  pointer-events: none;
}
.events .eyebrow { color: var(--saffron-soft); }
.events .eyebrow::before, .events .eyebrow::after { background: linear-gradient(90deg, transparent, var(--gold-soft), transparent); }
.events .section-title { color: var(--ivory); }
.events .section-title .accent { color: var(--saffron-soft); }
.events .section-subtitle { color: rgba(246, 235, 217, 0.8); }

.events-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.event-card {
  background:
    linear-gradient(180deg, rgba(246, 235, 217, 0.05) 0%, rgba(246, 235, 217, 0.02) 100%);
  border: 1px solid rgba(224, 176, 64, 0.4);
  padding: 36px 32px;
  position: relative;
  transition: transform .4s, border-color .4s;
}
.event-card::before, .event-card::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--saffron);
}
.event-card::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.event-card::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.event-card:hover { transform: translateY(-4px); border-color: var(--saffron); }

.event-day {
  font-family: var(--bangla);
  font-size: 14px;
  color: var(--saffron-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.event-name {
  font-family: var(--display);
  font-size: 44px;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 8px;
}
.event-name-bn {
  font-family: var(--bangla);
  font-size: 24px;
  color: var(--saffron-soft);
  margin-bottom: 18px;
}
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 17px;
  color: rgba(246, 235, 217, 0.92);
  border-top: 1px solid rgba(224, 176, 64, 0.25);
  padding-top: 20px;
  margin-top: 20px;
}
.event-meta-row { display: flex; gap: 14px; align-items: flex-start; }
.event-meta-key {
  font-family: var(--serif);
  font-style: italic;
  color: var(--saffron);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: 90px;
  flex: none;
  padding-top: 1px;
}
.event-meta-val { font-family: var(--serif); }
.event-attire {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(224, 176, 64, 0.3);
  font-style: italic;
  font-size: 14px;
  color: rgba(246, 235, 217, 0.7);
}
.event-deco {
  position: absolute;
  top: 24px; right: 24px;
  width: 56px; height: 56px;
  opacity: 0.4;
}

/* ───────── Travel ───────── */
.travel-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  margin-top: 16px;
}
.travel-block {
  background: linear-gradient(180deg, var(--ivory), var(--paper));
  border: 1px solid rgba(184, 134, 47, 0.35);
  padding: 36px;
  position: relative;
}
.travel-block + .travel-block { margin-top: 24px; }
.travel-block h4 {
  font-family: var(--display);
  font-size: 28px;
  color: var(--maroon);
  font-weight: 400;
  margin-bottom: 4px;
}
.travel-block .bn-mini {
  font-family: var(--bangla);
  font-size: 16px;
  color: var(--saffron);
  margin-bottom: 18px;
}
.travel-block p { color: var(--ink-soft); margin-bottom: 12px; font-size: 18px; line-height: 1.7; }
.travel-block .meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  border-top: 1px dashed rgba(184, 134, 47, 0.4);
  padding-top: 16px;
  margin-top: 16px;
}
.travel-block .meta strong { font-style: normal; color: var(--maroon); font-family: var(--display); margin-right: 4px; }

.hotels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hotel-card {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--ivory);
  border: 1px solid rgba(184, 134, 47, 0.3);
  padding: 18px 22px;
  transition: transform .3s, box-shadow .3s;
}
.hotel-card:hover { transform: translateX(4px); box-shadow: -4px 4px 0 var(--gold); }
.hotel-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--saffron-soft), var(--sindoor));
  display: grid; place-items: center;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 28px;
}
.hotel-info h5 {
  font-family: var(--display);
  font-size: 20px;
  color: var(--maroon);
  font-weight: 400;
}
.hotel-info p { font-size: 14px; color: var(--ink-soft); margin-top: 2px; }
.hotel-info .tier { font-size: 13px; font-style: italic; color: var(--sindoor); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.hotel-meta { text-align: right; font-size: 16px; color: var(--ink-soft); }
.hotel-meta strong { display: block; font-family: var(--display); color: var(--maroon); font-size: 17px; }

/* ───────── Dress code (lookbook redesign) ───────── */
.dress {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(196, 22, 28, 0.06), transparent 50%),
    var(--paper);
}
.dress-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.dress-card {
  background: var(--ivory);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(184, 134, 47, 0.3), 0 24px 48px -28px rgba(74, 20, 30, 0.25);
}
.dress-card::before,
.dress-card::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  height: 6px;
  background-image:
    radial-gradient(circle at 50% 50%, var(--gold) 1.2px, transparent 1.6px),
    radial-gradient(circle at 0% 50%, var(--gold) 1px, transparent 1.4px),
    radial-gradient(circle at 100% 50%, var(--gold) 1px, transparent 1.4px);
  background-size: 12px 6px, 12px 6px, 12px 6px;
  background-position: 0 50%, 6px 50%, 6px 50%;
  opacity: 0.7;
  pointer-events: none;
}
.dress-card::before { top: 12px; }
.dress-card::after  { bottom: 12px; }
.dress-num {
  position: absolute;
  top: 24px; right: 22px;
  font-family: var(--display);
  font-size: 12px;
  color: var(--sindoor);
  letter-spacing: 0.3em;
  z-index: 3;
}
.dress-figure {
  position: relative;
  height: 200px;
  margin: 28px 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 47, 0.35);
}
.dress-figure-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dress-figure-bg .threads {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 4px);
}
.dress-figure-bg .ornament {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.22;
}
.dress-figure svg.figure {
  position: relative;
  z-index: 2;
  width: 56%;
  height: auto;
  opacity: 0.92;
}
.dress-figure .corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
  z-index: 3;
}
.dress-figure .corner.tl { top: 6px; left: 6px;  border-right: none; border-bottom: none; }
.dress-figure .corner.tr { top: 6px; right: 6px; border-left: none;  border-bottom: none; }
.dress-figure .corner.bl { bottom: 6px; left: 6px;  border-right: none; border-top: none; }
.dress-figure .corner.br { bottom: 6px; right: 6px; border-left: none;  border-top: none; }

.dress-info {
  padding: 20px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dress-info .day {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 600;
  color: var(--maroon);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: none;
}
.dress-info .day-bn {
  font-family: var(--bangla);
  color: var(--maroon);
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-top: -4px;
}
.dress-info h5 {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
  color: var(--maroon);
  font-weight: 400;
  margin: 4px 0 4px;
}
.dress-info p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.dress-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.dress-tags span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-soft);
  border: 1px solid rgba(184, 134, 47, 0.5);
  padding: 3px 9px;
  letter-spacing: 0.04em;
}
.dress-info .palette {
  display: flex;
  gap: 0;
  margin-top: 12px;
  border: 1px solid rgba(184, 134, 47, 0.35);
  height: 32px;
}
.dress-info .palette span {
  flex: 1;
  display: block;
  position: relative;
}
.dress-info .palette span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.dress-info .palette-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ───────── RSVP ───────── */
.rsvp {
  background: linear-gradient(180deg, var(--ivory-deep) 0%, var(--paper) 100%);
  position: relative;
}
.rsvp-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--ivory);
  border: 1px solid rgba(184, 134, 47, 0.5);
  padding: 56px 56px 48px;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(90, 14, 18, 0.3);
}
.rsvp-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184, 134, 47, 0.4);
  pointer-events: none;
}

.rsvp-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.rsvp-step-pip {
  display: flex; align-items: center; gap: 8px;
}
.rsvp-step-pip .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--ivory);
  transition: all .3s;
}
.rsvp-step-pip.active .num { background: var(--maroon); color: var(--ivory); border-color: var(--maroon); }
.rsvp-step-pip.done .num { background: var(--gold); color: var(--ivory); border-color: var(--gold); }
.rsvp-step-pip .label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
}
.rsvp-step-pip:not(.active) .label { opacity: 0.5; }
.rsvp-progress .bar { width: 30px; height: 1px; background: var(--gold); opacity: 0.5; }

.rsvp-step { display: none; animation: fadeIn .5s ease; }
.rsvp-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.rsvp-step h3 {
  font-family: var(--display);
  font-size: 32px;
  color: var(--maroon);
  font-weight: 400;
  margin-bottom: 6px;
  text-align: center;
}
.rsvp-step .step-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--maroon);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field input[type=text],
.field input[type=email],
.field input[type=tel],
.field textarea,
.field select {
  width: 100%;
  background: var(--paper);
  border: 1px solid rgba(184, 134, 47, 0.4);
  padding: 14px 18px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  border-radius: 1px;
  transition: border .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(90, 14, 18, 0.12);
}
.field textarea { min-height: 96px; resize: vertical; font-family: var(--serif); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.choice-card {
  border: 1px solid rgba(184, 134, 47, 0.4);
  background: var(--paper);
  padding: 20px;
  cursor: pointer;
  transition: all .25s;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
}
.choice-card:hover { border-color: var(--maroon); background: var(--ivory); }
.choice-card.selected { border-color: var(--maroon); background: rgba(90, 14, 18, 0.04); }
.choice-card .check {
  width: 22px; height: 22px;
  border-radius: 4px;
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  background: var(--ivory);
  transition: all .2s;
}
.choice-card.selected .check { background: var(--maroon); border-color: var(--maroon); }
.choice-card .check::after {
  content: '✓'; color: var(--ivory); font-size: 14px; opacity: 0; transition: opacity .2s;
}
.choice-card.selected .check::after { opacity: 1; }
.choice-card .info h5 { font-family: var(--display); font-size: 22px; color: var(--maroon); font-weight: 400; }
.choice-card .info p { font-size: 16px; color: var(--ink-soft); margin-top: 4px; font-style: italic; }
.choice-card .when {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--sindoor);
  text-align: right;
}
.choice-card .when strong { font-family: var(--display); display: block; font-style: normal; color: var(--maroon); font-size: 16px; }

.radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.radio-card {
  border: 1px solid rgba(184, 134, 47, 0.4);
  background: var(--paper);
  padding: 24px 20px;
  cursor: pointer;
  text-align: center;
  transition: all .25s;
  font-family: var(--display);
  font-size: 22px;
  color: var(--maroon);
}
.radio-card:hover { border-color: var(--maroon); }
.radio-card.selected { background: var(--maroon); color: var(--ivory); border-color: var(--maroon); }
.radio-card .sub {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  margin-top: 4px;
  opacity: 0.85;
  font-weight: 400;
}

.diet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.diet-chip {
  border: 1px solid rgba(184, 134, 47, 0.4);
  background: var(--paper);
  padding: 10px 18px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--serif);
  color: var(--ink-soft);
  border-radius: 999px;
  transition: all .2s;
}
.diet-chip:hover { border-color: var(--maroon); }
.diet-chip.selected { background: var(--maroon); color: var(--ivory); border-color: var(--maroon); }

.field input.field-error {
  border-color: var(--sindoor);
  box-shadow: 0 0 0 3px rgba(196, 22, 28, 0.12);
}
.field-error-msg {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--sindoor);
  text-align: right;
  margin-top: 8px;
}

.attend-status {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px dashed rgba(184, 134, 47, 0.5);
}
.attend-status-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.rsvp-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px dashed rgba(184, 134, 47, 0.4);
}

.all-days-toggle {
  margin-bottom: 14px;
}
.all-days-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1px solid rgba(184, 134, 47, 0.6);
  padding: 12px 18px;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--maroon);
  cursor: pointer;
  transition: all .25s;
}
.all-days-btn .ad-check {
  width: 18px; height: 18px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  background: var(--ivory);
  display: grid; place-items: center;
  position: relative;
}
.all-days-btn.selected {
  background: var(--maroon);
  color: var(--ivory);
  border-color: var(--maroon);
}
.all-days-btn.selected .ad-check {
  background: var(--ivory);
  border-color: var(--ivory);
}
.all-days-btn.selected .ad-check::after {
  content: '✓';
  color: var(--maroon);
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
}

.done-illus {
  width: 220px;
  height: 200px;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(90, 14, 18, 0.18));
}

.rsvp-success {
  text-align: center;
  padding: 32px 0;
}
.rsvp-success .ornament { font-family: var(--bangla); font-size: 64px; color: var(--saffron); margin-bottom: 12px; }
.rsvp-success h3 { font-family: var(--display); font-size: 44px; color: var(--maroon); font-weight: 400; margin-bottom: 12px; }
.rsvp-success p { color: var(--ink-soft); font-style: italic; font-size: 18px; max-width: 460px; margin: 0 auto 8px; }
.rsvp-success .summary {
  margin-top: 32px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(184, 134, 47, 0.3);
  text-align: left;
  font-size: 14px;
}
.rsvp-success .summary div { padding: 6px 0; border-bottom: 1px dashed rgba(184, 134, 47, 0.3); display: flex; justify-content: space-between; }
.rsvp-success .summary div:last-child { border: none; }
.rsvp-success .summary strong { color: var(--maroon); font-family: var(--display); font-weight: 400; }

/* faq removed */
.__placeholder_faq { display: none; }

/* ───────── Schedule (Alta-themed, 3 days) ───────── */
.schedule {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--ivory-deep) 100%);
  position: relative;
  overflow: hidden;
}
.schedule::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><g fill='%23C4161C' opacity='0.05'><circle cx='100' cy='100' r='4'/><circle cx='40' cy='40' r='2'/><circle cx='160' cy='40' r='2'/><circle cx='40' cy='160' r='2'/><circle cx='160' cy='160' r='2'/></g></svg>");
  background-size: 240px;
  pointer-events: none;
}
.alta-trail {
  position: relative;
  height: 80px;
  margin: -20px 0 30px;
  pointer-events: none;
}
.alta-trail svg { width: 100%; height: 100%; }

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 2;
}
.day-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  background: var(--ivory);
  border: 1px solid rgba(184, 134, 47, 0.5);
  padding: 36px 40px;
  position: relative;
  box-shadow: 0 14px 40px -22px rgba(90, 14, 18, 0.4);
}
.day-card::before, .day-card::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
}
.day-card::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.day-card::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.day-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.day-marker .alta-icon {
  width: 88px; height: 88px;
  opacity: 0.92;
}
.day-marker .jr-day-icon {
  width: 110px;
  height: 128px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(26, 20, 16, 0.18));
}
.day-marker .day-number {
  font-family: var(--display);
  font-size: 22px;
  color: var(--maroon);
  letter-spacing: 0.2em;
}
.day-tag {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: var(--sindoor);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.day-name {
  font-family: var(--display);
  font-size: 44px;
  color: var(--maroon);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.day-name-bn {
  font-family: var(--bangla);
  font-size: 18px;
  color: var(--saffron);
  margin-bottom: 22px;
}
.day-events {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px dashed rgba(184, 134, 47, 0.4);
  padding-top: 18px;
}
.day-event {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
}
.event-time {
  font-family: var(--display);
  font-size: 18px;
  color: var(--sindoor);
}
.event-detail h4 {
  font-family: var(--display);
  font-size: 19px;
  color: var(--maroon);
  font-weight: 400;
  margin-bottom: 4px;
}
.event-detail p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.day-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(184, 134, 47, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.day-attire {
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}
.day-attire span {
  font-family: var(--serif);
  font-style: normal;
  color: var(--sindoor);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-right: 8px;
}
.btn-cal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--maroon);
  padding: 10px 18px;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
}
/* Inside schedule day cards: anchor to top-right of the card */
.day-card .btn-cal {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 8px 14px;
  font-size: 12px;
  z-index: 3;
}
@media (max-width: 720px) {
  .day-card .btn-cal {
    position: static;
    margin-top: 18px;
    align-self: flex-start;
  }
}
.btn-cal:hover { background: var(--maroon); color: var(--ivory); border-color: var(--maroon); }
.cal-all { text-align: center; margin-top: 36px; }

/* Calendar modal */
.cal-modal {
  position: fixed; inset: 0;
  background: rgba(26, 15, 10, 0.7);
  display: none;
  z-index: 300;
  place-items: center;
  padding: 24px;
}
.cal-modal.open { display: grid; }
.cal-modal-card {
  background: var(--ivory);
  max-width: 440px; width: 100%;
  padding: 36px 32px;
  border: 1px solid var(--gold);
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.cal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  font-size: 28px; color: var(--ink-soft);
  cursor: pointer; line-height: 1;
}
.cal-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sindoor);
  margin-bottom: 6px;
}
.cal-modal-card h3 {
  font-family: var(--display);
  font-size: 30px;
  color: var(--maroon);
  font-weight: 400;
  margin-bottom: 4px;
}
.cal-modal-card > p {
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.cal-options { display: flex; flex-direction: column; gap: 10px; }
.cal-opt {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(184, 134, 47, 0.4);
  padding: 14px 18px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--serif);
  transition: all .25s;
}
.cal-opt:hover { background: var(--ivory-deep); transform: translateX(2px); }
.cal-mark {
  width: 32px; height: 32px;
  border-radius: 6px;
  display: grid; place-items: center;
  color: white; font-weight: 700;
  font-family: var(--serif);
  font-size: 14px;
}
.cal-arrow { color: var(--sindoor); font-size: 20px; }

/* ───────── Stay (ITC) ───────── */
.stay {
  background: var(--paper);
}
.stay-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ivory);
  border: 1px solid rgba(184, 134, 47, 0.5);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(90, 14, 18, 0.4);
}
.stay-cover {
  min-height: 460px;
  background: var(--maroon);
  position: relative;
  overflow: hidden;
}
.stay-body {
  padding: 48px 44px;
}
.stay-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sindoor);
  margin-bottom: 8px;
}
.stay-name {
  font-family: var(--display);
  font-size: 44px;
  color: var(--maroon);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 4px;
}
.stay-bn {
  font-family: var(--bangla);
  color: var(--saffron);
  font-size: 18px;
  margin-bottom: 18px;
}
.stay-blurb {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.stay-meta {
  border-top: 1px dashed rgba(184, 134, 47, 0.4);
  padding-top: 18px;
  margin-bottom: 24px;
}
.stay-meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 8px 0;
  font-size: 14px;
}
.stay-meta-key {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--sindoor);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.stay-meta-val { color: var(--ink-soft); line-height: 1.55; }
.stay-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.stay-note {
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  border-top: 1px dashed rgba(184, 134, 47, 0.4);
  padding-top: 16px;
  line-height: 1.6;
}

/* ───────── Stay — simple hosted statement ───────── */
.stay-simple {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.stay-simple-rule {
  width: 60px;
  height: 1px;
  background: rgba(184, 134, 47, 0.55);
  position: relative;
}
.stay-simple-rule::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--sindoor, #B8862F);
  transform: translate(-50%, -50%) rotate(45deg);
}
.stay-simple-lead {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.15;
  color: var(--maroon);
  margin: 0;
}
.stay-simple-body {
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
  max-width: 56ch;
}
.stay-simple-body strong { color: var(--maroon); font-weight: 600; }
.stay-simple .stay-note {
  border-top: none;
  padding-top: 0;
  max-width: 52ch;
}

/* ───────── India travel info ───────── */
.india {
  background: linear-gradient(180deg, var(--ivory-deep) 0%, var(--paper) 100%);
}
.india-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.india-card {
  background: var(--ivory);
  border: 1px solid rgba(184, 134, 47, 0.4);
  padding: 24px 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .3s, box-shadow .3s;
}
.india-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -18px rgba(90, 14, 18, 0.4); }
.india-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(184, 134, 47, 0.3);
}
.india-card-num {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--maroon);
}
.india-card-icon {
  width: 32px; height: 32px;
  color: var(--sindoor);
  opacity: 0.85;
  flex: none;
}
.india-card-icon svg { width: 100%; height: 100%; display: block; }
.india-card h4 {
  font-family: var(--display);
  font-size: 22px;
  color: var(--maroon);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.india-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}
.india-card p strong { color: var(--maroon); font-weight: 600; }
.india-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--sindoor);
  letter-spacing: 0.04em;
  padding-top: 4px;
  margin-top: 8px;
}

/* ───────── Kolkata Must ───────── */
.kolkata {
  background: var(--paper);
}

/* ───────── Weather (own section) ───────── */
.weather-section {
  background: var(--paper);
  position: relative;
}
.weather-section .section-inner > .reveal:first-child {
  text-align: center;
  margin-bottom: 48px;
}
.weather {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--sindoor-deep) 60%, var(--sindoor) 100%);
  color: var(--ivory);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 20px 50px -20px rgba(90, 14, 18, 0.5);
}
.weather::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><g fill='none' stroke='%23E0B040' stroke-width='0.5' opacity='0.2'><circle cx='120' cy='120' r='100'/><circle cx='120' cy='120' r='70'/><circle cx='120' cy='120' r='40'/></g></svg>");
  background-size: 320px;
  opacity: 0.4;
  pointer-events: none;
}
.weather-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  position: relative; z-index: 2;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(224, 176, 64, 0.4);
  margin-bottom: 18px;
}
.weather-eyebrow {
  font-family: var(--serif);
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron-soft);
  margin-bottom: 6px;
}
.weather-temp {
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 4px;
}
.weather-desc {
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: rgba(246, 235, 217, 0.92);
}
.weather-icon { width: 64px; height: 64px; color: var(--saffron-soft); flex: none; }
.weather-forecast {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative; z-index: 2;
  margin-bottom: 18px;
}
.wf-day {
  background: rgba(246, 235, 217, 0.07);
  border: 1px solid rgba(224, 176, 64, 0.3);
  padding: 14px 10px;
  text-align: center;
}
.wf-day .wf-name { font-family: var(--serif); font-weight: 700; font-style: normal; font-size: 14px; color: var(--ivory); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.wf-day .wf-icon { width: 28px; height: 28px; margin: 0 auto 6px; color: var(--saffron-soft); }
.wf-day .wf-temp { font-family: var(--display); font-size: 18px; color: var(--ivory); }
.wf-day .wf-temp small { font-size: 13px; color: rgba(246, 235, 217, 0.72); margin-left: 4px; }
.weather-foot {
  display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(246, 235, 217, 0.82);
  letter-spacing: 0.04em;
  position: relative; z-index: 2;
  flex-wrap: wrap;
}

/* Forecast: temperature separator + event label */
.weather-temp-sep {
  font-family: var(--display);
  font-weight: 300;
  opacity: 0.45;
  margin: 0 4px;
}
.weather-temp small {
  font-size: 22px;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(246, 235, 217, 0.55);
  margin-left: 6px;
  vertical-align: 14px;
}
.wf-day { position: relative; padding: 18px 8px 14px; }
.wf-day .wf-event {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: rgba(246, 235, 217, 0.55);
  margin-bottom: 8px;
  min-height: 28px;
  line-height: 1.3;
}
.wf-day .wf-cond {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(246, 235, 217, 0.78);
  margin-top: 6px;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.wf-day.is-event {
  background: rgba(224, 176, 64, 0.13);
  border-color: rgba(224, 176, 64, 0.55);
  box-shadow: inset 0 0 0 1px rgba(224, 176, 64, 0.18);
}
.wf-day.is-event .wf-name,
.wf-day.is-event .wf-icon { color: var(--saffron); }
.wf-day.is-event .wf-event { color: rgba(246, 235, 217, 0.85); }
.wf-day.is-event .wf-cond { color: rgba(246, 235, 217, 0.82); }
.wf-day .wf-ribbon {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: #EBB94A;
  color: #3A0A0D;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.4);
}
.wf-day .wf-ribbon.wf-ribbon-soft {
  background: transparent;
  color: rgba(246, 235, 217, 0.7);
  border: 1px solid rgba(246, 235, 217, 0.35);
  box-shadow: none;
}

/* Climate stats row */
.weather-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
  position: relative; z-index: 2;
  padding: 18px 0 4px;
  border-top: 1px solid rgba(224, 176, 64, 0.2);
}
.weather-stat { text-align: center; }
.weather-stat .ws-num {
  font-family: var(--display);
  font-size: 26px;
  color: var(--ivory);
  letter-spacing: 0.01em;
}
.weather-stat .ws-num small {
  font-size: 14px;
  color: rgba(246, 235, 217, 0.7);
  margin-left: 2px;
  font-family: var(--serif);
  font-style: italic;
}
.weather-stat .ws-lab {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(246, 235, 217, 0.8);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .weather-forecast { grid-template-columns: repeat(2, 1fr); }
  .weather-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Editorial guidebook list */
.must-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 4px 0 22px;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 134, 47, 0.5) transparent;
}
.must-list::-webkit-scrollbar { height: 8px; }
.must-list::-webkit-scrollbar-thumb {
  background: rgba(184, 134, 47, 0.45);
  border-radius: 999px;
}
.must-list::-webkit-scrollbar-track { background: transparent; }
.must-entry {
  flex: 0 0 clamp(250px, 70vw, 300px);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  padding: 24px 22px 22px;
  border: 1px solid rgba(184, 134, 47, 0.45);
  background: linear-gradient(180deg, rgba(255,250,238,0.7), rgba(244,229,201,0.35));
  position: relative;
}
.must-entry::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--alta, #5A0E12);
}
.must-roman {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  color: var(--alta, #5A0E12);
  font-weight: 400;
  letter-spacing: -0.02em;
  position: relative;
  margin-bottom: 12px;
}
.must-roman::after {
  content: '';
  position: absolute;
  left: -8px;
  top: -2px;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 30% 30%, rgba(196,22,28,0.16), transparent 65%);
  z-index: -1;
}
.must-meat { flex: 1; }
.must-meat .must-chip {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--sindoor);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px dotted var(--gold);
  margin-bottom: 12px;
}
.must-meat h4 {
  font-family: var(--display);
  font-size: 23px;
  color: var(--maroon);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 10px;
}
.must-meat p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.must-aside {
  text-align: left;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(184, 134, 47, 0.5);
}
.must-aside .must-time {
  font-family: var(--display);
  font-size: 19px;
  color: var(--alta, #5A0E12);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.must-aside .must-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.must-pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 14px;
  border: 1px solid var(--maroon);
  background: var(--ivory);
  transition: all .25s;
}
.must-pin:hover {
  background: var(--maroon);
  color: var(--ivory);
}
.must-pin .pin-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--alta, #C4161C);
  box-shadow: 0 0 0 3px rgba(196,22,28,0.18);
}
.must-pin:hover .pin-dot { background: var(--saffron); box-shadow: 0 0 0 3px rgba(224,141,46,0.3); }

/* ───────── Soujanya's Table (cafes/restaurants) ───────── */
.table-section {
  background: var(--paper);
  position: relative;
}
.table-map {
  max-width: 980px;
  margin: 0 auto 56px;
  position: relative;
}
.table-map-frame {
  position: relative;
  height: 360px;
  border: 1px solid var(--gold);
  box-shadow: 0 24px 50px -22px rgba(90, 14, 18, 0.45);
  background: var(--ivory-deep);
  overflow: hidden;
  filter: saturate(0.9) contrast(0.95);
}
.table-map-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 8px double rgba(224, 176, 64, 0.4);
  pointer-events: none;
  z-index: 2;
}
.table-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: sepia(0.12) saturate(0.85) hue-rotate(-8deg);
}
.table-map-badge {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ivory);
  border: 1px solid var(--gold);
  padding: 14px 22px 14px 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 32px -16px rgba(90, 14, 18, 0.45);
  transition: all .25s ease;
  max-width: 320px;
}
.table-map-badge:hover {
  transform: translateY(-2px);
  background: #FBF6EE;
  border-color: var(--maroon);
  box-shadow: 0 22px 40px -18px rgba(90, 14, 18, 0.55);
}
.badge-pin {
  width: 36px;
  height: 36px;
  background: var(--sindoor);
  color: var(--ivory);
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(196,22,28,0.35);
}
.badge-pin svg { width: 20px; height: 20px; }
.badge-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sindoor);
  margin-bottom: 2px;
}
.badge-title {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.1;
  color: var(--maroon);
  margin-bottom: 4px;
}
.badge-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
@media (max-width: 700px) {
  .table-map-badge { top: 12px; left: 12px; max-width: 240px; padding: 10px 16px 10px 12px; }
  .badge-pin { width: 30px; height: 30px; }
  .badge-pin svg { width: 16px; height: 16px; }
  .badge-title { font-size: 16px; }
}
.table-map-cap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--maroon);
  font-size: 14px;
  letter-spacing: 0.08em;
  justify-content: center;
}
.map-cap-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.table-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.table-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border: 1px solid rgba(184, 134, 47, 0.4);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  position: relative;
  transition: all .3s;
}
.table-card:hover {
  border-color: var(--maroon);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(90, 14, 18, 0.45);
}
.table-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 250, 235, 0.9), rgba(234, 217, 189, 0.5)),
    var(--ivory-deep);
  border-bottom: 1px solid rgba(184, 134, 47, 0.4);
  position: relative;
  overflow: hidden;
}
.table-card-logo::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184, 134, 47, 0.3);
  pointer-events: none;
}
.table-card-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, transparent 60%, rgba(196,22,28,0.04) 100%);
  pointer-events: none;
}
.table-card-logo svg {
  width: 78%;
  max-height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.table-card-body {
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.table-card-num {
  position: absolute;
  top: 12px; left: 14px;
  font-family: var(--display);
  font-size: 18px;
  color: var(--maroon);
  background: var(--ivory);
  border: 1px solid var(--gold);
  padding: 2px 10px;
  letter-spacing: 0.18em;
  z-index: 3;
}
.table-card-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--sindoor);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.table-card-body h4 {
  font-family: var(--display);
  font-size: 28px;
  color: var(--maroon);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.1;
}
.table-card-vibe {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 10px;
}
.table-card-order {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 14px;
}
.table-card-order span {
  font-family: var(--sans, var(--serif));
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maroon);
}
.table-card-cta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(184, 134, 47, 0.45);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--maroon);
  letter-spacing: 0.04em;
  opacity: 0.85;
  transition: opacity .3s, gap .3s;
}
.table-card:hover .table-card-cta { opacity: 1; gap: 14px; }
.table-card-cta .cta-pin {
  width: 18px; height: 18px;
  flex: none;
  color: var(--sindoor);
}
.table-card-cta .cta-arrow {
  margin-left: auto;
  font-family: var(--display);
  color: var(--sindoor);
  font-size: 18px;
  transition: transform .3s;
}
.table-card:hover .cta-arrow { transform: translateX(4px); }
.table-foot {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
}
.table-foot a { color: var(--sindoor); text-decoration-color: var(--gold); }

/* ───────── Song request (Spotify collaborative playlist) ───────── */
.song-section {
  background: var(--paper);
  padding: 72px 32px;
}
.song-card {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.song-card::before,
.song-card::after { display: none; }

.song-card-embed {
  border-radius: 12px;
  overflow: hidden;
  background: #181818;
  box-shadow: 0 12px 28px -12px rgba(0,0,0,0.4);
  min-height: 380px;
}
.song-card-embed iframe {
  display: block;
  border-radius: 12px;
}

.song-card-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.song-spotify {
  width: 44px;
  height: 44px;
  display: block;
}
.song-card-aside .song-card-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--sindoor);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.song-card-aside h3 {
  font-family: var(--display);
  font-size: 30px;
  color: var(--maroon);
  margin: 0;
  line-height: 1.15;
  font-weight: 400;
}
.song-card-aside p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.song-card-cta {
  margin-top: 4px;
}

@media (max-width: 900px) {
  .song-card { grid-template-columns: 1fr; padding: 0; gap: 28px; }
  .song-card-embed { min-height: 360px; }
}

.vacation {
  background: linear-gradient(180deg, var(--paper) 0%, var(--ivory-deep) 100%);
}
.vac-planner {
  background: var(--ivory);
  border: 1px solid var(--gold);
  padding: 40px;
  margin-bottom: 36px;
  position: relative;
  box-shadow: 0 24px 60px -30px rgba(90, 14, 18, 0.4);
}
.vac-planner::before, .vac-planner::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--maroon);
}
.vac-planner::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.vac-planner::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.vac-planner-head { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px dashed rgba(184, 134, 47, 0.4); }
.vac-planner-head h3 {
  font-family: var(--display);
  font-size: 30px;
  color: var(--maroon);
  font-weight: 400;
  margin-bottom: 6px;
}
.vac-planner-head p { color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.vac-form { display: flex; flex-direction: column; gap: 22px; }
.vac-field label {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 10px;
}
.vac-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.vac-row input[type=date] {
  background: var(--paper);
  border: 1px solid rgba(184, 134, 47, 0.4);
  padding: 12px 16px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
}
.vac-sep { color: var(--maroon); font-family: var(--display); }
.vac-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.vac-pill {
  background: var(--paper);
  border: 1px solid rgba(184, 134, 47, 0.4);
  padding: 10px 18px;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 999px;
  transition: all .2s;
}
.vac-pill:hover { border-color: var(--maroon); }
.vac-pill.selected { background: var(--maroon); color: var(--ivory); border-color: var(--maroon); }
.vac-actions { margin-top: 8px; }
.vac-results { margin-top: 28px; padding-top: 28px; border-top: 1px dashed rgba(184, 134, 47, 0.4); }
.vac-empty { text-align: center; padding: 24px; color: var(--ink-soft); font-style: italic; font-size: 14px; }
.vac-empty p { margin-top: 12px; }
.vac-trips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vac-trip {
  background: var(--paper);
  border: 1px solid rgba(184, 134, 47, 0.4);
  padding: 22px 22px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vac-trip-name {
  font-family: var(--display);
  font-size: 26px;
  color: var(--maroon);
  font-weight: 400;
}
.vac-trip-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--maroon);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.vac-trip-blurb { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.vac-trip-stats {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 10px;
}
.vac-stat {
  background: var(--ivory);
  border: 1px solid rgba(184, 134, 47, 0.3);
  padding: 4px 10px;
  font-size: 12px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
}
.vac-trip-itin {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(184, 134, 47, 0.4);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.vac-trip-itin div { padding: 3px 0; }
.vac-trip-itin strong { color: var(--maroon); font-family: var(--serif); font-style: normal; }

.vac-presets-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
  text-align: center;
  margin-bottom: 18px;
}
.vac-presets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.vac-preset {
  background: var(--ivory);
  border: 1px solid rgba(184, 134, 47, 0.4);
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  transition: all .25s;
  font-family: var(--serif);
}
.vac-preset:hover { background: var(--maroon); color: var(--ivory); border-color: var(--maroon); transform: translateY(-2px); }
.vac-preset:hover .vac-preset-meta { color: var(--saffron-soft); }
.vac-preset-name {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--maroon);
  margin-bottom: 4px;
  transition: color .25s;
}
.vac-preset:hover .vac-preset-name { color: var(--ivory); }
.vac-preset-meta {
  font-style: italic;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  transition: color .25s;
}

/* ───────── FAQ (legacy styles removed — active FAQ styled below) ───────── */

/* ───────── Footer ───────── */
.foot {
  background: var(--maroon);
  color: var(--ivory);
  padding: 80px 32px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.foot::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><g fill='none' stroke='%23E0B040' stroke-width='0.5' opacity='0.2'><circle cx='50' cy='50' r='30'/><circle cx='50' cy='50' r='20'/><circle cx='50' cy='50' r='10'/></g></svg>");
  background-size: 100px;
  opacity: 0.5;
}
.foot-mono {
  font-family: var(--display);
  font-size: 56px;
  margin-bottom: 12px;
  position: relative;
}
.foot-mono .amp { color: var(--saffron-soft); font-style: italic; font-family: var(--serif); font-weight: 400; }
.foot-bn { font-family: var(--bangla); color: var(--saffron-soft); font-size: 18px; margin-bottom: 28px; position: relative; }
.foot-meta {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(246, 235, 217, 0.75);
  font-size: 19px;
  letter-spacing: 0.16em;
  position: relative;
}

/* ───────── Reveal on scroll ───────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ───────── Responsive ───────── */
@media (max-width: 900px) {
  .nav { padding: 13px 18px; justify-content: center; }
  .nav.scrolled { padding: 11px 18px; }
  .nav-monogram { font-size: 25px; }
  .nav-burger {
    display: flex;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
  }
  .nav-links {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 84px 24px 26px;
    background: rgba(251, 243, 226, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 134, 47, 0.4);
    box-shadow: 0 20px 44px -18px rgba(90, 14, 18, 0.24);
    transform: translateY(-110%);
    transition: transform .42s cubic-bezier(.4, 0, .2, 1);
    z-index: -1;
    text-transform: none;
    letter-spacing: 0.06em;
    font-size: 16px;
  }
  .nav.open .nav-links { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 15px 2px;
    border-bottom: 1px dashed rgba(184, 134, 47, 0.28);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 16px;
    border-bottom: none !important;
  }
  .nav-cta a {
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 13px;
    border-radius: 2px;
  }
  section { padding: 80px 22px; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .day-card { grid-template-columns: 1fr; gap: 18px; padding: 28px 22px; }
  .day-marker { flex-direction: row; justify-content: flex-start; }
  .day-marker .alta-icon { width: 48px; height: 48px; }
  .day-marker .jr-day-icon { width: 72px; height: 84px; }
  .day-event { grid-template-columns: 90px 1fr; gap: 14px; }
  .stay-card { grid-template-columns: 1fr; }
  .stay-cover { min-height: 240px; }
  .stay-body { padding: 32px 24px; }
  .india-grid { grid-template-columns: 1fr 1fr; }
  .must-entry {
    padding: 26px 22px 22px;
  }
  .must-roman { font-size: 40px; }
  .must-meat h4 { font-size: 24px; }
  .table-grid { grid-template-columns: 1fr; }
  .table-card { grid-template-columns: 44px 1fr 32px; padding: 18px 18px 16px; }
  .table-card-num { font-size: 24px; }
  .table-card-body h4 { font-size: 22px; }
  .vac-trips, .vac-presets-grid { grid-template-columns: 1fr; }
  .weather-forecast { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .wf-day { padding: 10px 4px; }
  .dress-grid { grid-template-columns: 1fr 1fr; }
  .rsvp-card { padding: 36px 24px; }
  .field-row, .radio-row { grid-template-columns: 1fr; }
  .hero-corner { width: 140px; height: 140px; }
  .countdown { gap: 4px; }
  .cd-cell { min-width: 64px; padding: 10px 12px; }
  .cd-num { font-size: 24px; }
  .rsvp-step-pip .label { display: none; }
  .day-name { font-size: 34px; }
  .stay-name { font-size: 34px; }
}

/* ───────── Small phones ───────── */
@media (max-width: 600px) {
  html, body { font-size: 17px; }
  section { padding: 64px 18px; }

  /* Hero — eyebrow up top, names centered in the mandala, meta + countdown below */
  .hero { display: block; }
  .hero-content {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: 88px 24px 36px;
    box-sizing: border-box;
  }
  .hero-eyebrow-en {
    flex: 0 0 auto;
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-top: 6vh;
    margin-bottom: 0;
  }
  .hero-eyebrow-en .eb-dash { display: none; }
  .hero-headline {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-meta {
    flex: 0 0 auto;
    flex-direction: column;
    gap: 6px;
    font-size: 16px;
    margin-bottom: 26px;
  }
  .hero-meta .dot { display: none; }
  .hero-mandala {
    width: min(118vw, 500px);
    height: min(118vw, 500px);
    top: 50%;
  }
  @keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
  .hero-names { font-size: clamp(46px, 14vw, 72px); }
  .hero-names .amp { margin: -10px 0; }
  .hero-names .amp::before, .hero-names .amp::after { width: 38px; }
  .hero-names .amp::before { right: calc(100% + 12px); }
  .hero-names .amp::after { left: calc(100% + 12px); }
  .hero-corner { width: 92px; height: 92px; }
  .hero-corner.tl, .hero-corner.tr { top: 66px; }
  .countdown { flex: 0 0 auto; margin-top: 0; gap: 6px; }
  .cd-cell { min-width: 0; flex: 1 1 0; }

  /* Section headings */
  .section-title { font-size: clamp(34px, 9vw, 52px); }
  .section-subtitle { font-size: 17px; margin-bottom: 44px; }
  .alta-trail { display: none; }
  .day-name { font-size: 30px; }
  .stay-name { font-size: 30px; }
  .foot-mono { font-size: 44px; }
  .stay-simple { margin-top: 36px; gap: 18px; }
  .stay-simple-lead { font-size: 30px; }
  .stay-simple-body { font-size: 18px; }

  /* Card grids → horizontal swipe carousels (edge-to-edge) */
  .dress-grid,
  .india-grid,
  .table-grid,
  .contact-grid {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    margin-left: -18px;
    margin-right: -18px;
    padding: 6px 18px 18px;
    scroll-padding-left: 18px;
    scrollbar-width: thin;
    scrollbar-color: rgba(184, 134, 47, 0.5) transparent;
  }
  .dress-grid { margin-top: 40px; }
  .dress-grid::-webkit-scrollbar,
  .india-grid::-webkit-scrollbar,
  .table-grid::-webkit-scrollbar,
  .contact-grid::-webkit-scrollbar { height: 7px; }
  .dress-grid::-webkit-scrollbar-thumb,
  .india-grid::-webkit-scrollbar-thumb,
  .table-grid::-webkit-scrollbar-thumb,
  .contact-grid::-webkit-scrollbar-thumb { background: rgba(184, 134, 47, 0.45); border-radius: 999px; }
  .dress-card,
  .india-card,
  .table-card,
  .contact-card {
    flex: 0 0 80%;
    max-width: 320px;
    min-width: 0;
    scroll-snap-align: start;
  }

  /* Schedule day cards → horizontal swipe carousel, compact height */
  .schedule-list {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    margin-left: -18px;
    margin-right: -18px;
    padding: 6px 18px 18px;
    scroll-padding-left: 18px;
    scrollbar-width: thin;
    scrollbar-color: rgba(184, 134, 47, 0.5) transparent;
  }
  .schedule-list::-webkit-scrollbar { height: 7px; }
  .schedule-list::-webkit-scrollbar-thumb { background: rgba(184, 134, 47, 0.45); border-radius: 999px; }
  .day-card {
    position: relative;
    flex: 0 0 86%;
    max-width: 340px;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 20px 24px;
    scroll-snap-align: start;
  }
  /* Marker top-left: image with the numeral below it */
  .day-marker {
    position: absolute;
    top: 22px;
    left: 20px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 52px;
  }
  .day-marker .jr-day-icon { width: 48px; height: 56px; }
  .day-marker .day-number { font-size: 16px; }
  /* Add-to-calendar sits to the right of the image */
  .day-card .btn-cal {
    position: absolute;
    top: 30px;
    left: 86px;
    right: 20px;
    margin: 0;
    justify-content: center;
    padding: 9px 12px;
    font-size: 12px;
  }
  /* Body content (1, 2…) drops below the image + button band */
  .day-body { padding-top: 96px; }
  /* Tighter body */
  .day-tag { font-size: 12px; letter-spacing: 0.16em; margin-bottom: 3px; }
  .day-name { font-size: 30px; margin-bottom: 2px; }
  .day-gloss { font-size: 15px; line-height: 1.55; margin-bottom: 16px; }
  .day-events { gap: 12px; padding-top: 14px; }
  .day-event { grid-template-columns: 72px 1fr; gap: 10px; }
  .event-time { font-size: 15px; }
  .event-detail h4 { font-size: 16px; margin-bottom: 2px; }
  .event-detail p { font-size: 14px; line-height: 1.5; }

  /* Weather */
  .weather { padding: 24px 18px; }
  .weather-forecast { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .weather-temp { font-size: 52px; }
  .weather-icon { width: 48px; height: 48px; }

  /* Song */
  .song-section { padding: 56px 18px; }

  /* RSVP */
  .rsvp-card { padding: 28px 18px; }
  .rsvp-step h3 { font-size: 26px; }
  .choice-card { grid-template-columns: 22px 1fr; gap: 12px; }
  .choice-card .when { grid-column: 2; text-align: left; margin-top: 2px; }

  .btn { padding: 14px 26px; letter-spacing: 0.14em; }
}



/* ───────── Fits inspo CTA (Pinterest) ───────── */
.fits-inspo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  max-width: 680px;
  margin: 44px auto 0;
  padding: 14px 22px 14px 16px;
  background: var(--ivory);
  border: 1px solid rgba(184, 134, 47, 0.45);
  border-radius: 999px;
  position: relative;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px -18px rgba(90, 14, 18, 0.35);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.fits-inspo-wrap { text-align: center; }
.fits-inspo:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -20px rgba(90, 14, 18, 0.4);
  border-color: var(--gold);
}
.fits-inspo-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: #E60023;
  color: #fff;
  border-radius: 999px;
  flex: none;
}
.fits-inspo-icon svg { width: 20px; height: 20px; }
.fits-inspo-body { line-height: 1.25; }
.fits-inspo-eyebrow {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  color: var(--sindoor);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.fits-inspo-body h4 {
  font-family: var(--display);
  font-size: 19px;
  color: var(--maroon);
  margin: 0;
  line-height: 1.1;
  font-weight: 400;
}
.fits-inspo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding-left: 18px;
  border-left: 1px solid rgba(184, 134, 47, 0.4);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
  white-space: nowrap;
}
.fits-inspo-arrow { transition: transform .2s; }
.fits-inspo:hover .fits-inspo-arrow { transform: translateX(4px); }

@media (max-width: 640px) {
  .fits-inspo {
    width: 100%;
    border-radius: 14px;
    padding: 14px 16px;
    gap: 14px;
  }
  .fits-inspo-cta {
    padding-left: 12px;
    margin-left: 8px;
  }
  .fits-inspo-body h4 { font-size: 16px; }
}

/* ───────── FAQ ───────── */
.faq { background: var(--paper); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--ivory);
  border: 1px solid rgba(184, 134, 47, 0.5);
  position: relative;
  box-shadow: 0 14px 36px -26px rgba(90, 14, 18, 0.32);
  transition: border-color .25s, box-shadow .25s;
}
.faq-item::before, .faq-item::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.faq-item::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.faq-item::after  { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 32px;
  font-family: var(--display);
  font-size: 22px;
  color: var(--maroon);
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { flex: 1; }
.faq-toggle {
  position: relative;
  display: inline-block;
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 0;
  flex: none;
  transition: background .3s ease, border-color .3s ease;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.6px;
  border-radius: 2px;
  background: var(--sindoor);
  transition: transform .32s cubic-bezier(.4,0,.2,1), background .3s ease, opacity .3s ease;
}
.faq-toggle::before { transform: translate(-50%, -50%); }            /* horizontal bar */
.faq-toggle::after  { transform: translate(-50%, -50%) rotate(90deg); } /* vertical bar */
.faq-item summary:hover .faq-toggle { border-color: var(--sindoor); }
.faq-item[open] .faq-toggle {
  background: var(--sindoor);
  border-color: var(--sindoor);
}
.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after { background: var(--ivory); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0deg); } /* collapse to a minus */
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .42s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}
.faq-item[open] .faq-a {
  max-height: 520px;
  opacity: 1;
}
.faq-a p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  max-width: 62ch;
  padding: 0 32px 24px;
}
@media (max-width: 720px) {
  .faq-item summary { padding: 18px 22px; font-size: 18px; }
  .faq-a p { padding: 0 22px 20px; }
}

/* ───────── Contact (Points of Contact) ───────── */
.contact { background: var(--paper); padding-bottom: 100px; }
.contact-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--ivory);
  border: 1px solid rgba(184, 134, 47, 0.5);
  padding: 32px 32px 24px;
  position: relative;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 14px 36px -22px rgba(90, 14, 18, 0.3);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 22px;
}
.contact-card::before, .contact-card::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.contact-card::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.contact-card::after  { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -22px rgba(90, 14, 18, 0.4);
  border-color: var(--gold);
}
.contact-card-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--sindoor);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-card h3 {
  font-family: var(--display);
  font-size: 36px;
  color: var(--maroon);
  margin: 0 0 8px;
  font-weight: 400;
  line-height: 1;
}
.contact-card-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.contact-card-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed rgba(184, 134, 47, 0.4);
}
.contact-wa {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  flex: none;
}
.contact-wa svg { width: 22px; height: 22px; }
.contact-channel-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  line-height: 1.2;
}
.contact-channel-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--sindoor);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.contact-channel-number {
  font-family: var(--display);
  font-size: 18px;
  color: var(--maroon);
  letter-spacing: 0.02em;
}
.contact-channel-arrow {
  font-family: var(--serif);
  color: var(--sindoor);
  font-size: 22px;
  transition: transform .25s;
}
.contact-card:hover .contact-channel-arrow { transform: translateX(4px); }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card h3 { font-size: 28px; }
}

@media (max-width: 600px) {
  .contact-grid {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    margin-left: -18px;
    margin-right: -18px;
    padding: 6px 18px 18px;
    scroll-padding-left: 18px;
    scrollbar-width: thin;
    scrollbar-color: rgba(184, 134, 47, 0.5) transparent;
  }
  .contact-grid::-webkit-scrollbar { height: 7px; }
  .contact-grid::-webkit-scrollbar-thumb { background: rgba(184, 134, 47, 0.45); border-radius: 999px; }
  .contact-card {
    flex: 0 0 80%;
    max-width: 320px;
    min-width: 0;
    scroll-snap-align: start;
  }
}




/* ───────── Invitation (warm turn to guest) ───────── */
.invitation {
  background: var(--paper);
  padding: 100px 36px 96px;
  position: relative;
}
.invitation-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.invitation-illus {
  max-width: 360px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 6px 14px rgba(90, 14, 18, 0.18));
}
.invitation-illus svg { width: 100%; height: auto; display: block; }
.invitation-inner .section-title {
  margin-bottom: 24px;
  text-wrap: balance;
}
.invitation-body {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 auto 28px;
  text-wrap: pretty;
}
.invitation-coda {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--sindoor);
  letter-spacing: 0.02em;
  margin: 0;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.invitation-coda p { margin: 0; line-height: 1.4; }
.invitation-namaste {
  width: 96px;
  height: 96px;
  color: var(--sindoor);
  opacity: 0.95;
  margin-top: 6px;
}
.invitation-namaste svg { width: 100%; height: 100%; display: block; }

/* Bolder Bengali for the trilingual eyebrow */
.bn-strong {
  font-family: 'Baloo Da 2', 'Tiro Bangla', var(--bangla);
  font-weight: 800;
  font-synthesis: weight;
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(2px);
}
.eyebrow-tri .inv-line {
  display: inline;
  text-align: center;
  text-wrap: balance;
}

/* Mobile: drop the English part so the line stays clean and centred */
@media (max-width: 600px) {
  .eyebrow-tri .inv-en,
  .eyebrow-tri .inv-dot-en { display: none; }
}

@media (max-width: 720px) {
  .invitation { padding: 72px 22px 72px; }
  .invitation-illus { max-width: 280px; }
  .invitation-body { font-size: 17px; line-height: 1.65; }
}


/* ───────── RSVP CTA (maroon beat between Schedule and Song) ───────── */
.rsvp-cta {
  background: var(--maroon);
  color: var(--ivory);
  padding: 84px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.rsvp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23E0B040' stroke-width='0.6' opacity='0.22'><path d='M40 0 C58 12 58 28 40 40 C22 28 22 12 40 0 Z'/><path d='M40 80 C58 68 58 52 40 40 C22 52 22 68 40 80 Z'/><path d='M0 40 C12 22 28 22 40 40 C28 58 12 58 0 40 Z'/><path d='M80 40 C68 22 52 22 40 40 C52 58 68 58 80 40 Z'/><circle cx='40' cy='40' r='2.2' fill='%23E0B040' stroke='none'/><circle cx='40' cy='0' r='1.4' fill='%23E0B040' stroke='none'/><circle cx='0' cy='40' r='1.4' fill='%23E0B040' stroke='none'/></g></svg>");
  background-size: 80px;
  opacity: 0.5;
  pointer-events: none;
}
.rsvp-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
}
.rsvp-cta-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron-soft), transparent);
  opacity: 0.85;
}
.rsvp-cta-line {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--ivory);
  margin: 0;
  line-height: 1.2;
  text-wrap: balance;
}
.rsvp-cta-btn {
  background: var(--saffron-soft);
  color: var(--maroon);
  box-shadow: none;
}
.rsvp-cta-btn::before { border-color: rgba(122, 24, 28, 0.35); }
.rsvp-cta-btn:hover {
  background: var(--gold);
  color: var(--maroon);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.45);
}
.rsvp-cta-btn:hover::before { inset: 6px; border-color: rgba(122, 24, 28, 0.5); }

@media (max-width: 720px) {
  .rsvp-cta { padding: 64px 22px; }
  .rsvp-cta-line { font-size: 24px; }
}
