/* ============================================================
   FRANCISCO FERRARIS — Alta Banquetería
   Design System · v2.0
   ============================================================ */

/* ── Google Fonts already loaded via HTML ── */

:root {
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --gold-dark: #9e7c45;
    --cream: #f8f4ef;
    --charcoal: #141210;
    --charcoal-mid: #1e1b17;
    --charcoal-soft: #2a2620;
    --text-primary: #f0ebe4;
    --text-muted: rgba(240, 235, 228, 0.55);
    --text-subtle: rgba(240, 235, 228, 0.35);

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-title: 'Cinzel', serif;

    --nav-h: 88px;
    --ease-silk: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--charcoal);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   NAVBAR
   ============================================================ */
/* ── Scroll Progress ── */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1000;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 0.1s ease-out;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.6s var(--ease-silk),
        backdrop-filter 0.6s var(--ease-silk),
        padding 0.4s var(--ease-silk);
}

.navbar.scrolled {
    background: rgba(14, 12, 10, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px;
    height: var(--nav-h);
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    gap: 1px;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeDown 0.9s var(--ease-out) 0.4s forwards;
}

.logo-main {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 44px;
    align-items: center;
}

.nav-links li {
    opacity: 0;
    transform: translateY(-8px);
}

.nav-links li:nth-child(1) {
    animation: fadeDown 0.7s var(--ease-out) 0.55s forwards;
}

.nav-links li:nth-child(2) {
    animation: fadeDown 0.7s var(--ease-out) 0.65s forwards;
}

.nav-links li:nth-child(3) {
    animation: fadeDown 0.7s var(--ease-out) 0.75s forwards;
}

.nav-links li:nth-child(4) {
    animation: fadeDown 0.7s var(--ease-out) 0.85s forwards;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-silk);
}

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

.nav-link:hover::after {
    width: 100%;
}

/* CTA button */
.nav-cta {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--charcoal);
    background: var(--gold);
    padding: 11px 26px;
    border: 1px solid var(--gold);
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
    opacity: 0;
    animation: fadeDown 0.7s var(--ease-out) 0.95s forwards;
}

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

/* Hamburger (mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Background layers */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    position: absolute;
    inset: 0;
    background: url('img/fondo2.jpeg') no-repeat center center / cover;
    transform: scale(1.08);
    animation: heroZoom 7s var(--ease-silk) forwards;
    will-change: transform;
    /* Neutralizar el cast violeta de la foto */
    filter: saturate(0.75) brightness(0.9);
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1.0);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Gradiente warm: oscuro arriba/abajo, menos transparente al centro para legibilidad */
    background:
        linear-gradient(to bottom,
            rgba(8, 6, 4, 0.75) 0%,
            rgba(8, 6, 4, 0.48) 35%,
            rgba(8, 6, 4, 0.55) 65%,
            rgba(8, 6, 4, 0.82) 100%);
}

/* Tinte cálido sutil para neutralizar el magenta de la foto */
.hero-color-wash {
    position: absolute;
    inset: 0;
    background: rgba(18, 12, 5, 0.35);
    mix-blend-mode: multiply;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at center,
            transparent 20%,
            rgba(8, 6, 4, 0.55) 100%);
}

/* Decorative vertical lines */
.hero-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(201, 169, 110, 0.22) 30%,
            rgba(201, 169, 110, 0.22) 70%,
            transparent);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1.5s ease 1.8s forwards;
}

.hero-line.left {
    left: 80px;
}

.hero-line.right {
    right: 80px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 860px;
    padding: 64px 48px;
    /* Halo oscuro suave detrás del texto para máxima legibilidad */
    background: radial-gradient(
        ellipse 90% 80% at center,
        rgba(6, 4, 2, 0.42) 0%,
        transparent 100%
    );
}

/* Eyebrow */
.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.75);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(201, 169, 110, 0.4);
}

