/* ============================
   CSS VARIABLES & DESIGN TOKENS
   ============================ */
:root {
    /* Color Palette â€” Golden Hour Romance */
    --gold: #c9a96e;
    --gold-light: #e8d5a8;
    --gold-dark: #a07d47;
    --champagne: #f5e6cc;
    --ivory: #faf6f0;
    --cream: #fff8ef;
    --blush: #f2e0d5;
    --rose: #d4a09a;
    --rose-soft: #e8c4be;
    --wine: #6b3a3a;
    --charcoal: #2c2420;
    --warm-gray: #8a7e75;
    --warm-gray-light: #b5a99d;
    --white: #ffffff;
    --black: #1a1614;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #c9a96e 0%, #e8d5a8 50%, #c9a96e 100%);
    --gradient-hero: linear-gradient(180deg, rgba(26,22,20,0.3) 0%, rgba(26,22,20,0.6) 50%, rgba(26,22,20,0.85) 100%);
    --gradient-warm: linear-gradient(135deg, #faf6f0 0%, #f5e6cc 100%);
    --gradient-dark: linear-gradient(135deg, #2c2420 0%, #1a1614 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --font-script: 'Great Vibes', cursive;

    /* Spacing */
    --section-padding: clamp(80px, 12vh, 140px);
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 8px 40px rgba(201,169,110,0.3);
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================
   PRELOADER
   ============================ */
#preloader {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    transition: opacity 0.8s var(--ease-out), visibility 0.8s var(--ease-out);
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-ampersand {
    font-size: clamp(64px, 14vw, 100px);
    display: block;
    line-height: 1;
    filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.6));
    animation: ringGlow 2s ease-in-out infinite;
}

@keyframes ringGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(201,169,110,0.4)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 28px rgba(201,169,110,0.9)); transform: scale(1.08); }
}

.preloader-names {
    font-family: var(--font-display);
    font-size: clamp(14px, 2vw, 18px);
    color: var(--gold-light);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 16px;
    font-weight: 300;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* ============================
   FLOATING HEARTS
   ============================ */
#floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    overflow: visible;
}

.floating-heart {
    position: absolute;
    font-size: 14px;
    opacity: 0;
    animation: floatHeart linear infinite;
}

@keyframes floatHeart {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg) scale(0.5);
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.4; }
    100% {
        opacity: 0;
        transform: translateY(-10vh) rotate(360deg) scale(1);
    }
}

/* ============================
   NAVIGATION
   ============================ */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out);
}

#main-nav.scrolled {
    background: rgba(26, 22, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--gold);
    transition: transform 0.3s var(--ease-out);
}

.nav-logo:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-gift-btn {
    background: var(--gradient-gold) !important;
    color: var(--charcoal) !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    transition: all 0.3s var(--ease-out) !important;
    box-shadow: var(--shadow-gold);
}

.nav-gift-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,169,110,0.5);
}

.nav-gift-btn::after {
    display: none !important;
}

#nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

#nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

#nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

#nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(26, 22, 20, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s var(--ease-out);
}

#mobile-menu.active {
    right: 0;
}

#mobile-menu ul {
    list-style: none;
    text-align: center;
}

#mobile-menu ul li {
    margin: 24px 0;
}

#mobile-menu ul li a {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold-light);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

#mobile-menu ul li a:hover {
    color: var(--gold);
}

/* ============================
   HERO SECTION
   ============================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('assets/photo-hero.jpeg') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.hero-names {
    margin-bottom: 32px;
}

.hero-names .name {
    font-family: var(--font-display);
    font-size: clamp(42px, 8vw, 90px);
    font-weight: 300;
    color: var(--white);
    display: block;
    line-height: 1.1;
    letter-spacing: 4px;
}

.hero-names .ampersand {
    font-family: var(--font-script);
    font-size: clamp(50px, 10vw, 100px);
    color: var(--gold);
    display: block;
    line-height: 1.2;
    margin: 8px 0;
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.hero-date p {
    font-family: var(--font-body);
    font-size: clamp(13px, 2vw, 16px);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    white-space: nowrap;
}

.date-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    margin-bottom: 48px;
    opacity: 0.9;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gradient-gold);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-gold);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(201,169,110,0.5);
}

.hero-cta svg {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
    opacity: 0.6;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 22px; }
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header.light .section-tag,
.section-header.light .section-title {
    color: var(--white);
}

.section-tag {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: 1px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.section-divider span {
    font-size: 20px;
}

/* ============================
   STORY SECTION
   ============================ */
