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

:root {
  --maroon: #6b1a2a;
  --maroon-deep: #4a0f1a;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-bright: #f0d78c;
  --saffron: #e8842a;
  --marigold: #e8a020;
  --pink: #e8537a;
  --pink-light: #fce7ef;
  --pink-deep: #c23d62;
  --pink-glow: rgba(232, 83, 122, 0.35);
  --cream: #faf6f0;
  --cream-dark: #f0e8dc;
  --text: #2c1810;
  --text-muted: #6b5344;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;

  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background layers */
.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236b1a2a' fill-opacity='1'%3E%3Cpath d='M30 0l5 10 10 5-10 5-5 10-5-10-10-5 10-5zM0 30l5 10 10 5-10 5-5 10-5-10-10-5 10-5zM60 30l-5 10-10 5 10 5 5 10 5-10 10-5-10-5zM30 60l-5-10-10-5 10-5 5-10 5 10 10 5-10 5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.bg-glow--left {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, var(--saffron) 0%, transparent 70%);
}

.bg-glow--right {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, var(--maroon) 0%, transparent 70%);
}

/* Toran garland */
.toran {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.toran__svg {
  width: 100%;
  height: 70px;
  display: block;
}

.toran__rope {
  stroke: var(--gold);
  opacity: 0.6;
}

.toran__leaves ellipse {
  fill: #2d6a3e;
  opacity: 0.85;
}

.toran__flowers circle:nth-child(odd) {
  opacity: 0.95;
}

.lights {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 0 5%;
}

.light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px 2px rgba(240, 215, 140, 0.8);
  animation: twinkle 2s ease-in-out infinite;
}

