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

:root {
    --olive: #98AD90;
    --olive-mid: #7A8F73;
    --olive-dark: #53664D;
    --green-deep: #384534;
    --cream: #F5F0E8;
    --cream-mid: #EDE7DB;
    --cream-dark: #E0D8CA;
    --warm-bg: #EBE5D8;
    --gold: #C4A35A;
    --gold-light: #D4B96E;
    --gold-pale: rgba(196,163,90,0.15);
    --white: #FFFFFF;
    --text: #2A2A25;
    --text-muted: #6B6B5E;
    --text-light: #F5F0E8;

    --ff-script: 'Great Vibes', cursive;
    --ff-serif: 'Noto Serif', serif;
    --ff-body: 'Newsreader', serif;
    --ff-sans: 'Josefin Sans', sans-serif;

    --shadow-s: 0 4px 20px rgba(56,69,52,0.04);
    --shadow-m: 0 12px 40px rgba(56,69,52,0.08);
    --shadow-l: 0 24px 64px rgba(56,69,52,0.12);
    --shadow-glow: 0 0 50px rgba(196,163,90,0.15);
    --radius: 24px;
    --radius-s: 16px;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --dur: 0.6s;
}

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

body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-weight: 400;
}

img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; border:none; background:none; }

::selection {
    background: var(--gold-pale);
    color: var(--olive-dark);
}

.container { max-width:1100px; margin:0 auto; padding:0 28px; }
.narrow { max-width:680px; }

/* ═══════════ PRELOADER ═══════════ */
#preloader {
    position:fixed; inset:0;
    background: var(--green-deep);
    z-index:10000;
    display:flex; align-items:center; justify-content:center;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}
#preloader.done { opacity:0; visibility:hidden; pointer-events:none; }

.preloader-inner { text-align:center; }

.preloader-leaf {
    width:60px; height:60px;
    animation: leafFloat 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(196,163,90,0.3));
}
@keyframes leafFloat { 0%,100%{transform:translateY(0) rotate(-5deg)} 50%{transform:translateY(-12px) rotate(5deg)} }

.preloader-names {
    font-family:var(--ff-script); font-size:3rem; color:var(--cream);
    letter-spacing:6px; margin-top:12px;
    text-shadow: 0 0 30px rgba(196,163,90,0.25);
}

.preloader-bar {
    width:140px; height:2px; background:rgba(255,255,255,0.15);
    border-radius:2px; margin:20px auto 0; overflow:hidden;
}
.preloader-progress {
    width:0; height:100%; background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: preloaderFill 1.8s ease-in-out forwards;
    border-radius: 2px;
}
@keyframes preloaderFill { to { width:100% } }

/* ═══════════ FLOATING MUSIC ═══════════ */
.floating-music {
    position:fixed; bottom:28px; right:28px; z-index:9000;
    width:52px; height:52px; border-radius:50%;
    background: var(--olive-dark);
    border: 2px solid var(--gold);
    color:var(--gold);
    display:flex; align-items:center; justify-content:center;
    box-shadow: var(--shadow-m), 0 0 20px rgba(196,163,90,0.15);
    transition: all var(--dur) var(--ease);
    backdrop-filter: blur(8px);
}
.floating-music:hover { background:var(--gold); color:var(--green-deep); transform:scale(1.1) rotate(8deg); }
.floating-music.playing { animation: musicPulse 1s ease-in-out infinite alternate; }
.floating-music .music-ico { width:22px; height:22px; }
@keyframes musicPulse { from{box-shadow:0 0 0 0 rgba(196,163,90,0.4)} to{box-shadow:0 0 0 14px rgba(196,163,90,0)} }

/* ═══════════ NAVIGATION ═══════════ */
#main-nav {
    position:fixed; top:0; left:0; right:0; z-index:8000;
    padding:18px 0;
    transition: all 0.4s var(--ease-out);
}
#main-nav.scrolled {
    background: rgba(56,69,52,0.85);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    padding:10px 0;
    box-shadow: 0 4px 40px rgba(0,0,0,0.15);
}
.nav-container { max-width:1200px; margin:0 auto; padding:0 28px; display:flex; align-items:center; justify-content:space-between; }

.nav-brand {
    font-family:var(--ff-script); font-size:2.2rem; color:var(--cream);
    text-shadow:0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s var(--ease);
}
.nav-brand:hover { transform: scale(1.05); }
.brand-amp { color:var(--gold); }

.nav-menu { list-style:none; display:flex; align-items:center; gap:6px; }

