/* ================================================
   VARIABLES & RESET
================================================ */
:root {
    --cream:       #FEF7EE;
    --cream-dark:  #F5EAD8;
    --gold:        #C8963C;
    --gold-light:  #E4BF7A;
    --gold-pale:   #F5E6C8;
    --champagne:   #F0D9A8;
    --dark:        #1C1008;
    --dark-brown:  #3A2010;
    --warm-brown:  #7A5030;
    --text:        #3A2A1A;
    --text-mid:    #7A6A54;
    --text-light:  #AE9E8A;
    --blush:       #F2D5CE;
    --sage:        #8E9E7A;
    --sage-light:  #C4D0B4;
    --white:       #FFFFFF;
    --shadow:      rgba(58, 32, 16, 0.12);
    --shadow-lg:   rgba(58, 32, 16, 0.22);
    --radius:      14px;
    --radius-sm:   8px;
    --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ================================================
   SPLASH
================================================ */
.splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(160deg, #1C1008 0%, #3A2010 45%, #0E0804 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.splash.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-petals {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.splash-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.splash-pre {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(254, 247, 238, 0.5);
}

.splash-names {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.splash-bride, .splash-groom {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.05em;
}

.splash-bride { font-style: italic; }

.splash-amp {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    color: var(--gold-light);
    line-height: 1.2;
    display: block;
    animation: heartBeat 1.5s ease-in-out infinite;
}

.splash-date {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(254, 247, 238, 0.45);
    font-weight: 300;
}

.splash-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.8rem;
    padding: 1rem 2.8rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 30px rgba(200, 150, 60, 0.45);
    animation: splashPulse 2s ease-in-out infinite;
}

.splash-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 40px rgba(200, 150, 60, 0.6);
}

.splash-hint {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(254, 247, 238, 0.25);
}

@keyframes splashPulse {
    0%, 100% { box-shadow: 0 6px 30px rgba(200,150,60,0.45); }
    50%       { box-shadow: 0 6px 45px rgba(200,150,60,0.7); }
}

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

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

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

/* ================================================
   TYPOGRAPHY
================================================ */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--dark-brown);
}

.section-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 400;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.8rem 0 1.2rem;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.6;
}

/* ================================================
   LAYOUT
================================================ */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: clamp(5rem, 10vw, 9rem) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* ================================================
   BUTTONS
================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(200, 150, 60, 0.35);
}

.btn-primary:hover {
    background: var(--dark-brown);
    box-shadow: 0 6px 28px rgba(58, 32, 16, 0.35);
    transform: translateY(-2px);
}

.btn-primary svg { flex-shrink: 0; }

/* ================================================
   SCROLL REVEAL
================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }
.delay-6 { animation-delay: 0.9s; }

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

.hidden { display: none !important; }

/* ================================================
   MUSIC PLAYER
================================================ */
.music-player {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(28, 16, 8, 0.82);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 150, 60, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    transition: var(--transition);
}

.music-btn {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    flex-shrink: 0;
}

.music-btn:hover { background: var(--gold-light); transform: scale(1.08); }
.music-btn svg { width: 18px; height: 18px; }

.music-label {
    font-size: 0.72rem;
    color: rgba(254, 247, 238, 0.8);
    font-weight: 300;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* ================================================
   NAVIGATION
================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(28, 16, 8, 0.94);
    backdrop-filter: blur(16px);
    padding: 0.8rem 2rem;
    box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.15em;
}

.brand-star {
    color: var(--gold-light);
    font-size: 0.9rem;
}

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