/* Title */
.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.title-line {
    display: block;
    font-family: var(--font-title);
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.line-1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 12px;
    margin-bottom: 8px;
    animation: fadeUp 1s var(--ease-out) 1.0s forwards;
}

.line-2 {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 15px;
    animation: fadeUp 1s var(--ease-out) 1.2s forwards;
    background: none;
    -webkit-text-fill-color: initial;
    filter: drop-shadow(0 2px 24px rgba(0, 0, 0, 0.95));
}

.line-3 {
    font-size: clamp(0.7rem, 2vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 24px;
    color: var(--gold-light);
    animation: fadeUp 1s var(--ease-out) 1.4s forwards;
    margin-top: 10px;
}

/* Divider */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.9s var(--ease-out) 1.5s forwards;
}

.divider-line {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.hero-divider .divider-line:last-child {
    background: linear-gradient(to left, transparent, var(--gold));
}

.divider-diamond {
    font-size: 0.5rem;
    color: var(--gold);
    letter-spacing: 0;
}

/* Subtitle */
.hero-sub {
    font-family: var(--font-sans);
    font-size: clamp(0.72rem, 1.2vw, 0.82rem);
    font-weight: 300;
    font-style: normal;
    letter-spacing: 2.5px;
    line-height: 2.2;
    color: rgba(240, 235, 228, 0.88);
    text-transform: uppercase;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 1.6s forwards;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 1.85s forwards;
}

/* Primary button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 17px 40px;
    background: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--charcoal);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease-silk);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary:hover {
    color: var(--gold-light);
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
}

/* Ghost button */
.btn-ghost {
    display: inline-block;
    padding: 17px 32px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    color: var(--gold-light);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.06);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease 2.4s forwards;
}

.scroll-label {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-subtle);
}

.scroll-bar {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.scroll-bar-inner {
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: translateY(-100%);
    animation: scrollPulse 2s var(--ease-silk) 2.6s infinite;
}

@keyframes scrollPulse {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}


/* ============================================================
   CENTROS DE EVENTOS ASOCIADOS
   ============================================================ */
.venues-section {
    padding: 80px 0 0;
    background: var(--charcoal-mid);
    border-top: 1px solid rgba(201, 169, 110, 0.12);
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

/* ── La banda horizontal ── */
.venues-strip {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    padding: 48px 0;
    gap: 0;
    overflow: hidden;
    position: relative;
}

/* Separadores verticales */
.vert-sep {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.25), transparent);
    flex-shrink: 0;
}

/* Texto decorativo lateral */
.venues-side-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1 0 12%; /* Garantiza ancho idéntico a izquierda y derecha */
    text-align: center;
    padding: 0 24px;
}

.venues-side-text.spacer {
    display: block; /* Solo ocupa espacio */
}

.vst-label {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.vst-value {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.1;
}

/* Item de venue inline */
.venue-inline {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 2 1 25%; /* Proporciona más importancia que los laterales */
    padding: 0 40px;
    transition: transform 0.4s var(--ease-silk);
    cursor: default;
    justify-content: center; /* Centra el contenido internamente */
}

.venue-inline:hover {
    transform: translateY(-4px);
}

/* Logo mediano integrado — más importancia visual */
.venue-inline-logo {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: none;
    transition: border-color 0.4s ease, transform 0.4s var(--ease-silk), background 0.4s ease;
    overflow: hidden;
}

.venue-inline:hover .venue-inline-logo {
    border-color: rgba(201, 169, 110, 0.6);
    background: rgba(201, 169, 110, 0.05);
    transform: scale(1.03);
}

.venue-logo-sm {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.venue-inline-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.venue-title {
    font-family: var(--font-title);
    font-size: 0.95rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.venue-location {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Bloque numérico central */
.venues-central {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 0 12%; /* Mismo peso que los laterales para equilibrio real */
    padding: 0 24px;
    gap: 6px;
}

.vc-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 169, 110, 0.4);
    letter-spacing: -2px;
}

.vc-label {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .venues-strip {
        flex-direction: column;
        gap: 32px;
        padding: 48px 28px;
    }
    .vert-sep {
        width: 80px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.25), transparent);
    }
    .venues-side-text, .venues-central {
        display: none;
    }
}