.nav-menu a {
    font-family:var(--ff-sans); font-size:0.72rem; font-weight:400;
    color:var(--cream); letter-spacing:2px; text-transform:uppercase;
    padding:8px 14px; border-radius:8px;
    display:flex; align-items:center; gap:5px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%; transform: translateX(-50%);
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-menu a:hover::after { width: 60%; }
.nav-menu a svg { width:14px; height:14px; opacity:0.6; transition: opacity 0.3s ease; }
.nav-menu a:hover svg { opacity: 1; }
.nav-menu a:hover { background:rgba(255,255,255,0.08); }
.nav-cta {
    background:var(--gold) !important; color:var(--green-deep) !important;
    font-weight:600 !important; padding:8px 22px !important;
    border-radius:50px !important;
    box-shadow: 0 2px 12px rgba(196,163,90,0.25) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background:var(--cream) !important; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(196,163,90,0.35) !important; }

.menu-toggle { display:none; color:var(--cream); }
.menu-toggle svg { width:28px; height:28px; }

/* ═══════════ HERO ═══════════ */
#hero {
    min-height:100vh; position:relative;
    display:flex; align-items:center; justify-content:center;
    text-align:center; overflow:hidden;
}
.hero-bg {
    position:absolute; inset:0;
    background: url('img/hero.png') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom { from{transform:scale(1.05)} to{transform:scale(1.18)} }

.hero-overlay {
    position:absolute; inset:0;
    background: linear-gradient(
        160deg,
        rgba(56,69,52,0.85) 0%,
        rgba(83,102,77,0.60) 40%,
        rgba(56,69,52,0.82) 100%
    );
}

/* Subtle grain texture overlay for depth */
.hero-overlay::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-botanical { position:absolute; width:200px; height:300px; z-index:1; pointer-events:none; opacity:0.8; }
.hero-botanical-tl { top:0; left:0; animation: botanicalSway 8s ease-in-out infinite; }
.hero-botanical-tr { top:0; right:0; animation: botanicalSway 8s ease-in-out 2s infinite reverse; }
@keyframes botanicalSway { 0%,100%{transform:rotate(0deg)} 50%{transform:rotate(2deg)} }

.hero-content { position:relative; z-index:2; color:var(--cream); padding:20px; }

.hero-pre {
    font-family:var(--ff-sans); font-size:0.7rem; font-weight:400;
    letter-spacing:8px; text-transform:uppercase;
    opacity:0.7; margin-bottom:32px;
    animation: fadeSlideUp 1s ease 0.3s both;
}

.hero-names-wrap { animation: fadeSlideUp 1.2s ease 0.5s both; }

.hero-name-1, .hero-name-2 {
    font-family:var(--ff-script); font-weight:400; line-height:1;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    text-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 0 60px rgba(196,163,90,0.1);
}

.hero-ampersand {
    display:flex; align-items:center; justify-content:center; gap:20px;
    margin:4px 0;
}
.hero-ampersand span {
    font-family:var(--ff-script); font-size:2.4rem; color:var(--gold-light);
    animation: shimmerGold 3s ease-in-out infinite;
}
@keyframes shimmerGold {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(196,163,90,0.2); }
    50% { opacity: 0.8; text-shadow: 0 0 25px rgba(196,163,90,0.5); }
}
.hero-line { width:60px; height:1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity:0.6; }

.hero-surname {
    font-family:var(--ff-sans); font-size:0.85rem; font-weight:300;
    letter-spacing:10px; margin-top:16px; opacity:0.75;
    animation: fadeSlideUp 1s ease 0.7s both;
}

.hero-date-badge {
    display:inline-flex; align-items:center; gap:10px;
    margin-top:32px; padding:12px 32px;
    border:1px solid rgba(196,163,90,0.35);
    border-radius:50px; backdrop-filter:blur(12px);
    background:rgba(255,255,255,0.06);
    animation: fadeSlideUp 1s ease 0.9s both;
    transition: all 0.4s var(--ease);
}
.hero-date-badge:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(196,163,90,0.6);
    box-shadow: var(--shadow-glow);
}
.hero-date-badge svg { width:16px; height:16px; color:var(--gold); }
.hero-date-badge span { font-family:var(--ff-serif); font-size:1.1rem; letter-spacing:2px; }

.btn-hero {
    display:inline-flex; align-items:center; gap:10px;
    margin-top:28px; padding:14px 42px;
    background: var(--gold);
    color: var(--green-deep);
    font-family:var(--ff-sans); font-size:0.78rem; font-weight:600;
    letter-spacing:2px; text-transform:uppercase;
    border-radius:50px;
    transition: all var(--dur) var(--ease);
    box-shadow: 0 4px 20px rgba(196,163,90,0.3);
    animation: fadeSlideUp 1s ease 1.1s both;
    position: relative;
    overflow: hidden;
}
.btn-hero::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}
.btn-hero:hover::before { left: 100%; }
.btn-hero svg { width:16px; height:16px; position: relative; z-index: 1; }
.btn-hero span { position: relative; z-index: 1; }
.btn-hero:hover { background:var(--cream); transform:translateY(-3px); box-shadow:0 8px 30px rgba(196,163,90,0.4); }

