/* ═══════════════════════════════════════════════
   WEDDING INVITATION — style.css
   Color palette: white / beige / gold
   ═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #a07842;
  --cream: #faf7f2;
  --beige: #f2ece1;
  --beige-dark: #e8ddd0;
  --white: #ffffff;
  --text-dark: #2c2416;
  --text-mid: #5a4e3c;
  --text-light: #9a8c7a;
  --shadow-sm: 0 2px 16px rgba(180,140,60,0.08);
  --shadow-md: 0 8px 40px rgba(180,140,60,0.12);
  --shadow-lg: 0 20px 60px rgba(180,140,60,0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Base ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section-badge {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 48px;
}

/* ═══════════════════════════════════════════════
   MUSIC PLAYER
   ═══════════════════════════════════════════════ */
.music-player {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 1000;
}

.music-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(180,140,60,0.35);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.music-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(180,140,60,0.45);
}

.music-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.music-icon {
  font-size: 1.4rem;
  color: white;
  display: block;
  transition: var(--transition);
}

.music-wave {
  display: none;
  align-items: center;
  gap: 2px;
  height: 22px;
}

.music-wave.active { display: flex; }
.music-icon.hidden { display: none; }

.music-wave span {
  display: block;
  width: 3px;
  background: white;
  border-radius: 3px;
  animation: wave 1.2s ease-in-out infinite;
}
.music-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.music-wave span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.music-wave span:nth-child(3) { height: 22px; animation-delay: 0.2s; }
.music-wave span:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.music-wave span:nth-child(5) { height: 8px; animation-delay: 0.4s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(180,140,60,0.1);
}

.nav-logo {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(250,247,242,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-light);
  border-radius: 50px;
  padding: 6px 16px;
  box-shadow: var(--shadow-sm);
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-light);
  padding: 4px 8px;
  border-radius: 30px;
  transition: var(--transition);
}

.lang-btn:hover { color: var(--gold-dark); }
.lang-btn.active {
  color: white;
  background: var(--gold);
}

.lang-sep {
  color: var(--gold-light);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(250,247,242,0.93) 0%,
    rgba(242,236,225,0.88) 50%,
    rgba(250,247,242,0.93) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1.2s ease both;
}

.hero-pre {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s both;
}

.couple-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s both;
}

.bride-name,
.groom-name {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  color: var(--text-dark);
  line-height: 1;
}

.ampersand {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.divider-ornament {
  width: 300px;
  max-width: 80%;
  margin: 0 auto 20px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s both;
}
.divider-ornament svg { width: 100%; }

.hero-date {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--text-mid);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-time {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s both;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 1s ease 1s both;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-sm);
  padding: 14px 10px 10px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}

.countdown-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.countdown-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.countdown-sep {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 14px 40px;
  border-radius: 50px;
  transition: var(--transition);
  background: transparent;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s both;
}

.hero-cta:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(180,140,60,0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ═══════════════════════════════════════════════
   INVITATION SECTION
   ═══════════════════════════════════════════════ */
.invitation-section {
  background: var(--white);
}

.inv-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.9;
  text-align: center;
  max-width: 650px;
  margin: 0 auto 32px;
}

.inv-signature {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
}

/* ═══════════════════════════════════════════════
   LOCATION SECTION
   ═══════════════════════════════════════════════ */
.location-section {
  background: var(--beige);
}

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  border: 1px solid var(--gold-light);
}

.location-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.venue-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-style: italic;
}

.venue-address {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 12px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(180,140,60,0.3);
  transition: var(--transition);
}

.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(180,140,60,0.4);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-light);
}

/* ═══════════════════════════════════════════════
   SCHEDULE SECTION
   ═══════════════════════════════════════════════ */
.schedule-section {
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-light) 10%, var(--gold-light) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-time {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  width: calc(50% - 30px);
  text-align: right;
  padding-right: 30px;
}

