:root {
  --brown-950: #130905;
  --brown-925: #1b0e08;
  --brown-900: #24140d;
  --brown-850: #2d1b13;
  --brown-800: #3b2519;
  --brown-700: #60432f;
  --brown-600: #8b684e;
  --caramel: #b8895f;
  --gold: #d9b772;
  --gold-soft: #f1dba7;
  --sand: #ead1b7;
  --nude: #f8ead8;
  --ivory: #fff6e9;
  --white: #ffffff;
  --text: #fff1df;
  --muted: #d9c3af;
  --card: rgba(255, 246, 233, .075);
  --card-strong: rgba(255, 246, 233, .115);
  --line: rgba(255, 246, 233, .14);
  --line-strong: rgba(217, 183, 114, .32);
  --shadow: 0 22px 70px rgba(0,0,0,.32);
  --radius-lg: 30px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 6%, rgba(217,183,114,.13), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(184,137,95,.12), transparent 30%),
    linear-gradient(180deg, var(--brown-950) 0%, var(--brown-900) 52%, var(--brown-950) 100%);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.55;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 28px)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 28px)); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 8px 12px;
  background: rgba(19,9,5,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.topbar-link { color: var(--gold-soft); font-weight: 800; border-bottom: 1px solid rgba(241,219,167,.75); }

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.music-toggle {
  appearance: none;
  border: 1px solid rgba(241, 219, 167, .42);
  background: rgba(255, 246, 233, .075);
  color: var(--gold-soft);
  border-radius: 999px;
  padding: 7px 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.music-toggle:hover {
  background: rgba(255, 246, 233, .14);
  transform: translateY(-1px);
}

.music-toggle.playing {
  background: rgba(217, 183, 114, .22);
  color: var(--ivory);
}

@media (max-width: 420px) {
  .topbar {
    gap: 8px;
    font-size: 9px;
  }

  .topbar-actions {
    gap: 6px;
  }

  .music-toggle {
    padding: 6px 9px;
    font-size: 9px;
  }
}


.hero {
  position: relative;
  overflow: hidden;
  padding: 18px 0 46px;
  background:
    linear-gradient(135deg, rgba(255,246,233,.035), transparent),
    linear-gradient(135deg, #130905 0%, #24140d 52%, #3b2519 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,246,233,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,246,233,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .75;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 85%);
}
.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
}
.hero-image {
  padding: 8px;
  border-radius: 30px;
  background: rgba(255,246,233,.09);
  border: 1px solid rgba(255,246,233,.16);
  box-shadow: var(--shadow);
}
.hero-image img {
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  border-radius: 23px;
}
.hero-copy { text-align: center; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ivory);
  font-weight: 700;
  line-height: .96;
}
h1 { font-size: clamp(54px, 16vw, 106px); letter-spacing: -.055em; text-transform: uppercase; }
h2 { font-size: clamp(36px, 10vw, 68px); letter-spacing: -.035em; }
.hero-subtitle {
  margin: 14px auto 0;
  max-width: 640px;
  color: var(--sand);
  font-size: 15px;
}
.event-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 20px 0 22px;
}
.event-info div {
  min-width: 0;
  padding: 10px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255,246,233,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}
.event-info strong {
  display: block;
  color: var(--gold-soft);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.event-info span {
  display: block;
  margin-top: 4px;
  color: var(--ivory);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--brown-950);
  box-shadow: 0 18px 46px rgba(217,183,114,.22);
}
.btn-soft {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--brown-950);
  border: 1px solid rgba(217, 183, 114, 0.55);
  box-shadow: 0 18px 46px rgba(217, 183, 114, 0.22);
}
.btn-big { min-height: 58px; padding-inline: 26px; }
.btn-full-mobile { width: 100%; }

.impact-section { padding: 34px 0 24px; }
.impact-section p {
  margin: 0;
  text-align: center;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(31px, 9vw, 58px);
  line-height: 1.03;
}
.section { padding: 52px 0; }
.section.muted { background: rgba(255,246,233,.035); border-block: 1px solid var(--line); }
.split-grid { display: grid; gap: 24px; align-items: center; }
.section-copy { text-align: left; }
.section-copy p:not(.eyebrow), .section-heading p, .inscription p, .closing p, .footer p, .location-list p {
  color: var(--muted);
  font-size: 14px;
}
.section-copy p:not(.eyebrow) { margin: 16px 0 0; }
.section-heading { text-align: center; margin: 0 auto 24px; max-width: 780px; }
.section-heading p { margin: 12px auto 0; max-width: 680px; }
.image-frame, .portrait-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,246,233,.16);
  background: rgba(255,246,233,.08);
  box-shadow: var(--shadow);
  padding: 8px;
}
.image-frame img, .portrait-frame img {
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  border-radius: 23px;
}
.portrait-frame img { aspect-ratio: 4 / 5; object-position: center top; }