/* ============================================================
   SCROLL REVEAL SYSTEM
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }


/* ============================================================
   SHARED SECTION COMPONENTS
   ============================================================ */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 56px;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.eyebrow-light {
    color: var(--gold-light);
}

.section-title-serif {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-title-serif em {
    font-style: italic;
    color: var(--gold);
}

.section-title-serif.light {
    color: #fff;
}

.section-tagline {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.section-tagline.light {
    color: rgba(255,255,255,0.6);
}

.header-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
}

.orn-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,169,110,0.45));
}

.header-ornament .orn-line:last-child {
    background: linear-gradient(to left, transparent, rgba(201,169,110,0.45));
}

.orn-diamond {
    font-size: 0.42rem;
    color: var(--gold);
    opacity: 0.7;
}


/* ============================================================
   SECCIÓN 1 · EXPERIENCIA INTEGRAL (CONCIERGE)
   ============================================================ */
.concierge-section {
    background: var(--charcoal);
    padding: 120px 0;
    position: relative;
}

/* Grid de 3 tarjetas */
.concierge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.concierge-card {
    position: relative;
    padding: 48px 36px;
    background: var(--charcoal-mid);
    border: 1px solid rgba(201,169,110,0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.4s ease, background 0.4s ease;
    overflow: hidden;
}

.concierge-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
    transition: width 0.5s var(--ease-silk);
}

.concierge-card:hover {
    background: var(--charcoal-soft);
    border-color: rgba(201,169,110,0.2);
}

.concierge-card:hover::before {
    width: 100%;
}

/* Ícono */
.cc-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(201,169,110,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 4px;
    transition: border-color 0.3s ease;
}

.concierge-card:hover .cc-icon {
    border-color: var(--gold);
}

.cc-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.3;
}

.cc-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
    flex: 1;
}

.cc-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 5px 14px;
    width: fit-content;
}


/* ============================================================
   SECCIÓN 2 · LA BARRA PREMIUM
   ============================================================ */
.barra-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Fondo oscuro con textura sutil */
.barra-bg-img {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(201,169,110,0.015) 0px,
            rgba(201,169,110,0.015) 1px,
            transparent 1px,
            transparent 80px
        );
    background-color: #0e0c09;
}

.barra-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 10% 50%, rgba(201,169,110,0.05) 0%, transparent 60%);
}

.barra-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.barra-cols {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.barra-divider {
    width: 1px;
    min-height: 280px;
    background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3) 30%, rgba(201,169,110,0.3) 70%, transparent);
    align-self: center;
}

.barra-col-label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,169,110,0.15);
}

.barra-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.barra-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bl-brand {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
}

.bl-detail {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Highlight box */
.barra-highlight {
    margin-top: 32px;
    padding: 24px 28px;
    border: 1px solid rgba(201,169,110,0.25);
    background: rgba(201,169,110,0.04);
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.bh-icon {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.bh-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.bh-text {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 2;
    color: rgba(255,255,255,0.5);
}


/* ============================================================
   SECCIÓN 3 · POSTRES & AFTER HOUR
   ============================================================ */
.afterhour-section {
    background: var(--charcoal);
    padding: 120px 0;
    border-top: 1px solid rgba(201,169,110,0.08);
}

.ah-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2px;
}

.ah-card {
    padding: 52px 44px;
    background: var(--charcoal-mid);
    border: 1px solid rgba(201,169,110,0.07);
    position: relative;
    transition: border-color 0.4s ease;
}

.ah-card:hover {
    border-color: rgba(201,169,110,0.18);
}

.ah-card.ah-gold {
    background: linear-gradient(160deg, rgba(201,169,110,0.07) 0%, var(--charcoal-mid) 60%);
    border-color: rgba(201,169,110,0.15);
}

.ah-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.ah-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(201,169,110,0.15);
    flex-shrink: 0;
    margin-top: -8px;
}

.ah-number.gold {
    color: rgba(201,169,110,0.4);
}

.ah-card-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.2;
    padding-top: 8px;
}

