:root {
  --night: #0c0710;
  --wine: #2a0f18;
  --crimson: #8b1e2d;
  --flame: #c43c28;
  --gold: #e8c872;
  --gold-soft: #f4e4b4;
  --emerald: #1f6b4a;
  --jade: #7dcea0;
  --ivory: #f7efe4;
  --muted: rgba(247, 239, 228, 0.72);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(196, 60, 40, 0.22), transparent 55%),
    radial-gradient(900px 600px at 100% 20%, rgba(31, 107, 74, 0.2), transparent 50%),
    linear-gradient(180deg, var(--night) 0%, var(--wine) 48%, #12080d 100%);
  overflow-x: hidden;
}

#petals {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.glow {
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}

.glow-a {
  background: #c43c28;
  top: -10vw;
  left: -8vw;
}

.glow-b {
  background: #1f6b4a;
  right: -12vw;
  bottom: 10vh;
  animation-delay: -7s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4vw, 3vh, 0) scale(1.12);
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 7vw;
  backdrop-filter: blur(16px);
  background: rgba(12, 7, 16, 0.45);
  border-bottom: 1px solid rgba(232, 200, 114, 0.12);
}

.logo {
  font-family: "Great Vibes", cursive;
  font-size: 2.1rem;
  color: var(--gold);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 1.4rem;
}

nav a {
  color: var(--gold-soft);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-family: "Cinzel", serif;
}

nav a:hover {
  color: var(--ivory);
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8vh 8vw 12vh;
}

.eyebrow {
  font-family: "Cinzel", serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--jade);
  margin: 0 0 1rem;
}

h1 {
  font-family: "Great Vibes", cursive;
  font-size: clamp(4.2rem, 12vw, 8.5rem);
  font-weight: 400;
  margin: 0;
  background: linear-gradient(180deg, #fff6d8 0%, var(--gold) 45%, #c43c28 140%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleGlow 4.5s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(232, 200, 114, 0.1));
    transform: translateY(0);
  }
  50% {
    filter: drop-shadow(0 12px 28px rgba(232, 200, 114, 0.35));
    transform: translateY(-6px);
  }
}

.subtitle {
  font-family: "Cinzel", serif;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  margin: 0.2rem 0 1.6rem;
  color: var(--gold-soft);
}

.lede {
  max-width: 40rem;
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--muted);
}

.btn {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-family: "Cinzel", serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  transition: 0.3s ease;
}

.btn:hover {
  background: var(--gold);
  color: var(--night);
}

section {
  padding: 7rem 8vw;
}

h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 1.2rem;
  color: var(--gold-soft);
}

.copy p {
  font-size: 1.22rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 38rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.frame {
  margin: 0;
  position: relative;
}

.frame img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(232, 200, 114, 0.25);
}

.tilt img {
  animation: sway 8s ease-in-out infinite;
}

@keyframes sway {
  0%,
  100% {
    transform: rotate(-1.2deg) scale(1);
  }
  50% {
    transform: rotate(1.4deg) scale(1.02);
  }
}

figcaption {
  margin-top: 0.8rem;
  font-style: italic;
  color: var(--gold);
}

.lehenga {
  background: linear-gradient(180deg, transparent, rgba(196, 60, 40, 0.16), transparent);
}

.lehenga-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.4rem;
  align-items: start;
}

.lehenga-grid .wide {
  grid-column: 1 / -1;
}

.lehenga-grid .wide img {
  max-height: 720px;
  object-position: center 18%;
}

.quotes {
  text-align: center;
}

.quote-stage {
  min-height: 10rem;
  max-width: 46rem;
  margin: 0 auto;
}

blockquote {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-style: italic;
  line-height: 1.55;
  margin: 0;
  color: var(--ivory);
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-from {
  color: var(--gold);
  font-family: "Great Vibes", cursive;
  font-size: 1.8rem;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.quote-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(247, 239, 228, 0.28);
  cursor: pointer;
}

.quote-dots button.active {
  background: var(--gold);
  transform: scale(1.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.gallery-grid img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(232, 200, 114, 0.2);
  transition: transform 0.7s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
}

footer {
  text-align: center;
  padding: 3rem 8vw 5rem;
  border-top: 1px solid rgba(232, 200, 114, 0.12);
}

.script {
  font-family: "Great Vibes", cursive;
  font-size: 2.4rem;
  color: var(--gold);
  margin: 0;
}

@media (max-width: 860px) {
  nav {
    display: none;
  }

  .split,
  .lehenga-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 280px;
  }

  section {
    padding: 4.5rem 6vw;
  }
}