.cards, .benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.card, .benefit {
  min-width: 0;
  padding: 13px 10px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
}
.card span, .benefit span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-bottom: 7px;
  border-radius: 999px;
  background: rgba(217,183,114,.16);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
}
.card p, .benefit p { margin: 0; color: var(--ivory); font-size: 11.5px; line-height: 1.35; }
.benefit { text-align: center; padding: 14px 8px; }
.benefit span { margin-inline: auto; }
.center-cta { text-align: center; margin-top: 22px; }

.location-card {
  display: grid;
  gap: 22px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,246,233,.075);
  border: 1px solid rgba(255,246,233,.16);
  box-shadow: var(--shadow);
}
.location-list { margin: 18px 0 20px; }
.location-list p { margin: 8px 0; }
.location-list strong { color: var(--gold-soft); }
.map-box {
  min-height: 240px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(217,183,114,.14), rgba(255,246,233,.05));
}
.map-box iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
.map-placeholder {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: var(--muted);
}
.map-placeholder span { display: block; color: var(--ivory); font-family: "Cormorant Garamond", Georgia, serif; font-size: 34px; line-height: 1; }
.map-placeholder small { display: block; margin-top: -55px; max-width: 260px; }
.inscription, .closing { text-align: center; }
.inscription { background: linear-gradient(180deg, rgba(217,183,114,.10), rgba(255,246,233,.03)); }
.inscription p, .closing p { max-width: 650px; margin: 16px auto 24px; }

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(10,5,3,.45);
}
.footer-grid { display: grid; gap: 18px; text-align: center; }
.footer strong { color: var(--ivory); font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; }
.footer p { margin: 8px 0 0; font-size: 12px; }
.footer-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.footer-btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,246,233,.10);
  border: 1px solid var(--line-strong);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }

@media (min-width: 760px) {
  .container { width: min(1120px, calc(100% - 56px)); }
  .narrow { width: min(840px, calc(100% - 56px)); }
  .hero { padding: 72px 0 86px; }
  .hero-wrap { grid-template-columns: .92fr 1.08fr; gap: 54px; align-items: center; }
  .hero-image { order: 2; padding: 14px; border-radius: 40px; }
  .hero-image img { aspect-ratio: 4 / 5; border-radius: 29px; }
  .hero-copy { order: 1; text-align: left; }
  .hero-subtitle { margin-left: 0; font-size: clamp(18px, 2vw, 23px); }
  .event-info { gap: 12px; margin: 32px 0; }
  .event-info div { padding: 16px 14px; border-radius: 18px; }
  .event-info strong { font-size: 11px; }
  .event-info span { font-size: 14px; }
  .btn-full-mobile { width: auto; }
  .section { padding: 78px 0; }
  .split-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 52px; }
  .section-copy p:not(.eyebrow), .section-heading p, .inscription p, .closing p, .location-list p { font-size: 16px; }
  .cards { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .benefit-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .card, .benefit { padding: 22px 18px; border-radius: 20px; }
  .card p, .benefit p { font-size: 14px; }
  .location-card { grid-template-columns: .95fr 1.05fr; gap: 30px; padding: 30px; }
  .map-box, .map-placeholder { min-height: 350px; }
  .footer-grid { grid-template-columns: 1fr auto; text-align: left; align-items: center; }
}

@media (max-width: 380px) {
  .container, .narrow { width: min(100% - 20px, 1120px); }
  .event-info { gap: 5px; }
  .event-info div { padding: 9px 4px; }
  .event-info span { font-size: 10px; }
  .card p, .benefit p { font-size: 10.5px; }
  h1 { font-size: 48px; }
}

.photo-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(229, 205, 174, 0.22);
  border-radius: 28px;
  background: rgba(245, 232, 216, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.photo-collage img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  border: 1px solid rgba(245, 232, 216, 0.18);
}

@media (max-width: 640px) {
  .photo-collage {
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
  }

  .photo-collage img {
    border-radius: 16px;
  }
}

.experience-video {
  width: min(520px, 100%);
  margin: 0 auto 26px;
  padding: 8px;
  border-radius: 28px;
  background: rgba(255, 246, 233, 0.08);
  border: 1px solid rgba(217, 183, 114, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.experience-video video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

@media (max-width: 640px) {
  .experience-video {
    margin-bottom: 20px;
    border-radius: 22px;
    padding: 6px;
  }

  .experience-video video {
    border-radius: 18px;
  }
}