

:root {
  --cream:       #FAFBF8;
  --parchment:   #EDF3EE;
  --beige:       #DEEAE1;
  --gold:        #146B52;
  --gold-light:  #3E9678;
  --gold-pale:   #DDEEE5;
  --gold-soft:   #BFE0CF;
  --gold-dark:   #0B4D3A;
  --text-dark:   #0A1611;
  --text-warm:   #21443A;
  --text-mid:    #476A5C;
  --text-muted:  #7FA091;
  --white:       #FFFFFF;
  --nav-bg:      rgba(250, 251, 248, 0.96);
  --shadow-sm:   0 2px 12px rgba(8, 45, 34, 0.07);
  --shadow-md:   0 6px 32px rgba(8, 45, 34, 0.10);
  --shadow-lg:   0 16px 56px rgba(8, 45, 34, 0.14);
  --shadow-xl:   0 24px 80px rgba(8, 45, 34, 0.18);
  --r-sm:        10px;
  --r-md:        18px;
  --r-lg:        28px;
  --r-xl:        40px;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Jost', 'Helvetica Neue', sans-serif;
  --max-w:       1100px;
  --section-py:  110px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast:      0.2s var(--ease);
  --t-mid:       0.4s var(--ease);
  --t-slow:      0.7s var(--ease);
  --mbn-height:  74px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--text-dark); line-height: 1.75; font-weight: 300; overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--gold-light), var(--gold)); border-radius: 3px; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; letter-spacing: 0.01em; }
a { text-decoration: none; color: inherit; transition: color var(--t-fast); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }



/* Animated gold shimmer gradient for headings */
.grad-heading {
  background: linear-gradient(
    105deg,
    var(--gold-dark)   0%,
    var(--gold)        28%,
    var(--gold-soft)   45%,
    #F0F8F2            52%,
    var(--gold-soft)   58%,
    var(--gold)        72%,
    var(--gold-dark)   100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerText 5s linear infinite;
  display: inline-block;
}

/* Larger, more dramatic shimmer for hero names */
.grad-text {
  background: linear-gradient(
    110deg,
    var(--text-dark)   0%,
    var(--text-warm)   18%,
    var(--gold-dark)   32%,
    var(--gold)        44%,
    #E4F4EB            50%,
    var(--gold)        56%,
    var(--gold-dark)   68%,
    var(--text-warm)   82%,
    var(--text-dark)   100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerText 6s linear infinite;
  display: inline-block;
}

/* RSVP confirmation title uses lighter version */
.rsvp-confirm-title.grad-text {
  background: linear-gradient(105deg, var(--gold-dark) 0%, var(--gold) 35%, #E4F4EB 50%, var(--gold) 65%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Section header underline — keep it gold when heading has grad */
.section-header h2.grad-heading::after {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: var(--section-py) 0; position: relative; }
.section-alt { background-color: var(--parchment); }
.section-alt::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.6; z-index: 0;
}
.section-alt > .container { position: relative; z-index: 1; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.section-header h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 300; position: relative; display: inline-block; padding-bottom: 22px; }
.section-header h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 56px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   DESKTOP NAVBAR
══════════════════════════════════════════════════════════════ */
.desktop-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 22px 0; transition: background var(--t-mid), padding var(--t-mid), box-shadow var(--t-mid); }
.desktop-nav.scrolled { background: var(--nav-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 1px 0 rgba(184,150,46,0.12), var(--shadow-sm); padding: 14px 0; }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; color: var(--text-dark); letter-spacing: 0.12em; }
.nav-logo span { color: var(--gold); font-size: 0.7rem; vertical-align: middle; margin: 0 4px; }
.nav-links { list-style: none; display: flex; gap: 36px; align-items: center; }
.nav-links a { font-family: var(--font-sans); font-size: 0.76rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); position: relative; padding-bottom: 4px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--t-mid); }
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }
@media (max-width: 768px) { .desktop-nav { display: none; } }

