:root {
  --maroon: #6f1525;
  --red: #a72635;
  --gold: #c89b4b;
  --champagne: #e4c88b;
  --ivory: #fff8ec;
  --blush: #f4dfd8;
  --green: #244d3c;
  --ink: #271313;
  --night: #16090c;
  --shadow: 0 26px 70px rgba(55, 11, 19, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; background: var(--ivory); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(45deg, rgba(200, 155, 75, .08) 25%, transparent 25% 75%, rgba(200, 155, 75, .08) 75%),
    linear-gradient(45deg, rgba(167, 38, 53, .06) 25%, transparent 25% 75%, rgba(167, 38, 53, .06) 75%);
  background-position: 0 0, 18px 18px;
  background-size: 36px 36px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: .18;
  background-image: radial-gradient(rgba(39, 19, 19, .22) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(200, 155, 75, .16), transparent 22rem),
    linear-gradient(135deg, #21090f, var(--maroon));
  overflow: hidden;
}
.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(228, 200, 139, .42) 18px 20px),
    repeating-linear-gradient(-45deg, transparent 0 22px, rgba(255, 248, 236, .22) 22px 23px);
}
.gold-particles i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 18px var(--champagne);
  animation: floatGold 7s ease-in-out infinite;
}
.gold-particles i:nth-child(1) { left: 17%; top: 26%; }
.gold-particles i:nth-child(2) { left: 78%; top: 24%; animation-delay: -1s; }
.gold-particles i:nth-child(3) { left: 69%; top: 68%; animation-delay: -2s; }
.gold-particles i:nth-child(4) { left: 28%; top: 74%; animation-delay: -3s; }
.gold-particles i:nth-child(5) { left: 48%; top: 18%; animation-delay: -4s; }
.gold-particles i:nth-child(6) { left: 88%; top: 50%; animation-delay: -5s; }
.invitation-card {
  position: relative;
  width: min(390px, 82vw);
  aspect-ratio: 1.24;
  perspective: 900px;
}
.card-front, .card-flap {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(228, 200, 139, .68);
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 155, 75, .16), transparent 9rem),
    linear-gradient(135deg, #fff8ec, #f3ddbc);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
}
.card-front {
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  color: var(--maroon);
}
.card-front::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  background: linear-gradient(90deg, transparent, rgba(200, 155, 75, .08), transparent);
}
.card-front span, .ikon { font-family: "Noto Serif Gurmukhi", serif; color: var(--gold); font-size: clamp(2.8rem, 7vw, 5rem); }
.card-front p { position: relative; z-index: 2; margin: 0; font-family: "Cormorant Garamond", serif; font-size: clamp(1.4rem, 4vw, 2.4rem); }
.card-front strong { position: relative; z-index: 2; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; }
.card-flap {
  transform-origin: top;
  clip-path: polygon(0 0, 100% 0, 50% 58%);
  z-index: 3;
}
.wax-seal {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #c54b55, var(--maroon));
  color: var(--champagne);
  font-family: Cinzel, serif;
  font-weight: 700;
  box-shadow: inset -8px -10px 18px rgba(31, 3, 8, .28), 0 12px 34px rgba(0, 0, 0, .26);
}
.card-light {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: rgba(228, 200, 139, .65);
  filter: blur(44px);
  opacity: 0;
}

.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 28px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(228, 200, 139, .36);
  border-radius: 999px;
  background: rgba(255, 248, 236, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(62, 13, 22, .12);
}
.site-nav a:first-child { font-family: Cinzel, serif; font-weight: 700; color: var(--maroon); }
.site-nav div { display: flex; gap: 1rem; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--green); }

.section { position: relative; min-height: 100vh; padding: clamp(5.5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem); overflow: hidden; }
.eyebrow { margin: 0 0 .8rem; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: "Cormorant Garamond", serif; font-weight: 600; letter-spacing: 0; }
h1 { font-size: clamp(4.5rem, 12vw, 10rem); line-height: .78; }
h2 { font-size: clamp(2.7rem, 7vw, 6.6rem); line-height: .88; }
h3 { font-size: clamp(1.8rem, 3vw, 2.9rem); }
p { font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.65; }
.gurmukhi { font-family: "Noto Serif Gurmukhi", serif; }