.hero-scroll {
    position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
    z-index:2; color:var(--cream); opacity:0.6;
    animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll svg { width:28px; height:28px; }
@keyframes scrollPulse { 0%,100%{transform:translateX(-50%) translateY(0);opacity:0.6} 50%{transform:translateX(-50%) translateY(10px);opacity:0.3} }

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

/* ═══════════ SCALLOP DIVIDERS ═══════════ */
.scallop-divider { line-height:0; margin:-1px 0; position:relative; z-index:2; }
.scallop-divider svg { width: 101%; margin-left: -0.5%; height: 50px; display: block; }
.scallop-cream { background:var(--olive-dark); }
.scallop-dark { background:var(--cream); }
.scallop-cream-up { background:var(--olive-dark); }
.scallop-dark2 { background:var(--cream); }
.scallop-cream-up2 { background:var(--olive-dark); }
.scallop-footer { background:var(--warm-bg); }

/* ═══════════ SECTIONS ═══════════ */
.sec-cream { background:var(--cream); padding:90px 0; }
.sec-olive { background:var(--olive-dark); padding:80px 0; }
.sec-dark { background:var(--olive-dark); padding:100px 0; }
.sec-warm { background:var(--warm-bg); padding:100px 0; }

.sec-overline {
    font-family:var(--ff-sans); font-size:0.72rem; font-weight:400;
    letter-spacing:5px; text-transform:uppercase;
    text-align:center; margin-bottom:36px; color:var(--text-muted);
}
.sec-overline.light { color:var(--cream); opacity:0.65; }

/* ═══════════ SCRIPT TITLE ═══════════ */
.script-title {
    font-family: var(--ff-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 24px;
    color: var(--olive-dark);
    font-weight: 700;
    position: relative;
    letter-spacing: -1px;
}
.script-title::after {
    content: '';
    display: block;
    width: 50px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 10px auto 0;
}
.script-title.light { color: var(--cream); }
.script-title::after {
    content: '';
    display: block;
    width: 60px; height: 1.5px;
    background: var(--gold);
    margin: 12px auto 0;
    opacity: 0.8;
}

/* ═══════════ LEAF ORNAMENT ═══════════ */
.leaf-ornament { text-align:center; margin-bottom:4px; }
.leaf-ornament svg { width:100px; height:36px; display:inline-block; }

/* ═══════════ WELCOME ═══════════ */
.welcome-text {
    text-align:center; font-size:1.18rem; line-height:2.1;
    color:var(--text-muted); margin:20px 0 40px;
    max-width: 560px; margin-left: auto; margin-right: auto;
}

.save-date-block { text-align:center; }
.save-label { font-family:var(--ff-script); font-size:2.2rem; color:var(--olive); display:block; }
.save-date-line { width:60px; height:1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin:6px auto; }
.save-date-text { font-family:var(--ff-sans); font-size:0.8rem; letter-spacing:4px; color:var(--text-muted); }

/* ═══════════ COUNTDOWN ═══════════ */
.cd-grid {
    display:flex; justify-content:center; align-items:center; gap:12px;
    max-width:650px; margin:0 auto;
}
.cd-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding:28px 24px; text-align:center;
    flex:1; max-width:140px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.cd-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(196,163,90,0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cd-card:hover::before { opacity: 1; }
.cd-card:hover { background:rgba(255,255,255,0.14); transform:translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.cd-value {
    font-family:var(--ff-serif); font-size:3rem; font-weight:600;
    color:var(--gold-light); line-height:1;
    position: relative;
}
.cd-label {
    font-family:var(--ff-sans); font-size:0.65rem; font-weight:400;
    color:var(--cream); text-transform:uppercase; letter-spacing:3px;
    margin-top:8px; opacity:0.65;
}
.cd-sep {
    font-family:var(--ff-serif); font-size:2.5rem; color:var(--gold);
    opacity:0.4; user-select:none;
    animation: sepPulse 2s ease-in-out infinite;
}
@keyframes sepPulse { 0%, 100%{opacity:0.4} 50%{opacity:0.15} }

/* ═══════════ STORY ═══════════ */
.story-layout {
    display:grid; grid-template-columns:1fr 1fr; gap:60px;
    align-items:start; margin-top:48px;
}

.story-image {
    position:relative; border-radius:var(--radius);
    overflow:hidden; box-shadow:var(--shadow-l);
    transition: box-shadow 0.5s ease;
}
.story-image:hover { box-shadow: var(--shadow-l), var(--shadow-glow); }
.story-image img { width:100%; aspect-ratio:3/4; object-fit:cover; transition:transform 1.2s var(--ease-out); }
.story-image:hover img { transform:scale(1.04); }
.story-image-frame {
    position:absolute; inset:12px;
    border:1px solid rgba(196,163,90,0.35);
    border-radius:calc(var(--radius) - 6px);
    pointer-events:none;
    transition: border-color 0.4s ease, inset 0.4s ease;
}
.story-image:hover .story-image-frame {
    border-color: rgba(196,163,90,0.6);
    inset: 16px;
}

.story-timeline { position:relative; padding-left:36px; }

.tl-line {
    position:absolute; left:13px; top:8px; bottom:8px;
    width:1px; background:linear-gradient(to bottom, var(--gold), var(--olive), transparent);
}

.tl-item { position:relative; margin-bottom:36px; }
.tl-item:last-child { margin-bottom:0; }

.tl-dot {
    position:absolute; left:-36px; top:2px;
    width:28px; height:28px; border-radius:50%;
    background:var(--cream); border:2px solid var(--gold);
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 2px 8px rgba(196,163,90,0.2);
    z-index:1;
    transition: all 0.4s var(--ease);
}
.tl-item:hover .tl-dot {
    background: var(--gold);
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(196,163,90,0.35);
}
.tl-dot svg { width:12px; height:12px; color:var(--gold); transition: color 0.3s ease; }
.tl-item:hover .tl-dot svg { color: var(--cream); }

.tl-date {
    font-family:var(--ff-sans); font-size:0.72rem; font-weight:600;
    text-transform:uppercase; letter-spacing:2px;
    color:var(--gold);
    transition: letter-spacing 0.3s ease;
}
.tl-item:hover .tl-date { letter-spacing: 3px; }
.tl-content p { color:var(--text-muted); font-size:1rem; margin-top:4px; transition: color 0.3s ease; }
.tl-item:hover .tl-content p { color: var(--text); }

/* ═══════════ EVENT CARDS ═══════════ */
.event-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }

.event-card {
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:var(--radius); padding:40px 28px; text-align:center;
    transition:all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.event-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.event-card:hover::before { opacity: 1; }
.event-card:hover { background:rgba(255,255,255,0.12); transform:translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }

.event-icon {
    width:56px; height:56px; margin:0 auto 16px;
    background: var(--gold-pale);
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    transition: all 0.4s var(--ease);
}
.event-card:hover .event-icon {
    background: rgba(196,163,90,0.25);
    transform: scale(1.1);
    box-shadow: 0 0 24px rgba(196,163,90,0.2);
}
.event-icon svg { width:24px; height:24px; color:var(--gold); }

.event-card h3 {
    font-family:var(--ff-script); font-size:1.8rem; color:var(--gold-light); margin-bottom:12px;
}
.event-time {
    font-family:var(--ff-sans); font-size:0.85rem; font-weight:600;
    color:var(--cream); display:flex; align-items:center; justify-content:center; gap:6px;
    margin-bottom:10px;
}
.event-time svg { width:14px; height:14px; color:var(--gold); }
.event-venue { font-family:var(--ff-serif); font-size:1rem; color:var(--cream); opacity:0.9; }
.event-addr { font-family:var(--ff-sans); font-size:0.75rem; color:var(--cream); opacity:0.5; margin-top:4px; }

/* ═══════════ ITINERARY ═══════════ */
.itin-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
    margin-top:48px;
}

.itin-item {
    background: var(--white); border-radius: var(--radius);
    padding: 36px 28px; text-align: center;
    box-shadow: var(--shadow-m);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}
.itin-item::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--olive), var(--gold), var(--olive));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}
.itin-item:hover::after { transform: scaleX(1); }
.itin-item:hover { transform:translateY(-5px); box-shadow:var(--shadow-m), var(--shadow-glow); }