.nav-link {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(254, 247, 238, 0.85);
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-link:hover { color: var(--gold-light); }

.nav-link.nav-cta {
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.2rem;
}

.nav-link.nav-cta:hover { background: var(--gold-light); color: var(--dark); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
}

.bar {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ================================================
   HERO
================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 1.5rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(200,150,60,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(142,158,122,0.15) 0%, transparent 50%),
        linear-gradient(160deg, #1C1008 0%, #3A2010 40%, #2A1A0C 70%, #0E0804 100%);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28,16,8,0.3) 0%, rgba(28,16,8,0.1) 50%, rgba(28,16,8,0.5) 100%);
}

/* Animated Petals */
.petals-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 10px;
    height: 14px;
    background: radial-gradient(ellipse at center, rgba(228, 191, 122, 0.6), rgba(200, 150, 60, 0.2));
    border-radius: 50% 50% 40% 60%;
    animation: petalFall linear infinite;
    top: -20px;
}

@keyframes petalFall {
    0%   { transform: translateY(-20px) rotate(0deg) translateX(0); opacity: 0; }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(110vh) rotate(720deg) translateX(60px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    width: 100%;
}

.hero-pretitle {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.hero-names {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
}

.name-bride, .name-groom {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 8vw, 5.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.05em;
    display: block;
}

.name-bride { font-style: italic; }

.name-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.name-surname {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.65rem, 1.4vw, 0.85rem);
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(254, 247, 238, 0.5);
    display: block;
}

.hero-amp {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold-light);
    line-height: 1;
    display: block;
    margin: 0.3rem 0;
}

.hero-surnames {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(254, 247, 238, 0.55);
    margin-bottom: 2.2rem;
}

.surnames-dot { color: var(--gold); font-size: 0.5rem; opacity: 0.7; }

.hero-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200, 150, 60, 0.3);
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(8px);
}

.date-piece {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.date-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.date-lbl {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.7;
}

.date-divider {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.4;
    font-weight: 300;
}

.hero-venue {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(254, 247, 238, 0.6);
    margin-bottom: 2.8rem;
    font-weight: 300;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.8rem, 3vw, 2rem);
    margin-bottom: 3rem;
}

.count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.count-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(200, 150, 60, 0.25);
    border-radius: var(--radius-sm);
    padding: 0.8rem clamp(0.8rem, 2.5vw, 1.5rem);
    backdrop-filter: blur(8px);
    min-width: clamp(64px, 12vw, 90px);
    text-align: center;
}

.count-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    display: block;
}

.count-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.75;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(200, 150, 60, 0.5);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.hero-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

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

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

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

/* ================================================
   HISTORIA
================================================ */
.historia-section {
    background: var(--white);
}

.section-deco-left {
    position: absolute;
    left: 0;
    top: 8rem;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(200,150,60,0.07), transparent 70%);
    pointer-events: none;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 2.5rem 1fr;
    gap: 0;
    margin-bottom: 5rem;
    align-items: start;
}

.timeline-photo-wrap {
    padding: 0 2.5rem;
}

.timeline-item[data-side="left"] .timeline-photo-wrap { padding-right: 2.5rem; padding-left: 0; }
.timeline-item[data-side="right"] .timeline-photo-wrap { padding-left: 2.5rem; padding-right: 0; }

.timeline-photo {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--cream-dark), var(--champagne));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px var(--shadow);
}

