/* ============================================================
   SANDY & JERO — WEDDING INVITATION
   Paleta: Borgoña · Verde Oliva · Crema · Gris Oscuro
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
    --guinda:       #4C0000;
    --guinda-dark:  #320000;
    --guinda-mid:   #6B0000;
    --guinda-pale:  #F0EAD8;
    --verde:        #6F6C43;
    --verde-dark:   #504E30;
    --verde-mid:    #ACB090;
    --verde-pale:   #F1EEE6;
    --dark:         #1A1A1A;
    --dark-2:       #242424;
    --gray:         #5C5C5C;
    --gray-mid:     #888;
    --gray-pale:    #F4F4F4;
    --cream:        #F1EEE6;
    --cream-mid:    #F0EAD8;
    --white:        #FFFFFF;
    --gold:         #C9A96E;

    --font-serif:   'Cinzel', Georgia, serif;
    --font-sans:    'Roboto', system-ui, sans-serif;

    --radius-sm:    10px;
    --radius:       16px;
    --radius-lg:    24px;
    --shadow:       0 4px 32px rgba(0,0,0,.07);
    --shadow-md:    0 8px 48px rgba(0,0,0,.12);
    --trans:        all .4s cubic-bezier(.25,.46,.45,.94);

    --nav-h:        72px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    color: var(--dark);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
section { scroll-margin-top: var(--nav-h); }

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------- SECTION HEADER ---------- */
.sec-header {
    text-align: center;
    margin-bottom: 72px;
}
.sec-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5.5vw, 60px);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.05;
    margin: 8px 0 16px;
}
.sec-header p {
    font-size: 15px;
    font-weight: 300;
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto;
}
.sec-header--light h2 { color: var(--white); }
.sec-header--light p  { color: rgba(255,255,255,.55); }

/* ---------- EYEBROW ---------- */
.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--guinda);
    margin-bottom: 4px;
}
.eyebrow--light { color: rgba(255,255,255,.55); }

/* ---------- ORNAMENT ---------- */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 20px 0;
}
.ornament span {
    width: 64px;
    height: 1px;
    background: rgba(255,255,255,.35);
}
.ornament i { color: var(--white); font-size: 13px; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .6px;
    cursor: pointer;
    border: none;
    transition: var(--trans);
    white-space: nowrap;
}
.btn-guinda {
    background: var(--verde);
    color: var(--white);
}
.btn-guinda:hover {
    background: var(--verde-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(111,108,67,.35);
}
.btn-verde {
    background: var(--verde);
    color: var(--white);
}
.btn-verde:hover {
    background: var(--verde-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(111,108,67,.35);
}
.btn-outline-guinda {
    background: transparent;
    border: 1.5px solid var(--guinda);
    color: var(--guinda);
}
.btn-outline-guinda:hover {
    background: var(--guinda);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--guinda);
}
.btn-white:hover {
    background: rgba(255,255,255,.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-hotel {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.35);
    color: var(--white);
    width: 100%;
    justify-content: center;
    margin-top: auto;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.btn-hotel:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.7);
    transform: none;
}

/* ---------- FADE-IN ANIMATION ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NAVEGACIÓN
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    padding: 0;
    transition: var(--trans);
}
.nav.nav-hidden {
    transform: translateY(calc(-100% - 8px));
}
.nav.scrolled {
    background: rgba(26,26,26,.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    max-width: 88px;
    max-height: 44px;
    flex-shrink: 0;
}
.nav-logo-image {
    width: 100%;
    height: auto;
    max-width: 88px;
    max-height: 44px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}
.nav-links {
    display: flex;
    gap: 40px;
}
.nav-links a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    padding-bottom: 4px;
    position: relative;
    transition: color .3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--guinda-mid);
    transition: width .35s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/hero1.webp') center top / cover no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(90, 55, 15, .35);
    mix-blend-mode: multiply;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(15,15,15,.40) 0%,
        rgba(15,15,15,.40) 40%,
        rgba(15,15,15,.40) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    padding: 0 24px;
    /* Entrada animada vía JS */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s ease .3s, transform 1s ease .3s;
}
.hero-content.visible { opacity: 1; transform: translateY(0); }