.ah-card-sub {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ah-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ah-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(240,235,228,0.75);
}

.ah-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-subtle);
    flex-shrink: 0;
}

.ah-dot.gold {
    background: var(--gold);
}


/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-inner {
        padding: 0 28px;
    }

    .hero-line {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }

    .trust-bar {
        padding: 36px 24px;
    }

    .venue-sep {
        display: none;
    }

    .venues {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    /* ── Nuevas secciones ── */
    .container {
        padding: 0 28px;
    }

    .concierge-grid {
        grid-template-columns: 1fr 1fr;
    }

    .barra-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .barra-cols {
        grid-template-columns: 1fr;
    }

    .barra-divider {
        display: none;
    }

    .ah-grid {
        grid-template-columns: 1fr;
    }

    .concierge-section,
    .barra-section,
    .afterhour-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-h: 72px;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .concierge-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: 48px;
    }
}



/* ░░ SECCIÓN GASTRONOMÍA ░░ */

.gastronomia {
    padding: 120px 0;
    background-color: #fcfcfc; /* Blanco hueso para distinción */
    color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Encabezado */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #b8965a; /* Dorado sutil */
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.header-line {
    width: 50px;
    height: 1px;
    background-color: #b8965a;
    margin: 0 auto;
}

/* Grid de Tarjetas */
.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 100px; /* Aire entre bloques */
}

.menu-card {
    display: flex;
    align-items: center;
    gap: 60px;
}

.menu-card.reverse {
    flex-direction: row-reverse;
}

/* Imagen con Proporción Áurea */
.card-img {
    flex: 1.2;
    height: 550px;
    background-size: cover;
    background-position: center;
    filter: grayscale(10%) contrast(105%);
    box-shadow: 20px 20px 0px 0px #f0f0f0; /* Detalle de diseño limpio */
}

/* Contenido de Texto */
.card-content {
    flex: 1;
}

.card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 20px;
}

.card-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    color: #4a4a4a;
    margin-bottom: 30px;
}

/* Lista de Detalles (Basada en PDF) */
.card-highlights {
    list-style: none;
    padding-left: 0;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.card-highlights li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
}

.card-highlights li::before {
    content: "—"; /* Guion largo para elegancia */
    margin-right: 15px;
    color: #b8965a;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-card, .menu-card.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .card-img {
        width: 100%;
        height: 350px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}



/* ============================================================
   SECCIÓN CONTACTO · Immersiva
   ============================================================ */
.contacto {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contacto-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contacto-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) saturate(0.8);
}

.contacto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20, 18, 16, 0.95) 30%, rgba(20, 18, 16, 0.45));
}

.contacto-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ct-content {
    max-width: 500px;
}

.ct-tag {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 24px;
}

.ct-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.ct-title em {
    font-style: italic;
    color: var(--gold);
}

.ct-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.ct-quick-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qi-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qi-icon {
    font-size: 1.2rem;
    color: var(--gold);
}

.qi-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

/* Glass form container */
.ct-form-container {
    width: 100%;
}

.form-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 110, 0.12);
    padding: 64px;
    position: relative;
}

.form-glass::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-top: 1px solid rgba(201, 169, 110, 0.3);
    border-right: 1px solid rgba(201, 169, 110, 0.3);
}

.ct-form-label-top {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 48px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .contacto-inner {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .contacto-overlay {
        background: rgba(20, 18, 16, 0.85);
    }
    
    .form-glass {
        padding: 40px;
    }
}

/* Formulario con floating labels */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cf-field {
    position: relative;
    margin-bottom: 36px;
}

.cf-field input,
.cf-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 14px 0 12px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.4s var(--ease-silk);
    caret-color: var(--gold);
}

