@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,600;1,300&display=swap');

/* ══════════════════════════════════════
   VARIABLES
══════════════════════════════════════ */
:root {
  --bg-dark:      #1a1816;
  --overlay:      rgba(15, 13, 11, 0.52);
  --overlay-dark: rgba(10, 9, 8, 0.72);
  --text-light:   #dfd8d0;
  --text-muted:   #a89f97;
  --accent:       #edeae7;
  --accent-gold:  #c8a96e;
  --white:        #ffffff;
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   OPENING SCREEN
══════════════════════════════════════ */
.opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
  transition: opacity 1.2s ease, transform 1.4s ease;
}

.opening.closed {
  opacity: 0;
  transform: scale(1.06);
  pointer-events: none;
}

.opening-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transition: transform 8s ease;
  transform: scale(1.05);
}

.opening.loaded .opening-bg {
  transform: scale(1);
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { opacity: 0;   transform: translateY(0) translateX(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0;   transform: translateY(-100vh) translateX(var(--drift, 20px)); }
}

/* Opening content */
.opening-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  animation: fadeUp 1.4s ease both;
}

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

.opening-label {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.opening-names {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.opening-amp {
  font-family: 'Great Vibes', cursive;
  font-size: 0.55em;
  color: var(--accent-gold);
  display: block;
  line-height: 1.2;
}

.opening-divider {
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
  margin: 20px auto;
  opacity: 0.6;
}

.opening-to {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.opening-guest {
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.open-btn {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid rgba(237,234,231,0.45);
  background: transparent;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.open-btn:hover {
  background: rgba(237,234,231,0.12);
  border-color: var(--accent);
}

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.section.active .section-bg {
  transform: scale(1);
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.section-overlay--dark {
  background: var(--overlay-dark);
}

.section-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* Labels (uppercase thin) */
.label {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 28px;
}

/* Separator line */
.sep {
  width: 50px;
  height: 1px;
  background: var(--accent-gold);
  margin: 24px auto;
  opacity: 0.5;
}

/* ══════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   HERO — NAMA MEMPELAI
══════════════════════════════════════ */
.names-hero {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.amp {
  font-family: 'Great Vibes', cursive;
  font-size: 0.5em;
  color: var(--accent-gold);
  line-height: 1.4;
}

.parents {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.parent-block {
  max-width: 220px;
}

.parent-name {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.parent-of {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.parent-degree {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.parent-names {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.parent-dan {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--text-muted);
  display: block;
  margin: 1px 0;
}

.parent-sep {
  color: var(--accent-gold);
  font-size: 1.2rem;
  padding-top: 8px;
}

/* ══════════════════════════════════════
   COUNTDOWN
══════════════════════════════════════ */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
  margin-top: 8px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}

.countdown-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 200;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}

.countdown-label {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  margin-top: 10px;
}

.countdown-sep {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 200;
  color: var(--accent-gold);
  margin-bottom: 28px;
  opacity: 0.7;
  padding: 0 4px;
}

/* ══════════════════════════════════════
   DETAIL ACARA
══════════════════════════════════════ */
.acara-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.acara-card {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  padding: 32px 24px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  background: rgba(26, 24, 22, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.acara-type {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.acara-sep {
  height: 1px;
  background: rgba(200, 169, 110, 0.25);
  margin: 14px 0;
}

.acara-date {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 4px;
}

.acara-time {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 4px;
}

.acara-venue {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 4px;
}

.acara-address {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.btn-calendar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border: 1px solid rgba(237,234,231,0.35);
  background: transparent;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-calendar:hover {
  background: rgba(237,234,231,0.1);
  border-color: var(--accent);
  color: var(--accent);
}

/* ══════════════════════════════════════
   MAPS
══════════════════════════════════════ */
.section-maps {
  min-height: auto;
  background: var(--bg-dark);
}

.section-content--maps {
  padding: 80px 24px;
}

.maps-venue {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 6px;
}

.maps-address {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.maps-wrap {
  max-width: 780px;
  margin: 0 auto 20px;
  border: 1px solid rgba(200, 169, 110, 0.2);
  overflow: hidden;
}

.maps-wrap iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
  filter: grayscale(0.4) brightness(0.9);
}

.btn-maps {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid rgba(200,169,110,0.4);
  background: transparent;
  color: var(--accent-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-maps:hover {
  background: rgba(200,169,110,0.1);
  border-color: var(--accent-gold);
}

/* ══════════════════════════════════════
   GALERI FOTO
══════════════════════════════════════ */
.gallery-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 4px 8px;
  margin-top: 16px;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  min-width: 240px;
  height: 320px;
  scroll-snap-align: center;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-slide:hover img {
  transform: scale(1.05);
}

/* ══════════════════════════════════════
   RSVP & WISHES
══════════════════════════════════════ */
.section-rsvp .rsvp-sub,
.section-rsvp .form-label,
.section-rsvp .form-input,
.section-rsvp .btn-submit,
.section-rsvp .form-message,
.section-rsvp .wishes-title,
.section-rsvp .wish-name,
.section-rsvp .wish-text,
.section-rsvp .wish-badge {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.rsvp-form {
  max-width: 460px;
  margin: 0 auto;
}

.rsvp-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  letter-spacing: 1px;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(237,234,231,0.25);
  padding: 10px 0;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

/* iOS zoom fix */
@media (max-width: 480px) {
  .form-input { font-size: 16px !important; }
}

.form-input:focus {
  border-bottom-color: var(--accent-gold);
}

.form-input option {
  background: var(--bg-dark);
  color: var(--text-light);
}

.form-textarea {
  resize: none;
  height: 80px;
}

.btn-submit {
  padding: 14px 48px;
  background: transparent;
  border: 1px solid rgba(237,234,231,0.4);
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  align-self: center;
}

.btn-submit:hover { background: rgba(237,234,231,0.1); }
.btn-submit:disabled { opacity: 0.4; cursor: not-allowed; }

.form-message {
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 12px;
  min-height: 1.4rem;
  color: var(--accent-gold);
}

.form-message.error { color: #e07070; }

/* Wishes */
.wishes-box {
  margin-top: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,169,110,0.3) transparent;
}

.wishes-box::-webkit-scrollbar { width: 3px; }
.wishes-box::-webkit-scrollbar-thumb { background: rgba(200,169,110,0.3); border-radius: 2px; }

.wishes-title {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.wish-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(237,234,231,0.08);
  animation: fadeUp 0.5s ease both;
}

.wish-name {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.wish-text {
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
}

.wish-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 2px 10px;
  border: 1px solid;
}

.wish-badge.hadir { color: #8fa882; border-color: rgba(143,168,130,0.4); }
.wish-badge.tidak { color: #c07070; border-color: rgba(192,112,112,0.4); }

/* ══════════════════════════════════════
   DIGITAL GIFT
══════════════════════════════════════ */
.gift-intro {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.gift-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.gift-card {
  flex: 1;
  min-width: 230px;
  max-width: 280px;
  padding: 28px 22px;
  border: 1px solid rgba(200,169,110,0.3);
  background: rgba(26,24,22,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: left;
  transition: border-color 0.3s;
}

.gift-card:hover { border-color: rgba(200,169,110,0.6); }

.gift-bank {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.gift-holder {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 12px;
}

.gift-account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.gift-number {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 1px;
}

.btn-copy {
  background: transparent;
  border: 1px solid rgba(237,234,231,0.25);
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-copy:hover { border-color: var(--accent); color: var(--accent); }
.btn-copy.copied { border-color: #8fa882; color: #8fa882; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
}

.footer-names {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 9vw, 5rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 8px;
}

.footer-date {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-love {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   MUSIC PLAYER (fixed)
══════════════════════════════════════ */
.music-player {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  right: max(20px, env(safe-area-inset-right));
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 24, 22, 0.88);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 40px;
  padding: 8px 14px 8px 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.music-player.visible {
  opacity: 1;
  pointer-events: auto;
}

.music-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.music-btn:hover { background: var(--accent); transform: scale(1.1); }

.music-bars {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 16px;
}

.music-bars span {
  width: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  animation: musicWave 0.9s ease-in-out infinite alternate;
}

.music-bars span:nth-child(1) { height: 5px;  animation-delay: 0s;    }
.music-bars span:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.music-bars span:nth-child(3) { height: 8px;  animation-delay: 0.3s;  }
.music-bars span:nth-child(4) { height: 14px; animation-delay: 0.1s;  }
.music-bars span:nth-child(5) { height: 6px;  animation-delay: 0.25s; }

.music-bars.paused span {
  animation-play-state: paused;
  opacity: 0.3;
}

@keyframes musicWave {
  from { transform: scaleY(0.35); }
  to   { transform: scaleY(1); }
}

/* ══════════════════════════════════════
   YOUTUBE HIDDEN PLAYER
══════════════════════════════════════ */
#ytPlayerWrapper {
  position: fixed;
  width: 1px;
  height: 1px;
  bottom: -2px;
  right: -2px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  touch-action: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--accent); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 10px 20px;
  z-index: 10;
  transition: color 0.2s;
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--accent); }

/* ══════════════════════════════════════
   RESPONSIVE — Mobile ≤480px
══════════════════════════════════════ */
@media (max-width: 480px) {
  .opening-names { font-size: clamp(2.6rem, 14vw, 4rem); }
  .parents { gap: 20px; }
  .parent-block { max-width: 160px; }
  .acara-grid { flex-direction: column; align-items: center; }
  .acara-card { width: 100%; max-width: 320px; }
  .countdown-item { min-width: 56px; }
  .gallery-slide { min-width: 180px; height: 240px; }
  .gift-cards { flex-direction: column; align-items: center; }
  .gift-card { min-width: 100%; max-width: 100%; }
  .section-content { padding: 60px 20px; }
  .music-player { bottom: max(16px, env(safe-area-inset-bottom)); right: max(12px, env(safe-area-inset-right)); }
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet 481–1024px
══════════════════════════════════════ */
@media (min-width: 481px) and (max-width: 1024px) {
  .section-bg { background-attachment: scroll; }
  .gallery-slide { min-width: 220px; height: 280px; }
}

/* Desktop — disable parallax on non-touch */
@media (max-width: 1024px) {
  .section-bg { background-attachment: scroll; }
}

/* ══════════════════════════════════════
   ACCESSIBILITY
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .opening-bg { filter: brightness(0.45); }
}