/* ══════════════════════════════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  padding: 10px 0 max(10px, env(safe-area-inset-bottom));
  background: rgba(250, 251, 248, 0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(20, 107, 82, 0.14);
  box-shadow: 0 -4px 24px rgba(8, 45, 34, 0.1);
}
.mbn-track {
  display: flex; align-items: center; gap: 8px; padding: 0 16px;
  overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.mbn-track::-webkit-scrollbar { display: none; }

.mbn-pill {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  padding: 9px 18px; border-radius: 50px;
  border: 1px solid rgba(20, 107, 82, 0.18);
  background: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; color: var(--text-mid); white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent; cursor: pointer;
}
.mbn-pill--home { background: linear-gradient(135deg, rgba(20, 107, 82,0.12), rgba(20, 107, 82,0.06)); border-color: rgba(20, 107, 82,0.35); color: var(--gold-dark); }

/* RSVP pill — special pulsing gold border to draw attention */
.mbn-pill--rsvp {
  background: linear-gradient(135deg, rgba(20, 107, 82,0.15), rgba(20, 107, 82,0.07));
  border-color: rgba(20, 107, 82,0.5);
  color: var(--gold-dark);
  animation: rsvpPillPulse 2.5s ease-in-out infinite;
}
@keyframes rsvpPillPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20, 107, 82,0.0); }
  50%       { box-shadow: 0 0 0 3px rgba(20, 107, 82,0.22); }
}

.mbn-icon { display: flex; align-items: center; flex-shrink: 0; color: inherit; }
.mbn-label { line-height: 1; }
.mbn-pill.is-active { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-color: transparent; color: var(--white); box-shadow: 0 4px 16px rgba(20, 107, 82,0.35); }
.mbn-pill:active { transform: scale(0.95); }

@media (max-width: 768px) {
  .mobile-bottom-nav { display: block; }
  footer { padding-bottom: calc(60px + var(--mbn-height)); }
  .section:last-of-type { padding-bottom: calc(var(--section-py) + var(--mbn-height)); }
  .whatsapp-float { bottom: calc(var(--mbn-height) + 16px); right: 16px; }
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 15% 55%, rgba(20, 107, 82,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 25%, rgba(107,123,92,0.08) 0%, transparent 55%),
    linear-gradient(155deg, #FAFBF8 0%, #F1F6F1 45%, #E3EEE6 100%);
}
.hero-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.hero-glow--left  { top: -150px; left: -150px;   background: radial-gradient(circle, rgba(20, 107, 82,0.12) 0%, transparent 70%); }
.hero-glow--right { bottom: -150px; right: -150px; background: radial-gradient(circle, rgba(107,123,92,0.10) 0%, transparent 70%); }
.hero-ornament { position: absolute; width: 140px; height: 140px; pointer-events: none; }
.hero-ornament--tl { top: 28px; left: 28px; }
.hero-ornament--br { bottom: 28px; right: 28px; }

.hero-content { text-align: center; position: relative; z-index: 2; padding: 130px 40px 90px; max-width: 780px; width: 100%; animation: heroFadeIn 1.4s var(--ease) forwards; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(48px); } to { opacity: 1; transform: translateY(0); } }

.hero-pre { font-family: var(--font-sans); font-size: 0.76rem; font-weight: 400; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 36px; }

.hero-names {
  font-size: clamp(3.8rem, 11vw, 7.5rem); font-weight: 300; line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 30px;
  display: flex; align-items: center; justify-content: center; gap: 0.18em; flex-wrap: wrap;
}
.name-groom, .name-bride { display: inline-block; position: relative; }
/* The grad-text pseudo-underline fix — use box-shadow instead of ::after since text is transparent */
.name-groom::after, .name-bride::after {
  content: ''; position: absolute; bottom: 2px; left: 10%; width: 80%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 107, 82,0.45), transparent);
  border-radius: 1px;
}

.hero-heart { font-size: 0.35em; color: var(--gold); display: inline-flex; align-items: center; line-height: 1; animation: heartbeat 2.2s ease-in-out infinite; }
@keyframes heartbeat { 0%,100% { transform: scale(1); } 30% { transform: scale(1.25); } 60% { transform: scale(1.10); } }

.hero-divider { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 28px; }
.divider-line { flex: 1; max-width: 90px; height: 1px; background: linear-gradient(90deg, transparent, rgba(20, 107, 82,0.5)); }
.divider-line:last-child { background: linear-gradient(90deg, rgba(20, 107, 82,0.5), transparent); }