.cf-field textarea {
    resize: none;
    height: 90px;
    line-height: 1.8;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: transparent;
}

/* Floating label */
.cf-label {
    position: absolute;
    top: 14px;
    left: 0;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--text-muted);
    pointer-events: none;
    transition:
        top 0.35s var(--ease-silk),
        font-size 0.35s var(--ease-silk),
        color 0.35s var(--ease-silk),
        letter-spacing 0.35s var(--ease-silk);
}

/* Línea de foco dorada */
.cf-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s var(--ease-silk);
}

.cf-field input:focus ~ .cf-line,
.cf-field textarea:focus ~ .cf-line {
    width: 100%;
}

.cf-field input:focus ~ .cf-label,
.cf-field textarea:focus ~ .cf-label,
.cf-field input:not(:placeholder-shown) ~ .cf-label,
.cf-field textarea:not(:placeholder-shown) ~ .cf-label {
    top: -8px;
    font-size: 0.56rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* 2 columnas en campos pares */
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

/* Botón submit innovador */
.btn-submit {
    position: relative;
    margin-top: 16px;
    width: 100%;
    padding: 20px 40px;
    background: transparent;
    border: 1px solid rgba(201,169,110,0.35);
    color: var(--gold-light);
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.45s ease, border-color 0.45s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.55s var(--ease-silk);
}

.btn-submit:hover {
    color: var(--charcoal);
    border-color: var(--gold);
}

.btn-submit:hover::before {
    transform: translateX(0);
}

.btn-submit span,
.btn-submit svg {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    width: 18px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.3s ease;
}

.btn-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    transform: rotate(45deg);
}

.btn-submit:hover .btn-arrow {
    width: 28px;
}

/* ── Responsive contacto ── */
@media (max-width: 1024px) {
    .contacto {
        grid-template-columns: 1fr;
    }

    .ct-left {
        padding: 80px 40px;
        border-right: none;
        border-bottom: 1px solid rgba(201,169,110,0.1);
    }

    .ct-right {
        padding: 72px 40px;
    }

    .ct-bg-number {
        font-size: 18rem;
    }
}

@media (max-width: 600px) {
    .cf-row {
        grid-template-columns: 1fr;
    }

    .ct-left, .ct-right {
        padding: 60px 28px;
    }
}

/* ============================================================
   CARTA DEL FUNDADOR (MANUSCRITO DE LUJO)
   ============================================================ */
.founder-section {
    padding: 140px 0;
    background: #0a0908; /* Un negro ligeramente distinto para contraste */
    position: relative;
    overflow: hidden;
}

/* El "Papel" de la carta */
.founder-paper {
    max-width: 850px;
    margin: 0 auto;
    background: #0f0e0d;
    padding: 80px 100px;
    position: relative;
    border: 1px solid rgba(201, 169, 110, 0.15);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

/* Doble borde decorativo interno */
.founder-paper::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(201, 169, 110, 0.05);
    pointer-events: none;
}

/* Sello de cera */
.wax-seal {
    position: absolute;
    top: -40px;
    right: 80px;
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
    z-index: 2;
    transform: rotate(-10deg);
}

.wax-seal svg {
    width: 50px;
    height: 50px;
}

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

.paper-header {
    text-align: center;
    margin-bottom: 60px;
}

.paper-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
}

.paper-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-primary);
}

.paper-body {
    margin-bottom: 60px;
}

.fl-paragraph {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 2;
    color: rgba(240, 235, 228, 0.7);
    margin-bottom: 24px;
    font-weight: 300;
}

.fl-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(240, 235, 228, 0.85);
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.subrayado {
    color: var(--gold-light);
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    padding-bottom: 4px;
}

.paper-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.founder-signature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.sig-note {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
}

.sig-name-luxury {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1;
    margin: 10px 0;
    letter-spacing: 1px;
}

.sig-labels {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-subtle);
}