.hero {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ivory);
  background: linear-gradient(135deg, #1b0a0d, var(--maroon));
}
.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .54;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) brightness(.72); transform: scale(1.08); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, transparent 0 22rem, rgba(30, 6, 12, .64) 43rem), linear-gradient(0deg, rgba(20, 5, 8, .72), transparent 45%);
}
.haveli-depth {
  position: absolute;
  inset: 8vh 8vw;
  z-index: 2;
  border: 1px solid rgba(228, 200, 139, .38);
  border-radius: 46% 46% 0 0;
  pointer-events: none;
}
.haveli-depth.back { transform: scale(.82) translateY(-20px); opacity: .48; }
.haveli-depth.front { inset: 13vh 14vw; border-width: 2px; box-shadow: inset 0 0 80px rgba(228, 200, 139, .1); }
.marigold-curtain {
  position: absolute;
  top: 0;
  z-index: 3;
  display: flex;
  gap: clamp(1rem, 4vw, 3rem);
}
.marigold-curtain i {
  display: block;
  width: 16px;
  height: clamp(170px, 34vh, 330px);
  background: repeating-radial-gradient(circle, #f2aa22 0 6px, #c56d21 7px 10px, transparent 11px 20px);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .2));
  transform-origin: top;
  animation: sway 4.5s ease-in-out infinite;
}
.marigold-curtain i:nth-child(2n) { animation-delay: -1.3s; height: 260px; }
.hero-copy { position: relative; z-index: 5; max-width: 980px; }
.hero-copy h1 span { display: block; }
.hero-copy h1 em { display: block; color: var(--champagne); font-style: normal; font-size: .46em; line-height: 1; }
.invite { margin: 1.2rem 0 .6rem; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; }
.hero-copy strong { color: var(--champagne); letter-spacing: .18em; text-transform: uppercase; }
.subline { color: #ffe8bf; }
.scroll-link { display: inline-block; margin-top: 1.2rem; color: var(--champagne); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; }

.petals { position: fixed; inset: 0; z-index: 5; pointer-events: none; overflow: hidden; }
.petals span {
  position: absolute;
  top: -8vh;
  width: 18px;
  height: 13px;
  border-radius: 80% 10% 80% 10%;
  background: rgba(228, 200, 139, .58);
  animation: petalFall 14s linear infinite;
}
.petals span:nth-child(1) { left: 12%; animation-delay: -2s; }
.petals span:nth-child(2) { left: 28%; animation-delay: -8s; }
.petals span:nth-child(3) { left: 48%; animation-delay: -4s; }
.petals span:nth-child(4) { left: 68%; animation-delay: -10s; }
.petals span:nth-child(5) { left: 84%; animation-delay: -6s; }
.petals span:nth-child(6) { left: 94%; animation-delay: -12s; }

.blessings {
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle at 50% 20%, rgba(228, 200, 139, .2), transparent 24rem), linear-gradient(180deg, var(--ivory), #fff1db);
}
.arch-light {
  position: absolute;
  width: min(680px, 90vw);
  height: min(640px, 82vh);
  border: 1px solid rgba(200, 155, 75, .26);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  box-shadow: inset 0 40px 100px rgba(228, 200, 139, .18);
}
.blessing-copy { position: relative; z-index: 2; width: min(850px, 100%); }
.blessing-copy h2 { color: var(--green); }

.section-title { width: min(880px, 100%); margin: 0 auto 3.5rem; text-align: center; }
.story { background: linear-gradient(180deg, #fff1db, var(--ivory)); }
.journal { width: min(1080px, 100%); margin: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.journal-page {
  min-height: 300px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: linear-gradient(135deg, #fffdf5, #f1dbbd);
  border: 1px solid rgba(200, 155, 75, .28);
  box-shadow: var(--shadow);
}
.journal-page span, .rules span { color: var(--gold); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.journal-page.photo { display: grid; grid-template-columns: .82fr 1fr; gap: 1.2rem; align-items: center; }
.journal-page img { width: 100%; height: 240px; object-fit: cover; border-radius: 46% 46% 8px 8px; }

.oye {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ivory);
  background: radial-gradient(circle at 50% 48%, rgba(228, 200, 139, .2), transparent 25rem), linear-gradient(135deg, var(--maroon), #2a0b11);
}
.oye h2 { font-family: Cinzel, serif; color: var(--champagne); }
.rhythm span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(70vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(228, 200, 139, .18);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.7);
}
.rhythm span:nth-child(2) { width: min(82vw, 760px); }
.rhythm span:nth-child(3) { width: min(94vw, 900px); }
.oye-copy { position: relative; z-index: 2; max-width: 760px; }

.events { background: var(--ivory); }
.event {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(1.4rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1rem, 8vw, 8rem);
  overflow: hidden;
  border-top: 1px solid rgba(200, 155, 75, .18);
}
.event::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(200, 155, 75, .24);
  pointer-events: none;
}
.event > div { position: relative; z-index: 2; width: min(760px, 100%); }
.event-copy { position: relative; z-index: 3; }
.event h2 { color: var(--maroon); }
.event span { display: block; margin: 1rem 0 1.4rem; color: var(--gold); font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.mehendi {
  background:
    radial-gradient(circle at 16% 36%, rgba(36, 77, 60, .2), transparent 22rem),
    radial-gradient(circle at 82% 22%, rgba(228, 200, 139, .22), transparent 20rem),
    #eef2dc;
}
.mehendi-decor {
  justify-self: center;
  min-height: 470px;
  display: grid;
  place-items: center;
}
.green-door {
  position: absolute;
  width: min(330px, 70vw);
  height: 440px;
  border-radius: 170px 170px 12px 12px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px 33%, rgba(255,255,255,.12) 33% calc(33% + 1px), transparent calc(33% + 1px) 66%, rgba(255,255,255,.12) 66% calc(66% + 1px), transparent calc(66% + 1px)),
    linear-gradient(135deg, #1f5a43, var(--green));
  border: 1px solid rgba(200, 155, 75, .42);
  box-shadow: var(--shadow), inset 0 0 0 12px rgba(255, 248, 236, .08);
}
.green-door::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(228, 200, 139, .34);
  border-radius: 150px 150px 8px 8px;
}
.marigold-loop {
  position: absolute;
  width: min(420px, 82vw);
  height: 190px;
  border-top: 10px dotted #e6a324;
  border-radius: 50% 50% 0 0;
  filter: drop-shadow(0 16px 20px rgba(118, 67, 24, .16));
  animation: garlandSwing 5s ease-in-out infinite;
}
.loop-one { top: 12%; }
.loop-two { top: 23%; width: min(330px, 70vw); animation-delay: -1.4s; }
.mehendi-line {
  position: absolute;
  width: min(260px, 58vw);
  aspect-ratio: 1;
  border: 1px solid rgba(36, 77, 60, .34);
  border-radius: 42% 58% 44% 56%;
  box-shadow:
    34px 18px 0 -28px var(--gold),
    -28px 52px 0 -23px var(--gold),
    64px -34px 0 -30px var(--gold);
}
.haldi {
  grid-template-columns: 1.05fr .95fr;
  background:
    radial-gradient(circle at 18% 30%, rgba(239, 177, 35, .42), transparent 21rem),
    radial-gradient(circle at 82% 72%, rgba(200, 155, 75, .22), transparent 22rem),
    #fff0c2;
}
.haldi-photo-stack {
  min-height: 500px;
  justify-self: center;
}
.haldi-photo-stack img {
  position: absolute;
  width: min(300px, 58vw);
  height: 390px;
  object-fit: cover;
  border: 8px solid rgba(255, 248, 236, .88);
  box-shadow: var(--shadow);
}
.haldi-photo-stack img:first-child {
  left: 3%;
  top: 8%;
  border-radius: 150px 150px 12px 12px;
  transform: rotate(-5deg);
}
.haldi-photo-stack img:nth-child(2) {
  right: 1%;
  bottom: 4%;
  width: min(250px, 50vw);
  height: 310px;
  border-radius: 18px 150px 18px 18px;
  transform: rotate(6deg);
}
.haldi-bowl {
  position: absolute;
  left: 44%;
  bottom: 2%;
  width: 150px;
  height: 86px;
  border-radius: 12px 12px 80px 80px;
  background: radial-gradient(circle at 50% 10%, #ffd95f 0 42%, transparent 43%), linear-gradient(135deg, #d3a142, #8b4c1e);
  box-shadow: 0 22px 44px rgba(134, 83, 20, .22);
}
.haldi .event-copy {
  justify-self: end;
}
.haldi .event-copy p:not(.eyebrow) {
  max-width: 540px;
  color: #6b3b22;
  font-weight: 600;
}
.sangeet {
  grid-template-columns: .92fr 1.08fr;
  color: var(--ivory);
  background:
    radial-gradient(circle at 68% 42%, rgba(228, 200, 139, .2), transparent 18rem),
    radial-gradient(circle at 18% 76%, rgba(167, 38, 53, .42), transparent 20rem),
    linear-gradient(135deg, #18080c, #3a0d16 48%, var(--maroon));
}
.sangeet::before {
  inset: 5.5%;
  border-color: rgba(228, 200, 139, .28);
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(228, 200, 139, .16) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 0 49.8%, rgba(228, 200, 139, .1) 50%, transparent 50.2%);
  background-size: 120px 120px;
}
.sangeet h2, .sangeet p { color: var(--ivory); }
.sangeet h2 { max-width: 780px; }
.sangeet-copy {
  position: relative;
  z-index: 4;
  width: min(720px, 100%);
}
.sangeet-copy p:not(.eyebrow) {
  max-width: 560px;
  font-weight: 600;
  color: #fff2d0;
}
.fairy-lights {
  position: absolute;
  z-index: 3;
  top: 9%;
  left: 8%;
  right: 8%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.fairy-lights::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 200, 139, .42), transparent);
}
.fairy-lights i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ffe3a0;
  box-shadow: 0 0 24px rgba(255, 227, 160, .88);
  animation: lightFlicker 2.4s ease-in-out infinite;
}
.fairy-lights i:nth-child(2n) { animation-delay: -1s; transform: translateY(22px); }
.sangeet-stage {
  position: relative;
  z-index: 3;
  justify-self: center;
  width: min(520px, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.sangeet-stage::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 200, 139, .24), rgba(167, 38, 53, .18) 42%, transparent 64%);
  filter: blur(6px);
}
.phulkari-strip {
  position: absolute;
  width: 86px;
  height: 78%;
  top: 0;
  border: 1px solid rgba(228, 200, 139, .26);
  background:
    linear-gradient(45deg, transparent 43%, rgba(228, 200, 139, .82) 44% 49%, transparent 50%),
    linear-gradient(-45deg, transparent 43%, rgba(244, 223, 216, .78) 44% 49%, transparent 50%),
    linear-gradient(180deg, rgba(111, 21, 37, .88), rgba(36, 77, 60, .74));
  background-size: 34px 34px, 34px 34px, 100% 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}
.strip-one { left: 2%; transform: rotate(-6deg); }
.strip-two { right: 2%; transform: rotate(6deg); }
.vinyl-disc {
  position: relative;
  width: min(330px, 62vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, #14090b 0 12px, #2b1117 13px 17px),
    radial-gradient(circle, var(--champagne) 0 22%, transparent 23%);
  box-shadow: 0 30px 85px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(228, 200, 139, .18);
}
.vinyl-disc span {
  width: 36%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  color: var(--maroon);
  font-family: Cinzel, serif;
  font-weight: 700;
  letter-spacing: .08em;
}
.dhol-pulse {
  position: absolute;
  width: min(440px, 76vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(228, 200, 139, .22);
  animation: pulseRing 2.8s ease-in-out infinite;
}
.jago {
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.8rem, 5vw, 5rem);
  color: var(--ivory);
  background:
    radial-gradient(circle at 28% 42%, rgba(228, 200, 139, .22), transparent 17rem),
    radial-gradient(circle at 88% 18%, rgba(167, 38, 53, .34), transparent 19rem),
    linear-gradient(135deg, #15080d, #321017 44%, var(--maroon));
}
.jago::before {
  inset: 5.5%;
  border-color: rgba(228, 200, 139, .26);
  background:
    radial-gradient(circle at 18% 86%, rgba(228, 200, 139, .1), transparent 18rem),
    linear-gradient(135deg, transparent 0 46%, rgba(228, 200, 139, .08) 47% 48%, transparent 49%);
  background-size: auto, 48px 48px;
}
.jago h2 { color: var(--champagne); }
.jago-copy p:not(.eyebrow) {
  max-width: 520px;
  color: #ffecc8;
  font-weight: 600;
}
.jago-scene {
  position: relative;
  z-index: 3;
  justify-self: center;
  width: min(560px, 86vw);
  min-height: 520px;
  display: grid;
  place-items: center;
}
.jago-bulbs {
  position: absolute;
  top: 7%;
  left: 2%;
  right: 2%;
  display: flex;
  justify-content: space-between;
  z-index: 4;
}
.jago-bulbs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 200, 139, .48), transparent);
}
.jago-bulbs i {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffe6a8;
  box-shadow: 0 0 26px rgba(255, 230, 168, .85);
  animation: lightFlicker 2.1s ease-in-out infinite;
}
.jago-bulbs i:nth-child(2n) { transform: translateY(26px); animation-delay: -1s; }
.jago-pot {
  position: relative;
  z-index: 5;
  width: min(250px, 58vw);
  aspect-ratio: .86;
  border-radius: 46% 46% 28% 28%;
  background:
    radial-gradient(circle at 50% 14%, #fff0b7 0 8%, transparent 9%),
    linear-gradient(90deg, transparent 0 45%, rgba(255, 246, 210, .38) 46% 48%, transparent 49% 100%),
    linear-gradient(135deg, #e0ab50, #9d5425 58%, #5a1e16);
  border: 1px solid rgba(228, 200, 139, .42);
  box-shadow:
    inset -22px -24px 34px rgba(43, 8, 10, .32),
    0 0 70px rgba(228, 200, 139, .2),
    0 30px 80px rgba(0, 0, 0, .28);
}
.jago-pot::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: -12%;
  height: 22%;
  border: 8px solid rgba(228, 200, 139, .72);
  border-bottom: 0;
  border-radius: 90px 90px 0 0;
}
.jago-pot::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 232, 180, .66), transparent);
  box-shadow: 0 46px 0 rgba(255, 232, 180, .24), 0 92px 0 rgba(255, 232, 180, .18);
}
.pot-lamp {
  position: absolute;
  top: 7%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8c9 0 22%, #f1b745 45%, transparent 65%);
  filter: blur(.2px);
  animation: lightFlicker 1.8s ease-in-out infinite;
}
.pot-lamp:nth-child(1) { left: 17%; }
.pot-lamp:nth-child(2) { left: 43%; top: 1%; animation-delay: -.6s; }
.pot-lamp:nth-child(3) { right: 17%; animation-delay: -1.1s; }
.folk-shadows {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19%;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  opacity: .62;
}
.folk-shadows span {
  width: 42px;
  height: 104px;
  border-radius: 999px 999px 18px 18px;
  background: linear-gradient(#2a0b10, #100407);
  transform-origin: bottom;
  animation: danceShadow 2.8s ease-in-out infinite;
}
.folk-shadows span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -26px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #140508;
  transform: translateX(-50%);
}
.folk-shadows span:nth-child(2) { height: 124px; animation-delay: -.8s; }
.folk-shadows span:nth-child(3) { animation-delay: -1.4s; }
.phulkari-floor {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 7%;
  height: 105px;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 43%, rgba(228, 200, 139, .8) 44% 49%, transparent 50%),
    linear-gradient(-45deg, transparent 43%, rgba(244, 223, 216, .48) 44% 49%, transparent 50%),
    radial-gradient(ellipse at center, rgba(228, 200, 139, .18), transparent 68%);
  background-size: 34px 34px, 34px 34px, 100% 100%;
  transform: perspective(420px) rotateX(62deg);
}
.anand { background: radial-gradient(circle at 50% 18%, rgba(228, 200, 139, .24), transparent 24rem), #fff8ec; text-align: center; justify-items: center; }
.reception { color: var(--ivory); background: var(--night); }
.reception img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .48; filter: saturate(.9) brightness(.68); }
.reception h2 { color: var(--ivory); }
.reception em { color: var(--champagne); font-style: normal; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.3rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.button.dark { background: var(--green); color: var(--ivory); }
.button.light { background: var(--ivory); color: var(--maroon); }

.countdown { display: grid; place-items: center; text-align: center; background: linear-gradient(180deg, var(--ivory), #f4dfd8); }
.time-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.7rem, 3vw, 2rem); width: min(930px, 100%); }
.time-row div { padding: 1.4rem .6rem; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.time-row strong { display: block; color: var(--maroon); font-family: Cinzel, serif; font-size: clamp(2.2rem, 6vw, 5rem); line-height: 1; }
.time-row span { color: var(--green); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; }

.family { background: #fff8ec; }
.family-grid { width: min(980px, 100%); margin: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.family-grid article, .rules article {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(200, 155, 75, .28);
  background: linear-gradient(135deg, #fffdf5, #f2dcc4);
  box-shadow: var(--shadow);
}
.family-grid p { color: var(--gold); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; }

.gallery { background: linear-gradient(180deg, #f4dfd8, #fff8ec); }
.masonry { width: min(1120px, 100%); margin: auto; display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 130px; gap: 1rem; }
.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-column: span 2; grid-row: span 4; border-radius: 180px 180px 8px 8px; }
.gallery-item.wide { grid-column: span 4; grid-row: span 2; }
.gallery-item.small { grid-column: span 2; grid-row: span 2; }
.gallery-item.medium { grid-column: span 3; grid-row: span 3; }

.survival { background: var(--ivory); }
.rules { width: min(1080px, 100%); margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.rules p { font-family: "Cormorant Garamond", serif; font-size: clamp(1.6rem, 2.6vw, 2.3rem); line-height: 1.08; color: var(--maroon); }

.venue {
  display: grid;
  place-items: center end;
  color: var(--ivory);
  background: var(--night);
}
.venue > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .46; filter: brightness(.72) saturate(.9); }
.venue::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18, 6, 8, .3), rgba(18, 6, 8, .82)); }
.venue-card {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(228, 200, 139, .32);
  background: rgba(46, 12, 18, .68);
  backdrop-filter: blur(16px);
}
.venue-card h2 { color: var(--ivory); }
.map-preview {
  position: relative;
  height: 160px;
  margin-top: 1.5rem;
  border: 1px solid rgba(228, 200, 139, .3);
  background:
    linear-gradient(35deg, transparent 0 42%, rgba(228, 200, 139, .28) 42% 44%, transparent 44%),
    linear-gradient(-20deg, transparent 0 46%, rgba(255, 248, 236, .18) 46% 48%, transparent 48%),
    rgba(255, 248, 236, .08);
}
.map-preview span {
  position: absolute;
  left: 54%;
  top: 48%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 12px rgba(228, 200, 139, .14);
}

.emotional {
  display: grid;
  place-items: end start;
  color: var(--ivory);
}
.emotional img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.68) saturate(.9); }
.emotional::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20, 5, 8, .84), transparent 60%); }
.emotional-copy { position: relative; z-index: 2; max-width: 760px; }
.emotional-copy h2 { color: var(--ivory); }
.emotional-copy strong { color: var(--champagne); }