.itin-icon {
    width:48px; height:48px; margin:0 auto 14px;
    background: linear-gradient(135deg, var(--olive), var(--olive-dark));
    border-radius:var(--radius-s); display:flex; align-items:center; justify-content:center;
    transition: all 0.4s var(--ease);
}
.itin-item:hover .itin-icon { border-radius: 50%; transform: scale(1.08) rotate(4deg); }
.itin-icon svg { width:20px; height:20px; color:var(--cream); }

.itin-time {
    font-family:var(--ff-sans); font-size:0.7rem; font-weight:600;
    color:var(--gold); letter-spacing:2px; margin-bottom:6px;
}
.itin-item h4 { font-family:var(--ff-serif); font-size:1.15rem; font-weight:600; color:var(--text); }
.itin-item p { font-family:var(--ff-sans); font-size:0.78rem; color:var(--text-muted); margin-top:4px; }

/* ═══════════ DRESS CODE ═══════════ */
.dress-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin:40px auto 0; max-width:700px; }

.dress-card {
    background: var(--white); border-radius: var(--radius);
    padding: 40px 32px; text-align: center;
    box-shadow: var(--shadow-m);
    transition: all 0.5s var(--ease);
    transition:all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.dress-card::before {
    content: '';
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(196,163,90,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.dress-card:hover::before { opacity: 1; }
.dress-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-m), var(--shadow-glow); }

.dress-icon {
    width:56px; height:56px; margin:0 auto 14px;
    background: linear-gradient(135deg, var(--olive), var(--olive-mid));
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    transition: all 0.4s var(--ease);
}
.dress-card:hover .dress-icon { transform: scale(1.1); box-shadow: 0 4px 16px rgba(152,173,144,0.2); }
.dress-icon svg { width:24px; height:24px; color:var(--cream); }

.dress-card h4 {
    font-family:var(--ff-serif); font-size:1.4rem; font-weight:600;
    color:var(--olive-dark); margin-bottom:10px;
}
.dress-card p { font-family:var(--ff-sans); font-size:0.82rem; color:var(--text-muted); line-height:1.7; }

.palette-section { text-align:center; margin-top:48px; }
.palette-section h4 {
    font-family:var(--ff-serif); font-size:1.2rem; font-weight:600;
    color:var(--olive-dark); margin-bottom:20px;
    display:flex; align-items:center; justify-content:center; gap:8px;
}
.palette-section h4 svg { width:18px; height:18px; color:var(--gold); }

.palette-row { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }

.pal {
    width:52px; height:52px; border-radius:var(--radius-s);
    box-shadow:var(--shadow-s); transition:all 0.4s var(--ease-out);
    cursor:pointer; position:relative;
}
.pal:hover { transform:translateY(-8px) scale(1.18); box-shadow:var(--shadow-m), 0 0 20px rgba(0,0,0,0.08); }
.pal:hover::after {
    content:attr(data-name); position:absolute; bottom:-26px; left:50%; transform:translateX(-50%);
    font-family:var(--ff-sans); font-size:0.6rem; color:var(--text-muted); white-space:nowrap;
    background: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: var(--shadow-s);
}

/* ═══════════ GALLERY ═══════════ */
.gallery-sub {
    text-align:center; font-family:var(--ff-sans); font-size:0.85rem;
    color:var(--text-muted); margin-bottom:40px;
    display:flex; align-items:center; justify-content:center; gap:8px;
}
.gallery-sub svg { width:14px; height:14px; color:var(--gold); }

.gal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }

.gal-item {
    border-radius:var(--radius-s); overflow:hidden;
    position:relative; cursor:pointer; aspect-ratio:1;
    box-shadow: var(--shadow-s);
    transition: box-shadow 0.4s ease;
}
.gal-item:hover { box-shadow: var(--shadow-m); }
.gal-wide { grid-column:span 2; aspect-ratio:2/1; }

.gal-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s var(--ease-out), filter 0.4s ease; }
.gal-item:hover img { transform:scale(1.06); }

.gal-hover {
    position:absolute; inset:0;
    background: linear-gradient(135deg, rgba(56,69,52,0.6), rgba(196,163,90,0.15));
    display:flex; align-items:center; justify-content:center;
    opacity:0; transition: opacity 0.4s ease;
}
.gal-hover svg { width:28px; height:28px; color:var(--cream); transform: scale(0.8); transition: transform 0.3s var(--ease-out); }
.gal-item:hover .gal-hover { opacity:1; }
.gal-item:hover .gal-hover svg { transform: scale(1); }

/* ═══════════ LIGHTBOX ═══════════ */
.lb {
    display:none; position:fixed; inset:0; z-index:9999;
    background:rgba(0,0,0,0.96);
    align-items:center; justify-content:center; padding:40px;
    backdrop-filter: blur(8px);
}
.lb.active { display:flex; }
.lb img {
    max-width:90vw; max-height:85vh; object-fit:contain;
    border-radius:var(--radius-s); animation:lbIn 0.4s var(--ease-out);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
@keyframes lbIn { from{opacity:0;transform:scale(0.9) translateY(12px)} to{opacity:1;transform:scale(1) translateY(0)} }

.lb-close, .lb-prev, .lb-next {
    position:absolute; color:var(--cream);
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    padding: 8px;
}
.lb-close svg, .lb-prev svg, .lb-next svg { width:28px; height:28px; }
.lb-close { top:20px; right:24px; }
.lb-prev { left:20px; top:50%; transform:translateY(-50%); }
.lb-next { right:20px; top:50%; transform:translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color:var(--gold); background: rgba(196,163,90,0.15); }

/* ═══════════ LOCATION ═══════════ */
.loc-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:48px; }