@media (max-width: 850px) {
    .founder-paper {
        margin: 0 20px;
        padding: 60px 40px;
    }
    .paper-title {
        font-size: 1.8rem;
    }
    .wax-seal {
        right: 40px;
        width: 60px;
        height: 60px;
        top: -30px;
    }
    .wax-seal svg {
        width: 35px;
        height: 35px;
    }
}

/* ============================================================
   GALERÍA DE EXCLUSIVIDAD
   ============================================================ */
.gallery-section {
    padding: 140px 0;
    background: var(--charcoal);
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
    grid-auto-flow: dense; /* Organiza automáticamente para no dejar huecos */
}

.mosaic-item.hidden {
    display: none;
}

.mosaic-item.visible {
    display: block;
    animation: fadeInScale 0.6s var(--ease-silk) forwards;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Botón Ver Más */
.gallery-controls {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 16px 40px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-silk);
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-icon {
    font-size: 1.1rem;
    transition: transform 0.4s ease;
}

.btn-outline-gold:hover .btn-icon {
    transform: translateY(5px);
}

.btn-outline-gold.active .btn-icon {
    transform: rotate(180deg);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    filter: brightness(0.9);
}

/* Tamaños Especiales */
.mosaic-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

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

.mosaic-item.tall {
    grid-row: span 2;
}

/* Hover: Luce la Foto */
.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.2));
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.mosaic-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
    cursor: pointer;
}

.mosaic-item:hover .mosaic-overlay {
    opacity: 1;
}

/* Marca de encuadre en hover */
.mosaic-item::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0);
    transition: all 0.6s ease;
    pointer-events: none;
}

.mosaic-item:hover::after {
    inset: 15px;
    border-color: rgba(201, 169, 110, 0.25);
}

@media (max-width: 1024px) {
    .mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .mosaic-item.big, .mosaic-item.wide {
        grid-column: span 2;
    }
}

/* ============================================================
   PREGUNTAS FRECUENTES (FAQ)
   ============================================================ */
.faq-section {
    padding: 120px 0;
    background: #0a0908;
}

.faq-grid {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.4s var(--ease-silk);
}

.faq-item:hover,
.faq-item.active {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 169, 110, 0.3);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-question span:first-child {
    font-family: var(--font-title);
    font-size: 0.95rem;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.faq-icon {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.4s var(--ease-silk);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-silk), padding 0.5s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Suficiente para el texto */
    padding-bottom: 32px;
}

.faq-answer p {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background: #0a0908;
    position: relative;
    overflow: hidden;
}

/* Compact map card inside footer */
.footer-map-card {
    margin-top: 24px;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.12);
    position: relative;
}

.footer-map-card iframe {
    display: block;
}



.footer-inner {
    padding: 100px 56px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 120px;
    margin-bottom: 80px;
}

.footer-brand-side {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-brand-desc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 320px;
}

.footer-contact-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.footer-label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-link {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-info {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Footer Contact Enhancement */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.4s var(--ease-silk);
}

.footer-contact-item.whatsapp-live {
    color: var(--gold-light);
    font-weight: 500;
}

.footer-contact-item:hover {
    color: var(--gold);
    transform: translateX(8px);
}

.footer-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

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

.footer-contact-item:hover .footer-icon {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.footer-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* WhatsApp Pulse */
.wh-pulse {
    position: relative;
}

.wh-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    animation: whPulse 2s infinite;
}

@keyframes whPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 32px;
}

.social-link {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.social-link:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.fb-left p, .fb-right p {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--text-subtle);
    letter-spacing: 1px;
}

.designer-tag span {
    color: var(--gold);
    font-weight: 500;
}

/* ============================================================
   LIGHTBOX VIEW
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 9, 8, 0.85);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-silk);
    padding: 40px;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.5s var(--ease-silk);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(201, 169, 110, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox {
        padding: 20px;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .footer-inner {
        padding: 64px 28px 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}