.timeline-photo.ph-1 { background: linear-gradient(135deg, #e8d5b7, #d4a977); }
.timeline-photo.ph-2 { background: linear-gradient(135deg, #d4c5b0, #c4a480); }
.timeline-photo.ph-3 { background: linear-gradient(135deg, #c8d4bc, #a8b898); }
.timeline-photo.ph-4 { background: linear-gradient(135deg, #e4ccb8, #c8a080); }

.timeline-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-dot {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1.2rem;
    position: relative;
    z-index: 2;
}

.dot-inner {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
}

.special-dot .dot-inner {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    background: var(--dark-brown);
    box-shadow: 0 0 0 3px var(--gold);
}

.timeline-content {
    padding: 0 2.5rem;
}

.timeline-item[data-side="left"] .timeline-content { padding-left: 2.5rem; padding-right: 0; }
.timeline-item[data-side="right"] .timeline-content { padding-right: 2.5rem; padding-left: 0; text-align: right; }

.timeline-year {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--dark-brown);
}

.timeline-content p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.8;
}

.timeline-final {
    text-align: center;
    margin-top: 2rem;
}

.timeline-final-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--cream-dark), var(--gold-pale));
    border: 1px solid var(--champagne);
    border-radius: var(--radius);
    padding: 3rem 4rem;
    box-shadow: 0 8px 40px var(--shadow);
    max-width: 500px;
    margin: 0 auto;
}

.final-icon {
    font-size: 2.5rem;
    color: var(--gold);
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.timeline-final-inner h3 { font-size: 1.8rem; }
.timeline-final-inner p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 0.5rem; }

/* ================================================
   RSVP
================================================ */
.rsvp-section {
    background: var(--dark-brown);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.rsvp-section .section-tag { color: var(--gold-light); }
.rsvp-section .section-title { color: var(--cream); }
.rsvp-section .section-desc { color: rgba(254, 247, 238, 0.7); }
.rsvp-section strong { color: var(--gold-light); }

.rsvp-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(200,150,60,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(142,158,122,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.rsvp-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200, 150, 60, 0.2);
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3.5rem);
    backdrop-filter: blur(8px);
}

.rsvp-form { display: flex; flex-direction: column; gap: 1.4rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(254, 247, 238, 0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200, 150, 60, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(254, 247, 238, 0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(200, 150, 60, 0.15);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-brown); }

.form-group textarea { resize: vertical; min-height: 90px; }

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.3rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(200, 150, 60, 0.2);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.radio-option:hover { border-color: var(--gold); background: rgba(200,150,60,0.05); }

.radio-option input[type="radio"] { position: absolute; opacity: 0; }

.radio-custom {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(200, 150, 60, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.radio-option input:checked ~ .radio-custom {
    border-color: var(--gold);
    background: var(--gold);
}

.radio-option input:checked ~ .radio-custom::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
}

.radio-text { font-size: 0.88rem; color: rgba(254, 247, 238, 0.8); }

.btn-submit {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(200, 150, 60, 0.4);
    align-self: center;
    min-width: 220px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 150, 60, 0.5);
}

.rsvp-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.rsvp-success.show { display: block; }

.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }

.rsvp-success h3 {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
}

.rsvp-success p { color: rgba(254, 247, 238, 0.75); font-size: 1rem; }

/* ================================================
   LUGAR
================================================ */
.lugar-section { background: var(--cream); }

.lugar-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.venue-name {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--dark-brown);
    margin-bottom: 0.4rem;
}

.venue-tagline {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
    font-style: italic;
}

.lugar-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.lugar-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-icon-wrap {
    width: 40px;
    height: 40px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.detail-icon-wrap svg { width: 18px; height: 18px; }

.lugar-detail strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.lugar-detail p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.btn-maps {
    display: inline-flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.lugar-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 56px var(--shadow-lg);
    border: 1px solid var(--cream-dark);
}

.lugar-map iframe { display: block; }

/* ================================================
   ITINERARIO
================================================ */
.itinerario-section {
    background: linear-gradient(to bottom, var(--dark-brown) 0%, #2C1A0C 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.itinerario-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.itinerario-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.itinerario-section .section-tag { color: var(--gold-light); }
.itinerario-section .section-title { color: var(--cream); }
.itinerario-section .section-desc { color: rgba(254,247,238,0.6); }

.itinerario-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.itin-item {
    display: grid;
    grid-template-columns: 90px 40px 1fr;
    gap: 0;
    align-items: stretch;
}

.itin-time {
    text-align: right;
    padding-right: 1.2rem;
    padding-top: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold-light);
    flex-shrink: 0;
}

.itin-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.itin-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--dark-brown);
    box-shadow: 0 0 0 2px var(--gold);
    flex-shrink: 0;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.itin-dot.featured {
    width: 20px;
    height: 20px;
    background: var(--gold-light);
    box-shadow: 0 0 0 3px var(--gold), 0 0 20px rgba(200,150,60,0.4);
    margin-top: 1.35rem;
}

.itin-dot.last ~ .itin-line { display: none; }

.itin-line {
    width: 1px;
    flex-grow: 1;
    background: rgba(200, 150, 60, 0.25);
    margin-top: 2px;
}

.itin-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin: 0 0 2.5rem 1.5rem;
    padding: 1.4rem 1.6rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200, 150, 60, 0.15);
    border-radius: var(--radius);
    transition: var(--transition);
}

.itin-card:hover { background: rgba(255,255,255,0.07); }

.itin-card.featured-card {
    background: rgba(200, 150, 60, 0.1);
    border-color: rgba(200, 150, 60, 0.4);
}

.itin-emoji { font-size: 1.8rem; flex-shrink: 0; margin-top: 0.2rem; }

.itin-info h3 {
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 0.4rem;
}

.itin-info p {
    font-size: 0.87rem;
    color: rgba(254, 247, 238, 0.6);
    line-height: 1.75;
}

/* Camping note inside itinerario */
.camping-note {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    max-width: 760px;
    margin: 3rem auto 0;
    background: rgba(142, 158, 122, 0.12);
    border: 1px solid rgba(142, 158, 122, 0.35);
    border-radius: var(--radius);
    padding: 1.8rem 2rem;
}

.camping-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 0.1rem; }