.hero-date { font-family: var(--font-serif); font-size: clamp(1rem, 2.4vw, 1.4rem); font-style: italic; font-weight: 400; color: var(--text-warm); letter-spacing: 0.04em; margin-bottom: 6px; }
.hero-time { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.hero-venue { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 400; color: var(--text-mid); line-height: 1.85; margin-bottom: 52px; }
.hero-venue span { color: var(--text-muted); font-size: 0.82rem; }

.countdown { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 52px; flex-wrap: wrap; }
.countdown-box { background: rgba(255,255,255,0.72); border: 1px solid rgba(20, 107, 82,0.22); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: var(--r-md); padding: 20px 26px; min-width: 86px; text-align: center; box-shadow: var(--shadow-sm); transition: transform var(--t-mid), box-shadow var(--t-mid); }
.countdown-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.countdown-box span { display: block; font-family: var(--font-serif); font-size: 2.4rem; font-weight: 500; color: var(--text-dark); line-height: 1; margin-bottom: 8px; }
.countdown-box label { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.countdown-sep { font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold-light); font-weight: 300; margin-bottom: 20px; user-select: none; }

.hero-cta { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-sans); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-warm); border-bottom: 1px solid rgba(20, 107, 82,0.4); padding-bottom: 6px; transition: color var(--t-fast), border-color var(--t-fast); animation: ctaBounce 2.5s ease-in-out infinite 2s; }
.hero-cta:hover { color: var(--gold-dark); border-color: var(--gold); }
@keyframes ctaBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ══════════════════════════════════════════════════════════════
   COUPLE SECTION
══════════════════════════════════════════════════════════════ */
.couple-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; max-width: 760px; margin: 0 auto; }
.couple-card {
  background: var(--white); border-radius: var(--r-lg); padding: 52px 44px; text-align: center;
  box-shadow: var(--shadow-md); border: 1px solid rgba(20, 107, 82,0.1);
  position: relative; overflow: hidden; opacity: 0; transform: translateY(36px);
}
.couple-card.card-visible { opacity: 1; transform: translateY(0); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), box-shadow var(--t-mid); }
.couple-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-pale), var(--gold-light), var(--gold), var(--gold-light), var(--gold-pale)); transform: scaleX(0); transform-origin: left; transition: transform 1s cubic-bezier(0.4,0,0.2,1) 0.5s; }
.couple-card.card-visible::before { transform: scaleX(1); }
.couple-card::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(20, 107, 82,0.07) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.couple-card:hover { transform: translateY(-10px) !important; box-shadow: var(--shadow-xl); }

