:root {
  --saffron: #ff8500;
  --saffron-deep: #f5347f; /* rani pink — primary gradients run orange → pink */
  --pink: #f5347f;
  --purple: #7028c9;
  --teal: #00bfa6;
  --gold: #ffc400;
  --maroon: #8c1144;
  --cream: #fff4e6;
  --ink: #33121f;
  --green: #00a86b;
  --radius: 18px;
  --shadow: 0 18px 44px -20px rgba(150, 20, 90, 0.45);
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: "Mukta", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(rgba(245, 52, 127, 0.05) 1.2px, transparent 1.4px),
    radial-gradient(circle at 8% 4%, rgba(255, 196, 0, 0.22) 0%, transparent 38%),
    radial-gradient(circle at 96% 12%, rgba(245, 52, 127, 0.14) 0%, transparent 34%),
    radial-gradient(circle at 80% 88%, rgba(112, 40, 201, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 4% 70%, rgba(0, 191, 166, 0.1) 0%, transparent 35%),
    var(--cream);
  background-size: 26px 26px, auto, auto, auto, auto, auto;
  line-height: 1.6;
  overflow-x: hidden;
}

section[id] { scroll-margin-top: 96px; }

h1, h2, h3 { font-family: "Baloo 2", system-ui, sans-serif; line-height: 1.1; }

/* ============ TORAN (hanging garland) ============ */
.toran { position: sticky; top: 0; z-index: 60; }
.toran__band {
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--saffron) 0 28px,
    var(--gold) 28px 56px,
    var(--green) 56px 84px,
    var(--maroon) 84px 112px
  );
}
.toran__leaves {
  display: flex;
  justify-content: space-around;
  height: 0;
}
.toran__leaves span {
  width: 14px;
  height: 20px;
  margin-top: -2px;
  background: linear-gradient(180deg, var(--green), #14693a);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform-origin: top center;
  animation: leafSway 3.2s ease-in-out infinite;
}
.toran__leaves span:nth-child(even) {
  background: linear-gradient(180deg, var(--gold), var(--saffron));
  animation-delay: -1.6s;
}
.toran__leaves span:nth-child(3n) { animation-delay: -0.8s; }
@keyframes leafSway {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(6deg); }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 5vw, 56px);
  background: rgba(255, 247, 236, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 31, 15, 0.12);
}
.nav__brand { font-family: "Baloo 2"; font-weight: 800; font-size: 1.8rem; color: var(--maroon); line-height: 1; }
.nav__links { display: flex; align-items: center; gap: clamp(10px, 2vw, 26px); }
.nav__links a { text-decoration: none; color: var(--ink); font-weight: 600; }
.nav__links a:hover { color: var(--saffron-deep); }
.nav__cta {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
@media (max-width: 620px) { .nav__links a:not(.nav__cta) { display: none; } }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 5vw, 60px) clamp(28px, 4vw, 52px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.75);
  opacity: 0.32;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 244, 230, 0.55) 0%, rgba(255, 244, 230, 0.38) 70%, var(--cream) 100%),
    linear-gradient(100deg, rgba(255, 244, 230, 0.4) 0%, rgba(255, 244, 230, 0.15) 50%, transparent 100%);
}
/* a soft glow behind the text keeps it readable over the livelier footage */
.hero__text {
  text-shadow:
    0 0 6px rgba(255, 248, 238, 0.95),
    0 1px 14px rgba(255, 248, 238, 0.95),
    0 0 36px rgba(255, 248, 238, 0.85),
    0 0 64px rgba(255, 248, 238, 0.7);
}
@media (max-width: 860px) {
  /* stacked layout puts text over the footage's center — needs a stronger veil */
  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(255, 244, 230, 0.06) 0%, rgba(255, 244, 230, 0.22) 55%, var(--cream) 100%);
  }
}
/* tone the pulsing gold glow down so it doesn't haze the footage */
.hero__glow { opacity: 0.2; }
.hero__inner, .hero__glow, .hero__petals, .hero > .pshape { z-index: 1; }
.hero__glow, .hero__petals, .hero > .pshape { position: absolute; }
.hero__petals { inset: 0; }
.hero__glow {
  position: absolute;
  inset: -20% 0 auto 0;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 207, 64, 0.5), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.hero__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
}
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__art { order: -1; max-width: 320px; margin: 0 auto; }
  .hero__meta { justify-content: center; }
}
.hero__eyebrow {
  font-family: "Baloo 2";
  color: var(--saffron-deep);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.hero__title { font-size: clamp(2.3rem, 5.6vw, 4.2rem); font-weight: 800; color: var(--maroon); position: relative; }
.hero__title::before {
  /* asymmetric skewed highlight slab behind the title */
  content: "";
  position: absolute;
  left: -4%; top: 8%;
  width: 62%; height: 38%;
  background: linear-gradient(100deg, rgba(255, 196, 0, 0.4), rgba(245, 52, 127, 0.18));
  transform: skew(-12deg) rotate(-2deg);
  border-radius: 10px;
  z-index: -1;
}
.hero__title span { color: inherit; }
.hero__with {
  display: block;
  font-size: 0.34em;
  font-weight: 700;
  color: var(--saffron-deep);
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.hero__sub { margin: 18px 0 24px; max-width: 520px; font-size: 1.15rem; color: #5a3a1e; }
.hero__mantra {
  font-size: 1.12rem;
  color: #7a3b16;
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 28px;
}
@media (max-width: 860px) { .hero__sub { margin-inline: auto; } }
.hero__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.chip {
  background: #fff;
  border: 2px solid var(--saffron);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 18px -14px rgba(150, 20, 90, 0.6);
}
.hero__meta .chip:nth-child(2) { border-color: var(--pink); transform: rotate(-1.5deg); }
.hero__meta .chip:nth-child(3) { border-color: var(--teal); transform: rotate(1.5deg); }
.hero__meta .chip:nth-child(1) { transform: rotate(0.8deg); }

/* --- Ganesha photo art --- */
.hero__art--photo {
  position: relative;
  transform: rotate(2.5deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ganesha-frame {
  position: relative;
  width: min(420px, 92vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* No glow behind the figure — clean transparent blending */
.ganesha-frame::before { display: none; }

/* Spinning rings hidden — designed for circular crop only */
.ganesha-frame__ring { display: none; }

/* Transparent PNG — white background removed at build time, no blend tricks needed */
.ganesha-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
  position: relative;
  z-index: 1;
  box-shadow: none;
  filter: none;
}
@keyframes ganeshaBreathe {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.07); }
}

/* Corner sparkles */
.ganesha-frame__sparkles { position: absolute; inset: 0; pointer-events: none; }
.gf-spark {
  position: absolute;
  font-size: 1.1rem;
  line-height: 1;
  animation: sparkTwinkle 2.4s ease-in-out infinite;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 6px rgba(255, 196, 0, 0.9));
}
.gf-spark--1 { top: 6%; left: 10%;  animation-delay: 0s; }
.gf-spark--2 { top: 8%; right: 8%;  animation-delay: -0.6s; }
.gf-spark--3 { bottom: 8%; left: 8%; animation-delay: -1.2s; }
.gf-spark--4 { bottom: 6%; right: 10%; animation-delay: -1.8s; }
@keyframes sparkTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.2); }
}