#story {
    padding: var(--section-padding) 0;
    background: var(--gradient-warm);
    position: relative;
}

#story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--ivory) 0%, transparent 100%);
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.story-card:nth-child(even) {
    direction: rtl;
}

.story-card:nth-child(even) > * {
    direction: ltr;
}

.story-card-image {
    height: 100%;
    min-height: 360px;
    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.story-card:hover .story-card-image img {
    transform: scale(1.05);
}

.story-card-content {
    padding: 48px;
}

.story-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
}

.story-card-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.story-card-content p {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.8;
    font-weight: 300;
}

/* ============================
   QUOTE SECTION
   ============================ */
.quote-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url('assets/photo-5.jpeg') center center / cover no-repeat;
    filter: brightness(0.3) blur(3px);
}

.quote-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.quote-text cite {
    display: block;
    font-size: clamp(14px, 2vw, 16px);
    font-style: normal;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--gold-light);
    margin-top: 24px;
    letter-spacing: 2px;
}

/* ============================
   GALLERY SECTION
   ============================ */
#gallery {
    padding: var(--section-padding) 0;
    background: var(--ivory);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item-large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item-wide {
    grid-column: span 3;
    aspect-ratio: 3/1.2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(26, 22, 20, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    font-size: 32px;
    transform: scale(0.5);
    transition: transform 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: scale(1);
}

/* ============================
   LIGHTBOX
   ============================ */
.lightbox {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(201,169,110,0.3);
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-out);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 40px;
    color: var(--white);
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* ============================
   VIDEO SECTION
   ============================ */
#video {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.video-wrapper {
    max-width: 900px;
    max-height: 550px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.video-wrapper video {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    background: #000;
}

/* ============================
   COUNTDOWN SECTION
   ============================ */
#countdown {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.countdown-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--gradient-dark);
}

.countdown-bg::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url('assets/photo-7.jpeg') center center / cover no-repeat;
    opacity: 0.15;
}

#countdown .container {
    position: relative;
    z-index: 1;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 4vw, 40px);
    margin-bottom: 48px;
}

.countdown-unit {
    text-align: center;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 300;
    color: var(--gold);
    display: block;
    line-height: 1;
    min-width: 80px;
}

.countdown-label {
    font-family: var(--font-body);
    font-size: clamp(10px, 1.5vw, 14px);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 8px;
    display: block;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 60px);
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    animation: separatorPulse 1s ease-in-out infinite;
}

@keyframes separatorPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.1; }
}

.countdown-message {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    opacity: 0.8;
}

/* ============================
   GIFT / PIX SECTION
   ============================ */
#gift {
    padding: var(--section-padding) 0;
    background: var(--gradient-warm);
    position: relative;
}

.gift-intro {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
}

.gift-intro p {
    font-size: 16px;
    color: var(--warm-gray);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 12px;
}

.gift-card {
    max-width: 640px;
    margin: 0 auto 48px;
    position: relative;
}

.gift-card-glow {
    position: absolute;
    top: -4px; right: -4px; bottom: -4px; left: -4px;
    background: var(--gradient-gold);
    border-radius: 28px;
    opacity: 0.5;
    filter: blur(20px);
    z-index: 0;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.02); }
}

.gift-card-inner {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201,169,110,0.2);
}

.gift-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.gift-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.gift-card-header h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.gift-subtitle {
    font-size: 14px;
    color: var(--warm-gray);
    font-weight: 300;
}

.pix-info {
    margin-bottom: 32px;
}

.pix-key-group {
    margin-bottom: 20px;
}

.pix-key-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.pix-key-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ivory);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 12px;
    padding: 14px 18px;
    transition: border-color 0.3s ease;
}

.pix-key-display:hover {
    border-color: var(--gold);
}

.pix-key-display span {
    font-size: 15px;
    color: var(--charcoal);
    font-weight: 400;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gradient-gold);
    color: var(--charcoal);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.copy-btn.copied {
    background: #4ade80;
    color: var(--white);
}

.copy-btn svg {
    stroke: currentColor;
}