.loc-card {
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:var(--radius); padding:32px; text-align:center;
    transition: all 0.4s var(--ease-out);
}
.loc-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.loc-head {
    display:flex; align-items:center; justify-content:center; gap:10px;
    margin-bottom:16px;
}
.loc-head svg { width:22px; height:22px; color:var(--gold); }
.loc-head h3 { font-family:var(--ff-script); font-size:1.8rem; color:var(--gold-light); }

.loc-name { font-family:var(--ff-serif); font-size:1.1rem; font-weight:600; color:var(--cream); }
.loc-addr {
    font-family:var(--ff-sans); font-size:0.78rem; color:var(--cream); opacity:0.6;
    display:flex; align-items:center; justify-content:center; gap:4px; margin-bottom:18px;
}
.loc-addr svg { width:12px; height:12px; }
.loc-map { border-radius:var(--radius-s); overflow:hidden; margin-bottom:18px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06); }

.loc-btns { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }

.btn-loc {
    display:inline-flex; align-items:center; gap:6px;
    padding:10px 20px; border-radius:50px;
    font-family:var(--ff-sans); font-size:0.75rem; font-weight:500;
    transition:all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-loc::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-loc:hover::before { left: 100%; }
.btn-loc svg { width:14px; height:14px; position: relative; z-index: 1; }
.btn-gmaps { background:var(--white); color:var(--text); }
.btn-waze { background:#00C8FF; color:var(--white); }
.btn-loc:hover { transform:translateY(-2px); box-shadow:var(--shadow-m); }

/* ═══════════ RSVP ═══════════ */
.rsvp-sub {
    text-align:center; font-family:var(--ff-sans); font-size:0.82rem;
    color:var(--text-muted); margin-bottom:36px;
    display:flex; align-items:center; justify-content:center; gap:8px;
}
.rsvp-sub svg { width:14px; height:14px; color:var(--gold); }

.rsvp-form {
    background: var(--white); padding: 56px 48px;
    border-radius: var(--radius); box-shadow: var(--shadow-l);
    position: relative;
    overflow: hidden;
}
.rsvp-form::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--olive), var(--gold), var(--olive));
}

.fg { margin-bottom:22px; }
.fg-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }

.fg label {
    display:flex; align-items:center; gap:6px;
    font-family:var(--ff-sans); font-size:0.72rem; font-weight:600;
    color:var(--olive-dark); text-transform:uppercase; letter-spacing:1px;
    margin-bottom:8px;
}
.fg label svg { width:14px; height:14px; color:var(--gold); }

.fg input, .fg select, .fg textarea {
    width:100%; padding:14px 18px;
    border:1.5px solid var(--cream-dark); border-radius:var(--radius-s);
    font-family:var(--ff-serif); font-size:1rem; color:var(--text);
    background:var(--cream); outline:none;
    transition:all 0.3s ease;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color:var(--gold);
    box-shadow:0 0 0 4px var(--gold-pale);
    background: var(--white);
}
.fg input::placeholder, .fg textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}
.fg textarea { resize:vertical; min-height:90px; }

.btn-rsvp {
    width:100%; padding:16px;
    background:linear-gradient(135deg, var(--olive), var(--olive-dark));
    color:var(--cream);
    border:none; border-radius:50px;
    font-family:var(--ff-sans); font-size:0.82rem; font-weight:600;
    letter-spacing:2px; text-transform:uppercase;
    display:flex; align-items:center; justify-content:center; gap:10px;
    transition:all var(--dur) var(--ease);
    box-shadow: 0 4px 16px rgba(83,102,77,0.3);
    position: relative;
    overflow: hidden;
}
.btn-rsvp::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}
.btn-rsvp:hover::before { left: 100%; }
.btn-rsvp svg { width:16px; height:16px; position: relative; z-index: 1; }
.btn-rsvp span { position: relative; z-index: 1; }
.btn-rsvp:hover {
    background:linear-gradient(135deg, var(--gold), var(--gold-light));
    color:var(--green-deep);
    transform:translateY(-2px);
    box-shadow:0 8px 28px rgba(196,163,90,0.35);
}