.finale {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% 32%, rgba(228, 200, 139, .18), transparent 24rem),
    linear-gradient(135deg, #21090f, var(--maroon));
}
.border-draw {
  position: absolute;
  inset: clamp(1rem, 4vw, 3rem);
  border: 1px solid rgba(228, 200, 139, .5);
  transform: scaleX(0);
}
.finale-copy { position: relative; z-index: 2; }
.finale .gurmukhi { color: var(--champagne); font-size: clamp(1.6rem, 4vw, 3rem); }
.finale strong, .finale span, .finale small { display: block; margin-top: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--champagne); }

.music-choice {
  position: fixed;
  z-index: 25;
  right: clamp(12px, 2vw, 24px);
  bottom: 86px;
  width: min(292px, calc(100vw - 28px));
  max-width: calc(100vw - 28px);
  padding: 1rem;
  border: 1px solid rgba(200, 155, 75, .36);
  background: rgba(255, 248, 236, .92);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: .35s ease;
  overflow: hidden;
}
.music-choice.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.music-choice p {
  margin: 0 0 .8rem;
  font-size: .9rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.music-choice button {
  margin: .2rem;
  min-height: 38px;
  padding: 0 .8rem;
  border: 1px solid rgba(111, 21, 37, .24);
  border-radius: 999px;
  background: var(--maroon);
  color: var(--ivory);
  cursor: pointer;
}
.music-choice button:last-child { background: transparent; color: var(--maroon); }
.music-toggle {
  position: fixed;
  z-index: 24;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(200, 155, 75, .44);
  background: rgba(255, 248, 236, .9);
  color: var(--maroon);
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.music-toggle.is-muted { color: #88796d; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(13, 4, 6, .86);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-height: 86vh; max-width: min(960px, 96vw); object-fit: contain; box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(228, 200, 139, .45);
  background: var(--ivory);
  color: var(--maroon);
  font-size: 1.4rem;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(34px); }

@keyframes floatGold {
  0%, 100% { transform: translateY(0); opacity: .45; }
  50% { transform: translateY(-22px); opacity: 1; }
}
@keyframes sway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}
@keyframes petalFall {
  from { transform: translate3d(0, -10vh, 0) rotate(0deg); }
  to { transform: translate3d(4vw, 115vh, 0) rotate(240deg); }
}
@keyframes garlandSwing {
  0%, 100% { transform: rotate(-1.4deg); }
  50% { transform: rotate(1.4deg) translateY(6px); }
}
@keyframes lightFlicker {
  0%, 100% { opacity: .48; transform: translateY(0) scale(.92); }
  45% { opacity: 1; transform: translateY(4px) scale(1.08); }
  70% { opacity: .72; }
}
@keyframes pulseRing {
  0%, 100% { transform: scale(.86); opacity: .22; }
  50% { transform: scale(1.06); opacity: .54; }
}
@keyframes danceShadow {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-8px); }
}