.timeline-item:nth-child(even) .timeline-time {
  text-align: left;
  padding-right: 0;
  padding-left: 30px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold-light);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  flex-shrink: 0;
}

.timeline-content {
  width: calc(50% - 30px);
  padding-left: 30px;
  padding-right: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  padding-left: 0;
  padding-right: 30px;
  text-align: right;
}

.timeline-content h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════ */
.gallery-section {
  background: var(--beige);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  transition: var(--transition);
}

.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-heart {
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.gallery-item:hover .gallery-heart {
  transform: scale(1.3);
  color: rgba(255,255,255,0.9);
}

.g1 { background: linear-gradient(135deg, #e8d5b0 0%, #d4ba89 100%); }
.g2 { background: linear-gradient(135deg, #d4c5a9 0%, #c5ad89 100%); }
.g3 { background: linear-gradient(135deg, #c9a96e 0%, #b89252 100%); }
.g4 { background: linear-gradient(135deg, #e2d4bb 0%, #cbb99a 100%); }
.g5 { background: linear-gradient(135deg, #f0e8d8 0%, #dcc9a8 100%); }
.g6 { background: linear-gradient(135deg, #c8b99a 0%, #b5a27e 100%); }

.gallery-note {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   EXTRA INFO SECTION
   ═══════════════════════════════════════════════ */
.info-section {
  background: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gold-light);
  transition: var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.info-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-style: italic;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.info-phone {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-dark);
  font-weight: 500;
  display: block;
  transition: var(--transition);
}

.info-phone:hover { color: var(--gold); }

.contact-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 9px 18px;
  border-radius: 50px;
  transition: var(--transition);
  color: white;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.telegram { background: #2AABEE; }
.whatsapp { background: #25D366; }

/* ═══════════════════════════════════════════════
   RSVP SECTION
   ═══════════════════════════════════════════════ */
.rsvp-section {
  background: linear-gradient(160deg, var(--beige) 0%, var(--cream) 100%);
}

.rsvp-subtitle {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.rsvp-form {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-light);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder { color: var(--text-light); }

.form-input[type="number"]::-webkit-inner-spin-button,
.form-input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.form-input[type="number"] { -moz-appearance: textfield; }

.form-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

/* Radio */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: color var(--transition);
}

.radio-label:hover { color: var(--gold-dark); }

.radio-label input[type="radio"] { display: none; }

.radio-custom {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.radio-label input[type="radio"]:checked ~ .radio-custom {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 4px white;
}

.submit-btn {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 50px;
  padding: 18px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(180,140,60,0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(180,140,60,0.4);
}

/* RSVP Success */
.rsvp-success {
  display: none;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-light);
}

.rsvp-success.visible { display: block; animation: fadeInUp 0.6s ease both; }

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(180,140,60,0.3);
}

.rsvp-success p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  padding: 60px 24px;
  text-align: center;
}

.footer-ornament {
  width: 200px;
  margin: 0 auto 28px;
  opacity: 0.7;
}

.footer-names {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.footer-date {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(201,169,110,0.6);
  margin-bottom: 24px;
}

.footer-credit {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s ease var(--delay, 0s);
}

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

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .navbar { padding: 14px 20px; }

  .timeline::before { display: none; }
  .timeline-item,
  .timeline-item:nth-child(even) { flex-direction: column; align-items: flex-start; }
  .timeline-time,
  .timeline-item:nth-child(even) .timeline-time { width: 100%; text-align: left; padding: 0 0 4px 0; }
  .timeline-dot { display: none; }
  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { width: 100%; padding: 0; text-align: left; }
  .timeline-item { padding-left: 20px; border-left: 2px solid var(--gold-light); }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-wide { grid-column: span 2; }

  .rsvp-form { padding: 32px 24px; }

  .countdown-item { min-width: 58px; padding: 12px 8px 8px; }
  .countdown-num { font-size: 1.6rem; }

  .hero-content { padding: 0 8px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-wide { grid-column: span 1; aspect-ratio: 1 / 1; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