.pix-reminder {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, #fff8ef 0%, #f5e6cc 100%);
    border: 1px solid rgba(201,169,110,0.3);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

.reminder-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.reminder-content strong {
    display: block;
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.reminder-content p {
    font-size: 13px;
    color: var(--warm-gray);
    line-height: 1.6;
    font-weight: 300;
}

.reminder-content em {
    color: var(--gold-dark);
    font-style: italic;
}

.pix-steps {
    border-top: 1px solid rgba(201,169,110,0.2);
    padding-top: 28px;
}

.pix-steps h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 24px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.step {
    text-align: center;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--gradient-gold);
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.step p {
    font-size: 12px;
    color: var(--warm-gray);
    line-height: 1.5;
    font-weight: 300;
}

.gift-thanks {
    text-align: center;
}

.gift-thanks p {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-dark);
}

/* ============================
   SAVE THE DATE SECTION
   ============================ */
#save-date {
    padding: var(--section-padding) 0;
    background: var(--ivory);
}

.save-date-card {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.save-date-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--gradient-dark);
}

.save-date-bg::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url('assets/photo-4.jpeg') center center / cover no-repeat;
    opacity: 0.2;
}

.save-date-content {
    position: relative;
    z-index: 1;
    padding: 64px 48px;
    text-align: center;
}

.save-date-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.save-date-content h2 {
    font-family: var(--font-script);
    font-size: clamp(40px, 7vw, 60px);
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 400;
}

.save-date-note {
    font-size: 15px;
    color: var(--gold-light);
    line-height: 1.8;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 36px;
}

.save-date-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.save-date-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    border: 1px solid rgba(201,169,110,0.2);
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
}

.detail-icon {
    font-size: 20px;
}

.detail-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: 1px;
}

.save-date-closing {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.6;
}

.closing-names {
    font-family: var(--font-script);
    font-size: 36px;
    color: var(--gold);
    display: block;
    margin-top: 8px;
}

/* ============================
   FOOTER
   ============================ */
#footer {
    padding: 60px 0 40px;
    background: var(--charcoal);
    text-align: center;
}

.footer-names {
    margin-bottom: 16px;
}

.footer-s, .footer-g {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
}

.footer-amp {
    font-family: var(--font-script);
    font-size: 40px;
    color: var(--gold);
    margin: 0 16px;
}

.footer-date {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.footer-msg {
    font-size: 14px;
    color: var(--warm-gray-light);
    font-weight: 300;
    margin-bottom: 32px;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.3;
    margin: 0 auto 24px;
}

.footer-credit {
    font-size: 12px;
    color: var(--warm-gray);
    font-weight: 300;
}

.footer-credit a {
    color: var(--gold);
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--gold-light);
}

/* ============================
   TOAST NOTIFICATION
   ============================ */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: transform 0.4s var(--ease-out);
    font-size: 14px;
    font-weight: 400;
    border: 1px solid rgba(201,169,110,0.3);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    font-size: 18px;
}