@media (max-width: 820px) {
  .site-nav { top: 10px; padding: 10px 12px; }
  .site-nav div { display: none; }
  .section { min-height: auto; padding: 5.8rem 1rem; }
  .hero { min-height: 100svh; }
  h1 { font-size: clamp(4.3rem, 24vw, 7rem); }
  h2 { font-size: clamp(2.8rem, 16vw, 5rem); }
  .hero-photo img { object-position: 58% center; }
  .haveli-depth { inset: 11vh 5vw; }
  .haveli-depth.front { inset: 16vh 9vw; }
  .journal, .family-grid, .rules, .jago, .mehendi, .haldi { grid-template-columns: 1fr; }
  .journal-page.photo { grid-template-columns: 1fr; }
  .event { min-height: 78vh; padding: 4.6rem 1rem; }
  .mehendi-decor,
  .haldi-photo-stack {
    order: -1;
    width: 100%;
    min-height: 370px;
  }
  .green-door {
    width: min(250px, 70vw);
    height: 330px;
  }
  .marigold-loop {
    width: min(310px, 84vw);
    height: 140px;
  }
  .haldi-photo-stack img {
    width: min(230px, 58vw);
    height: 300px;
  }
  .haldi-photo-stack img:nth-child(2) {
    width: min(190px, 48vw);
    height: 240px;
  }
  .haldi-bowl {
    left: 42%;
    width: 116px;
    height: 68px;
  }
  .haldi .event-copy {
    justify-self: start;
  }
  .sangeet {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    min-height: 100svh;
    padding-top: 6rem;
  }
  .sangeet-stage {
    order: -1;
    width: min(360px, 86vw);
    margin: 0 auto;
  }
  .sangeet h2 { font-size: clamp(3rem, 17vw, 5.6rem); }
  .fairy-lights { top: 7%; left: 5%; right: 5%; }
  .jago {
    min-height: 100svh;
    padding-top: 5.8rem;
  }
  .jago-scene {
    order: -1;
    width: min(360px, 92vw);
    min-height: 390px;
    margin: 0 auto;
  }
  .jago-pot {
    width: min(185px, 50vw);
  }
  .jago-bulbs { top: 3%; }
  .folk-shadows {
    bottom: 17%;
    padding: 0 2%;
  }
  .folk-shadows span {
    width: 30px;
    height: 76px;
  }
  .folk-shadows span:nth-child(2) { height: 88px; }
  .phulkari-floor {
    left: 2%;
    right: 2%;
    bottom: 3%;
    height: 82px;
  }
  .music-choice {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 82px;
  }
  .time-row { grid-template-columns: repeat(2, 1fr); }
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.tall, .gallery-item.wide, .gallery-item.small, .gallery-item.medium { grid-column: span 1; grid-row: span 2; }
  .venue { place-items: end center; }
  .venue-card { width: 100%; }
  .petals span:nth-child(n+5) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