.hero-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: 0;
}
.hero-names {
    font-family: var(--font-serif);
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.hero-names span:first-child { margin-bottom: -14px; }
.hero-names span:last-child  { margin-top: -14px; }
.hero-and {
    font-family: 'Parisienne', cursive;
    font-style: normal;
    font-size: clamp(40px, 6vw, 72px);
    color: var(--white);
    letter-spacing: 0px;
    line-height: 1;
}
.hero-date {
    font-family: var(--font-serif);
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255,255,255,.88);
    margin-top: 4px;
    margin-bottom: 10px;
}
.hero-city {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255,255,255,.55);
    margin-bottom: 56px;
}
.hero-city i { font-size: 11px; margin-right: 5px; }

.hero-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.6);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: color .3s;
    animation: heroScrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--white); }
.hero-scroll i { font-size: 14px; }
@keyframes heroScrollBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(9px); }
}

/* ============================================================
   CUENTA REGRESIVA
   ============================================================ */
.countdown-section {
    padding: 110px 0;
    background: var(--verde-dark);
    position: relative;
    overflow: hidden;
}
/* Halos de color ambiente */
.countdown-section::before,
.countdown-section::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    pointer-events: none;
}
.countdown-section::before {
    top: -200px; left: -150px;
    /*background: radial-gradient(circle, rgba(76,0,0,.14) 0%, transparent 65%);*/
}
.countdown-section::after {
    bottom: -200px; right: -150px;
   /* background: radial-gradient(circle, rgba(111,108,67,.14) 0%, transparent 65%);*/
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 44px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    min-width: 140px;
}
.cd-item:first-child  { border-radius: var(--radius) 0 0 var(--radius); }
.cd-item:last-child   { border-radius: 0 var(--radius) var(--radius) 0; }
.cd-num {
    font-family: var(--font-serif);
    font-size: clamp(52px, 7vw, 76px);
    font-weight: 300;
    color: var(--cream-mid);
    line-height: 1;
    margin-bottom: 8px;
    min-width: 2.5ch;
    text-align: center;
    transition: color .2s;
}
.cd-num.flip { animation: cdFlip .3s ease; }
@keyframes cdFlip {
    0% { transform: translateY(-8px); opacity: 0; }
    100% { transform: translateY(0);  opacity: 1; }
}
.cd-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.cd-sep {
    font-family: var(--font-serif);
    font-size: 52px;
    color: rgba(255,255,255,.12);
    line-height: 1;
    margin-bottom: 24px;
    padding: 0 2px;
    align-self: center;
}
.cd-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.4);
    font-size: 13px;
    letter-spacing: .5px;
    border: 1px solid rgba(255,255,255,.1);
    padding: 11px 28px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}
.cd-badge i { color: var(--guinda-mid); }

/* ============================================================
   VIDEO
   ============================================================ */
.video-section {
    padding: 0;
    background: linear-gradient(180deg, #efe7d5 0%, #f6f1e7 100%);
    overflow: hidden;
}
.video-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}
.video-shell .sec-header {
    display: none;
}
.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(76,0,0,.18), rgba(111,108,67,.22)),
        #1a1a1a;
    box-shadow: var(--shadow-md);
}
.video-media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: transparent;
}

/* ============================================================
   TIMELINE (ITINERARIO)
   ============================================================ */
.timeline-section {
    padding: 120px 0 100px;
    background: var(--cream);
}

.timeline {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}
/* Línea central vertical */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 40px; bottom: 40px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--guinda) 8%,
        var(--guinda) 45%,
        var(--verde)  55%,
        var(--verde)  92%,
        transparent  100%
    );
    transform: translateX(-50%);
}

/* ITEM */
.tl-item {
    display: grid;
    grid-template-columns: 1fr 88px 1fr;
    align-items: start;
    margin-bottom: 0;
    position: relative;
}

/* SPINE (columna central) */
.tl-spine {
    display: flex;
    justify-content: center;
    padding-top: 44px;
}
.tl-dot {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: transform .3s;
}
.tl-dot:hover { transform: scale(1.08); }
.tl-dot--guinda {
    background: var(--verde);
    box-shadow: 0 0 0 7px var(--verde-pale), 0 4px 18px rgba(111,108,67,.3);
}
.tl-dot--verde {
    background: var(--verde);
    box-shadow: 0 0 0 7px var(--verde-pale), 0 4px 18px rgba(111,108,67,.3);
}