.camping-text h3 {
    font-size: 1.2rem;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.camping-text p {
    font-size: 0.87rem;
    color: rgba(254,247,238,0.65);
    line-height: 1.8;
}

.camping-text strong { color: rgba(254,247,238,0.9); }

/* ================================================
   HOSPEDAJES
================================================ */
.hospedajes-section { background: var(--white); }

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hotel-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
}

.hotel-badge-top {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.hotel-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.05em; }

.hotel-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark-brown);
    line-height: 1.3;
}

.hotel-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.hotel-det {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-mid);
}

.hotel-det span { flex-shrink: 0; }

.btn-hotel {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    text-align: center;
    margin-top: auto;
}

.btn-hotel:hover {
    background: var(--gold);
    color: var(--white);
}

.hospedajes-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--gold-pale);
    border: 1px solid var(--champagne);
    border-radius: var(--radius);
    padding: 1.4rem 2rem;
}

.tip-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.hospedajes-tip p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }

/* ================================================
   GALERÍA
================================================ */
.galeria-section { background: var(--cream); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 0.8rem;
}

.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gal-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

/* Gradient placeholders for missing photos */
.ph-g1 { background: linear-gradient(135deg, #e8d5c4 0%, #c4a480 100%); }
.ph-g2 { background: linear-gradient(135deg, #d4c8b8 0%, #a89070 100%); }
.ph-g3 { background: linear-gradient(135deg, #c8d4bc 0%, #98b088 100%); }
.ph-g4 { background: linear-gradient(135deg, #e4ccb4 0%, #c49060 100%); }
.ph-g5 { background: linear-gradient(135deg, #d8c4c0 0%, #b09090 100%); }
.ph-g6 { background: linear-gradient(135deg, #c8d0c4 0%, #98a888 100%); }
.ph-g7 { background: linear-gradient(135deg, #e0d0b8 0%, #c0a070 100%); }
.ph-g8 { background: linear-gradient(135deg, #d4c8d4 0%, #a890a8 100%); }

.gal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gal-img-wrap:hover img { transform: scale(1.06); }

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 16, 8, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    font-size: 1.8rem;
}

.gal-img-wrap:hover .gal-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-bg {
    position: absolute;
    inset: 0;
    background: rgba(10, 5, 2, 0.94);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.lb-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lbImg {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lb-close, .lb-prev, .lb-next {
    position: absolute;
    z-index: 3;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.lb-close { top: 1.5rem; right: 1.5rem; font-size: 1.5rem; }
.lb-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ================================================
   REGALOS
================================================ */
.regalos-section {
    background: var(--dark-brown);
    position: relative;
    overflow: hidden;
}

.regalos-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200,150,60,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.regalos-section .section-tag { color: var(--gold-light); }
.regalos-section .section-title { color: var(--cream); }
.regalos-section .section-desc { color: rgba(254,247,238,0.65); }

.regalos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.regalo-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(200, 150, 60, 0.2);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    background: rgba(255,255,255,0.03);
}

.regalo-card:hover {
    border-color: rgba(200, 150, 60, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.regalo-top {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.liverpool-top { background: linear-gradient(135deg, #8B1C2C, #C02040); }
.amazon-top    { background: linear-gradient(135deg, #232F3E, #131A22); }
.efectivo-top  { background: linear-gradient(135deg, #3A2A14, #6A4A20); }

.regalo-brand-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
}

.amazon-logo { font-size: 1.4rem; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.regalo-emoji { font-size: 2.5rem; }

.regalo-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.regalo-body h3 {
    font-size: 1.2rem;
    color: var(--cream);
    font-weight: 500;
}

.regalo-body p { font-size: 0.87rem; color: rgba(254,247,238,0.6); line-height: 1.7; flex-grow: 1; }

.regalo-code {
    font-size: 0.78rem;
    color: var(--gold-light);
    background: rgba(200,150,60,0.1);
    border: 1px solid rgba(200,150,60,0.2);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.8rem;
}

.regalo-note {
    font-size: 0.78rem;
    color: rgba(254,247,238,0.45);
    font-style: italic;
}

/* ================================================
   REGALO SIMPLE
================================================ */
.regalo-simple {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem 3rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200, 150, 60, 0.25);
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
}

.regalo-simple-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.regalo-simple h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 400;
    color: var(--cream) !important;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.regalo-simple p {
    font-size: 0.95rem;
    color: rgba(254,247,238,0.75) !important;
    line-height: 1.9;
}

.regalo-simple-divider {
    color: var(--gold);
    opacity: 0.5;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    margin: 1.8rem 0;
}

.regalo-simple-sub {
    font-size: 0.84rem !important;
    color: rgba(254,247,238,0.45) !important;
    font-style: italic;
    line-height: 1.8 !important;
}

/* ================================================
   FORÁNEOS
================================================ */
.foraneos-section { background: var(--white); }

.foraneos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.foraneo-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    transition: var(--transition);
}

.foraneo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px var(--shadow);
    border-color: var(--champagne);
}

.foraneo-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }

.foraneo-card h3 {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 0.8rem;
}

.foraneo-card p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

.foraneo-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.foraneo-card li {
    font-size: 0.84rem;
    color: var(--text-mid);
    padding-left: 0.5rem;
}

.foraneo-tip {
    font-size: 0.82rem;
    color: var(--gold);
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.9rem;
    border-left: 3px solid var(--gold);
}

.foraneos-whatsapp {
    text-align: center;
    background: linear-gradient(135deg, var(--cream-dark), var(--gold-pale));
    border: 1px solid var(--champagne);
    border-radius: var(--radius);
    padding: 3rem;
}

.foraneos-whatsapp h3 {
    font-size: 1.6rem;
    color: var(--dark-brown);
    margin-bottom: 0.6rem;
}

.foraneos-whatsapp p {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #1DAB56;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

/* ================================================
   FOOTER
================================================ */
.footer {
    background: var(--dark);
    text-align: center;
    padding: 5rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.footer-deco {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--cream);
    margin-bottom: 0.4rem;
}

.footer-amp { color: var(--gold); }

.footer-date-text {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(254,247,238,0.4);
    margin-bottom: 1.5rem;
}

.footer-hearts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.footer-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(254,247,238,0.6);
    max-width: 500px;
    margin: 0 auto 0.4rem;
    line-height: 1.7;
}

.footer-authors {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.footer-msg {
    font-size: 0.88rem;
    color: rgba(254,247,238,0.5);
    margin-bottom: 1rem;
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(254,247,238,0.25);
    letter-spacing: 0.04em;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100svh;
        width: min(280px, 80vw);
        background: rgba(28, 16, 8, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(200, 150, 60, 0.2);
    }

    .nav-menu.open { right: 0; }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.7rem 1.5rem;
    }

    .nav-toggle { display: flex; }

    .lugar-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .timeline::before { left: 1.5rem; }

    .timeline-item {
        grid-template-columns: 3rem 1fr;
        grid-template-rows: auto auto;
    }

    .timeline-item .timeline-photo-wrap {
        grid-column: 2;
        grid-row: 2;
        padding: 1.5rem 0 0 2rem !important;
        order: 3;
    }

    .timeline-item .timeline-dot {
        grid-column: 1;
        grid-row: 1;
        justify-content: flex-start;
        padding-left: 1.08rem;
    }

    .timeline-item .timeline-content {
        grid-column: 2;
        grid-row: 1;
        padding: 0 0 0 2rem !important;
        text-align: left !important;
    }

    .itin-item { grid-template-columns: 76px 36px 1fr; }
    .itin-time { font-size: 0.9rem; padding-right: 0.8rem; }
}

@media (max-width: 640px) {
    .hero-surnames { flex-direction: column; gap: 0.2rem; }
    .surnames-dot { display: none; }
    .hero-date-badge { flex-direction: row; padding: 0.7rem 1.5rem; }

    .form-row { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .gallery-item.wide { grid-column: span 2; }

    .countdown { gap: 0.5rem; }
    .count-card { min-width: 58px; padding: 0.6rem 0.5rem; }

    .itin-item { grid-template-columns: 66px 30px 1fr; gap: 0; }
    .itin-time { font-size: 0.78rem; padding-right: 0.6rem; }
    .itin-card { margin-left: 1rem; padding: 1rem 1.2rem; }

    .music-player { bottom: 1.2rem; right: 1.2rem; }
    .lb-prev { left: 0.8rem; }
    .lb-next { right: 0.8rem; }
}

@media (max-width: 400px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
}