.ganesha-caption {
  font-family: "Baloo 2";
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--gold), var(--saffron), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 8px rgba(255, 196, 0, 0.7));
  text-align: center;
  animation: omFloat 5s ease-in-out infinite;
}
@keyframes omFloat {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(-4px); opacity: 1; }
}
@keyframes ganeshaBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.spark { animation: sparkTwinkle 2.4s ease-in-out infinite; transform-origin: center; }
.spark.s2 { animation-delay: -0.8s; }
.spark.s3 { animation-delay: -1.6s; }

/* --- Falling marigold petals --- */
.hero__petals { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.petal {
  position: absolute;
  top: -8%;
  animation: petalFall linear infinite;
  opacity: 0.85;
  will-change: transform;
}
@keyframes petalFall {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(115vh) rotate(340deg); }
}

.spark { animation: sparkTwinkle 2.4s ease-in-out infinite; transform-origin: center; }
.spark.s2 { animation-delay: -0.8s; }
.spark.s3 { animation-delay: -1.6s; }
@keyframes sparkTwinkle {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  cursor: pointer;
  font-family: "Baloo 2";
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn--big {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: #fff;
  font-size: 1.1rem;
  padding: 14px 34px;
  box-shadow: var(--shadow);
}
.btn--big:hover { transform: translateY(-2px); }
.btn--pulse { animation: btnPulse 2.6s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 18px 40px -20px rgba(122, 31, 15, 0.45), 0 0 0 0 rgba(255, 122, 0, 0.45); }
  50% { box-shadow: 0 18px 40px -20px rgba(122, 31, 15, 0.45), 0 0 0 14px rgba(255, 122, 0, 0); }
}
.btn--ghost {
  background: transparent;
  color: var(--saffron-deep);
  border: 2px solid var(--saffron);
  padding: 9px 18px;
  font-size: 0.95rem;
}
.btn--ghost:hover { background: var(--saffron); color: #fff; }

/* ============ SECTIONS ============ */
.section { position: relative; padding: clamp(28px, 4.5vw, 52px) clamp(20px, 6vw, 80px); max-width: 1100px; margin: 0 auto; }
.section--alt {
  background:
    linear-gradient(115deg, rgba(245, 52, 127, 0.07), rgba(112, 40, 201, 0.06) 55%, rgba(255, 196, 0, 0.12)),
    radial-gradient(ellipse 120% 100% at 30% 0%, rgba(255, 200, 120, 0.35), transparent 70%);
  max-width: none;
  clip-path: polygon(0 0, 100% 2.5%, 100% 100%, 0 97.5%); /* slanted top & bottom edges */
  padding-block: clamp(40px, 6vw, 68px);
}
.section--alt > * { max-width: 1100px; margin-inline: auto; }
.section__title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--maroon); text-align: center; }
.section__title::after {
  content: "✦ ❁ ✦";
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.6em;
  padding-left: 0.6em; /* balance the letter-spacing */
  background: linear-gradient(90deg, var(--saffron), var(--pink), var(--purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Ornamental divider between sections */
.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
  padding: 6px 24px;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--saffron));
}
.divider::after { background: linear-gradient(90deg, var(--saffron), var(--gold), transparent); }
.divider span {
  color: var(--saffron-deep);
  font-size: 1.3rem;
  animation: dividerSpin 14s linear infinite;
}
@keyframes dividerSpin { to { transform: rotate(360deg); } }
.section__lead { text-align: center; max-width: 680px; margin: 14px auto 0; font-size: 1.12rem; color: #5a3a1e; }
#about .section__lead { margin-top: 18px; }

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.years .reveal:nth-child(2) { transition-delay: 0.1s; }
.years .reveal:nth-child(3) { transition-delay: 0.2s; }
.years .reveal:nth-child(4) { transition-delay: 0.3s; }
.calendar .reveal:nth-child(2) { transition-delay: 0.15s; }

/* ============ PAST YEARS ============ */
.years {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}
.year-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 207, 64, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
              opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.year-card:hover { transform: translateY(-8px); box-shadow: 0 26px 48px -22px rgba(122, 31, 15, 0.55); }
.year-card__art { position: relative; }
.year-card__art svg { display: block; width: 100%; height: 130px; }
.year-card__badge {
  position: absolute;
  bottom: -14px; left: 20px;
  background: linear-gradient(135deg, var(--maroon), var(--saffron-deep));
  color: #fff;
  font-family: "Baloo 2"; font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 8px 16px -8px rgba(43, 22, 5, 0.6);
  rotate: -3deg;
}
.year-card:nth-child(3n+1) .year-card__badge { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.year-card:nth-child(3n+2) .year-card__badge { background: linear-gradient(135deg, var(--saffron), var(--pink)); rotate: 2.5deg; }
.year-card:nth-child(3n) .year-card__badge { background: linear-gradient(135deg, var(--teal), var(--purple)); }

/* asymmetric stagger — cards lean and offset in alternation once revealed */
@media (min-width: 700px) {
  .years .year-card.is-visible:nth-child(odd) { transform: rotate(-1.4deg) translateY(14px); }
  .years .year-card.is-visible:nth-child(even) { transform: rotate(1.2deg) translateY(-10px); }
  .years .year-card.is-visible:hover { transform: translateY(-8px) rotate(0deg); }
}
.year-card__body { padding: 26px 22px 22px; }
.year-card h3 { margin: 0 0 8px; color: var(--saffron-deep); font-size: 1.3rem; }
.year-card p { color: #5a3a1e; }

.year-card__art--photo img {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.year-card__art .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(122, 31, 15, 0.78);
  color: #ffcf40;
  font-size: 1.1rem;
  padding-left: 4px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(255, 207, 64, 0.5);
  transition: transform 0.2s ease, background 0.2s ease;
  animation: playPulse 2.6s ease-in-out infinite;
}
.year-card:hover .play { transform: scale(1.16); background: var(--saffron-deep); }
@keyframes playPulse {
  0%, 100% { box-shadow: 0 8px 20px -6px rgba(0,0,0,.5), 0 0 0 0 rgba(255, 207, 64, 0.55); }
  50% { box-shadow: 0 8px 20px -6px rgba(0,0,0,.5), 0 0 0 12px rgba(255, 207, 64, 0); }
}

/* card-art micro animations */
.snake { stroke-dasharray: 240; stroke-dashoffset: 0; animation: slither 5s ease-in-out infinite; }
@keyframes slither {
  0%, 100% { stroke-dashoffset: 0; }
  50% { stroke-dashoffset: 16; }
}
.flag { transform-origin: 152px 30px; animation: flagWave 3s ease-in-out infinite; }
@keyframes flagWave {
  0%, 100% { transform: skewY(0deg) scaleX(1); }
  50% { transform: skewY(2.5deg) scaleX(0.96); }
}
.star { animation: twinkle 2.2s ease-in-out infinite alternate; }
.star.s2 { animation-delay: -0.7s; }
.star.s3 { animation-delay: -1.4s; }
@keyframes twinkle {
  from { opacity: 0.25; }
  to { opacity: 1; }
}
.wing { transform-origin: 150px 38px; animation: flutter 0.5s ease-in-out infinite alternate; }
.wing--r { animation-delay: -0.25s; }
@keyframes flutter {
  from { transform: rotate(-4deg); }
  to { transform: rotate(6deg); }
}
.trishul { animation: trishulGlow 3.4s ease-in-out infinite; }
@keyframes trishulGlow {
  0%, 100% { filter: drop-shadow(0 0 1px rgba(255, 215, 106, 0.4)); }
  50% { filter: drop-shadow(0 0 7px rgba(255, 215, 106, 0.95)); }
}

/* ============ CALENDAR ============ */
.calendar {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.cal-card {
  display: flex;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(122, 31, 15, 0.1);
}
.cal-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 22px;
  background: linear-gradient(160deg, var(--saffron), var(--pink));
  color: #fff;
  min-width: 120px;
}
.cal-card:last-child .cal-card__date { background: linear-gradient(160deg, var(--pink), var(--purple)); }

/* asymmetric lean — the two evenings tilt toward each other */
@media (min-width: 700px) {
  .calendar .cal-card.is-visible:first-child { transform: rotate(-1.4deg); }
  .calendar .cal-card.is-visible:last-child { transform: rotate(1.4deg) translateY(14px); }
  .calendar .cal-card.is-visible:hover { transform: rotate(0deg) translateY(-4px); }
}
.cal-card__month { font-weight: 700; letter-spacing: 0.15em; }
.cal-card__day { font-family: "Baloo 2"; font-weight: 800; font-size: 3.2rem; line-height: 1; }
.cal-card__weekday { font-size: 0.9rem; opacity: 0.9; }
.cal-card__body { padding: 22px 24px; }
.cal-card__body h3 { color: var(--maroon); font-size: 1.4rem; }
.cal-card__time { color: var(--saffron-deep); font-weight: 600; margin: 4px 0 12px; }
.cal-card__body ul { list-style: none; margin-bottom: 16px; }
.cal-card__body li { padding-left: 22px; position: relative; }
.cal-card__body li::before { content: "🪔"; position: absolute; left: 0; font-size: 0.85rem; }

/* ============ RSVP FORM ============ */
.rsvp {
  margin-top: 26px;
  max-width: 720px;
  margin-inline: auto;
  background: #fff;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 207, 64, 0.5);
  display: grid;
  gap: 18px;
}
.rsvp__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) { .rsvp__row { grid-template-columns: 1fr; } }
.rsvp label { display: grid; gap: 6px; font-weight: 600; color: var(--maroon); }
.rsvp input, .rsvp textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid #e7d3b5;
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.rsvp input:focus, .rsvp textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.18);
}
.rsvp__choices { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { cursor: pointer; }
.pill input { position: absolute; opacity: 0; }
.pill span {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid #e7d3b5;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  transition: all 0.15s ease;
}
.pill input:checked + span {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: #fff;
  border-color: transparent;
}
.rsvp button { justify-self: start; }
.rsvp__status { font-weight: 600; min-height: 1.4em; }
.rsvp__status.is-ok { color: var(--green); }
.rsvp__status.is-err { color: #c1121f; }
.rsvp__after {
  border-top: 1.5px dashed #e7d3b5;
  padding-top: 16px;
  animation: fadeUp 0.5s ease both;
}
.rsvp__after p { font-weight: 600; color: var(--maroon); margin-bottom: 10px; }
.rsvp__after-btns { display: flex; gap: 10px; flex-wrap: wrap; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } }

/* ============ HERO ACTIONS ============ */
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media (max-width: 860px) { .hero__actions { justify-content: center; } }
.btn--watch { font-size: 1rem; padding: 12px 24px; }

/* ============ VIDEO LIGHTBOX ============ */
.vmodal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; }
.vmodal[hidden] { display: none; }
.vmodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(43, 22, 5, 0.82);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}
.vmodal__box {
  position: relative;
  width: min(92vw, 960px);
  animation: popIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.vmodal__frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  border: 3px solid var(--gold);
  background: #000;
}
.vmodal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vmodal__close {
  position: absolute;
  top: -16px; right: -16px;
  z-index: 1;
  width: 40px; height: 40px;
  border: none; border-radius: 50%;
  background: var(--gold);
  color: var(--maroon);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.6);
  transition: transform 0.15s ease;
}
.vmodal__close:hover { transform: scale(1.12) rotate(90deg); }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes popIn { from { opacity: 0; transform: scale(0.92) translateY(16px); } }