.couple-icon { font-size: 2.8rem; margin-bottom: 22px; display: block; opacity: 0; transform: scale(0.4) rotate(-15deg); transition: opacity 0.6s var(--ease) 0.35s, transform 0.7s cubic-bezier(0.34,1.56,0.64,1) 0.35s; }
.couple-card.card-visible .couple-icon { opacity: 1; transform: scale(1) rotate(0deg); }
.couple-role { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; opacity: 0; transform: translateY(10px); transition: opacity 0.6s var(--ease) 0.6s, transform 0.6s var(--ease) 0.6s; }
.couple-card.card-visible .couple-role { opacity: 1; transform: translateY(0); }
.couple-name { font-family: var(--font-serif); font-size: 2.1rem; font-weight: 400; margin-bottom: 18px; letter-spacing: 0.02em; line-height: 1.1; display: block; position: relative; }
.cn-letter { display: inline-block; opacity: 0; transform: translateY(22px) scale(0.85); transition: opacity 0.5s cubic-bezier(0.34,1.56,0.64,1), transform 0.5s cubic-bezier(0.34,1.56,0.64,1), color 0.3s ease, text-shadow 0.3s ease; cursor: default; }
.cn-letter.show { opacity: 1; transform: translateY(0) scale(1); }
.cn-letter:hover { color: var(--gold); text-shadow: 0 0 20px rgba(20, 107, 82,0.5); transform: translateY(-4px) scale(1.08) !important; }
.couple-name-underline { display: block; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.9s cubic-bezier(0.4,0,0.2,1); margin: 2px auto 0; width: 80%; }
.couple-card.name-complete .couple-name-underline { transform: scaleX(1); }
.couple-name-sparkles { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; pointer-events: none; }
.sparkle-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0; }
.couple-card.name-complete .sparkle-dot { animation: sparklePop 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.couple-card.name-complete .sparkle-dot:nth-child(1) { animation-delay: 0s; }
.couple-card.name-complete .sparkle-dot:nth-child(2) { animation-delay: 0.1s; }
.couple-card.name-complete .sparkle-dot:nth-child(3) { animation-delay: 0.05s; }
@keyframes sparklePop { 0% { opacity:0; transform:scale(0) translateY(0); } 50% { opacity:1; transform:scale(1.4) translateY(-8px); } 100% { opacity:0; transform:scale(0.6) translateY(-16px); } }
.couple-family { font-family: var(--font-sans); font-size: 0.84rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; opacity: 0; transform: translateY(10px); transition: opacity 0.7s var(--ease) 1.1s, transform 0.7s var(--ease) 1.1s; }
.couple-card.card-visible .couple-family { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   TIMELINE & DRESS CODE
══════════════════════════════════════════════════════════════ */
.timeline-wrap { position: relative; max-width: 580px; margin: 0 auto 72px; padding-left: 48px; }
.timeline-wrap::before { content: ''; position: absolute; left: 10px; top: 12px; bottom: 8px; width: 1px; background: linear-gradient(to bottom, transparent 0%, var(--gold-light) 10%, var(--gold-light) 90%, transparent 100%); }
.timeline-item { position: relative; padding-bottom: 40px; opacity: 0; transform: translateX(-16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-item::before { content: ''; position: absolute; left: -44px; top: 8px; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; border: 3px solid var(--parchment); box-shadow: 0 0 0 3px rgba(20, 107, 82,0.25); }
.timeline-time { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.timeline-event { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; color: var(--text-dark); }
.dresscode-box { max-width: 720px; margin: 0 auto; background: var(--white); border-radius: var(--r-lg); padding: 52px 56px; text-align: center; box-shadow: var(--shadow-md); border: 1px solid rgba(20, 107, 82,0.12); position: relative; overflow: hidden; }
.dresscode-box::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(20, 107, 82,0.05) 0%, transparent 60%); pointer-events: none; }
.dresscode-box::after { content: '✦'; position: absolute; top: 22px; right: 28px; color: var(--gold-pale); font-size: 1.6rem; }
.dresscode-title { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.dresscode-box h3 { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 400; color: var(--text-dark); margin-bottom: 36px; }
.dresscode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; }
.dresscode-item { background: var(--cream); border-radius: var(--r-md); padding: 28px 26px; border: 1px solid rgba(20, 107, 82,0.08); }
.dresscode-item-label { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.dresscode-item p { font-size: 0.88rem; font-weight: 300; color: var(--text-warm); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   VENUE
══════════════════════════════════════════════════════════════ */
.venue-card { background: var(--white); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(20, 107, 82,0.08); display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
.venue-info { padding: 60px 52px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.venue-info::after { content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(20, 107, 82,0.15), transparent); }
.venue-tag { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.venue-name { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 400; color: var(--text-dark); margin-bottom: 12px; line-height: 1.3; }
.venue-address { font-family: var(--font-sans); font-size: 0.87rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.venue-date-row { display: flex; align-items: center; gap: 20px; margin-bottom: 36px; }
.venue-date-badge { background: linear-gradient(135deg, var(--gold-pale), rgba(240,230,200,0.6)); border: 1px solid rgba(20, 107, 82,0.2); border-radius: var(--r-md); padding: 14px 22px; text-align: center; min-width: 80px; flex-shrink: 0; }
.venue-date-badge .badge-day { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 500; color: var(--gold-dark); line-height: 1; margin-bottom: 4px; }
.venue-date-badge .badge-month { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.venue-time-info p:first-child { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--text-dark); }
.venue-time-info p:last-child { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 300; color: var(--text-muted); }
.btn-maps { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); font-family: var(--font-sans); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 28px; border-radius: 50px; transition: transform var(--t-mid), box-shadow var(--t-mid); width: fit-content; box-shadow: 0 4px 16px rgba(20, 107, 82,0.3); }
.btn-maps:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(20, 107, 82,0.4); }
.venue-map { position: relative; background: var(--beige); overflow: hidden; }
.venue-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: sepia(15%) saturate(85%) contrast(1.02); transition: filter var(--t-slow); }
.venue-map:hover iframe { filter: sepia(5%) saturate(95%) contrast(1.02); }
.map-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(250, 251, 248,0.1) 0%, transparent 20%); pointer-events: none; z-index: 1; }

/* ══════════════════════════════════════════════════════════════
   INFO CARDS
══════════════════════════════════════════════════════════════ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.cards-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.info-card { background: var(--white); border-radius: var(--r-lg); padding: 38px 34px; box-shadow: var(--shadow-md); border: 1px solid rgba(20, 107, 82,0.07); position: relative; overflow: hidden; opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), box-shadow var(--t-mid); }
.info-card.visible { opacity: 1; transform: translateY(0); }
.info-card:hover { transform: translateY(-10px) !important; box-shadow: var(--shadow-xl); }
.info-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); opacity: 0; transition: opacity var(--t-mid); }
.info-card:hover::before { opacity: 1; }
.info-card::after { content: ''; position: absolute; bottom: -50px; right: -50px; width: 130px; height: 130px; background: radial-gradient(circle, rgba(20, 107, 82,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.card-icon { font-size: 2.1rem; margin-bottom: 18px; display: block; }
.card-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--text-dark); margin-bottom: 10px; }
.card-sub { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.card-text { font-family: var(--font-sans); font-size: 0.87rem; font-weight: 300; color: var(--text-muted); line-height: 1.75; }
.card-distance { display: inline-block; margin-top: 16px; background: var(--gold-pale); color: var(--gold-dark); font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(20, 107, 82,0.2); }
.card-phone { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.card-phone a { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--gold-dark); transition: color var(--t-fast); }
.card-phone a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   RSVP SECTION
══════════════════════════════════════════════════════════════ */
#rsvp {
  position: relative;
  overflow: hidden;
}

/* Full-section petal canvas */
#rsvpCanvas {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.rsvp-container { position: relative; z-index: 1; }

/* The card */
.rsvp-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 60px 52px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(20, 107, 82,0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}

.rsvp-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), var(--gold-light), var(--gold), var(--gold-light), var(--gold-pale), transparent);
  background-size: 200% auto;
  animation: shimmerText 3s linear infinite;
}