.light:nth-child(odd) { animation-delay: 0.5s; }
.light:nth-child(3n) { animation-delay: 1s; background: #ffb347; box-shadow: 0 0 8px 2px rgba(255, 179, 71, 0.8); }
.light:nth-child(4n) { animation-delay: 1.5s; background: #ff6b6b; box-shadow: 0 0 8px 2px rgba(255, 107, 107, 0.6); }

@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Corner ornaments */
.corner {
  position: fixed;
  width: 100px;
  height: 100px;
  z-index: 5;
  pointer-events: none;
  opacity: 0.35;
}

.corner svg {
  width: 100%;
  height: 100%;
}

.corner svg path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.corner svg circle {
  fill: var(--gold);
}

.corner--tl { top: 60px; left: 12px; }
.corner--tr { top: 60px; right: 12px; }
.corner--bl { bottom: 12px; left: 12px; }
.corner--br { bottom: 12px; right: 12px; }

/* Floating petals & flowers */
.petals,
.flowers {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -30px;
  width: 14px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  opacity: 0.7;
  animation: fall linear infinite;
}

.petal--marigold {
  background: linear-gradient(135deg, #f5a623, #e8842a);
}

.petal--rose {
  background: linear-gradient(135deg, #d4567a, #8b2252);
  width: 12px;
  height: 16px;
}

.petal--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  width: 10px;
  height: 14px;
}

.petal--jasmine {
  background: linear-gradient(135deg, #fffef5, #f5e6c8);
  width: 11px;
  height: 15px;
  opacity: 0.85;
}

.petal--lotus {
  background: linear-gradient(135deg, #f8b4c8, #e879a8);
  width: 13px;
  height: 17px;
}

.petal--hibiscus {
  background: linear-gradient(135deg, #e53935, #b71c1c);
  width: 13px;
  height: 16px;
}

.petal--lavender {
  background: linear-gradient(135deg, #b39ddb, #7e57c2);
  width: 12px;
  height: 16px;
}

.petal--magenta {
  background: linear-gradient(135deg, #ec407a, #ad1457);
  width: 12px;
  height: 15px;
}

.petal--turmeric {
  background: linear-gradient(135deg, #ffd54f, #f9a825);
  width: 11px;
  height: 14px;
}

.petal--coral {
  background: linear-gradient(135deg, #ff8a65, #e64a19);
  width: 12px;
  height: 16px;
}

.petal--saffron {
  background: linear-gradient(135deg, #ff9800, #ef6c00);
  width: 13px;
  height: 17px;
}

/* Mini blooming flowers */
.flower-bloom {
  position: absolute;
  top: -40px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0.75;
  animation: fall-sway linear infinite;
}

.flower-bloom--marigold {
  background:
    radial-gradient(circle at 50% 18%, #ffb74d 32%, transparent 33%),
    radial-gradient(circle at 82% 38%, #ffb74d 32%, transparent 33%),
    radial-gradient(circle at 72% 78%, #ffb74d 32%, transparent 33%),
    radial-gradient(circle at 28% 78%, #ffb74d 32%, transparent 33%),
    radial-gradient(circle at 18% 38%, #ffb74d 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, #fff8dc 38%, transparent 39%);
}

.flower-bloom--rose {
  background:
    radial-gradient(circle at 50% 18%, #f06292 32%, transparent 33%),
    radial-gradient(circle at 82% 38%, #f06292 32%, transparent 33%),
    radial-gradient(circle at 72% 78%, #f06292 32%, transparent 33%),
    radial-gradient(circle at 28% 78%, #f06292 32%, transparent 33%),
    radial-gradient(circle at 18% 38%, #f06292 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, #fce4ec 38%, transparent 39%);
  width: 22px;
  height: 22px;
}

.flower-bloom--lotus {
  background:
    radial-gradient(circle at 50% 18%, #f48fb1 32%, transparent 33%),
    radial-gradient(circle at 82% 38%, #f48fb1 32%, transparent 33%),
    radial-gradient(circle at 72% 78%, #f48fb1 32%, transparent 33%),
    radial-gradient(circle at 28% 78%, #f48fb1 32%, transparent 33%),
    radial-gradient(circle at 18% 38%, #f48fb1 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, #fff0f5 38%, transparent 39%);
}

.flower-bloom--hibiscus {
  background:
    radial-gradient(circle at 50% 18%, #ef5350 32%, transparent 33%),
    radial-gradient(circle at 82% 38%, #ef5350 32%, transparent 33%),
    radial-gradient(circle at 72% 78%, #ef5350 32%, transparent 33%),
    radial-gradient(circle at 28% 78%, #ef5350 32%, transparent 33%),
    radial-gradient(circle at 18% 38%, #ef5350 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, #ffeb3b 38%, transparent 39%);
}

.flower-bloom--jasmine {
  background:
    radial-gradient(circle at 50% 18%, #fffde7 32%, transparent 33%),
    radial-gradient(circle at 82% 38%, #fffde7 32%, transparent 33%),
    radial-gradient(circle at 72% 78%, #fffde7 32%, transparent 33%),
    radial-gradient(circle at 28% 78%, #fffde7 32%, transparent 33%),
    radial-gradient(circle at 18% 38%, #fffde7 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, #fff9c4 38%, transparent 39%);
  opacity: 0.9;
}

.flower-bloom--lavender {
  background:
    radial-gradient(circle at 50% 18%, #9575cd 32%, transparent 33%),
    radial-gradient(circle at 82% 38%, #9575cd 32%, transparent 33%),
    radial-gradient(circle at 72% 78%, #9575cd 32%, transparent 33%),
    radial-gradient(circle at 28% 78%, #9575cd 32%, transparent 33%),
    radial-gradient(circle at 18% 38%, #9575cd 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, #ede7f6 38%, transparent 39%);
}

.flower-bloom--turmeric {
  background:
    radial-gradient(circle at 50% 18%, #ffca28 32%, transparent 33%),
    radial-gradient(circle at 82% 38%, #ffca28 32%, transparent 33%),
    radial-gradient(circle at 72% 78%, #ffca28 32%, transparent 33%),
    radial-gradient(circle at 28% 78%, #ffca28 32%, transparent 33%),
    radial-gradient(circle at 18% 38%, #ffca28 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, #fff176 38%, transparent 39%);
}

.flower-bloom--magenta {
  background:
    radial-gradient(circle at 50% 18%, #e91e63 32%, transparent 33%),
    radial-gradient(circle at 82% 38%, #e91e63 32%, transparent 33%),
    radial-gradient(circle at 72% 78%, #e91e63 32%, transparent 33%),
    radial-gradient(circle at 28% 78%, #e91e63 32%, transparent 33%),
    radial-gradient(circle at 18% 38%, #e91e63 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, #f8bbd0 38%, transparent 39%);
}

.flower-bloom--coral {
  background:
    radial-gradient(circle at 50% 18%, #ff7043 32%, transparent 33%),
    radial-gradient(circle at 82% 38%, #ff7043 32%, transparent 33%),
    radial-gradient(circle at 72% 78%, #ff7043 32%, transparent 33%),
    radial-gradient(circle at 28% 78%, #ff7043 32%, transparent 33%),
    radial-gradient(circle at 18% 38%, #ff7043 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, #ffccbc 38%, transparent 39%);
}

@keyframes fall {
  0% {
    transform: translateY(-30px) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.7; }
  90% { opacity: 0.5; }
  100% {
    transform: translateY(105vh) rotate(720deg) translateX(80px);
    opacity: 0;
  }
}

@keyframes fall-drift-left {
  0% {
    transform: translateY(-30px) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.7; }
  50% { transform: translateY(50vh) rotate(360deg) translateX(-60px); }
  90% { opacity: 0.5; }
  100% {
    transform: translateY(105vh) rotate(720deg) translateX(-100px);
    opacity: 0;
  }
}

@keyframes fall-drift-right {
  0% {
    transform: translateY(-30px) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.7; }
  50% { transform: translateY(50vh) rotate(-360deg) translateX(60px); }
  90% { opacity: 0.5; }
  100% {
    transform: translateY(105vh) rotate(-720deg) translateX(120px);
    opacity: 0;
  }
}

@keyframes fall-sway {
  0% {
    transform: translateY(-40px) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.75; }
  25% { transform: translateY(25vh) rotate(90deg) translateX(30px); }
  50% { transform: translateY(50vh) rotate(180deg) translateX(-30px); }
  75% { transform: translateY(75vh) rotate(270deg) translateX(40px); }
  90% { opacity: 0.5; }
  100% {
    transform: translateY(105vh) rotate(360deg) translateX(-20px);
    opacity: 0;
  }
}

/* Page layout */
.page {
  position: relative;
  z-index: 3;
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.page-frame {
  position: relative;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 20px 60px rgba(74, 15, 26, 0.08);
}

.frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.7;
}

.frame-corner--tl { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.frame-corner--tr { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.frame-corner--bl { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; }
.frame-corner--br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

/* Header */
.header {
  padding: 0 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

/* Call to action buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold) 0%, #b8923a 50%, var(--maroon) 100%);
  background-size: 200% auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  box-shadow:
    0 4px 16px rgba(201, 168, 76, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform var(--transition), box-shadow var(--transition), background-position 0.4s ease;
  white-space: nowrap;
}

.cta-btn__orn {
  font-size: 0.55rem;
  opacity: 0.9;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background-position: right center;
  box-shadow:
    0 8px 28px rgba(107, 26, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn--header {
  font-size: 0.72rem;
  padding: 0.6rem 1.1rem;
  letter-spacing: 0.05em;
}

.cta-btn--primary {
  font-size: 0.9rem;
  padding: 1rem 2rem;
}

.cta-btn--large {
  font-size: 0.95rem;
  padding: 1.1rem 2.5rem;
}

.cta-btn--secondary {
  color: var(--maroon-deep);
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(74, 15, 26, 0.1);
}

.cta-btn--secondary:hover {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.cta-btn--google-subscribe,
.subscribe-google-btn.notify-form__btn--google {
  color: var(--white);
  text-transform: none;
  letter-spacing: 0.02em;
  background:
    linear-gradient(135deg, #f8b4c8 0%, var(--pink) 52%, var(--pink-deep) 100%);
  background-size: 200% auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 4px 18px var(--pink-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  gap: 0.55rem;
  position: relative;
  overflow: hidden;
}

.cta-btn--google-subscribe::before,
.subscribe-google-btn.notify-form__btn--google::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 88% 50%, rgba(255, 192, 203, 0.35) 0%, transparent 38%);
  pointer-events: none;
}

.cta-btn--google-subscribe:hover,
.subscribe-google-btn.notify-form__btn--google:hover {
  background-position: right center;
  box-shadow:
    0 8px 28px rgba(194, 61, 98, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.cta-btn__google-icon,
.notify-form__google-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 1px 4px rgba(74, 15, 26, 0.12);
}

.cta-btn__google-icon {
  width: 20px;
  height: 20px;
}

.notify-form__google-icon {
  width: 22px;
  height: 22px;
}

.cta-btn--google-subscribe:disabled,
.subscribe-google-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.action-buttons-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.action-buttons-row > .subscribe-google-btn {
  flex-shrink: 0;
  align-self: flex-start;
}

.list-wedding-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.list-wedding-action__caption {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.list-wedding-action__caption a {
  color: inherit;
  text-decoration: none;
}

.list-wedding-action__caption a:hover {
  color: var(--maroon);
  text-decoration: underline;
}

.header__actions .list-wedding-action__caption {
  font-size: 0.65rem;
}

.hero__actions {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.header__actions .action-buttons-row {
  gap: 0.5rem;
}

/* Host wedding CTA section */
.host-cta {
  margin: 1rem 0 1.25rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(250, 246, 240, 0.95) 100%);
  border: 2px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 12px 40px rgba(74, 15, 26, 0.08);
  position: relative;
  overflow: hidden;
}

.host-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236b1a2a' fill-opacity='0.04'%3E%3Cpath d='M30 0l5 10 10 5-10 5-5 10-5-10-10-5 10-5z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.host-cta__inner {
  position: relative;
  z-index: 1;
}

.host-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.host-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 0.75rem;
}

.host-cta__text {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.host-cta__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.85;
}

/* Book tickets CTA section */
.book-cta {
  margin: 1rem 0 2rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(107, 26, 42, 0.92) 0%, rgba(74, 15, 26, 0.96) 100%);
  border: 2px solid rgba(201, 168, 76, 0.45);
  box-shadow: 0 16px 48px rgba(74, 15, 26, 0.2);
  position: relative;
  overflow: hidden;
}

.book-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.06'%3E%3Cpath d='M30 0l5 10 10 5-10 5-5 10-5-10-10-5 10-5z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.book-cta__inner {
  position: relative;
  z-index: 1;
}

.book-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.book-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.book-cta__text {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.book-cta__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
}

.book-cta__subscribe {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.book-cta__subscribe-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.85rem;
}

.notify-form--on-dark .notify-form__message--success {
  color: #a8e6c3;
}

.notify-form--on-dark .notify-form__message--error {
  color: #ffb4b4;
}

.notify-form__btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8923a 100%);
  color: var(--maroon-deep);
  border-color: rgba(255, 255, 255, 0.2);
}

.notify-form__btn--gold .notify-form__btn-orn {
  color: var(--maroon);
}

.notify-form__btn--gold:hover {
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
}

.logo__ornament {
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.7;
}

.logo__mark {
  font-size: 1.5rem;
  color: var(--gold);
  animation: pulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.5));
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  background: linear-gradient(135deg, var(--maroon) 30%, var(--gold) 50%, var(--maroon) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Dividers */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem auto;
  max-width: 320px;
}

.divider--small {
  max-width: 200px;
  margin: 1rem auto;
}

.divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.divider__icon {
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.8;
}

/* Hero */
.hero {
  flex: 1;
  text-align: center;
  padding: 0 0 2rem;
  position: relative;
}

.hero-banner {
  position: relative;
  margin: 0 -0.5rem 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.55);
  box-shadow:
    0 16px 48px rgba(74, 15, 26, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(232, 132, 42, 0.12) 0%,
    transparent 45%,
    rgba(107, 26, 42, 0.18) 100%
  );
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(74, 15, 26, 0.08) 0%,
    rgba(74, 15, 26, 0.25) 50%,
    rgba(74, 15, 26, 0.82) 100%
  );
  pointer-events: none;
}

.hero-banner__img {
  display: block;
  width: 100%;
  height: clamp(260px, 46vw, 420px);
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(1.08) contrast(1.04) brightness(0.97);
}

.hero-banner__caption {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

/* Photo gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.35);
  aspect-ratio: 3 / 4;
  box-shadow: 0 8px 28px rgba(74, 15, 26, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(232, 132, 42, 0.08) 0%,
    transparent 50%,
    rgba(107, 26, 42, 0.15) 100%
  );
  pointer-events: none;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.gallery__item:hover::before {
  opacity: 0.5;
}

.gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(74, 15, 26, 0.18);
  border-color: rgba(201, 168, 76, 0.6);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(1.1) contrast(1.03);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.05) brightness(1.02);
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2.5rem 1rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white);
  background: linear-gradient(transparent, rgba(74, 15, 26, 0.92));
  text-align: center;
  letter-spacing: 0.02em;
}

/* Featured wedding gallery */
.wedding-gallery {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}

.wedding-gallery__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.wedding-gallery__badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon-deep);
  background: rgba(232, 83, 122, 0.1);
  border: 1px solid rgba(232, 83, 122, 0.35);
  border-radius: 999px;
}

.wedding-gallery__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 0.65rem;
}

.wedding-gallery__subtitle {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.wedding-gallery__credit {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.wedding-gallery__credit a {
  color: var(--maroon);
  text-decoration: none;
}

.wedding-gallery__credit a:hover {
  text-decoration: underline;
}

.wedding-gallery__disclaimer {
  max-width: 560px;
  margin: 0 auto 1.25rem;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
}

.wedding-gallery__disclaimer strong {
  color: var(--maroon-deep);
  font-weight: 500;
}

/* Pre-wedding video */
.video-section {
  text-align: center;
  padding: 0.5rem 0 2rem;
}

.video-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.video-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 0.65rem;
}

.video-section__subtitle {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.video-frame {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.45);
  box-shadow:
    0 20px 50px rgba(74, 15, 26, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  background: var(--maroon-deep);
  aspect-ratio: 16 / 9;
}

.video-frame__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold-bright);
  border-style: solid;
  z-index: 2;
  opacity: 0.85;
  pointer-events: none;
}

.video-frame__corner--tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.video-frame__corner--tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.video-frame__corner--bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.video-frame__corner--br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.video-frame__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-section__credit {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: #a89888;
}

.video-section__credit a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  transition: color var(--transition), border-color var(--transition);
}

.video-section__credit a:hover {
  color: var(--maroon);
  border-color: var(--gold);
}

.mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  opacity: 0.07;
  pointer-events: none;
  animation: mandala-spin 120s linear infinite;
}

.mandala svg {
  width: 100%;
  height: 100%;
}

.mandala circle,
.mandala path {
  stroke: var(--maroon);
  fill: var(--maroon);
}

@keyframes mandala-spin {
  from { transform: translate(-50%, -55%) rotate(0deg); }
  to { transform: translate(-50%, -55%) rotate(360deg); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  padding: 0.45rem 1.4rem;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.hero__eyebrow-orn {
  font-size: 0.55rem;
  opacity: 0.8;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--maroon-deep);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.hero__title em {
  font-style: italic;
  color: var(--maroon);
  position: relative;
}

.hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__subtitle {
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* Diya row */
.diya-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.diya {
  font-size: 1.5rem;
  animation: flicker 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(232, 132, 42, 0.6));
}

.diya:nth-child(2) { animation-delay: 1s; }
.diya:nth-child(3) { animation-delay: 2s; }

@keyframes flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  30% { opacity: 0.85; transform: scale(1.05); }
  60% { opacity: 0.95; transform: scale(0.98); }
}

/* Notify form */
.notify-form {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.notify-form__label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.notify-form__row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.notify-form__input {
  flex: 1;
  min-width: 200px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.notify-form__input::placeholder {
  color: #b8a99a;
}

.notify-form__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

.notify-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.notify-form__btn-orn {
  font-size: 0.6rem;
  color: var(--gold-light);
}

.notify-form__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 26, 42, 0.35);
}

.notify-form__btn:active {
  transform: translateY(0);
}

.notify-form__btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.notify-form__btn--google {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  gap: 0.65rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  justify-content: center;
}

.notify-form__btn--google-dark {
  background:
    linear-gradient(135deg, #f8b4c8 0%, var(--pink) 52%, var(--pink-deep) 100%);
}

.notify-form__message {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  min-height: 1.25rem;
  transition: color var(--transition);
}

.notify-form__message--success {
  color: #2d6a4f;
}

.notify-form__message--error {
  color: var(--maroon);
}

.notify-form__hint {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.book-cta .notify-form__hint {
  color: rgba(255, 255, 255, 0.65);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 0 2rem;
}

.feature {
  text-align: center;
  padding: 0 0 1.75rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.25);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 15, 26, 0.12);
}

.feature__corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}

.feature__corner--tl { top: 10px; left: 10px; border-width: 1.5px 0 0 1.5px; }
.feature__corner--br { bottom: 10px; right: 10px; border-width: 0 1.5px 1.5px 0; }

.feature__image {
  position: relative;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.feature__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(255, 255, 255, 0.9) 100%);
  pointer-events: none;
}

.feature__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(1.08) contrast(1.03);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.feature:hover .feature__image img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.05);
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.5rem;
  padding: 0 1.25rem;
}

.feature__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 0 1.25rem;
}

/* Footer */
.footer {
  text-align: center;
  padding-top: 0.5rem;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer__link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--maroon);
}

.footer__donation {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer__upi {
  font-weight: 500;
  color: var(--maroon-deep);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.footer__upi:hover {
  color: var(--maroon);
  text-decoration: underline;
}

.footer__dot {
  font-size: 0.5rem;
  color: var(--gold);
  opacity: 0.6;
}

.footer__copy {
  font-size: 0.75rem;
  color: #a89888;
}

/* Responsive */
@media (max-width: 600px) {
  .page {
    padding: 4.5rem 0.75rem 2rem;
  }

  .page-frame {
    padding: 1.75rem 1.25rem;
  }

  .corner {
    width: 60px;
    height: 60px;
    opacity: 0.2;
  }

  .diya-row {
    gap: 1.5rem;
  }

  .notify-form__row {
    flex-direction: column;
  }

  .notify-form__btn {
    width: 100%;
    justify-content: center;
  }

  .header {
    flex-direction: column;
    text-align: center;
  }

  .header__actions {
    justify-content: center;
    width: 100%;
  }

  .action-buttons-row {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .action-buttons-row .cta-btn,
  .action-buttons-row > .subscribe-google-btn {
    width: 100%;
    max-width: 320px;
  }

  .cta-btn--header {
    flex: 1;
    min-width: 140px;
    max-width: 220px;
  }

  .logo__ornament {
    display: none;
  }

  .hero-banner {
    margin: 0 -0.25rem 1.5rem;
  }

  .hero-banner__caption {
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
    width: 90%;
  }

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

  .gallery__item--wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .gallery__item:not(.gallery__item--wide) {
    aspect-ratio: 16 / 10;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .mandala {
    animation: none;
  }

  .petals,
  .flowers {
    display: none;
  }
}