/* ============ FOOTER ============ */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(120deg, #4a0a2e, var(--maroon) 45%, #5b1a9e);
  color: var(--gold);
  font-family: "Baloo 2";
  font-weight: 600;
}
.footer__small { color: #f3d9b5; font-weight: 400; font-size: 0.9rem; margin-top: 6px; }
.footer__link { color: var(--gold); text-decoration: none; font-weight: 600; }
.footer__link:hover { color: #fff; }

/* ============ RSVP WIZARD ============ */
.cal-card__actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn--sm { font-size: 1rem; padding: 11px 24px; }

.wizard {
  margin-top: 26px;
  max-width: 640px;
  margin-inline: auto;
  background: #fff;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 196, 0, 0.55);
  overflow: hidden;
}
.wizard__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}
.wizard__dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #efdcc3;
  transition: all 0.25s ease;
}
.wizard__dots span.active {
  background: linear-gradient(135deg, var(--saffron), var(--pink));
  transform: scale(1.25);
}
.wizard__dots span.done { background: var(--teal); }

.wstep { display: none; }
.wstep.active { display: grid; gap: 16px; animation: stepIn 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.wstep.active.from-back { animation-name: stepInBack; }
@keyframes stepIn { from { opacity: 0; transform: translateX(46px); } }
@keyframes stepInBack { from { opacity: 0; transform: translateX(-46px); } }

.wstep h3 { color: var(--maroon); font-size: 1.4rem; }
.wstep label { display: grid; gap: 6px; font-weight: 600; color: var(--maroon); }
.wstep input, .wstep select, .wstep textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid #efd8b8;
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wstep input:focus, .wstep select:focus, .wstep textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255, 133, 0, 0.18);
}
.wizard__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .wizard__row { grid-template-columns: 1fr; } }