/* CARDS */
.tl-card {
    background: var(--cream-mid);
    border-radius: var(--radius);
    padding: 36px 34px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.05);
    position: relative;
}
.tl-card--left  { margin-right: 16px; }
.tl-card--right { margin-left:  16px; }

/* Conector horizontal card ↔ dot */
.tl-card--left::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 56px;
    width: 28px;
    height: 1px;
    background: var(--guinda-pale);
}
.tl-card--right::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 56px;
    width: 28px;
    height: 1px;
    background: var(--verde-pale);
}

.tl-card-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.tl-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.tl-icon--guinda { background: var(--verde-pale); color: var(--verde); }
.tl-icon--verde  { background: var(--verde-pale); color: var(--verde); }

.tl-tag {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.tl-tag--guinda { color: var(--verde-dark); }
.tl-tag--verde  { color: var(--verde-dark); }

.tl-title {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.05;
}

/* Info rows */
.tl-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.tl-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}
.tl-row-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
.tl-row-icon--guinda { background: var(--verde-pale); color: var(--verde); }
.tl-row-icon--verde  { background: var(--verde-pale); color: var(--verde); }

.tl-row-body strong {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 3px;
}
.tl-row-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.4;
}
.venue-name { font-weight: 600; color: var(--dark) !important; }
.venue-addr { font-size: 12.5px !important; color: var(--gray-mid) !important; margin-top: 2px; }

/* BANNER DE FECHA (encima del timeline) */
.tl-date-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}
.tl-date-banner span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--cream-mid));
}
.tl-date-banner span:last-child {
    background: linear-gradient(to left, transparent, var(--cream-mid));
}
.tl-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    border: 1px solid var(--cream-mid);
    color: var(--dark);
    font-family: var(--font-serif);
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: 400;
    letter-spacing: .5px;
    padding: 12px 24px;
    border-radius: 50px;
    text-align: center;
}
.tl-date-pill i { color: var(--guinda); font-size: 16px; }

/* CÓDIGO DE VESTIMENTA (debajo del timeline) */
.dresscode-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 64px;
    padding: 28px 40px;
    background: var(--dark);
    border-radius: var(--radius);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.dresscode-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--guinda-mid);
    font-size: 22px;
    flex-shrink: 0;
}
.dresscode-body { text-align: left; }
.dresscode-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 4px;
}
.dresscode-value {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
}

/* IMÁGENES */
.tl-visual {
    border-radius: var(--radius);
    overflow: hidden;
    height: 340px;
    position: relative;
}
.tl-visual--right { margin-left:  16px; }
.tl-visual--left  { margin-right: 16px; }
.tl-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.tl-visual:hover img { transform: scale(1.04); }
.tl-visual-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 22px;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}


/* ============================================================
   SLIDESHOW
   ============================================================ */
.slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    /*border-radius: var(--radius-lg);*/
    overflow: hidden;
    margin: 0px 0 0px;
}
.slideshow-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
}
.slideshow-slide.active { opacity: 1; }
.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}
.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.slideshow-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: var(--trans);
    padding: 0;
}
.slideshow-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .slideshow { height: 500px; }
}
@media (max-width: 480px) {
    .slideshow { height: 350px; }
}

/* ============================================================
   REGALOS
   ============================================================ */
.gifts-section {
    padding: 120px 0;
    background: var(--cream);
}
.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}
.gift-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: var(--trans);
}
.gift-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gift-icon {
    width: 68px; height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 4px;
}
.gift-icon--plain   { background: var(--guinda-pale); color: var(--guinda); }
.gift-icon--white   { background: rgba(255,255,255,.15); color: var(--white); }
.gift-icon--liverpool {
    background: var(--guinda-mid);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gift-card h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--dark);
}
.gift-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.55;
    flex: 1;
}

/* ============================================================
   HOTELES
   ============================================================ */