.rsvp-ok { text-align:center; padding:60px 24px; }
.rsvp-ok.hidden { display:none; }
.rsvp-ok-icon { width:56px; height:56px; color:var(--olive); margin:0 auto 16px; animation:popIn 0.5s ease; }
@keyframes popIn { 0%{transform:scale(0)} 50%{transform:scale(1.3)} 100%{transform:scale(1)} }
.rsvp-ok h3 { font-family:var(--ff-script); font-size:2.5rem; color:var(--olive-dark); margin-bottom:8px; }
.rsvp-ok p { font-family:var(--ff-sans); font-size:0.9rem; color:var(--text-muted); }

/* ═══════════ REGALOS ═══════════ */
.regalos-sub {
    text-align:center; font-size:1.05rem; color:var(--text-muted);
    max-width:550px; margin:12px auto 44px;
}
.regalo-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; max-width:750px; margin:0 auto; }

.regalo-card {
    background:var(--white); border-radius:var(--radius);
    padding:36px 28px; text-align:center;
    box-shadow:var(--shadow-s); border:1px solid rgba(152,173,144,0.06);
    transition:all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.regalo-card::before {
    content: '';
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(196,163,90,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.regalo-card:hover::before { opacity: 1; }
.regalo-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-m), var(--shadow-glow); }

.regalo-icon {
    width:56px; height:56px; margin:0 auto 14px;
    background:linear-gradient(135deg, var(--olive), var(--olive-dark));
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    transition: all 0.4s var(--ease);
}
.regalo-card:hover .regalo-icon { transform: scale(1.1); box-shadow: 0 4px 16px rgba(152,173,144,0.2); }
.regalo-icon svg { width:24px; height:24px; color:var(--cream); }

.regalo-card h4 {
    font-family:var(--ff-serif); font-size:1.4rem; font-weight:600;
    color:var(--olive-dark); margin-bottom:14px;
}
.regalo-info { text-align:left; }
.regalo-info p {
    font-family:var(--ff-sans); font-size:0.82rem; color:var(--text-muted);
    margin-bottom:6px; display:flex; align-items:center; gap:8px;
}
.regalo-info svg { width:14px; height:14px; color:var(--gold); flex-shrink:0; }
.regalo-card > p { font-family:var(--ff-sans); font-size:0.82rem; color:var(--text-muted); line-height:1.8; }

/* ═══════════ FOOTER ═══════════ */
#footer { background:var(--green-deep); padding-bottom:40px; }

.footer-body { text-align:center; padding:32px 24px 0; }
.footer-botanical { margin-bottom:8px; }
.footer-botanical svg { width:160px; height:60px; display:inline-block; }

.footer-names { font-family:var(--ff-script); font-size:3rem; color:var(--cream); text-shadow: 0 0 40px rgba(196,163,90,0.15); }
.footer-date {
    font-family:var(--ff-sans); font-size:1rem; color:var(--gold-light);
    letter-spacing:8px; margin:4px 0 28px;
}

.btn-save {
    display:inline-flex; align-items:center; gap:10px;
    padding:14px 36px;
    background:var(--gold); color:var(--green-deep);
    font-family:var(--ff-sans); font-size:0.78rem; font-weight:600;
    letter-spacing:2px; text-transform:uppercase;
    border-radius:50px;
    transition:all var(--dur) var(--ease);
    box-shadow:0 4px 16px rgba(196,163,90,0.3);
    margin-bottom:32px;
    position: relative;
    overflow: hidden;
}
.btn-save::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}
.btn-save:hover::before { left: 100%; }
.btn-save svg { width:16px; height:16px; position: relative; z-index: 1; }
.btn-save span { position: relative; z-index: 1; }
.btn-save:hover {
    background:var(--cream); transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(196,163,90,0.4);
}

.footer-quote {
    font-family:var(--ff-serif); font-style:italic; font-size:1.05rem;
    color:var(--cream); opacity:0.6; margin-bottom:24px; line-height:1.8;
    position:relative; display:inline-block;
    max-width: 380px;
}
.footer-quote svg { width:16px; height:16px; color:var(--gold); opacity:0.5; vertical-align:middle; margin-right:4px; }
.footer-quote cite { font-size:0.85rem; display:block; margin-top:4px; font-style:normal; letter-spacing: 1px; }