.wizard__dates { display: grid; gap: 14px; }
.datebtn {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  background: var(--cream);
  border: 2px solid #efd8b8;
  border-radius: 14px;
  padding: 14px 18px;
  font-family: inherit;
  transition: all 0.18s ease;
}
.datebtn:hover { border-color: var(--pink); transform: translateY(-2px); box-shadow: var(--shadow); }
.datebtn.selected { border-color: transparent; background: linear-gradient(120deg, var(--saffron), var(--pink)); color: #fff; }
.datebtn.selected .datebtn__day { background: rgba(255, 255, 255, 0.22); color: #fff; }
.datebtn.selected small { color: #ffe2ef; }
.datebtn__day {
  font-family: "Baloo 2";
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.05;
  text-align: center;
  background: linear-gradient(160deg, var(--saffron), var(--pink));
  color: #fff;
  border-radius: 12px;
  padding: 9px 13px;
}
.datebtn__day strong { font-size: 1.5rem; }
.datebtn__info { display: grid; }
.datebtn__info strong { font-family: "Baloo 2"; font-size: 1.15rem; color: inherit; }
.datebtn__info small { color: #8a5a3a; font-weight: 600; }

.wizard__start { text-align: center; display: grid; gap: 10px; justify-items: center; padding: 14px 0; }
.wizard__start-icon { font-size: 2.6rem; animation: ganeshaBob 3.5s ease-in-out infinite; }
.wizard__start p { color: #6b4226; max-width: 420px; }
.wizard__start .btn { margin-top: 6px; }

.cal-card--selected {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  box-shadow: 0 26px 50px -20px rgba(245, 52, 127, 0.55);
}

.wizard__dup-intro { color: #6b4226; }
.wizard__dup-card {
  background: var(--cream);
  border: 2px dashed var(--saffron);
  border-radius: 14px;
  padding: 14px 18px;
  color: #5a3a1e;
  line-height: 1.7;
}
.wizard__dup-card strong { color: var(--maroon); }
.wizard__dup-when { color: #9b7c58; font-size: 0.9rem; }

.wizard__picked {
  font-weight: 700;
  color: var(--pink);
  font-size: 0.95rem;
}
.wizard__picked a { color: var(--purple); }
.wizard__err { color: #c1121f; font-weight: 600; min-height: 1.3em; margin: -6px 0; }
.wizard__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 6px; flex-wrap: wrap; }
.wizard__nav--center { justify-content: center; }

.wizard__done { text-align: center; display: grid; gap: 10px; justify-items: center; padding: 12px 0; }
.wizard__done-icon { font-size: 3rem; animation: ganeshaBob 3s ease-in-out infinite; }
.wizard__done h3 { font-size: 1.6rem; }
.wizard__done p { color: #6b4226; max-width: 420px; }

/* ============ LOCATION / MAP / PARKING ============ */
.location {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 800px) { .location { grid-template-columns: 1fr; } }
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
  min-height: 340px;
  transform: rotate(-1deg);
}
.rsvp-anchor { scroll-margin-top: 96px; }

.location__map { position: relative; display: flex; flex-direction: column; }
.location__tabs { display: flex; background: var(--maroon); }
.mtab {
  flex: 1;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #f3d9b5;
  font-family: "Baloo 2";
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.mtab.active { background: linear-gradient(120deg, var(--saffron), var(--pink)); color: #fff; }
.mtab:not(.active):hover { color: #fff; }
.location__map iframe { width: 100%; flex: 1; min-height: 320px; border: 0; display: block; }
.location__map-link {
  display: block;
  text-align: center;
  background: linear-gradient(120deg, var(--maroon), var(--pink));
  color: #fff;
  font-family: "Baloo 2";
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 9px;
}
.location__map-link:hover { background: linear-gradient(120deg, var(--pink), var(--purple)); }
.location__info {
  display: grid;
  gap: 16px;
  align-content: start;
}
.location__block {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 196, 0, 0.55);
}
.location__info .location__block:nth-child(2) { transform: rotate(0.8deg); }
.location__info .location__block:nth-child(3) { transform: rotate(-0.6deg); }
.location__block h3 { color: var(--maroon); font-size: 1.15rem; margin-bottom: 8px; }
.location__block p { color: #5a3a1e; }
.location__block .btn { margin-top: 12px; }
.location__contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed #efd8b8;
}
.location__contact:last-child { border-bottom: none; }
.location__contact a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.location__contact a:hover { color: var(--purple); }
.location__nums { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.walink {
  font-size: 0.85rem;
  background: #e7f8ef;
  border: 1.5px solid #25d366;
  color: #128c4b !important;
  padding: 3px 10px;
  border-radius: 999px;
}
.walink:hover { background: #25d366; color: #fff !important; }
.location__parking { list-style: none; display: grid; gap: 8px; }
.location__parking li { padding-left: 24px; position: relative; color: #5a3a1e; }
.location__parking li::before { content: "🪔"; position: absolute; left: 0; font-size: 0.85rem; }

/* ============ PAST-YEARS TEASER (home) ============ */
.past-teaser {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--maroon), var(--pink) 55%, var(--purple));
  border-radius: var(--radius);
  padding: 20px 26px;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
              opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.past-teaser.is-visible { transform: rotate(-0.8deg); }
.past-teaser.is-visible:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 26px 50px -20px rgba(112, 40, 201, 0.6); }
.past-teaser__thumbs { display: flex; align-items: center; }
.past-teaser__thumbs img {
  width: 62px; height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin-left: -16px;
}
.past-teaser__thumbs img:first-child { margin-left: 0; }
.past-teaser__more {
  width: 62px; height: 62px;
  border-radius: 50%;
  margin-left: -16px;
  background: rgba(255, 255, 255, 0.18);
  border: 3px solid var(--gold);
  display: grid; place-items: center;
  font-family: "Baloo 2"; font-weight: 800;
  color: var(--gold);
}
.past-teaser__text { flex: 1; min-width: 220px; }
.past-teaser__text h2 { font-size: 1.35rem; color: var(--gold); }
.past-teaser__text p { color: #ffe2ef; font-size: 0.95rem; }
.past-teaser__cta {
  font-family: "Baloo 2"; font-weight: 700;
  background: #fff; color: var(--pink);
  padding: 11px 24px; border-radius: 999px;
  white-space: nowrap;
}

/* ============ PAST PAGE ============ */
.section--past { padding-top: clamp(40px, 6vw, 64px); }
.section--past .years { margin-top: 48px; }
.past-cta {
  text-align: center;
  margin-top: 64px;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.past-cta p { font-weight: 600; color: var(--maroon); font-size: 1.15rem; }

/* ============ PARALLAX SHAPES ============ */
.pshape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.pshape--ring {
  width: 90px; height: 90px;
  border: 4px solid var(--pink);
  border-radius: 50%;
  opacity: 0.3;
}
.pshape--ring.sm { width: 48px; height: 48px; border-color: var(--teal); }
.pshape--dots {
  width: 120px; height: 120px;
  background-image: radial-gradient(var(--purple) 2.4px, transparent 2.6px);
  background-size: 20px 20px;
  opacity: 0.3;
}
.pshape--blob {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.5), rgba(245, 52, 127, 0.35));
  border-radius: 62% 38% 56% 44% / 48% 60% 40% 52%;
  opacity: 0.45;
  filter: blur(1px);
}
.pshape--tri {
  width: 0; height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-bottom: 44px solid var(--gold);
  opacity: 0.4;
  rotate: 18deg;
}
.pshape--squig {
  width: 90px; height: 24px;
  background: repeating-linear-gradient(105deg, var(--teal) 0 5px, transparent 5px 14px);
  opacity: 0.35;
  rotate: -12deg;
}
/* keep shapes behind real content */
.section > *:not(.pshape), .hero__inner { position: relative; z-index: 1; }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .petal { display: none; }
  .pshape { transform: none !important; }
  .hero__bg video { display: none; }
}