.hotels-section {
    padding: 120px 0;
    background: var(--verde-dark);
    position: relative;
    overflow: hidden;
}
/* Textura sutil */
.hotels-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.hotel-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    backdrop-filter: blur(6px);
    transition: var(--trans);
}
.hotel-card:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.22);
}
.hotel-ribbon {
    position: absolute;
    top: -12px; left: 22px;
    background: var(--guinda);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
}
.hotel-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.65);
    font-size: 20px;
}
.hotel-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
}
.hotel-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 11px;
}
.hotel-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.hotel-details li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
.hotel-details i { color: rgba(255,255,255,.3); width: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    padding: 88px 0 44px;
    text-align: center;
}
.footer-monogram {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}
.footer-monogram-image {
    width: min(220px, 58vw);
    height: auto;
    max-width: 220px;
    max-height: 110px;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 26px rgba(0,0,0,.22));
}
.footer-names {
    font-family: var(--font-serif);
    font-size: 22px;
    color: rgba(255,255,255,.7);
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.footer-date {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.footer-city {
    font-size: 12px;
    color: rgba(255,255,255,.3);
    letter-spacing: 1px;
    margin-bottom: 44px;
}
.footer-rule {
    width: 48px; height: 1px;
    background: rgba(255,255,255,.12);
    margin: 0 auto 24px;
}
.footer-copy {
    font-family: var(--font-serif);
    font-size: 16px;
    font-style: italic;
    color: rgba(255,255,255,.25);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .hotels-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .nav-logo {
        max-width: 68px;
        max-height: 34px;
    }
    .nav-logo-image {
        max-width: 68px;
        max-height: 34px;
    }
    .footer-monogram-image {
        width: min(170px, 48vw);
        max-width: 170px;
        max-height: 84px;
    }

    /* Nav */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(26,26,26,.98);
        flex-direction: column;
        padding: 28px;
        gap: 22px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }

    /* Timeline — apilado vertical con línea a la izquierda */
    .timeline::before {
        left: 22px;
        top: 20px; bottom: 20px;
        transform: none;
    }
    .tl-item {
        display: flex;
        flex-direction: column;
        padding-left: 66px;
        position: relative;
        margin-bottom: 0;
    }
    .tl-spine {
        position: absolute;
        left: 0; top: 0;
        padding-top: 16px;
    }
    .tl-dot { width: 44px; height: 44px; font-size: 18px; }
    .tl-card--left, .tl-card--right {
        margin: 0 0 16px 0;
        order: 2;
    }
    .tl-card--left::after, .tl-card--right::before { display: none; }
    .tl-visual--right, .tl-visual--left {
        margin: 0 0 16px 0;
        height: 220px;
        order: 1;
    }
    /* Countdown */
    .cd-item { padding: 28px 18px; min-width: 80px; }
    .cd-sep  { font-size: 36px; margin-bottom: 16px; }

    /* Video */
    .video-section { padding: 0; }
    .video-shell {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 0;
    }
    .video-shell .sec-header {
        padding: 0 24px;
        margin-bottom: 32px;
    }
    .video-frame {
        aspect-ratio: 4 / 5;
        border-radius: 0;
    }

    /* Gifts */
    .gifts-grid { grid-template-columns: 1fr; max-width: 380px; }

    /* Hotels */
    .hotels-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

@media (max-width: 480px) {
    .nav-logo {
        max-width: 56px;
        max-height: 28px;
    }
    .nav-logo-image {
        max-width: 56px;
        max-height: 28px;
    }
    .footer-monogram-image {
        width: min(140px, 42vw);
        max-width: 140px;
        max-height: 70px;
    }
    .video-shell .sec-header {
        padding: 0 18px;
        margin-bottom: 24px;
    }
    .video-frame {
        aspect-ratio: 9 / 16;
    }

    .countdown { gap: 0; }
    .cd-item {
        padding: 24px 14px;
        min-width: 70px;
        border-radius: var(--radius) !important;
        border-right: none;
    }
    .cd-item:last-child { border-right: 1px solid rgba(255,255,255,.07); }
    .cd-sep { display: none; }
    .tl-card { padding: 24px 20px; }
    .hero-names { letter-spacing: -3px; }
}