.footer-made {
    font-family:var(--ff-sans); font-size:0.8rem; color:var(--cream);
    opacity:0.8; letter-spacing:1px;
    display:flex; align-items:center; justify-content:center; gap:8px;
    margin-top: 60px;
}
.footer-link { 
    font-weight:700; 
    color:var(--gold-light); 
    text-decoration:none; 
    transition: all 0.4s var(--ease);
    border: 1px solid rgba(196,163,90,0.3);
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-link:hover { 
    background: var(--gold);
    color: var(--green-deep);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196,163,90,0.4);
    border-color: var(--gold);
}
.heart-icon { width:12px; height:12px; color:#C77; animation: heartBeat 1.5s ease-in-out infinite; }
@keyframes heartBeat { 0%,100%{transform:scale(1)} 14%{transform:scale(1.2)} 28%{transform:scale(1)} 42%{transform:scale(1.15)} 56%{transform:scale(1)} }

/* ═══════════ SCROLL REVEAL ═══════════ */
.anim {
    opacity:0; transform:translateY(32px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.anim.visible { opacity:1; transform:translateY(0); }

/* ═══════════ FLOATING GOLD PARTICLES ═══════════ */
@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media(max-width:1024px) {
    .event-grid, .itin-grid { grid-template-columns:repeat(2,1fr); }
    .story-layout { gap:40px; }
}

@media(max-width:768px) {
    .nav-menu {
        position:fixed; inset:0;
        background:rgba(56,69,52,0.97); backdrop-filter:blur(24px);
        flex-direction:column; align-items:center; justify-content:center;
        gap:20px;
        opacity:0; visibility:hidden;
        transition:all 0.4s var(--ease-out);
    }
    .nav-menu.open { opacity:1; visibility:visible; }
    .nav-menu a { font-size:0.9rem; }
    .nav-menu a::after { display: none; }
    .menu-toggle { display:block; z-index:9001; }

    .story-layout { grid-template-columns:1fr; }
    .story-image { max-width:400px; margin:0 auto; }
    .story-image img { aspect-ratio:4/5; }

    .event-grid, .itin-grid { grid-template-columns:1fr; max-width:400px; margin-left:auto; margin-right:auto; }
    .loc-grid, .dress-grid, .regalo-grid { grid-template-columns:1fr; max-width:420px; margin-left:auto; margin-right:auto; }

    .gal-grid { grid-template-columns:1fr 1fr; }
    .gal-wide { grid-column:span 2; }

    .cd-grid { gap:8px; }
    .cd-value { font-size:2.2rem; }
    .cd-sep { font-size:1.8rem; }

    .fg-row { grid-template-columns:1fr; }
    .rsvp-form { padding:32px 24px; }

    .sec-cream, .sec-dark, .sec-warm { padding:60px 0; }

    .hero-botanical { width: 140px; height: 220px; }
    
    .scallop-divider svg { height: 24px; }
}

@media(max-width:480px) {
    .hero-pre { letter-spacing:4px; font-size:0.6rem; }
    .hero-surname { letter-spacing:5px; font-size:0.75rem; }
    .hero-date-badge { padding:10px 20px; }
    .hero-date-badge span { font-size:0.9rem; }

    .cd-card { padding:20px 12px; }
    .cd-value { font-size:1.8rem; }
    .cd-sep { display:none; }
    .cd-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }

    .gal-grid { grid-template-columns:1fr; }
    .gal-wide { grid-column:span 1; aspect-ratio:16/9; }

    .hero-botanical { width: 100px; height: 160px; }
    .footer-names { font-size: 2.4rem; }
    .script-title::after { width: 40px; }
}

/* ═══════════ MUSIC PLAYER ═══════════ */
.music-player {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}
.btn-music {
    background: var(--white);
    color: var(--olive);
    border: 1px solid rgba(152,173,144,0.2);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: var(--shadow-m);
    transition: all 0.3s var(--ease);
    font-family: var(--ff-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-music:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-l);
}
.btn-music.playing {
    background: var(--olive);
    color: var(--white);
}
.btn-music svg {
    width: 18px;
    height: 18px;
}
.btn-music.playing svg {
    animation: pulseMusic 2s infinite;
}
@keyframes pulseMusic {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
@media(max-width: 768px) {
    .music-player {
        bottom: 20px;
        left: 20px;
    }
    .btn-music {
        padding: 12px;
    }
    .music-text {
        display: none;
    }
}

/* ═══════════ REGALOS ═══════════ */
.regalo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.regalo-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-m);
    transition: all 0.4s var(--ease);
}
.regalo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-l), var(--shadow-glow);
}
.regalo-icon {
    width: 56px; height: 56px;
    background: var(--olive-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.regalo-card h4 {
    font-family: var(--ff-serif);
    font-size: 1.3rem;
    color: var(--olive-dark);
    margin-bottom: 15px;
}
.regalo-info p {
    font-family: var(--ff-sans);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.regalo-info svg { width: 14px; height: 14px; color: var(--gold); }