/* State visibility */
.rsvp-state { transition: opacity 0.4s ease, transform 0.4s ease; }
.rsvp-state--hidden { display: none; opacity: 0; transform: scale(0.97); }
.rsvp-state--visible { display: block; animation: stateReveal 0.5s var(--ease) forwards; }
@keyframes stateReveal { from { opacity: 0; transform: scale(0.95) translateY(12px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* Envelope SVG */
.rsvp-envelope {
  width: 80px; margin: 0 auto 28px;
  animation: envelopeFloat 4s ease-in-out infinite;
}
@keyframes envelopeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.rsvp-question {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400; font-style: italic;
  color: var(--text-dark); line-height: 1.6;
  margin-bottom: 12px; letter-spacing: 0.01em;
}

.rsvp-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem; font-weight: 300;
  color: var(--text-muted); margin-bottom: 44px;
  letter-spacing: 0.04em;
}

/* Buttons row */
.rsvp-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rsvp-btn {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 22px 18px; border-radius: var(--r-lg);
  border: none; cursor: pointer;
  font-family: var(--font-sans);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.2s ease;
  position: relative; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.rsvp-btn::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.3s ease;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  border-radius: inherit;
}
.rsvp-btn:hover::before { opacity: 1; }

/* Yes button */
.rsvp-btn--yes {
  background: linear-gradient(135deg, #2F8A6C 0%, var(--gold) 40%, var(--gold-dark) 100%);
  box-shadow: 0 6px 28px rgba(20, 107, 82,0.36), inset 0 1px 0 rgba(255,255,255,0.18);
  color: var(--white);
}
.rsvp-btn--yes:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 14px 40px rgba(20, 107, 82,0.48); }
.rsvp-btn--yes:active { transform: scale(0.97); }

/* No button */
.rsvp-btn--no {
  background: var(--cream);
  border: 1.5px solid rgba(127, 160, 145,0.3);
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}
.rsvp-btn--no:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(127, 160, 145,0.5); }
.rsvp-btn--no:active { transform: scale(0.97); }

.rsvp-btn-icon { font-size: 1.2rem; line-height: 1; }
.rsvp-btn-text { font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em; line-height: 1; }
.rsvp-btn-sub  { font-size: 0.68rem; font-weight: 300; letter-spacing: 0.1em; opacity: 0.75; }

/* ── Confirmation states ─────────────────────────────────────── */
.rsvp-confirm-icon {
  width: 72px; margin: 0 auto 28px;
}
.rsvp-confirm-icon--yes .check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.7s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

.rsvp-confirm-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400; margin-bottom: 16px;
}

.rsvp-confirm-msg {
  font-family: var(--font-sans);
  font-size: 0.9rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.8;
  margin-bottom: 32px; letter-spacing: 0.02em;
}