/* ============================
   REVEAL ANIMATIONS
   ============================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

.reveal-left,
.reveal-right,
.reveal-fade,
.reveal-scale {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-fade { transform: translateY(30px); }
.reveal-scale { transform: scale(0.9); }

.reveal-left.visible,
.reveal-right.visible,
.reveal-fade.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    #nav-toggle {
        display: flex;
    }

    .story-card {
        grid-template-columns: 1fr;
    }

    .story-card:nth-child(even) {
        direction: ltr;
    }

    .story-card-image {
        min-height: 260px;
    }

    .story-card-content {
        padding: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item-large {
        grid-column: span 2;
        aspect-ratio: 3/2;
    }

    .gallery-item-wide {
        grid-column: span 2;
        aspect-ratio: 3/2;
    }

    .gift-card-inner {
        padding: 28px 20px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .save-date-content {
        padding: 40px 24px;
    }

    .pix-key-display {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {

    /* ---- GERAL ---- */
    :root {
        --section-padding: clamp(56px, 9vh, 90px);
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: clamp(26px, 7vw, 38px);
    }

    /* ---- NAV ---- */
    #main-nav {
        padding: 10px 0;
    }

    .nav-logo {
        font-size: 22px;
    }

    /* ---- HERO ---- */
    .hero-content {
        padding: 20px 16px;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }

    .hero-names .name {
        font-size: clamp(40px, 12vw, 58px);
        letter-spacing: 1px;
    }

    .hero-names .ampersand {
        font-size: clamp(46px, 14vw, 66px);
    }

    .hero-date {
        flex-direction: column;
        gap: 6px;
    }

    .hero-date p {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .date-line {
        display: none;
    }

    .hero-tagline {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 13px;
        letter-spacing: 1px;
    }

    /* ---- STORY ---- */
    .story-card {
        border-radius: 14px;
    }

    .story-card-image {
        min-height: 220px;
    }

    .story-card-content {
        padding: 22px 18px;
    }

    .story-card-content h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .story-card-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .story-icon {
        font-size: 26px;
        margin-bottom: 10px;
    }

    /* ---- QUOTE ---- */
    .quote-section {
        padding: 56px 0;
    }

    .quote-text {
        font-size: clamp(17px, 4.5vw, 24px);
        line-height: 1.5;
    }

    /* ---- GALLERY ---- */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item {
        aspect-ratio: 1;
        border-radius: 8px;
    }

    .gallery-item-large {
        grid-column: span 2;
        aspect-ratio: 3/2;
    }

    .gallery-item-wide {
        grid-column: span 2;
        aspect-ratio: 3/2;
    }

    /* ---- VIDEO ---- */
    .video-wrapper {
        border-radius: 10px;
    }

    /* ---- COUNTDOWN ---- */
    .countdown-timer {
        gap: 4px;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .countdown-unit {
        min-width: 56px;
    }

    .countdown-number {
        font-size: clamp(26px, 7.5vw, 38px);
        min-width: auto;
    }

    .countdown-label {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .countdown-separator {
        font-size: 18px;
        padding-bottom: 20px;
    }

    .countdown-message {
        font-size: 14px;
        text-align: center;
        padding: 0 8px;
    }

    /* ---- GIFT / PIX ---- */
    .gift-intro p {
        font-size: 14px;
        line-height: 1.7;
    }

    .gift-card-inner {
        padding: 22px 14px;
    }

    .gift-card-header h3 {
        font-size: 20px;
    }

    .gift-emoji {
        font-size: 32px;
    }

    .gift-subtitle {
        font-size: 13px;
    }

    .pix-key-group label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    #pix-key {
        font-size: 13px;
        word-break: break-all;
    }

    .pix-reminder {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 16px 14px;
    }

    .reminder-content p {
        font-size: 13px;
    }

    .pix-steps h4 {
        font-size: 15px;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .step p {
        font-size: 12px;
    }

    .step-number {
        width: 34px;
        height: 34px;
        font-size: 15px;
        margin-bottom: 8px;
    }

    /* ---- SAVE THE DATE ---- */
    .save-date-content {
        padding: 32px 18px;
    }

    .save-date-content h2 {
        font-size: clamp(26px, 7.5vw, 38px);
    }

    .save-date-emoji {
        font-size: 36px;
    }

    .save-date-note {
        font-size: 13px;
        line-height: 1.7;
    }

    .save-date-info {
        gap: 12px;
    }

    .save-date-detail {
        font-size: 14px;
        gap: 8px;
    }

    .closing-names {
        font-size: 22px;
    }

    /* ---- FOOTER ---- */
    #footer {
        padding: 40px 0 28px;
    }

    .footer-s, .footer-g {
        font-size: 40px;
    }

    .footer-amp {
        font-size: 36px;
    }

    .footer-date {
        font-size: 14px;
    }

    .footer-msg {
        font-size: 13px;
    }

    /* ---- LIGHTBOX ---- */
    .lightbox-prev { left: 4px; font-size: 20px; width: 36px; height: 36px; }
    .lightbox-next { right: 4px; font-size: 20px; width: 36px; height: 36px; }
    .lightbox-close { top: 12px; right: 14px; font-size: 30px; }

    /* ---- MOBILE MENU ---- */
    #mobile-menu {
        width: 100%;
        max-width: 100%;
    }

    #mobile-menu ul li a {
        font-size: 20px;
    }

    /* ---- TOAST ---- */
    .toast {
        width: calc(100% - 32px);
        font-size: 13px;
    }
}

/* ============================
   PERFORMANCE
   ============================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