/* ── Music Player ────────────────────────────────────────────── */
.rsvp-music-player {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(237, 243, 238,0.7));
  border: 1px solid rgba(20, 107, 82,0.2);
  border-radius: var(--r-md); padding: 16px 20px;
  margin-bottom: 24px;
  animation: playerReveal 0.6s var(--ease) 0.8s both;
}
@keyframes playerReveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Animated sound bars */
.music-waves {
  display: flex; align-items: flex-end; gap: 3px; flex-shrink: 0; height: 28px;
}
.music-waves span {
  display: block; width: 3px; border-radius: 2px;
  background: linear-gradient(to top, var(--gold-dark), var(--gold-light));
  transform-origin: bottom;
}
/* Heights */
.music-waves span:nth-child(1)  { height: 40%; }
.music-waves span:nth-child(2)  { height: 80%; }
.music-waves span:nth-child(3)  { height: 60%; }
.music-waves span:nth-child(4)  { height: 100%; }
.music-waves span:nth-child(5)  { height: 70%; }
.music-waves span:nth-child(6)  { height: 45%; }
.music-waves span:nth-child(7)  { height: 90%; }
.music-waves span:nth-child(8)  { height: 55%; }
.music-waves span:nth-child(9)  { height: 75%; }
.music-waves span:nth-child(10) { height: 35%; }

/* Animate bars when playing */
.music-waves.playing span { animation: waveBar 0.8s ease-in-out infinite alternate; }
.music-waves.playing span:nth-child(1)  { animation-delay: 0s;    animation-duration: 0.7s; }
.music-waves.playing span:nth-child(2)  { animation-delay: 0.1s;  animation-duration: 0.9s; }
.music-waves.playing span:nth-child(3)  { animation-delay: 0.05s; animation-duration: 0.6s; }
.music-waves.playing span:nth-child(4)  { animation-delay: 0.2s;  animation-duration: 1.0s; }
.music-waves.playing span:nth-child(5)  { animation-delay: 0.15s; animation-duration: 0.75s; }
.music-waves.playing span:nth-child(6)  { animation-delay: 0.08s; animation-duration: 0.85s; }
.music-waves.playing span:nth-child(7)  { animation-delay: 0.25s; animation-duration: 0.65s; }
.music-waves.playing span:nth-child(8)  { animation-delay: 0.12s; animation-duration: 0.95s; }
.music-waves.playing span:nth-child(9)  { animation-delay: 0.18s; animation-duration: 0.8s; }
.music-waves.playing span:nth-child(10) { animation-delay: 0.03s; animation-duration: 0.72s; }

@keyframes waveBar {
  from { transform: scaleY(0.25); }
  to   { transform: scaleY(1); }
}

.music-info { flex: 1; text-align: left; }
.music-title  { font-family: var(--font-serif); font-size: 1rem; font-weight: 500; color: var(--text-dark); margin-bottom: 3px; }
.music-artist { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 300; color: var(--text-muted); letter-spacing: 0.06em; }

.music-toggle {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none; cursor: pointer; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(20, 107, 82,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.music-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(20, 107, 82,0.5); }

.rsvp-reset {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: underline;
  text-decoration-color: rgba(127, 160, 145,0.35);
  text-underline-offset: 3px;
  transition: color var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.rsvp-reset:hover { color: var(--gold-dark); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
footer { background: linear-gradient(160deg, #0A1611 0%, #16332A 60%, #0A1611 100%); padding: 70px 40px 60px; text-align: center; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(20, 107, 82,0.08) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 70% 50%, rgba(107,123,92,0.06) 0%, transparent 60%); pointer-events: none; }
footer > * { position: relative; z-index: 1; }
.footer-ornament { color: var(--gold); font-size: 0.9rem; display: block; margin-bottom: 20px; opacity: 0.6; letter-spacing: 0.5em; animation: footerGlow 3s ease-in-out infinite; }
@keyframes footerGlow { 0%,100% { opacity: 0.5; } 50% { opacity: 0.9; } }
.footer-names { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 300; color: var(--gold-light); letter-spacing: 0.1em; margin-bottom: 8px; }
.footer-names span { color: var(--gold); font-size: 0.6em; margin: 0 12px; vertical-align: middle; }
.footer-date { font-family: var(--font-sans); font-size: 0.74rem; font-weight: 400; letter-spacing: 0.35em; color: var(--text-muted); margin-bottom: 28px; }
.footer-divider { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, rgba(20, 107, 82,0.4), transparent); margin: 0 auto 24px; }
.footer-note   { font-family: var(--font-sans); font-size: 0.88rem; font-weight: 300; color: rgba(127, 160, 145,0.7); margin-bottom: 8px; }
.footer-credit { font-family: var(--font-sans); font-size: 0.76rem; font-weight: 300; color: rgba(127, 160, 145,0.45); letter-spacing: 0.08em; }

/* ══════════════════════════════════════════════════════════════
   WHATSAPP
══════════════════════════════════════════════════════════════ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; background: linear-gradient(135deg, #28D367, #25D366); color: var(--white); width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.38); transition: transform var(--t-mid), box-shadow var(--t-mid); animation: wafloat 3.5s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,0.5); }
.wa-tooltip { position: absolute; right: 70px; background: var(--text-dark); color: var(--white); font-family: var(--font-sans); font-size: 0.75rem; white-space: nowrap; padding: 6px 14px; border-radius: 8px; opacity: 0; pointer-events: none; transform: translateX(8px); transition: opacity var(--t-fast), transform var(--t-fast); }
.wa-tooltip::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border-left: 5px solid var(--text-dark); border-top: 4px solid transparent; border-bottom: 4px solid transparent; }
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@keyframes wafloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ══════════════════════════════════════════════════════════════
   INTRO OVERLAY
══════════════════════════════════════════════════════════════ */
body.intro-active { overflow: hidden; }
#intro { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, #081410 0%, #0E241C 40%, #122A21 70%, #0B1410 100%); transition: opacity 1s cubic-bezier(0.76,0,0.24,1); }
#introCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.intro-curtain { position: absolute; top: 0; bottom: 0; width: 50%; z-index: 2; pointer-events: none; transition: transform 1.4s cubic-bezier(0.76,0,0.24,1); }
.intro-curtain--left  { left: 0;  background: linear-gradient(to right, #050F0B, #081410); }
.intro-curtain--right { right: 0; background: linear-gradient(to left, #050F0B, #081410); }
#intro.exiting .intro-curtain--left  { transform: translateX(-100%); }
#intro.exiting .intro-curtain--right { transform: translateX(100%); }
.intro-corner { position: absolute; width: 160px; height: 160px; pointer-events: none; }
.intro-corner--tl { top: 28px; left: 28px; }
.intro-corner--tr { top: 28px; right: 28px; }
.intro-corner--bl { bottom: 28px; left: 28px; }
.intro-corner--br { bottom: 28px; right: 28px; }
.corner-path   { stroke-dasharray: 80; stroke-dashoffset: 80; animation: drawLine 1s cubic-bezier(0.4,0,0.2,1) forwards; }
.corner-path-2 { stroke-dasharray: 50; stroke-dashoffset: 50; animation: drawLine 0.8s cubic-bezier(0.4,0,0.2,1) 0.6s forwards; }
.corner-dot    { opacity: 0; animation: dotPop 0.4s ease 0.9s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes dotPop { 0% { opacity:0; transform:scale(0); } 60% { opacity:1; transform:scale(1.4); } 100% { opacity:1; transform:scale(1); } }
.intro-body { position: relative; z-index: 3; text-align: center; padding: 40px; max-width: 700px; width: 100%; }
.intro-bismillah { font-family: var(--font-serif); font-style: italic; font-size: 0.92rem; font-weight: 400; letter-spacing: 0.06em; color: var(--gold-dark); margin-bottom: 18px; opacity: 0; animation: introFadeUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.3s forwards; }
.intro-pre { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 300; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(20, 107, 82,0.55); margin-bottom: 44px; opacity: 0; animation: introFadeUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.5s forwards; }
.intro-names { display: flex; align-items: baseline; justify-content: center; gap: 0.18em; flex-wrap: wrap; margin-bottom: 36px; }
.intro-name { font-family: var(--font-serif); font-size: clamp(3.5rem, 10vw, 7rem); font-weight: 300; line-height: 1; letter-spacing: 0.04em; color: #DDEEE5; display: inline-block; }
.intro-name .letter { display: inline-block; opacity: 0; transform: translateY(30px) rotateX(40deg); transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.intro-name .letter.show { opacity: 1; transform: translateY(0) rotateX(0deg); }
.intro-amp { font-family: var(--font-serif); font-size: clamp(1.4rem,3vw,2.2rem); font-weight: 300; font-style: italic; color: var(--gold); letter-spacing: 0.06em; opacity: 0; align-self: center; animation: introFadeUp 0.7s cubic-bezier(0.4,0,0.2,1) 1.8s forwards; }
.intro-rule { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 28px; opacity: 0; animation: introFadeUp 0.7s cubic-bezier(0.4,0,0.2,1) 2.4s forwards; }
.intro-rule-line { flex: 1; max-width: 120px; height: 1px; background: linear-gradient(90deg, transparent, rgba(20, 107, 82,0.5)); }
.intro-rule-line:last-child { background: linear-gradient(90deg, rgba(20, 107, 82,0.5), transparent); }
.intro-rule-diamond { width: 16px; height: 16px; flex-shrink: 0; }
.intro-date  { font-family: var(--font-serif); font-size: clamp(1rem,2.2vw,1.35rem); font-style: italic; font-weight: 300; color: rgba(221, 238, 229,0.8); letter-spacing: 0.06em; margin-bottom: 8px; opacity: 0; animation: introFadeUp 0.7s cubic-bezier(0.4,0,0.2,1) 2.55s forwards; }
.intro-venue { font-family: var(--font-sans); font-size: 0.76rem; font-weight: 300; letter-spacing: 0.14em; color: rgba(127, 160, 145,0.6); margin-bottom: 56px; opacity: 0; animation: introFadeUp 0.7s cubic-bezier(0.4,0,0.2,1) 2.7s forwards; }
.intro-enter { display: inline-flex; align-items: center; gap: 14px; background: transparent; border: 1px solid rgba(20, 107, 82,0.4); color: #DDEEE5; font-family: var(--font-sans); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; padding: 16px 36px; border-radius: 60px; cursor: pointer; position: relative; overflow: hidden; opacity: 0; transform: translateY(16px); animation: introFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 3.0s forwards; transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.intro-enter::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20, 107, 82,0.15), rgba(20, 107, 82,0.05)); opacity: 0; transition: opacity 0.35s ease; border-radius: inherit; }
.intro-enter:hover { border-color: rgba(20, 107, 82,0.8); color: var(--gold-light); box-shadow: 0 0 40px rgba(20, 107, 82,0.18); }
.intro-enter:hover::before { opacity: 1; }
.enter-icon { display: flex; align-items: center; transition: transform 0.3s ease; }
.intro-enter:hover .enter-icon { transform: translateX(5px); }
@keyframes introFadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
#intro.gone { display: none; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-py: 80px; }
  .venue-card { grid-template-columns: 1fr; border-radius: var(--r-lg); }
  .venue-info { padding: 48px 40px; }
  .venue-info::after { display: none; }
  .venue-map { min-height: 300px; position: relative; }
  .venue-map iframe { position: relative; height: 300px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .container { padding: 0 20px; }
  .hero-ornament { width: 80px; height: 80px; }
  .hero-ornament--tl { top: 16px; left: 16px; }
  .hero-ornament--br { bottom: 16px; right: 16px; }
  .hero-names { font-size: clamp(2.8rem, 15vw, 4.5rem); gap: 0.15em; }
  .hero-heart { font-size: 0.4em; }
  .hero-content { padding: 100px 24px calc(70px + var(--mbn-height)); }
  .countdown { gap: 6px; }
  .countdown-box { padding: 14px 18px; min-width: 68px; border-radius: var(--r-sm); }
  .countdown-box span { font-size: 1.9rem; }
  .countdown-sep { font-size: 1.4rem; margin-bottom: 16px; }
  .couple-grid { grid-template-columns: 1fr; max-width: 380px; gap: 24px; }
  .couple-card { padding: 40px 32px; }
  .timeline-wrap { padding-left: 38px; }
  .timeline-item::before { left: -36px; }
  .dresscode-box { padding: 40px 28px; }
  .dresscode-grid { grid-template-columns: 1fr; }
  .venue-info { padding: 36px 28px; }
  .cards-grid, .cards-grid--3 { grid-template-columns: 1fr; }
  .rsvp-card { padding: 44px 28px; }
  .rsvp-buttons { grid-template-columns: 1fr; gap: 12px; }
  footer { padding: 52px 24px calc(44px + var(--mbn-height)); }
  .intro-corner { width: 90px; height: 90px; }
  .intro-corner--tl { top: 16px; left: 16px; }
  .intro-corner--tr { top: 16px; right: 16px; }
  .intro-corner--bl { bottom: 16px; left: 16px; }
  .intro-corner--br { bottom: 16px; right: 16px; }
  .intro-body { padding: 24px; }
  .intro-enter { padding: 14px 28px; }
}

@media (max-width: 380px) {
  .hero-names { flex-direction: column; gap: 4px; }
  .hero-heart { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}