/* ==========================================================================
   LA TRONERA DEL BIERZO – Premium Mockup Stylesheet
   Design: Quiet Luxury / White-Dominant Editorial (Awwwards Level)
   Fonts: Playfair Display (serif) + Inter (sans)
   ========================================================================== */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('../fonts/inter-UcC73FwrK3iLTeHuS_nVMrMxCp50SjIq15j8eUY.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/playfair-nuFiD-vYSZviVYUb_rj3ij__anPXPT7Sh2E-.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/playfair-nuFkD-vYSZviVYUb_rj3ij__anPXDTnYgEM86xQ.woff2') format('woff2');
}

/* ==========================================================================
   LENIS SMOOTH SCROLL BOILERPLATE
   ========================================================================== */
html.lenis, html.lenis body { height: auto; width: 100vw; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    --c-white: #FFFFFF;
    --c-cream: #FAF9F6;
    --c-sand: #F2EFE9;
    --c-charcoal: #2D2A26;
    --c-muted: #66615C;
    --c-wine: #5B1C28;
    --c-wine-dark: #4A1521;
    --c-olive: #2C4A3E;
    --c-gold: #C5A059;
    --c-dark-bg: #0B0708;
    /* Premium velvet charcoal with deep vinous undertones */

    /* Strict Quiet Luxury Palettes */
    --c-obsidian: #0B0708;
    /* Deep velvet black */
    --c-burgundy: #1C1012;
    /* Rich vineyard vinous */
    --c-marfil: #FAF9F6;
    /* Warm editorial cream */
    --c-wine-accent: #5B1C28;
    /* berry red accent */

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --section-pad: clamp(4.5rem, 6vw, 9.5rem);
    --container: 1360px;
    --gutter: clamp(1.5rem, 2vw, 2.5rem);
    --sticky-height: clamp(430px, 72 * var(--vh, 1vh), 660px);

    /* Shadows & Radii */
    --shadow-sm: 0 4px 20px rgba(45, 42, 38, .04);
    --shadow-md: 0 12px 40px rgba(45, 42, 38, .07);
    --shadow-lg: 0 30px 80px rgba(45, 42, 38, .10);
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 16px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 0.28s var(--ease-out);
    --t-mid: 0.55s var(--ease-out);
    --t-slow: 0.9s var(--ease-out);
}

/* --------------------------------------------------------------------------
   RESET & BASE (scoped to lt-wrap, affects only this page)
   -------------------------------------------------------------------------- */
.page-template-page-la-tronera body {
    background-color: var(--c-cream);
    overflow-x: clip;
}

/* Hide parent theme header/footer */
.page-template-page-la-tronera .site-header,
.page-template-page-la-tronera .site-footer,
.page-template-page-la-tronera #wpadminbar~.site-header {
    display: none !important;
}

.lt-wrap {
    font-family: var(--font-sans);
    color: var(--c-charcoal);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

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

img,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   UTILITY CLASSES
   -------------------------------------------------------------------------- */
.lt-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.lt-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-wine);
    margin-bottom: 1.25rem;
}

.lt-h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--c-charcoal);
    margin: 0 0 1.75rem;
}

.lt-lead {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--c-muted);
    max-width: 680px;
}

.lt-section-head {
    text-align: center;
    margin-bottom: 5rem;
}

.lt-section-head .lt-lead {
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.lt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.9rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.73rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    border-radius: var(--r-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
    text-decoration: none;
}

.lt-btn:hover {
    transform: translateY(-1px);
}

.lt-btn-primary {
    background: var(--c-wine);
    color: var(--c-white);
    border-color: var(--c-wine);
}

.lt-btn-primary:hover {
    background: var(--c-wine-dark);
    border-color: var(--c-wine-dark);
    box-shadow: 0 8px 28px rgba(91, 28, 40, .22);
}

.lt-btn-secondary {
    background: transparent;
    color: var(--c-charcoal);
    border-color: rgba(45, 42, 38, .2);
}

.lt-btn-secondary:hover {
    background: var(--c-charcoal);
    color: var(--c-white);
    border-color: var(--c-charcoal);
}

/* --------------------------------------------------------------------------
   FIXED HEADER
   -------------------------------------------------------------------------- */
.lt-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
    background: rgba(26, 23, 20, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
}

.lt-header.lt-scrolled {
    background: rgba(28, 16, 18, 0.65) !important; /* Brand Burgundy glassmorphism transition */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.lt-header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.3rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.lt-brand {
    display: flex;
    align-items: center;
}

.lt-brand-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) !important;
    /* Constant white, clean and sharp */
    transition: none;
}

.lt-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.lt-nav-link {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-bottom: 3px;
    transition: color var(--t-fast);
}

.lt-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--c-gold);
    transform: translateX(-50%);
    transition: width var(--t-fast);
}

.lt-nav-link:hover,
.lt-nav-link.active {
    color: #fff;
}

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

/* Retain bright white/gold tones for dark glassmorphism compatibility */
.lt-header.lt-scrolled .lt-nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.lt-header.lt-scrolled .lt-nav-link:hover,
.lt-header.lt-scrolled .lt-nav-link.active {
    color: var(--c-gold);
}

.lt-header.lt-scrolled .lt-nav-link::after {
    background: var(--c-gold);
}

.lt-header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.lt-cta-reserve {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 0.6rem 1.4rem;
    border-radius: var(--r-sm);
    transition: var(--t-fast);
}

.lt-cta-reserve:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .7);
    color: #fff;
}

.lt-header.lt-scrolled .lt-cta-reserve {
    color: var(--c-wine);
    border-color: var(--c-wine);
}

.lt-header.lt-scrolled .lt-cta-reserve:hover {
    background: var(--c-wine);
    color: #fff;
}

/* Hamburger (mobile) */
.lt-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
}

.lt-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: rgba(255, 255, 255, .85);
    margin: 5px 0;
    transition: var(--t-fast);
}

.lt-header.lt-scrolled .lt-hamburger span {
    background: var(--c-white);
}

.lt-hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.lt-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.lt-hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav dropdown */
.lt-mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(18px);
    padding: 1.5rem var(--gutter) 2rem;
    border-top: 1px solid rgba(45, 42, 38, .07);
}

.lt-mobile-nav.open {
    display: flex;
}

.lt-mobile-link {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-charcoal);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(45, 42, 38, .06);
    transition: color var(--t-fast);
}

.lt-mobile-link:hover {
    color: var(--c-wine);
}

/* --------------------------------------------------------------------------
   HERO – Full-Viewport Video
   -------------------------------------------------------------------------- */
.lt-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lt-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background-color: #1C1012;
}

.lt-section-bg-video {
    background-color: #1C1012;
}

.lt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(28, 16, 18, 0.3) 0%,
            rgba(28, 16, 18, 0.15) 75%,
            rgba(28, 16, 18, 0.85) 92%,
            #1C1012 100%);
    z-index: 1;
}

.lt-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 1000px;
}

.lt-hero-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 1.5rem;
    opacity: 0; /* Hidden initially to prevent GSAP double animation flash */
}

.lt-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.6rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--c-white);
    margin: 0 0 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0; /* Hidden initially to prevent GSAP double animation flash */
}

.lt-hero-title em {
    font-style: italic;
    font-weight: 700;
    color: var(--c-gold);
    letter-spacing: 0.06em;
    /* Balanced elegant letter-spacing */
}

.lt-hero-sub {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, .9);
    margin: 0 auto 1.5rem;
    max-width: 720px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0; /* Hidden initially to prevent GSAP double animation flash */
}

.lt-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    opacity: 0; /* Hidden initially to prevent GSAP double animation flash */
}

/* HERO BUTTON: Wine solid (Reserva Restaurante) */
.lt-btn-hero-wine {
    background: var(--c-wine);
    color: #fff;
    border: 1.5px solid var(--c-wine);
    min-width: 220px;
    justify-content: center;
}

.lt-btn-hero-wine svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.lt-btn-hero-wine:hover {
    background: var(--c-wine-dark);
    border-color: var(--c-wine-dark);
    box-shadow: 0 10px 32px rgba(92, 37, 51, .45);
}

/* HERO BUTTON: White outlined (Reserva Alojamiento) */
.lt-btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .65);
    min-width: 220px;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.lt-btn-hero-outline svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.lt-btn-hero-outline:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .22);
}

.lt-hero-badges {
    display: inline-flex;
    flex-direction: row; /* Horizontal row stack */
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem; /* Spacing between horizontally stacked badges */
    margin: 0 auto 1.25rem; /* Margin to space between title and reviews below */
    padding: 0.6rem 1.75rem; /* Symmetrical padded frame matching reviews */
    background: rgba(15, 12, 10, 0.4) !important; /* Unified dark glassmorphism background with 0.4 opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px; /* Symmetrical pill matching reviews */
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3) !important; /* Unified shadow */
    opacity: 0; /* Hidden initially to prevent GSAP double animation flash */
}

.lt-badge-chip {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .24), 0 2px 8px rgba(0, 0, 0, .14);
    transition: transform var(--t-fast), box-shadow var(--t-fast);
    flex-shrink: 0;
    overflow: hidden;
}

.lt-badge-chip:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .28);
}

.lt-chip-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0;
    background: transparent;
    padding: 12%;
    box-sizing: border-box;
}

.lt-badge-logo {
    object-fit: contain;
    background: transparent;
    padding: 12%;
    box-sizing: border-box;
}

.lt-badge-repsol {
    padding: 14%;
}

/* Hero badges: single white circle, logo fills chip */
.lt-hero-badges .lt-badge-chip {
    background: #ffffff;
}

.lt-hero-badges .lt-badge-chip .lt-chip-img,
.lt-hero-badges .lt-badge-chip .lt-badge-logo {
    background: transparent;
    border-radius: 0;
    width: 100%;
    height: 100%;
    padding: 12%;
}

.lt-hero-badges .lt-badge-chip .lt-badge-repsol {
    padding: 14%;
}

.lt-chip-svg {
    width: 28px;
    height: 28px;
    color: var(--c-wine);
    display: block;
}

/* Scroll indicator */
.lt-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, .5);
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0; /* Hidden initially to prevent GSAP double animation flash */
}

.lt-scroll-line {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .3);
    animation: lt-scroll-pulse 2s ease-in-out infinite;
}

@keyframes lt-scroll-pulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: .4;
    }

    50% {
        transform: scaleY(1.4);
        opacity: .8;
    }
}

/* --------------------------------------------------------------------------
   CONTENT SECTIONS
   -------------------------------------------------------------------------- */
.lt-section {
    padding: var(--section-pad) 0;
    position: relative;
}

.lt-section-white {
    background: var(--c-white);
}

.lt-section-dark {
    background: var(--c-dark-bg);
}

/* El Restaurante High-End Typography & Contrast Styling */
#restaurante {
    background-color: var(--c-burgundy) !important;
    /* Rich vineyard vinous (color vino) */
    color: #F8F5F0 !important;
    /* Cream Ivory */
    position: relative;
    overflow: hidden !important;
}

#restaurante::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #1C1012 0%, rgba(28, 16, 18, 0) 100%);
    z-index: 4; /* Floats above parallax plates (z-index 1/2) but under content (z-index 10) */
    pointer-events: none;
}

#restaurante::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #1C1012 0%, rgba(28, 16, 18, 0) 100%);
    z-index: 4; /* Floats above parallax plates (z-index 1/2) but under content (z-index 10) */
    pointer-events: none;
}

#restaurante .lt-eyebrow {
    color: var(--c-gold);
}

#restaurante .lt-h2 {
    color: var(--c-gold) !important;
    /* Champaña Gold */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#restaurante .lt-lead {
    color: #E8E3DA !important;
    /* Cream Ivory Readability */
    font-weight: 300;
}

/* Stacked rows structure styles */
.lt-rest-stacked-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Larger prestige badges inside restaurant section */
.lt-badges-restaurant {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    padding: 0.85rem 2.2rem !important;
}

.lt-badge-chip.lt-chip-lg {
    width: 76px !important;
    height: 76px !important;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
}

/* Bespoke Achievements Block – Decoupled luxury minimal row */
.lt-restaurant-achievements-luxe {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1.5px solid rgba(197, 160, 89, 0.15); /* Soft champagne divider */
}

.lt-achievements-title {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 1.25rem;
    text-align: center;
}

.lt-achievements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2rem;
    justify-content: center;
}

.lt-achievement-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centered layout */
    text-align: center;
    gap: 1.15rem;
}

.lt-achievement-badge-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem; /* Closer gap for hugging */
}

/* Symmetrical gold laurels flanking the badges (swapped to curve inward and hug) */
.lt-achievement-badge-wrap::before {
    content: '';
    width: 24px;
    height: 48px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 40c-4-4-8-12-8-20s4-16 8-18c0 0-6 8-6 18s4 16 6 20z' fill='%23C5A059'/%3E%3Ccircle cx='12' cy='10' r='2' fill='%23C5A059'/%3E%3Ccircle cx='10' cy='18' r='2' fill='%23C5A059'/%3E%3Ccircle cx='10' cy='26' r='2' fill='%23C5A059'/%3E%3Ccircle cx='14' cy='34' r='2' fill='%23C5A059'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.85;
}

.lt-achievement-badge-wrap::after {
    content: '';
    width: 24px;
    height: 48px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 40c4-4 8-12 8-20S6 4 2 2c0 0 6 8 6 18s-4 16-6 20z' fill='%23C5A059'/%3E%3Ccircle cx='12' cy='10' r='2' fill='%23C5A059'/%3E%3Ccircle cx='14' cy='18' r='2' fill='%23C5A059'/%3E%3Ccircle cx='14' cy='26' r='2' fill='%23C5A059'/%3E%3Ccircle cx='10' cy='34' r='2' fill='%23C5A059'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.85;
}

.lt-achievement-badge-frame {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid #C5A059; /* Metallic champagne/gold jewelry border */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: scale(1.08); /* Permanently scaled up */
    box-shadow: 0 14px 35px rgba(197, 160, 89, 0.35); /* Permanent enhanced gold glow shadow */
    transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
    flex-shrink: 0;
}

.lt-achievement-badge-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 10%;
    box-sizing: border-box;
}

.lt-achievement-badge-frame .lt-badge-repsol {
    padding: 14%;
}

.lt-achievement-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.35;
    min-height: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lt-achievement-desc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(250, 249, 246, 0.7);
    margin: 0;
}

/* Alternating Luxury Themes */
.lt-section-cream {
    background-color: var(--c-marfil) !important;
}

.lt-section-dark {
    background-color: var(--c-obsidian) !important;
}

.lt-section-burgundy {
    background-color: var(--c-burgundy) !important;
    color: var(--c-marfil) !important;
}

.lt-section-burgundy .lt-eyebrow {
    color: var(--c-gold);
}

.lt-section-burgundy .lt-h2 {
    color: var(--c-gold) !important;
}

.lt-section-burgundy .lt-lead {
    color: rgba(250, 249, 246, 0.82) !important;
}

/* Alojamiento Dark Burgundy Theme Fine-Tuning */
#alojamiento {
    background-color: var(--c-burgundy) !important; /* Rich burgundy matches restaurant exactly */
    color: #F8F5F0 !important;
    position: relative;
}

#alojamiento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, #1C1012 0%, rgba(244, 241, 234, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

#alojamiento .lt-eyebrow {
    color: var(--c-gold) !important;
}

#alojamiento .lt-h2 {
    color: var(--c-gold) !important;
}

#alojamiento .lt-lead {
    color: rgba(250, 249, 246, 0.95) !important;
}

#alojamiento .lt-lodge-card {
    background: var(--c-white) !important;
    border: 1px solid rgba(45, 42, 38, 0.07) !important;
    box-shadow: var(--shadow-md) !important;
}

#alojamiento .lt-lodge-card:hover {
    box-shadow: var(--shadow-lg) !important;
}

#alojamiento .lt-lodge-body h3 {
    color: var(--c-charcoal) !important;
}

#alojamiento .lt-lodge-body p {
    color: var(--c-muted) !important;
}

#alojamiento .lt-lodge-body .lt-btn-secondary {
    border-color: rgba(45, 42, 38, 0.2) !important;
    color: var(--c-charcoal) !important;
}

#alojamiento .lt-lodge-body .lt-btn-secondary:hover {
    background: var(--c-charcoal) !important;
    color: var(--c-white) !important;
}

#alojamiento .lt-amenities li {
    color: var(--c-muted) !important;
    border-bottom: 1px solid rgba(45, 42, 38, 0.06) !important;
}

#alojamiento .lt-lodge-tag {
    background: rgba(15, 12, 10, 0.65) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Bodega Dark Obsidian Theme Fine-Tuning */
#bodega {
    background-color: #0D0708 !important; /* Obsidian black background */
    color: var(--c-marfil) !important;
}

/* Equipo Premium Dark Burgundy Theme Override */
#equipo {
    background-color: var(--c-burgundy) !important;
    color: var(--c-marfil) !important;
    padding-top: 0 !important; /* Snaps directly to bottom of Bodega cellar */
}

#equipo .lt-eyebrow {
    color: var(--c-gold) !important;
}

#equipo .lt-h2 {
    color: var(--c-gold) !important;
}

#equipo .lt-member-body h4 {
    color: var(--c-gold) !important;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    margin-bottom: 0.4rem;
}

#equipo .lt-member-body p {
    color: rgba(250, 249, 246, 0.82) !important;
    font-size: 0.95rem;
    line-height: 1.7;
}

#equipo .lt-member-role {
    color: rgba(250, 249, 246, 0.58) !important;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

#equipo .lt-member {
    background: rgba(250, 249, 246, 0.03) !important;
    border: 1px solid rgba(197, 160, 89, 0.15) !important;
    border-radius: var(--r-lg) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    padding: 2rem !important; /* Generous visual breathing space */
    transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid) !important;
}

#equipo .lt-member:hover {
    transform: translateY(-5px) !important;
    border-color: var(--c-gold) !important;
    box-shadow: 0 25px 50px rgba(197, 160, 89, 0.12) !important;
}

/* Regalos Dark Burgundy Theme Fine-Tuning */
#regalos {
    background-color: var(--c-burgundy) !important;
    color: var(--c-marfil) !important;
}

#regalos .lt-eyebrow {
    color: var(--c-gold);
}

#regalos .lt-h2 {
    color: var(--c-gold) !important;
}

#regalos .lt-lead {
    color: rgba(250, 249, 246, 0.82) !important;
}

#regalos .lt-gift-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#regalos .lt-gift-card:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

#regalos .lt-gift-card h3 {
    color: #fff !important;
}

#regalos .lt-gift-card p {
    color: rgba(250, 249, 246, 0.8) !important;
}

#regalos .lt-gift-price {
    color: var(--c-gold) !important;
}

/* Contacto Burgundy Theme Fine-Tuning */
#contacto {
    background-color: var(--c-burgundy) !important;
}

#contacto .lt-head-light .lt-eyebrow-light {
    color: var(--c-gold) !important;
}

#contacto .lt-h2-light {
    color: var(--c-gold) !important;
}

#contacto .lt-lead-light {
    color: rgba(250, 249, 246, 0.82) !important;
}

#contacto .lt-info-block h3,
#contacto .lt-info-block .lt-info-label {
    color: var(--c-gold);
}

#contacto .lt-info-block p {
    color: rgba(250, 249, 246, 0.85);
}

#contacto .lt-form-wrap {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

#contacto .lt-form-wrap h3 {
    color: #fff;
}

#contacto .lt-label {
    color: rgba(250, 249, 246, 0.85);
}

#contacto .lt-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

#contacto .lt-input:focus {
    border-color: var(--c-gold);
}

/* Scroll Margin & Section Header Spacing */
#restaurante,
#alojamiento,
#bodega,
#regalos,
#contacto {
    scroll-margin-top: 100px;
    padding-top: 140px !important;
}

#equipo {
    scroll-margin-top: 100px;
}

/* Reduced width of dark restaurant board cards */
.lt-menu-board {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.lt-menu-tabs {
    display: flex;
    background: rgba(91, 28, 40, 0.05);
    border-radius: 30px;
    padding: 0.25rem;
    margin-bottom: 2.25rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.lt-menu-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-charcoal);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.45s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.lt-menu-tab-btn.active {
    background: var(--c-wine);
    color: #fff;
    box-shadow: 0 4px 12px rgba(91, 28, 40, 0.2);
}

.lt-menu-tab-content {
    display: none;
}

.lt-menu-tab-content.active {
    display: block;
}

/* --------------------------------------------------------------------------
   RESTAURANTE
   -------------------------------------------------------------------------- */
.lt-rest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.lt-img-frame {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.lt-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}

.lt-img-frame:hover .lt-img {
    transform: scale(1.04);
}

/* Asymmetric Editorial Grid Layout */
.lt-restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
    /* CRUCIAL para que el sticky funcione */
    position: relative;
    z-index: 10;
}

.lt-restaurant-editorial {
    position: sticky;
    top: 140px;
}

/* Fine gold feather filigree styled via HTML SVG */
.lt-feather-svg {
    width: 320px !important; /* Visual matching of width of El Restaurante heading */
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    color: var(--c-gold) !important;
    margin: 0.15rem 0 0.25rem 0 !important; /* Layout margins minimized, flushed against .lt-lead below */
}

.lt-restaurant-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-self: center; /* Center-aligned menu card vertically relative to sticky left col */
}


/* Solid Opaque Cards (Physical Menu Sheet Effect) */
.lt-menu-board-solid,
.lt-huerta-card {
    background-color: #FAF9F6 !important;
    /* Generación de ruido SVG nativo por CSS para textura de papel grueso (intensificado) */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.20'/%3E%3C/svg%3E") !important;
    border: 1.5px solid #C5A059 !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), inset 0 0 40px rgba(0, 0, 0, 0.02) !important;
}

.lt-menu-board-solid h3 {
    color: var(--c-charcoal) !important;
}

.lt-menu-board-solid p {
    color: var(--c-charcoal) !important;
}

.lt-menu-board-solid .lt-menu-price {
    color: var(--c-wine) !important;
}



/* Provenance attribution line */
.lt-rest-provenance {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 0.5rem;
}

.lt-provenance-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-wine);
    margin-top: 0.45rem;
}

.lt-rest-provenance p {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 1024px) {
    .lt-restaurant-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lt-restaurant-editorial {
        position: static !important;
        top: auto !important;
    }

    .lt-huerta-card {
        margin-top: 2.5rem;
    }

    /* Menu Tabs Mobile & Tablet Styling */
    .lt-menu-tabs {
        display: flex !important;
        background: rgba(91, 28, 40, 0.05) !important;
        border-radius: 30px !important;
        padding: 0.25rem !important;
        margin-bottom: 2.25rem !important;
        border: 1px solid rgba(197, 160, 89, 0.2) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .lt-menu-tab-btn {
        flex: 1 !important;
        background: transparent !important;
        border: none !important;
        padding: 0.75rem 1rem !important;
        font-family: var(--font-sans) !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        color: var(--c-charcoal) !important;
        border-radius: 25px !important;
        cursor: pointer !important;
        transition: all var(--t-fast) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
    }
    .lt-menu-tab-btn.active {
        background: var(--c-wine) !important;
        color: #fff !important;
        box-shadow: 0 4px 12px rgba(91, 28, 40, 0.2) !important;
    }
    .lt-menu-tab-content {
        display: none !important;
    }
    .lt-menu-tab-content.active {
        display: block !important;
    }
    .lt-menu-tab-content[data-menu-tab="carta"] {
        border-top: none !important;
        padding-top: 0 !important;
    }
}

/* Huerta Full-Width Background Banner */
.lt-huerta-fullwidth-banner {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 5rem;
    margin-bottom: 2rem;
    background-image: url('https://latroneradelbierzo.com/wp-content/uploads/2021/10/restaurante-sostenible-el-bierzo-km-0-huerto-3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem var(--gutter);
}

.lt-huerta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28, 16, 18, 0.45), rgba(28, 16, 18, 0.8));
    z-index: 1;
}

.lt-huerta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lt-huerta-banner-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin: 0.5rem 0 1.25rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.25;
}

.lt-huerta-banner-desc {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(250, 249, 246, 0.9);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    max-width: 720px;
}

/* ── RESTAURANT REVIEWS CARD (Glassmorphic 3-column layout) ──────────────── */
.lt-restaurant-reviews-card {
    background: rgba(250, 249, 246, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--r-lg);
    padding: 3rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.lt-rest-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.lt-rest-reviews-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--c-gold) !important;
    margin: 0.5rem 0 0 0;
}

.lt-rest-reviews-badges {
    display: flex;
    gap: 1rem;
}

.lt-badge-repsol, .lt-badge-michelin {
    background: rgba(197, 160, 89, 0.12);
    color: var(--c-gold);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0.4rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
}

.lt-rest-reviews-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 0.5rem 0.25rem 2rem 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 160, 89, 0.3) rgba(255, 255, 255, 0.03);
}

.lt-rest-reviews-grid::-webkit-scrollbar {
    height: 6px;
}

.lt-rest-reviews-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
}

.lt-rest-reviews-grid::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.3);
    border-radius: 3px;
    transition: background 0.3s;
}

.lt-rest-reviews-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(197, 160, 89, 0.6);
}

.lt-rest-review-item {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: rgba(250, 249, 246, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--r-md);
    padding: 1.5rem;
    transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
    box-sizing: border-box;
}

/* Invitation Card at the end of reviews */
.lt-review-more-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    background: rgba(197, 160, 89, 0.03) !important;
    border: 1px dashed rgba(197, 160, 89, 0.4) !important;
    padding: 2rem !important;
    flex: 0 0 350px !important;
}

.lt-review-more-card:hover {
    border-color: var(--c-gold) !important;
    background: rgba(197, 160, 89, 0.06) !important;
}

.lt-more-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.lt-more-card-title {
    font-family: var(--font-serif);
    color: #FFF;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.lt-more-card-text {
    font-size: 0.82rem;
    color: rgba(250, 249, 246, 0.6) !important;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-style: normal !important;
}

.lt-rest-review-item:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.25);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.lt-review-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lt-review-platform-icon {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    object-fit: contain;
}

.lt-review-author {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-marfil);
}

.lt-review-stars {
    color: var(--c-gold);
    font-size: 0.8rem;
    margin-left: auto;
}

.lt-review-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(250, 249, 246, 0.8) !important;
    margin: 0;
    font-style: italic;
}

@media (max-width: 900px) {
    .lt-rest-reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ── TEAM HERO (cinematic fullwidth) ───────────────────────────────────── */
.lt-team-hero {
    position: relative;
    height: 98vh; /* Maximum vertical presence for cinematic background */
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0 !important; /* Seamless connection with family section below */
}

.lt-team-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 480px; /* Taller and much smoother fade transition */
    background: linear-gradient(to bottom, rgba(28, 16, 18, 0) 0%, rgba(28, 16, 18, 0.4) 40%, rgba(28, 16, 18, 0.85) 75%, #1C1012 100%) !important;
    z-index: 1;
    pointer-events: none;
}

/* Elegant vertical gradient transition fading the cellar obsidian black background into the kitchen image at the top */
.lt-team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 320px; /* Tall, smooth cinematic transition fade */
    background: linear-gradient(to bottom, #0D0708 0%, rgba(13, 7, 8, 0.4) 40%, rgba(13, 7, 8, 0) 100%) !important;
    z-index: 2;
    pointer-events: none;
}

.lt-team-hero-img-wrap {
    position: absolute;
    inset: 0;
}

.lt-team-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.lt-team-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(15, 12, 10, .78) 0%,
            rgba(15, 12, 10, .40) 55%,
            rgba(15, 12, 10, .10) 100%);
}

.lt-team-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: var(--container);
    width: 100%;
    padding: 0 var(--gutter);
    z-index: 2;
}

.lt-team-hero-text h2 {
    color: var(--c-gold) !important; /* Exquisite metallic gold */
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8) !important;
}

.lt-team-hero-text p {
    color: rgba(250, 249, 246, 0.95) !important; /* Elegant light ivory */
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6) !important;
}

/* Menu Board */
.lt-menu-board {
    background: var(--c-dark-bg);
    border-radius: var(--r-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-lg);
    color: rgba(255, 255, 255, .85);
}

.lt-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 2rem;
}

.lt-menu-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.3rem;
}

.lt-menu-header p {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}

.lt-menu-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--c-gold);
    white-space: nowrap;
}

.lt-menu-price span {
    font-size: 0.75rem;
    font-weight: 300;
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, .4);
}

.lt-dishes {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lt-dish {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.lt-dish:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lt-dish-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 0.4rem;
}

.lt-dish-desc {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(250, 249, 246, 0.85);
    /* High contrast crema */
}

.lt-menu-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, .04);
    border-radius: var(--r-md);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

.lt-menu-note svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--c-gold);
    margin-top: 2px;
}

.lt-menu-note p {
    font-size: 0.78rem;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.82);
    /* High contrast crema */
    margin: 0;
}

.lt-menu-note strong {
    color: var(--c-white);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   ALOJAMIENTO
   -------------------------------------------------------------------------- */
.lt-lodge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.lt-lodge-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--c-cream);
    border: 1px solid rgba(45, 42, 38, .07);
    box-shadow: var(--shadow-md);
    transition: transform var(--t-mid), box-shadow var(--t-mid);
    display: flex;
    flex-direction: column;
}

.lt-lodge-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.lt-lodge-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.lt-lodge-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.lt-lodge-card:hover .lt-lodge-img {
    transform: scale(1.05);
}

.lt-lodge-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(15, 12, 10, .65);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, .9);
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: var(--r-sm);
}

.lt-lodge-body {
    padding: 2rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lt-lodge-body h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 0.75rem;
    color: var(--c-charcoal);
}

.lt-lodge-body p {
    font-size: 0.87rem;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    flex: 1;
}

.lt-amenities {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.lt-amenities li {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--c-muted);
    padding-left: 1.2em;
    position: relative;
}

.lt-amenities li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--c-wine);
    font-size: 0.65rem;
}

/* --------------------------------------------------------------------------
   BODEGA
   -------------------------------------------------------------------------- */
.lt-cellar-layout-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
    padding: 4rem 0;
}

.lt-cellar-editorial-column {
    display: flex;
    flex-direction: column;
}

.lt-cellar-visual-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lt-cellar-eyebrow {
    color: var(--c-gold);
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 600;
}

.lt-cellar-title {
    color: var(--c-gold) !important;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 4.8vw, 4.2rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.15;
    text-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-align: left;
}

/* Custom Wine Drop Divider */
.lt-wine-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 320px;
}

.lt-wine-line-left {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--c-gold) 80%);
    opacity: 0.6;
}

.lt-wine-line-right {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to left, transparent, var(--c-gold) 80%);
    opacity: 0.6;
}

.lt-wine-drop-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 20px;
    height: 20px;
}

.lt-wine-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--c-gold);
    display: inline-block;
}

.lt-wine-circle.outer {
    width: 18px;
    height: 18px;
    opacity: 0.25;
    animation: winePulse 3s infinite ease-in-out;
}

.lt-wine-circle.middle {
    width: 12px;
    height: 12px;
    opacity: 0.55;
    animation: winePulse 3s infinite ease-in-out 1s;
}

.lt-wine-circle.inner {
    width: 6px;
    height: 6px;
    background-color: var(--c-gold);
    border: none;
    opacity: 0.9;
}

@keyframes winePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.25;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.5;
    }
}

.lt-cellar-content {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem; /* Spacious premium vertical separation */
}

.lt-cellar-lead-text {
    font-size: 1.15rem !important; /* Elegant slightly smaller text size */
    font-weight: 300;
    color: rgba(250, 249, 246, 0.9) !important;
    line-height: 1.85; /* Loose, highly readable line-height */
    margin: 0;
    text-align: left;
    max-width: 750px;
}

.lt-cellar-facts-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem; /* Wide and loose spacing */
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.lt-cellar-fact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.lt-cellar-fact-num {
    font-family: var(--font-serif);
    font-size: 3rem !important; /* Majestic number size */
    font-weight: 500;
    color: var(--c-gold) !important;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(197, 160, 89, 0.25);
}

.lt-cellar-fact-label {
    font-family: var(--font-sans);
    font-size: 0.78rem !important;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.65) !important;
}

.lt-cellar-fact-separator {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.3) 50%, transparent);
}

/* Overlapping Mosaic Gallery */
.lt-cellar-mosaic {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 480px;
}

.lt-cellar-mosaic-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.6s ease;
}

.lt-cellar-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.lt-cellar-mosaic-item:hover {
    z-index: 5 !important;
    border-color: var(--c-gold);
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.25);
}

.lt-cellar-mosaic-item:hover img {
    transform: scale(1.06);
}

.lt-cellar-mosaic-item.main-img {
    grid-column: 1 / 8;
    grid-row: 2 / 11;
    z-index: 2;
}

.lt-cellar-mosaic-item.top-img {
    grid-column: 8 / 13;
    grid-row: 1 / 6;
    z-index: 3;
}

.lt-cellar-mosaic-item.bottom-img {
    grid-column: 7 / 12;
    grid-row: 7 / 12;
    z-index: 4;
}

@media (max-width: 992px) {
    .lt-cellar-layout-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 2rem 0;
    }
    
    .lt-cellar-mosaic {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .lt-cellar-content {
        gap: 2.5rem;
    }
    
    .lt-cellar-mosaic {
        margin: 0 auto !important;
    }

    .lt-cellar-facts-row {
        gap: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .lt-cellar-fact-separator {
        display: none;
    }
    
    .lt-cellar-lead-text {
        font-size: 1.05rem !important;
        line-height: 1.75;
    }
    
    .lt-cellar-fact-num {
        font-size: 2.6rem !important;
    }
    
    .lt-wine-divider {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

/* FAQ */
.lt-faq-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 0 2rem;
}

.lt-faq-item {
    border-bottom: 1px solid rgba(45, 42, 38, .09);
}

.lt-faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 1.4rem 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--c-charcoal);
    transition: color var(--t-fast);
}

.lt-faq-btn:hover {
    color: var(--c-wine);
}

.lt-faq-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform var(--t-fast);
    color: var(--c-muted);
}

.lt-faq-btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.lt-faq-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height var(--t-mid);
}

.lt-faq-panel.open {
    max-height: 400px;
}

.lt-faq-panel p {
    font-size: 0.87rem;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.8;
    padding-bottom: 1.5rem;
    margin: 0;
}

/* ── FAMILY SECTION GRID & INTERACTIVE PORTRAIT ─────────────────────── */
.lt-family-interactive-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    margin: 0.5rem auto 0;
    z-index: 10;
}

@media (min-width: 1025px) {
    .lt-family-interactive-container {
        width: 1000px;
    }
}

.lt-family-portrait-column {
    position: relative;
}

/* Central Family Portrait Positioning on Desktop */
.lt-family-interactive-container .lt-family-portrait-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 320px;
    margin: 0;
    z-index: 2;
}

.lt-portrait-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.lt-portrait-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--c-gold);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.85);
    z-index: 5;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.lt-portrait-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lt-portrait-card:hover ~ .lt-family-portrait-wrap .lt-portrait-dot,
.lt-portrait-dot:hover {
    transform: translate(-50%, -50%) scale(1.3);
    background-color: #FFFFFF;
    box-shadow: 0 0 15px var(--c-gold);
}

.lt-portrait-card {
    position: absolute;
    width: 250px;
    padding: 1.25rem !important;
    background: rgba(250, 249, 246, 0.03) !important;
    border: 1px solid rgba(197, 160, 89, 0.15) !important;
    border-radius: var(--r-md) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45) !important;
    transition: transform var(--t-mid), border-color var(--t-mid) !important;
    z-index: 4;
}

.lt-portrait-card:hover {
    transform: translateY(-3px) !important;
    border-color: var(--c-gold) !important;
}

.lt-portrait-card-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-gold);
    margin-bottom: 0.3rem;
}

.lt-portrait-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--c-marfil);
    margin: 0 0 0.4rem 0;
    font-weight: 500;
}

.lt-portrait-card p {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(250, 249, 246, 0.72);
    margin: 0;
}

/* Card positions on Desktop */
.lt-portrait-card.top-left {
    left: 4%;
    top: 15%;
}

.lt-portrait-card.top-right {
    right: 4%;
    top: 15%;
}

.lt-portrait-card.bottom-left {
    left: 4%;
    bottom: 15%;
}

.lt-portrait-card.bottom-right {
    right: 4%;
    bottom: 15%;
}

/* Crop image helper styles used in mobile list */
#equipo .lt-member-img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 0.85rem;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: border-color var(--t-mid);
    z-index: 2;
}

.lt-member-img-crop {
    width: 100%;
    height: 100%;
    background-image: url('https://cf.bstatic.com/xdata/images/hotel/max500/867159292.jpg?k=cf4c2d42a3a5466ed3236dafddf28297cd05224787aac9d90c51608cdb92f970&o=&hp=1');
    background-size: 350% 466.67% !important;
    background-repeat: no-repeat;
    transition: transform var(--t-slow);
}

.lt-img-teresa {
    background-position: 5% 45% !important;
}
.lt-img-luis {
    background-position: 33% 35% !important;
}
.lt-img-alba {
    background-position: 66% 50% !important;
}
.lt-img-miguel {
    background-position: 95% 50% !important;
}


/* ── LARGE FAMILY PORTRAIT (Right side with double golden border) ──────── */
.lt-family-portrait-wrap {
    position: relative;
    border-radius: var(--r-lg);
    overflow: visible; /* Required to show the floating border! */
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    aspect-ratio: 3/4;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    z-index: 2;
}

/* Floating gold border outline behind the portrait container */
.lt-family-portrait-wrap::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: calc(var(--r-lg) + 8px);
    pointer-events: none;
    transition: inset var(--t-mid), border-color var(--t-mid);
    z-index: -1;
}

/* Inner golden frame on the image wrapper container */
.lt-family-portrait-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: border-color var(--t-mid);
}

.lt-family-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}

.lt-family-portrait-wrap:hover::before {
    inset: -6px;
    border-color: var(--c-gold);
}

.lt-family-portrait-wrap:hover .lt-family-portrait-inner {
    border-color: var(--c-gold);
}

.lt-family-portrait-wrap:hover .lt-family-portrait-img {
    transform: scale(1.03);
}

/* Responsive Mobile Layout listing */
.lt-family-mobile-list {
    display: none;
}

@media (max-width: 1024px) {
    .lt-family-interactive-container {
        height: auto;
        margin-top: 1.5rem;
    }
    
    .lt-family-interactive-container .lt-family-portrait-wrap {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 0 auto 2.5rem;
        max-width: 320px;
        aspect-ratio: 3/4;
    }
    
    .lt-portrait-lines,
    .lt-portrait-dot,
    .lt-portrait-card {
        display: none !important;
    }
    
    .lt-family-mobile-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        width: 100%;
        margin-top: 2rem;
    }
    
    .lt-mobile-member-card {
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
        background: rgba(250, 249, 246, 0.02);
        border: 1px solid rgba(197, 160, 89, 0.12);
        padding: 1.5rem;
        border-radius: var(--r-md);
    }
    
    .lt-mobile-member-avatar {
        width: 76px;
        height: 76px;
        border-radius: 50%;
        overflow: hidden;
        border: 1.5px solid var(--c-gold);
        flex-shrink: 0;
        aspect-ratio: 1/1;
    }
    
    .lt-mobile-member-avatar .lt-member-img-crop {
        width: 100%;
        height: 100%;
    }
    
    .lt-mobile-member-info {
        flex-grow: 1;
    }
    
    .lt-mobile-member-role {
        font-family: var(--font-sans);
        font-size: 0.7rem;
        text-transform: uppercase;
        color: var(--c-gold);
        display: block;
        margin-bottom: 0.25rem;
        letter-spacing: 0.06em;
    }
    
    .lt-mobile-member-info h3 {
        font-family: var(--font-serif);
        font-size: 1.2rem;
        color: var(--c-marfil);
        margin: 0 0 0.35rem 0;
        font-weight: 500;
    }
    
    .lt-mobile-member-info p {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        line-height: 1.45;
        color: rgba(250, 249, 246, 0.65);
        margin: 0;
    }
}

@media (max-width: 768px) {
    .lt-family-mobile-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .lt-mobile-member-card {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }
    
    .lt-mobile-member-avatar {
        width: 64px;
        height: 64px;
    }
    
    .lt-mobile-member-info h3 {
        font-size: 1.1rem;
    }
}

/* --------------------------------------------------------------------------
   REGALOS
   -------------------------------------------------------------------------- */
.lt-gifts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.lt-gift-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--c-white);
    border: 1px solid rgba(45, 42, 38, .07);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.lt-gift-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.lt-gift-img-wrap {
    height: 240px;
    overflow: hidden;
}

.lt-gift-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.lt-gift-card:hover .lt-gift-img {
    transform: scale(1.05);
}

.lt-gift-body {
    padding: 2rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
}

.lt-gift-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.lt-gift-header h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--c-charcoal);
    margin: 0;
    flex: 1;
}

.lt-gift-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--c-wine);
    white-space: nowrap;
}

.lt-gift-body>p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* --------------------------------------------------------------------------
   CONTACTO (dark section)
   -------------------------------------------------------------------------- */
.lt-head-light .lt-eyebrow-light {
    color: var(--c-gold);
}

.lt-h2-light {
    color: var(--c-white);
}

.lt-lead-light {
    color: rgba(255, 255, 255, .55);
}

.lt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.lt-contact-info h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--c-white);
    margin: 0 0 2rem;
}

.lt-info-block {
    margin-bottom: 1.75rem;
}

.lt-info-block h3,
.lt-info-block .lt-info-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin: 0 0 0.5rem;
}

.lt-info-block p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin: 0;
}

.lt-info-block a {
    color: rgba(255, 255, 255, .7);
    transition: color var(--t-fast);
}

.lt-info-block a:hover {
    color: var(--c-gold);
}

.lt-map-wrap {
    margin-top: 2rem;
    border-radius: var(--r-md);
    overflow: hidden;
}

.lt-map {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
    border-radius: var(--r-md);
    filter: grayscale(0.4) contrast(1.05);
}

/* Form */
.lt-form-wrap {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-lg);
    padding: 3rem;
}

.lt-form-wrap h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--c-white);
    margin: 0 0 2rem;
}

.lt-field {
    margin-bottom: 1.25rem;
}

.lt-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.lt-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 0.5rem;
}

.lt-input {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-sm);
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .85);
    outline: none;
    transition: border-color var(--t-fast), background var(--t-fast);
    appearance: none;
    -webkit-appearance: none;
}

.lt-input::placeholder {
    color: rgba(255, 255, 255, .22);
}

.lt-input:focus {
    border-color: var(--c-gold);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, .12);
}

.lt-rgpd {
    margin: 1.5rem 0;
}

.lt-check-label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
}

.lt-check-label input {
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: var(--c-gold);
}

.lt-check-label span {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
    line-height: 1.55;
}

.lt-rgpd-info {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, .3);
    line-height: 1.5;
    margin: 0.75rem 0 0;
}

.lt-rgpd-info a {
    color: rgba(255, 255, 255, .45);
    text-decoration: underline;
}

.lt-rgpd-info a:hover {
    color: var(--c-gold);
}

.lt-btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--c-wine);
    color: #fff;
    border: 1.5px solid var(--c-wine);
    border-radius: var(--r-sm);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}

.lt-btn-submit:hover {
    background: var(--c-wine-dark);
    box-shadow: 0 8px 28px rgba(91, 28, 40, .3);
    transform: translateY(-1px);
}

.lt-form-msg {
    margin-top: 1rem;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.5;
    min-height: 1.5em;
}

.lt-form-msg.success {
    color: #6ec178;
}

.lt-form-msg.error {
    color: #e07575;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.lt-footer {
    background: #111009;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.lt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: 2.5rem;
}

.lt-footer-brand .lt-footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    margin-bottom: 1.25rem;
}

.lt-footer-brand p {
    font-size: 0.83rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
    max-width: 260px;
    margin: 0;
}

.lt-footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin: 0 0 1.25rem;
}

.lt-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lt-footer-col li {
    font-size: 0.83rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .72);
    transition: color var(--t-fast);
}

.lt-footer-col a {
    color: rgba(255, 255, 255, .55);
    text-decoration: underline;
    text-decoration-color: rgba(197, 160, 89, 0.45);
    text-underline-offset: 3px;
    transition: color var(--t-fast), text-decoration-color var(--t-fast);
}

.lt-footer-col a:hover {
    color: rgba(255, 255, 255, .85);
    text-decoration-color: var(--c-gold);
}

.lt-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.lt-footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, .68);
    margin: 0;
}

.lt-footer-credit {
    color: rgba(255, 255, 255, .68);
}

.lt-footer-credit a {
    color: rgba(255, 255, 255, .55);
    text-decoration: underline;
    text-decoration-color: rgba(197, 160, 89, 0.45);
    text-underline-offset: 3px;
    transition: color var(--t-fast), text-decoration-color var(--t-fast);
}

.lt-footer-credit a:hover {
    color: var(--c-gold);
    text-decoration-color: var(--c-gold);
}

/* --------------------------------------------------------------------------
   GSAP REVEAL CLASSES
   -------------------------------------------------------------------------- */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
    .lt-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --section-pad: 5rem;
        --gutter: 1.5rem;
    }

    .lt-nav,
    .lt-cta-reserve {
        display: none;
    }

    .lt-hamburger {
        display: block;
    }

    .lt-hero-badges {
        gap: 1rem;
        bottom: 3rem;
    }

    .lt-badge-chip {
        width: 58px;
        height: 58px;
    }

    .lt-hero-badges .lt-badge-chip {
        width: 68px;
        height: 68px;
    }

    .lt-hero-badges .lt-chip-img {
        width: 100%;
        height: 100%;
    }

    .lt-chip-img {
        width: 36px;
        height: 36px;
    }

    .lt-chip-svg {
        width: 26px;
        height: 26px;
    }

    .lt-rest-grid,
    .lt-cellar-grid,
    .lt-contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lt-lodge-grid {
        grid-template-columns: 1fr;
    }

    .lt-gifts-grid {
        grid-template-columns: 1fr;
    }

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

    .lt-footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .lt-hero-title {
        font-size: clamp(2.6rem, 10vw, 4rem);
    }

    .lt-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .lt-btn-hero-wine,
    .lt-btn-hero-outline {
        width: 100%;
        justify-content: center;
        min-width: unset;
    }

    .lt-hero-badges {
        bottom: 2rem;
        gap: 0.75rem;
    }

    .lt-badge-chip {
        width: 50px;
        height: 50px;
    }

    .lt-hero-badges .lt-badge-chip {
        width: 72px;
        height: 72px;
    }

    .lt-hero-badges .lt-chip-img,
    .lt-hero-badges .lt-chip-svg {
        width: 100%;
        height: 100%;
    }

    .lt-chip-img {
        width: 30px;
        height: 30px;
    }

    .lt-chip-svg {
        width: 22px;
        height: 22px;
    }

    .lt-stats-row {
        gap: 1.5rem;
    }

    .lt-stat-num {
        font-size: 2.2rem;
    }

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

    .lt-team-grid {
        grid-template-columns: 1fr;
    }

    .lt-footer-grid {
        grid-template-columns: 1fr;
    }

    .lt-footer-brand {
        grid-column: auto;
    }

    .lt-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .lt-form-wrap {
        padding: 1.75rem;
    }

    .lt-menu-board {
        padding: 1.75rem;
    }

    .lt-menu-header {
        flex-direction: column;
    }
}

/* ==========================================================================
   STICKY CONVERSION HUB (Persistent Floating Actions)
   ========================================================================== */
.lt-sticky-hub {
    position: fixed;
    bottom: 2.2rem;
    left: 50%;
    transform: translate(-50%, 140%);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.5rem 0.85rem;
    background: rgba(26, 23, 20, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    max-width: 90vw;
    width: max-content;
}

.lt-sticky-hub.lt-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.lt-sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.45rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--c-white);
    border-radius: 50px;
    transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}

.lt-sticky-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.lt-sticky-btn-wine {
    background: var(--c-wine);
}

.lt-sticky-btn-wine:hover {
    background: var(--c-wine-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 28, 40, .35);
}

.lt-sticky-btn-gold {
    background: var(--c-gold);
}

.lt-sticky-btn-gold:hover {
    background: #b5904a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, .35);
}

@media (max-width: 640px) {
    .lt-sticky-hub {
        bottom: 1rem;
        gap: 0.4rem;
        padding: 0.4rem;
        width: calc(100% - 2rem);
        justify-content: center;
    }

    .lt-sticky-btn {
        padding: 0.65rem 0.85rem;
        font-size: 0.58rem;
    }

    .lt-sticky-btn span {
        display: none;
        /* Icon-only or very short on micro mobile */
    }

    .lt-sticky-btn::after {
        content: ' Restaurante';
    }

    .lt-sticky-btn-gold::after {
        content: ' Alojamiento';
    }
}


/* ==========================================================================
   MULTILAYER PARALLAX CANVAS (Luxury Ghost Effect)
   ========================================================================== */
.lt-parallax-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    /* Estrictamente al fondo */
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%) !important;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%) !important;
}

.lt-parallax-layer {
    position: absolute;
    border-radius: 50% !important; /* Forced circular orbs */
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(197, 160, 89, 0.45) !important; /* Gold metallic border */
    opacity: 0.28 !important; /* Elegant background visibility */
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.lt-parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wide-margin outer coordinates */
.lt-layer-deep {
    width: 450px;
    height: 450px;
    top: 0%;
    left: -15%;
    z-index: 1;
}

.lt-layer-deep-2 {
    width: 350px;
    height: 350px;
    top: 10%;
    right: -10%;
    z-index: 1;
}

.lt-layer-mid {
    width: 550px;
    height: 550px;
    top: 35%;
    left: -20%;
    z-index: 1;
}

.lt-layer-mid-2 {
    width: 400px;
    height: 400px;
    top: 55%;
    right: -12%;
    z-index: 1;
}

.lt-layer-fore {
    width: 650px;
    height: 650px;
    top: 75%;
    left: -10%;
    z-index: 2;
}

.lt-layer-fore-2 {
    width: 500px;
    height: 500px;
    top: 85%;
    right: -8%;
    z-index: 2;
}

@media (max-width: 1024px) {
    .lt-restaurant-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lt-huerta-card {
        margin-top: 2.5rem;
    }
}

/* ==========================================================================
   SIMULATED BOOKING MODAL
   ========================================================================== */
.lt-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lt-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.lt-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 7, 8, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.lt-modal-container {
    position: relative;
    z-index: 10;
    background: rgba(28, 16, 18, 0.98);
    /* Burgundy dark velvet */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-lg);
    width: 90%;
    max-width: 580px;
    padding: 3rem 2.8rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: transform 0.4s var(--ease-out);
    text-align: center;
}

.lt-modal.open .lt-modal-container {
    transform: translateY(0);
}

.lt-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    line-height: 1;
    transition: color 0.28s;
}

.lt-modal-close:hover {
    color: var(--c-gold);
}

/* Breathing Spacing & Compact Cards Alojamiento on Desktop */
@media (min-width: 1025px) {
    #alojamiento {
        height: auto;
        min-height: 100vh;
        display: block; /* Flex removido para permitir scroll sticky nativo */
        padding: 8rem 0 7rem 0 !important; /* Premium top padding (8rem) and bottom padding (7rem) */
        overflow: visible;
    }
    #alojamiento .lt-container {
        display: block; /* Flex removido */
        height: auto;
    }
    #alojamiento .lt-section-head {
        margin-bottom: 1rem; /* Reduced interior vertical margin between head and grid */
    }
    #alojamiento .lt-h2 {
        margin-bottom: 0.5rem;
    }
    #alojamiento .lt-lead {
        margin-bottom: 0;
        max-width: 800px;
    }
    .lt-lodge-grid {
        gap: 1.5rem;
        margin-top: 1rem; /* Compact margin */
        margin-bottom: 2rem; /* Spacing below cards deck */
    }
    .lt-lodge-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .lt-lodge-img-wrap {
        height: 155px;
    }
    .lt-lodge-body {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }
    .lt-lodge-body h3 {
        font-size: 1.25rem;
        margin-top: 0;
        margin-bottom: 0.4rem;
    }
    .lt-lodge-body p {
        font-size: 0.82rem;
        line-height: 1.45;
        margin-bottom: 0.75rem;
    }
    .lt-amenities {
        margin-bottom: 1rem;
        gap: 0.25rem;
    }
    .lt-amenities li {
        font-size: 0.72rem;
    }
    .lt-lodge-body .lt-btn {
        margin-top: auto;
        padding: 0.65rem 1.15rem;
    }
}

/* Strictly occupy 100vh viewport height on desktops with vertically centered content for Bodega */
@media (min-width: 1025px) {
/* --- ALOJAMIENTO DARK BURGUNDY WINE --- */
#alojamiento {
    background: var(--c-burgundy) !important; /* Rich burgundy matches restaurant exactly */
    background-image: none !important; /* SVG paper noise completely removed as requested */
    position: relative;
    overflow: visible !important; /* Restored for position: sticky stays card */
    padding-top: 2rem !important; 
    padding-bottom: 8rem !important;
}

/* MANTENER EL DEGRADADO SUPERIOR CON EL RESTAURANTE, ELIMINAR EL INFERIOR QUE YA NO HACE FALTA */
#alojamiento::after {
    display: none !important;
}

#alojamiento .lt-h2,
#alojamiento .lt-lead {
    color: #F8F5F0 !important;
}

/* Forzar color dorado/crema en el título dinámico y descripción de la tarjeta izquierda para consistencia visual con el fondo oscuro glassmorphic */
#alojamiento .lt-dynamic-title {
    color: var(--c-gold) !important; /* Matches gold editorial branding */
}

#alojamiento .lt-dynamic-desc {
    color: rgba(250, 249, 246, 0.9) !important; /* High-contrast off-white description */
    font-size: 1rem !important;
    line-height: 1.65 !important;
    margin-bottom: 1rem !important;
    /* Removed opacity !important to allow GSAP crossfade conversion animation to work flawlessly! */
}

/* --- ALOJAMIENTO SPLIT INTRO EDITORIAL LAYOUT --- */
.lt-alojamiento-intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.lt-intro-split-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* NATIVE TYPOGRAPHIC BOOKING REVIEWS UI */
.lt-booking-reviews-wrap {
    margin-top: 2rem;
    padding: 1.5rem 1.75rem;
    background: rgba(250, 249, 246, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--r-md);
    width: 100%;
    max-width: 520px;
    text-align: left !important;
}

.lt-booking-score-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.lt-booking-logo {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.05em;
    background: #003580; /* Official Booking Blue */
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.lt-booking-score-badge {
    background: var(--c-gold);
    color: var(--c-wine);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
}

.lt-booking-score-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--c-gold);
}

.lt-booking-score-details {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(248, 245, 240, 0.5);
    font-weight: 300;
}

.lt-booking-testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lt-booking-quote {
    border-left: 1.5px solid rgba(197, 160, 89, 0.3);
    padding-left: 1rem;
}

.lt-booking-quote p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(248, 245, 240, 0.85);
    margin: 0 0 0.25rem 0 !important;
}

.lt-booking-author {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-gold);
    opacity: 0.8;
}

/* ==========================================================================
   PRECISION EDITORIAL MOSAIC (Strictly matching user blueprint)
   ========================================================================== */
.lt-mosaico-container, .lt-intro-split-right {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(15, 1fr);
    aspect-ratio: 12 / 15;
    gap: 0;
    position: relative;
    width: 100%;
    max-width: 520px;
}

.lt-mosaico-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: transform var(--t-mid), border-color var(--t-mid);
}

.lt-mosaico-item:hover {
    border-color: var(--c-gold);
    transform: translateY(-5px);
}

.lt-mosaico-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Green Box: Top-Left dominant position */
.lt-mosaico-main {
    grid-column: 1 / 9;
    grid-row: 1 / 8;
    z-index: 1;
}

/* Orange Box: Shifted to the Right and Down, overlapping Green */
.lt-mosaico-side-1 {
    grid-column: 6 / 13;
    grid-row: 4 / 11;
    z-index: 2;
}

/* Red Box: Brought back to the Left, aligned under Green, overlapping Orange */
.lt-mosaico-side-2 {
    grid-column: 2 / 10;
    grid-row: 9 / 16;
    z-index: 3;
}

.lt-mosaico-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(15, 12, 10, 0.75);
    backdrop-filter: blur(10px);
    color: var(--c-gold);
    border: 1px solid rgba(197, 160, 89, 0.25);
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 5;
    font-family: var(--font-sans);
}

/* SUBTLE TRANSITION BRIDGE */
.lt-lodging-bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.lt-bridge-line-left,
.lt-bridge-line-right {
    height: 1px;
    flex-grow: 1;
    opacity: 0.3;
}

.lt-bridge-line-left {
    background: linear-gradient(to right, transparent, var(--c-gold) 70%);
}

.lt-bridge-line-right {
    background: linear-gradient(to left, transparent, var(--c-gold) 70%);
}

.lt-bridge-label {
    font-family: var(--font-sans);
    font-size: 1.6rem !important; /* Increased to be even larger and more editorial */
    letter-spacing: 0.35em !important; /* Elegant wide tracking */
    color: var(--c-gold);
    font-weight: 700 !important; /* Bold presence */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6) !important;
    white-space: nowrap;
}

/* RESPONSIVE LAYOUT RESPONSIVE & MOBILE STACK OVERRIDES */
@media (max-width: 1024px) {
    .lt-alojamiento-intro-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .lt-intro-split-right {
        max-width: 480px !important;
        margin: 0 auto !important;
        height: 340px !important;
        grid-template-rows: repeat(15, 1fr) !important;
        grid-auto-rows: unset !important;
    }
    
    .lt-mosaico-item:hover {
        transform: none !important; /* Disable hover translation on mobile/tablet to avoid jittering */
    }
    
    .lt-lodging-bridge {
        margin-bottom: 3.5rem;
    }
}

/* Grid principal asimétrico - Ampliado para dar más protagonismo y tamaño a los vídeos */
.lt-alojamiento-grid {
    display: grid;
    grid-template-columns: 1fr 1.30fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 10;
}

/* Columna Izquierda (Sticky with exact same paper effect and border as menu) */
.lt-alojamiento-sticky {
    position: sticky;
    top: calc(50 * var(--vh, 1vh) - (var(--sticky-height) / 2)) !important; /* Center sticky vertically in viewport */
    align-self: start;
    background-color: rgba(250, 249, 246, 0.03) !important;
    background-image: none !important; /* Removed paper noise for consistent luxury glassmorphism */
    border: 1px solid rgba(197, 160, 89, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--r-lg);
    padding: clamp(1.25rem, 2.5 * var(--vh, 1vh), 2rem) clamp(1.5rem, 2.5 * var(--vw, 1vw), 2.25rem);
    overflow-x: hidden;
    overflow-y: auto; /* Fallback for very short viewports */
    scrollbar-width: none; /* Hide standard Firefox scrollbar */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), inset 0 0 40px rgba(0, 0, 0, 0.02) !important;
}

.lt-alojamiento-sticky::-webkit-scrollbar {
    display: none; /* Hide Chrome/Safari scrollbar */
}

/* Cabecera con línea vertical dorada */
.lt-alojamiento-left-content {
    position: relative;
    z-index: 2;
}

.lt-alojamiento-left-content h2.lt-h2 {
    border-left: 2px solid var(--c-gold);
    padding-left: 1.5rem;
    margin-left: -1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.2;
    color: var(--c-charcoal) !important; /* Dark charcoal title for readability on light background */
    font-weight: 500;
}

/* Video background de baja opacidad para la columna izquierda */
.lt-alojamiento-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.07;
    pointer-events: none;
    z-index: 1;
}

/* Lista de servicios exclusivos */
.lt-exclusive-services {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lt-exclusive-services li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 450;
    color: rgba(250, 249, 246, 0.85) !important; /* Elegant off-white text for dark glassmorphic container legibility */
    line-height: 1.4;
}

.lt-check-icon {
    color: var(--c-gold) !important; /* Champagne gold checkmark for luxury consistent layout */
    flex-shrink: 0;
    margin-top: 1px;
}

/* Bloque de cita poética */
.lt-quote {
    border-left: 2px solid var(--c-gold);
    padding-left: 1.5rem;
    margin-top: 1rem;
    position: relative;
}

.lt-quote p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(250, 249, 246, 0.95) !important;
    line-height: 1.6;
    margin: 0;
}

/* Columna Derecha (Pila de Tarjetas) */
.lt-alojamiento-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 120px !important; /* Perfect desktop buffer to align tops at the end of scroll */
}

/* Tarjeta de alojamiento premium (Paper effect match with restaurant menu) */
.lt-lodging-card {
    background-color: rgba(250, 249, 246, 0.03) !important;
    background-image: none !important; /* Removed paper noise for consistent luxury glassmorphism */
    border: 2.5px solid #C5A059 !important; /* Gordito dorado predeterminado */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), inset 0 0 40px rgba(0, 0, 0, 0.02) !important;
    border-radius: var(--r-lg);
    overflow: visible !important; /* Visible para permitir ver el gran halo detrás */
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--t-mid), border-color var(--t-mid);
    margin-bottom: clamp(10rem, 16vw, 16rem); /* Reduced spacing in half as requested for a tighter selector scroll */
    position: relative;
    z-index: 2;
}

.lt-lodging-card:last-child {
    margin-bottom: 0 !important;
}

.lt-lodging-card:hover {
    box-shadow: 0 35px 80px rgba(197, 160, 89, 0.15), inset 0 0 40px rgba(0, 0, 0, 0.02) !important;
}

/* Contenedor multimedia */
.lt-card-media {
    aspect-ratio: 4/3; /* Proporción cuadrática premium para mayor tamaño y zoom */
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #FAF9F6;
    flex-shrink: 0;
    border-top-left-radius: calc(var(--r-lg) - 2.5px);
    border-top-right-radius: calc(var(--r-lg) - 2.5px);
}

.lt-card-img,
.lt-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
    background-color: var(--c-sand);
}

.lt-lodging-card:hover .lt-card-img,
.lt-lodging-card:hover .lt-card-video {
    transform: scale(1.03);
}

/* Cuerpo de la tarjeta móvil/escritorio (Opaque paper texture styling) */
.lt-lodging-body-mobile {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: transparent !important; /* Let beautiful card paper texture show through */
    color: var(--c-charcoal) !important;
    align-items: center; /* Centered layout */
    text-align: center;
}

.lt-mobile-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--c-charcoal) !important;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
}

.lt-mobile-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(45, 42, 38, 0.8) !important;
    margin: 0 0 0.5rem 0;
    max-width: 500px;
}

.lt-mobile-amenities {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
    max-width: 420px;
    text-align: left;
}

.lt-mobile-amenities li {
    font-size: 0.9rem;
    color: rgba(45, 42, 38, 0.9) !important;
    position: relative;
    padding-left: 1.75rem;
    line-height: 1.4;
}

.lt-mobile-amenities li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--c-wine); /* Warm wine checklist check for high contrast on light card */
    font-weight: bold;
}

/* Botón elegante centrado, grande y predeterminado sólido */
.lt-lodging-body-mobile .lt-btn-secondary {
    font-size: 0.9rem !important;
    padding: 0.95rem 2.2rem !important;
    transition: background-color var(--t-mid), border-color var(--t-mid), color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
    align-self: center !important;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 320px; /* Grande y centrado */
    background-color: var(--c-wine) !important; /* Sólido predeterminado */
    color: #FFFFFF !important;
    border-color: var(--c-wine) !important;
    border-radius: var(--r-md);
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(91, 28, 40, 0.15) !important;
}

.lt-lodging-body-mobile .lt-btn-secondary:hover {
    background-color: var(--c-gold) !important;
    border-color: var(--c-gold) !important;
    color: #1A1513 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(197, 160, 89, 0.25) !important;
}

/* Reactividad del botón cuando se hace hover sobre la tarjeta entera */
.lt-lodging-card:hover .lt-lodging-body-mobile .lt-btn-secondary {
    background-color: var(--c-gold) !important;
    border-color: var(--c-gold) !important;
    color: #1A1513 !important;
}

}

/* Ajustes exclusivos para Escritorio */
@media (min-width: 1025px) {
    .lt-lodging-body-mobile {
        display: flex !important;
        padding: 2rem !important;
    }
    .lt-mobile-title,
    .lt-mobile-desc,
    .lt-mobile-amenities {
        display: none !important;
    }
    .lt-lodging-body-mobile .lt-btn-secondary {
        margin: 0 auto !important; /* Centrado en pantalla grande */
        max-width: 320px !important;
        width: 100% !important;
    }
}

/* Ocultar selector de alojamiento en escritorio por defecto */
.lt-lodging-tabs {
    display: none !important;
}

/* Adaptabilidad Responsiva & Stacking Móvil Corrección */
@media (max-width: 1024px) {
    .lt-alojamiento-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lt-alojamiento-sticky {
        display: none !important;
    }
    
    .lt-alojamiento-cards {
        gap: 0;
        padding-bottom: 0 !important;
        position: relative;
        z-index: 20; /* Elevate cards container above static bridge and mosaic */
    }
    
    /* Mobile/Tablet Lodging Tabs Selector */
    .lt-lodging-tabs {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin: 0 auto 2.5rem auto;
        padding: 0.35rem;
        background: rgba(28, 16, 18, 0.6);
        border: 1.5px solid rgba(197, 160, 89, 0.25);
        border-radius: 30px;
        max-width: 480px;
        width: 100%;
        box-sizing: border-box;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .lt-lodging-tab {
        flex: 1;
        background: transparent;
        border: none;
        color: rgba(248, 245, 240, 0.7);
        padding: 0.65rem 1rem;
        font-family: var(--font-sans);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        text-align: center;
        outline: none;
    }
    
    .lt-lodging-tab:hover {
        color: #F8F5F0;
    }
    
    .lt-lodging-tab.active {
        background: linear-gradient(135deg, #C5A059 0%, #E2C27F 100%) !important;
        color: #1C1012 !important;
        box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3) !important;
    }

    /* Desactivar por completo el sticky en móviles para evitar colapsos */
    .lt-lodging-card {
        display: none !important; /* Hidden by default for tab switcher */
        position: relative !important;
        top: auto !important;
        margin-bottom: 3.5rem !important;
        height: auto !important;
        background-color: #1C1012 !important;
        border: 1.5px solid #C5A059 !important;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6) !important;
        flex-direction: column;
    }

    .lt-lodging-card.active {
        display: flex !important; /* Show active card */
    }
    
    .lt-lodging-card:last-child {
        margin-bottom: 0 !important;
    }
    
    .lt-mobile-title {
        color: var(--c-gold) !important;
    }
    .lt-mobile-desc {
        color: rgba(250, 249, 246, 0.85) !important;
    }
    
    /* Ensure no bullets and absolute checkmark styling on mobile lodging list items */
    .lt-mobile-amenities {
        list-style: none !important;
        list-style-type: none !important;
        padding: 0 !important;
        margin: 0 auto 1rem auto !important;
        max-width: 420px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.65rem !important;
        text-align: left !important;
    }
    .lt-mobile-amenities li {
        list-style: none !important;
        list-style-type: none !important;
        color: rgba(250, 249, 246, 0.9) !important;
        position: relative !important;
        padding-left: 1.75rem !important;
        line-height: 1.4 !important;
        font-size: 0.9rem !important;
        text-align: left !important;
        margin: 0 !important;
    }
    .lt-mobile-amenities li::before {
        content: "✓" !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        color: var(--c-gold) !important; /* Gold check icon on dark card */
        font-weight: bold !important;
    }
    
    .lt-lodging-body-mobile .lt-btn-secondary {
        background-color: var(--c-gold) !important;
        border-color: var(--c-gold) !important;
        color: #1C1012 !important; /* Dark text for contrast */
        box-shadow: 0 8px 20px rgba(197, 160, 89, 0.2) !important;
    }
}

/* STABILIZE VERTICAL SIZE OF LEFT STICKY CARD TO PREVENT JUMPS */
@media (min-width: 1025px) {
    .lt-alojamiento-sticky {
        height: var(--sticky-height) !important; /* Dynamic locked height scale */
    }
}

/* PREMIUM HEARTBEAT CONVERSION ANIMATION */
@keyframes premium-heartbeat {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(91, 28, 40, 0.15) !important;
    }
    14% {
        transform: scale(1.03);
        box-shadow: 0 12px 28px rgba(91, 28, 40, 0.35) !important;
    }
    28% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(91, 28, 40, 0.15) !important;
    }
    42% {
        transform: scale(1.03);
        box-shadow: 0 12px 28px rgba(91, 28, 40, 0.35) !important;
    }
    70% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(91, 28, 40, 0.15) !important;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(91, 28, 40, 0.15) !important;
    }
}

.lt-btn-menu-reserve,
.lt-lodging-body-mobile .lt-btn-secondary {
    animation: premium-heartbeat 4s ease-in-out infinite !important;
}

/* BODEGA SECTION TOP GRADIENT VISUAL SEPARATOR */
#bodega {
    position: relative;
    overflow: hidden;
}

#bodega::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px; /* High-end separation transition */
    background: linear-gradient(to bottom, #1C1012 0%, rgba(28, 16, 18, 0) 100%) !important;
    pointer-events: none;
    z-index: 1;
}

/* ALIGN RESTAURANTE MENU CARD HEIGHT WITH LEFT EDITORIAL COLUMN */
@media (min-width: 1025px) {
    .lt-menu-board-solid {
        padding: 4.5rem 3.5rem 4rem 3.5rem !important; /* Elegant expanded vertical padding to match achievements grid bottom */
    }
    .lt-menu-board-solid > p {
        margin-bottom: 2.75rem !important; /* Increased spacing */
    }
    .lt-menu-board-solid > div[style*="padding-top"] {
        padding-top: 2.75rem !important;
        margin-bottom: 2.75rem !important;
    }
    .lt-menu-board-solid .lt-menu-action {
        margin-top: 3rem !important; /* Balanced conversion button placement */
    }
}

/* ==========================================================================
   PREMIUM PLATFORM REVIEWS (Hero Section)
   ========================================================================== */
.lt-hero-reviews {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin: 0 auto 2rem;
    padding: 0.6rem 1.75rem;
    background: rgba(15, 12, 10, 0.4) !important; /* Unified dark glassmorphism with 0.4 opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3) !important; /* Strong shadow for readability */
}

.lt-review-micro-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
    color: rgba(250, 249, 246, 0.95) !important; /* High contrast text */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.lt-platform-name {
    font-weight: 500;
    margin-left: 0.25rem;
    color: rgba(250, 249, 246, 0.9) !important;
}

.lt-platform-score {
    font-weight: 400;
    color: rgba(250, 249, 246, 0.7) !important;
}

.lt-platform-score strong {
    color: var(--c-gold);
    font-weight: 700;
}

.lt-review-micro-chip svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.lt-review-micro-chip span strong {
    color: var(--c-gold);
    font-weight: 700;
}

.lt-review-micro-chip:hover {
    color: var(--c-gold) !important;
    transform: translateY(-1px);
}

.lt-review-micro-chip:hover svg {
    transform: scale(1.15) rotate(5deg);
}

/* ==========================================================================
   ALOJAMIENTO MULTILAYER PARALLAX CANVAS
   ========================================================================== */
/* ==========================================================================
   ALOJAMIENTO MULTILAYER PARALLAX CANVAS & STACKED DYNAMIC TEXTS
   ========================================================================== */
.lt-alojamiento-parallax-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Spans the entire section height */
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, black 12%) !important;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%) !important;
}

.lt-alojamiento-parallax-layer {
    position: absolute;
    border-radius: 50% !important;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(197, 160, 89, 0.45) !important;
    opacity: 0.24 !important;
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* 10 Parallax Layer Positions: wide-margins, outer-aligned to cover the entire section */
.lt-layer-aloj-1 {
    width: 360px;
    height: 360px;
    top: 2%;
    left: -14%;
}

.lt-layer-aloj-2 {
    width: 440px;
    height: 440px;
    top: 12%;
    right: -12%;
}

.lt-layer-aloj-3 {
    width: 400px;
    height: 400px;
    top: 22%;
    left: -16%;
}

.lt-layer-aloj-4 {
    width: 550px;
    height: 550px;
    top: 35%;
    right: -14%;
    z-index: 2;
}

.lt-layer-aloj-5 {
    width: 600px;
    height: 600px;
    top: 48%;
    left: -18%;
    z-index: 2;
}

.lt-layer-aloj-6 {
    width: 460px;
    height: 460px;
    top: 60%;
    right: -15%;
    z-index: 2;
}

.lt-layer-aloj-7 {
    width: 500px;
    height: 500px;
    top: 72%;
    left: -16%;
    z-index: 2;
}

.lt-layer-aloj-8 {
    width: 580px;
    height: 580px;
    top: 84%;
    right: -17%;
    z-index: 2;
}

.lt-layer-aloj-9 {
    width: 640px;
    height: 640px;
    top: 94%;
    left: -19%;
    z-index: 2;
}

.lt-layer-aloj-10 {
    width: 700px;
    height: 700px;
    top: 102%;
    right: -20%;
    z-index: 2;
}

/* Stays Stacked Dynamic Text Blocks */
.lt-stay-text-block {
    opacity: 0;
    pointer-events: none;
    transition: none; /* scrubbed directly by GSAP */
}

.lt-stay-text-block.lt-stay-text-1 {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.lt-stay-text-block.lt-stay-text-2,
.lt-stay-text-block.lt-stay-text-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* Stays Video Card Golden Focus Halo */
.lt-card-halo {
    position: absolute;
    inset: -180px; /* Large focus halo extending behind the card */
    background: radial-gradient(circle, rgba(197, 160, 89, 0.32) 0%, rgba(197, 160, 89, 0.1) 40%, rgba(197, 160, 89, 0) 70%);
    z-index: -2; /* Placed completely behind the card structure */
    border-radius: calc(var(--r-lg) + 180px);
    pointer-events: none;
    opacity: 0; /* Animated dynamically by GSAP */
    will-change: opacity;
}

/* STABILIZE TRANSFORM TRANSITIONS ON DESKTOP SCRUB */
@media (min-width: 1025px) {
    .lt-lodging-card {
        transform-origin: center center !important;
        will-change: transform, opacity !important;
        /* Disable CSS transform transition on desktop to prevent lag during GSAP scrubbing */
        transition: box-shadow var(--t-mid), border-color var(--t-mid) !important;
    }
    
    .lt-lodging-card:hover {
        /* Completely static stays card on hover to support interactive back halo */
        transform: none !important;
    }
}

/* EXPAND RESTAURANTE RESERVE CTA VERTICAL SIZE */
.lt-btn-menu-reserve {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
    font-size: 0.82rem !important; /* Balanced slightly larger text */
}

/* ==========================================================================
   RESPONSIVE HERO SECTION & HEADER OVERRIDES (MOBILE & TABLET)
   ========================================================================== */

/* TABLET VIEWPORT OVERRIDES (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .lt-hero-title {
        font-size: clamp(2.8rem, 7vw, 4.2rem) !important;
        margin-bottom: 1.25rem !important;
    }
    .lt-hero-sub {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 2rem;
    }
    .lt-hero-badges {
        margin-bottom: 1.25rem !important;
        gap: 1rem !important;
    }
    .lt-hero-reviews {
        margin-bottom: 1.75rem !important;
        gap: 1rem !important;
    }

    /* Restaurant Section Tablet Overrides */
    #restaurante {
        padding: 5rem 0 !important;
    }
    .lt-restaurant-grid {
        gap: 3.5rem !important;
    }
    .lt-restaurant-reviews-card {
        padding: 2rem !important;
    }
    .lt-huerta-fullwidth-banner {
        padding: 3rem 2rem !important;
        height: auto !important;
        min-height: 350px !important;
    }
}

/* MOBILE VIEWPORT OVERRIDES (< 768px) */
@media (max-width: 767px) {
    /* Sticky Header Sleekness on Mobile */
    .lt-header-inner {
        padding: 0.75rem var(--gutter) !important; /* Slimmer header */
    }
    .lt-brand-logo {
        height: 34px !important; /* Smaller logo for mobile screen height */
        width: auto !important;
    }
    
    /* Hero Layout and Spacing */
    .lt-hero {
        height: 100vh !important;
        min-height: 560px !important; /* Snug fit for smaller devices */
    }
    .lt-hero-content {
        padding: 0 1.25rem !important;
        margin-top: 2rem !important; /* Offset for slim header */
    }
    
    /* Stronger background contrast on mobile viewports */
    .lt-hero-overlay {
        background: linear-gradient(to bottom,
                rgba(28, 16, 18, 0.55) 0%,
                rgba(28, 16, 18, 0.35) 60%,
                rgba(28, 16, 18, 0.9) 90%,
                #1C1012 100%) !important;
    }

    .lt-hero-eyebrow {
        font-size: 0.72rem !important;
        letter-spacing: 0.25em !important;
        margin-bottom: 0.75rem !important;
    }
    .lt-hero-title {
        font-size: clamp(2.0rem, 8.5vw, 2.8rem) !important; /* Fluid, no word clipping */
        margin-bottom: 0.85rem !important;
        line-height: 1.15 !important;
    }
    .lt-hero-sub {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.25rem !important;
        color: rgba(255, 255, 255, 0.85) !important;
    }
    
    /* Badges Layout */
    .lt-hero-badges {
        margin-bottom: 1.25rem !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        gap: 1rem !important;
    }
    .lt-badge-chip {
        width: 72px !important;
        height: 72px !important;
        margin: 0 !important;
        background: #ffffff !important;
    }
    .lt-hero-badges .lt-chip-img {
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Reviews Pill Layout & Text Optimization */
    .lt-hero-reviews {
        margin-bottom: 1.5rem !important;
        padding: 0.5rem 1.25rem !important;
        gap: 0.85rem !important;
        border-radius: 30px !important;
        max-width: 100% !important;
    }
    .lt-review-micro-chip {
        font-size: 0.75rem !important;
        gap: 0.35rem !important;
        padding: 0.2rem 0.4rem !important;
    }
    .lt-platform-name {
        display: none !important; /* Hide long names (e.g. Booking.com) on mobile to fit row */
    }
    
    /* Call-To-Action (CTA) Touch Targets (48x48px min area) */
    .lt-hero-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        margin-top: 1rem !important;
    }
    .lt-btn-hero-wine,
    .lt-btn-hero-outline {
        width: 100% !important;
        min-width: unset !important;
        padding: 0.95rem 1.5rem !important; /* Clean touch target area (48px height) */
        font-size: 0.75rem !important;
    }
    
    /* Hide scroll indicator to prevent overlaps with CTAs */
    .lt-hero-scroll {
        display: none !important;
    }

    /* --- RESTAURANTE MOBILE OVERRIDES (< 768px) --- */
    #restaurante {
        padding: 2rem 0 4rem 0 !important; /* Reduced top padding to avoid massive top spacing */
    }
    .lt-restaurant-grid {
        gap: 1.5rem !important;
    }
    .lt-restaurant-editorial .lt-lead {
        font-size: 1rem !important;
        line-height: 1.65 !important;
        margin-bottom: 1.5rem !important;
    }
    .lt-feather-svg {
        width: 180px !important;
        margin: 0.25rem 0 0.5rem 0 !important;
    }
    
    /* Put achievements in 2x2 grid and hide descriptions to save vertical space */
    .lt-achievements-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem 1rem !important;
    }
    .lt-achievement-card {
        gap: 0.6rem !important;
    }
    .lt-achievement-desc {
        display: none !important;
    }
    .lt-achievement-title {
        font-size: 0.85rem !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
    }
    
    /* Menu Board and Booking CTA */
    .lt-menu-board-solid {
        padding: 1.5rem !important;
    }
    .lt-menu-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        margin-bottom: 1.25rem !important;
    }
    .lt-menu-price {
        text-align: left !important;
    }
    .lt-menu-price span {
        text-align: left !important;
    }
    .lt-menu-board-solid .lt-menu-action {
        margin-top: 1.5rem !important;
    }
    .lt-btn-menu-reserve {
        width: 100% !important;
        justify-content: center !important;
        padding-top: 0.95rem !important; /* 48px min height target */
        padding-bottom: 0.95rem !important;
        font-size: 0.76rem !important;
    }
    
    /* Reviews Card on Mobile */
    .lt-restaurant-reviews-card {
        padding: 1.5rem !important;
        margin-top: 2rem !important;
        margin-bottom: 1.5rem !important;
    }
    .lt-rest-reviews-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        padding-bottom: 0.85rem !important;
        margin-bottom: 1.25rem !important;
    }
    .lt-rest-reviews-title {
        font-size: 1.5rem !important;
    }
    .lt-rest-reviews-badges {
        width: 100% !important;
        flex-wrap: wrap !important;
        gap: 0.6rem !important;
    }
    .lt-badge-repsol,
    .lt-badge-michelin {
        padding: 0.35rem 0.65rem !important;
        font-size: 0.68rem !important;
    }
    
    /* Reviews Horizontal Swipeable Carousel via CSS Scroll Snap */
    .lt-rest-reviews-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.25rem !important;
        padding: 0.5rem 0.25rem 1.5rem 0.25rem !important;
        scrollbar-width: none !important; /* Firefox */
        -ms-overflow-style: none !important;  /* IE/Edge */
    }
    .lt-rest-reviews-grid::-webkit-scrollbar {
        display: none !important; /* Chrome/Safari */
    }
    .lt-rest-review-item {
        flex: 0 0 85% !important;
        scroll-snap-align: center !important;
        padding: 1.25rem !important;
        box-sizing: border-box !important;
    }
    .lt-review-text {
        font-size: 0.82rem !important;
        line-height: 1.55 !important;
    }
    
    /* Huerta Banner */
    .lt-huerta-fullwidth-banner {
        height: auto !important;
        min-height: 320px !important;
        padding: 2.25rem 1.25rem !important;
        margin-top: 2rem !important;
        margin-bottom: 1rem !important;
    }
    .lt-huerta-banner-title {
        font-size: 1.7rem !important;
    }
    .lt-huerta-banner-desc {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.25rem !important;
    }
    .lt-rest-provenance {
        align-items: flex-start !important;
    }
    
    /* Restore and display all 6 parallax background layers in a performance-friendly, subtle way */
    .lt-layer-deep,
    .lt-layer-deep-2,
    .lt-layer-mid,
    .lt-layer-mid-2,
    .lt-layer-fore,
    .lt-layer-fore-2 {
        display: block !important;
        opacity: 0.16 !important;
    }
    .lt-layer-deep {
        width: 200px !important;
        height: 200px !important;
        left: -15% !important;
        top: 5% !important;
    }
    .lt-layer-deep-2 {
        width: 160px !important;
        height: 160px !important;
        right: -10% !important;
        top: 20% !important;
    }
    .lt-layer-mid {
        width: 220px !important;
        height: 220px !important;
        left: -20% !important;
        top: 40% !important;
    }
    .lt-layer-mid-2 {
        width: 180px !important;
        height: 180px !important;
        right: -15% !important;
        top: 55% !important;
    }
    .lt-layer-fore {
        width: 240px !important;
        height: 240px !important;
        left: -12% !important;
        top: 70% !important;
    }
    .lt-layer-fore-2 {
        width: 200px !important;
        height: 200px !important;
        right: -8% !important;
        top: 85% !important;
    }
    
    /* --- ALOJAMIENTO MOBILE OVERRIDES (< 768px) --- */
    #alojamiento {
        padding: 4rem 0 !important;
    }
    #alojamiento .lt-container {
        padding: 0 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .lt-intro-split-left {
        align-items: center !important;
        text-align: center !important;
    }
    #alojamiento .lt-intro-split-left .lt-h2 {
        font-size: clamp(2.8rem, 10vw, 4rem) !important;
        text-align: center !important;
        line-height: 1.1 !important;
    }
    #alojamiento .lt-diamonds-divider {
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    #alojamiento .lt-intro-subtitle {
        text-align: center !important;
    }
    #alojamiento .lt-lead {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .lt-mosaico-wrapper {
        overflow-x: hidden !important;
        border-radius: 16px !important;
        width: 100% !important;
    }
    /* Lodging Mosaic Mobile (1-Top-2-Bottom grid layout, 100% responsive, no overlaps) */
    .lt-intro-split-right.lt-mosaico-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 0.75rem !important;
        height: auto !important;
        aspect-ratio: unset !important;
        max-width: 100% !important;
        margin: 0 auto 2.5rem auto !important;
    }
    .lt-mosaico-item {
        width: 100% !important;
        height: auto !important;
        grid-column: unset !important;
        grid-row: unset !important;
        aspect-ratio: 4/3 !important;
        border-radius: 12px !important;
        position: relative !important;
    }
    .lt-mosaico-main {
        grid-column: 1 / 3 !important;
        grid-row: 1 !important;
        aspect-ratio: 16/9 !important;
    }
    .lt-mosaico-side-1 {
        grid-column: 1 / 2 !important;
        grid-row: 2 !important;
    }
    .lt-mosaico-side-2 {
        grid-column: 2 / 3 !important;
        grid-row: 2 !important;
    }
    .lt-mosaico-item img {
        border-radius: 12px !important;
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }
    .lt-mosaico-tag {
        position: absolute !important;
        bottom: 0.75rem !important;
        left: 0.75rem !important;
        z-index: 10 !important;
        margin: 0 !important;
    }

    /* Bodega Mosaic Mobile (1-Top-2-Bottom grid layout, 100% responsive, no overlaps) */
    .lt-cellar-mosaic {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 0.75rem !important;
        height: auto !important;
        aspect-ratio: unset !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    .lt-cellar-mosaic-item {
        width: 100% !important;
        height: auto !important;
        grid-column: unset !important;
        grid-row: unset !important;
        aspect-ratio: 4/3 !important;
        border-radius: 12px !important;
        position: relative !important;
    }
    .lt-cellar-mosaic-item.main-img {
        grid-column: 1 / 3 !important;
        grid-row: 1 !important;
        aspect-ratio: 16/9 !important;
    }
    .lt-cellar-mosaic-item.top-img {
        grid-column: 1 / 2 !important;
        grid-row: 2 !important;
    }
    .lt-cellar-mosaic-item.bottom-img {
        grid-column: 2 / 3 !important;
        grid-row: 2 !important;
    }
    .lt-cellar-mosaic-item img {
        border-radius: 12px !important;
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }

    /* Booking Reviews Wrap Mobile – match desktop styling */
    .lt-booking-reviews-wrap {
        padding: 1.5rem 1.75rem !important;
        margin-top: 1.5rem !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        background: rgba(250, 249, 246, 0.03) !important;
        border: 1px solid rgba(197, 160, 89, 0.15) !important;
        border-radius: var(--r-md) !important;
        text-align: left !important;
    }
    .lt-booking-score-row {
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    .lt-booking-logo {
        font-family: var(--font-sans) !important;
        font-weight: 700 !important;
        font-size: 0.95rem !important;
        color: #fff !important;
        letter-spacing: 0.05em !important;
        background: #003580 !important;
        padding: 0.25rem 0.6rem !important;
        border-radius: 4px !important;
        display: inline-block !important;
    }
    .lt-booking-score-badge {
        background: var(--c-gold) !important;
        color: var(--c-wine) !important;
        font-weight: 700 !important;
        font-size: 1.15rem !important;
        padding: 0.2rem 0.5rem !important;
        border-radius: 4px !important;
    }
    .lt-booking-score-text {
        font-family: var(--font-serif) !important;
        font-size: 1.1rem !important;
        color: var(--c-gold) !important;
    }
    .lt-booking-score-details {
        font-family: var(--font-sans) !important;
        font-size: 0.8rem !important;
        color: rgba(248, 245, 240, 0.5) !important;
    }
    .lt-booking-quote {
        border-left: 1.5px solid rgba(197, 160, 89, 0.3) !important;
        padding-left: 1rem !important;
    }
    .lt-booking-quote p {
        font-family: var(--font-serif) !important;
        font-style: italic !important;
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
        color: rgba(248, 245, 240, 0.85) !important;
    }
    .lt-booking-author {
        font-family: var(--font-sans) !important;
        font-size: 0.75rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        color: var(--c-gold) !important;
        opacity: 0.8 !important;
    }
    .lt-card-media {
        aspect-ratio: 16/9 !important;
    }
    .lt-lodging-card {
        display: none !important; /* Managed by tabs */
        position: relative !important;
        top: auto !important;
        margin-bottom: 2rem !important;
        background: linear-gradient(145deg, #1C1012, #0D0708) !important;
        border: 2px solid #C5A059 !important;
        border-radius: 20px !important;
        padding: 0 !important;
        box-shadow: 0 20px 35px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05) !important;
        flex-direction: column !important;
        height: auto !important;
    }
    .lt-lodging-card.active {
        display: flex !important;
    }
    .lt-lodging-body-mobile {
        padding: 1.8rem !important;
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .lt-mobile-title {
        color: var(--c-gold) !important;
        font-size: 1.6rem !important;
        margin-bottom: 0.5rem !important;
        text-align: left !important;
    }
    .lt-mobile-desc {
        color: rgba(250,249,246,0.85) !important;
        line-height: 1.5 !important;
        text-align: left !important;
        margin: 0 !important;
    }
    .lt-mobile-amenities {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    .lt-mobile-amenities li {
        font-size: 0.85rem !important;
        padding-left: 1.5rem !important;
        margin-bottom: 0.4rem !important;
        text-align: left !important;
        color: rgba(250, 249, 246, 0.9) !important;
        position: relative !important;
        line-height: 1.4 !important;
    }
    .lt-mobile-amenities li::before {
        content: "✓" !important;
        color: var(--c-gold) !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        font-weight: bold !important;
    }
    .lt-lodging-body-mobile .lt-btn-secondary {
        background-color: var(--c-gold) !important;
        border-color: var(--c-gold) !important;
        color: #1C1012 !important;
        width: 100% !important;
        justify-content: center !important;
        padding: 0.9rem !important;
        box-shadow: none !important;
        display: inline-flex !important;
        align-items: center !important;
        animation: none !important;
    }
    .lt-bridge-label {
        font-size: 1rem !important;
        letter-spacing: 0.2em !important;
        background: rgba(28, 16, 18, 0.7) !important;
        padding: 0.4rem 1rem !important;
        border-radius: 40px !important;
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
    }
    .lt-bridge-line-left,
    .lt-bridge-line-right {
        height: 1px !important;
        opacity: 0.4 !important;
    }
    .lt-alojamiento-sticky {
        display: none !important;
    }
    
    /* Restore and display all 10 lodging parallax background layers in a larger, premium yet performance-friendly size */
    .lt-alojamiento-parallax-layer {
        display: block !important;
        opacity: 0.16 !important;
    }
    .lt-layer-aloj-1 { width: 220px !important; height: 220px !important; left: -14% !important; top: 2% !important; }
    .lt-layer-aloj-2 { width: 180px !important; height: 180px !important; right: -10% !important; top: 12% !important; }
    .lt-layer-aloj-3 { width: 200px !important; height: 200px !important; left: -16% !important; top: 22% !important; }
    .lt-layer-aloj-4 { width: 240px !important; height: 240px !important; right: -12% !important; top: 32% !important; }
    .lt-layer-aloj-5 { width: 220px !important; height: 220px !important; left: -10% !important; top: 42% !important; }
    .lt-layer-aloj-6 { width: 250px !important; height: 250px !important; right: -14% !important; top: 52% !important; }
    .lt-layer-aloj-7 { width: 230px !important; height: 230px !important; left: -12% !important; top: 62% !important; }
    .lt-layer-aloj-8 { width: 200px !important; height: 200px !important; right: -10% !important; top: 72% !important; }
    .lt-layer-aloj-9 { width: 210px !important; height: 210px !important; left: -15% !important; top: 82% !important; }
    .lt-layer-aloj-10 { width: 250px !important; height: 250px !important; right: -12% !important; top: 92% !important; }
}

/* ==========================================================================
   SCROLLABLE MENU GRID & PREMIUM TIMELINE MODALS
   ========================================================================== */
.lt-menu-section-grid {
    transition: max-height 0.45s ease-in-out;
}
.lt-menu-section-grid::-webkit-scrollbar {
    width: 6px;
}
.lt-menu-section-grid::-webkit-scrollbar-track {
    background: rgba(91, 28, 40, 0.01);
    border-radius: 3px;
}
.lt-menu-section-grid::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.25);
    border-radius: 3px;
}
.lt-menu-section-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(197, 160, 89, 0.4);
}

.lt-achievement-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

.lt-achievement-desc {
    margin-bottom: auto !important;
    min-height: 3.5rem !important;
}

@keyframes ltColorPulse {
    0% { color: #C5A059 !important; }
    50% { color: #E8C88A !important; }
    100% { color: #C5A059 !important; }
}

.lt-achievement-more-btn {
    background: none !important;
    border: none !important;
    color: var(--c-gold) !important;
    font-family: var(--font-sans) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-decoration: underline !important;
    margin-top: 0.75rem !important;
    transition: color 0.3s ease, transform 0.25s ease !important;
    padding: 0 !important;
    animation: ltColorPulse 3s infinite ease-in-out;
}
.lt-achievement-more-btn:hover {
    color: #FAF9F6 !important;
    animation: none !important;
    transform: scale(1.05) !important;
}

/* Modal styles */
.lt-luxe-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lt-luxe-modal.active {
    display: flex;
}
.lt-luxe-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 7, 8, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.lt-luxe-modal.active .lt-luxe-modal-backdrop {
    opacity: 1;
}
.lt-luxe-modal-content {
    position: relative;
    background: #FAF9F6;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: var(--r-lg);
    border: 1.5px solid #C5A059;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    padding: 3rem;
    z-index: 10;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lt-luxe-modal.active .lt-luxe-modal-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.lt-luxe-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--c-muted);
    cursor: pointer;
    line-height: 1;
    transition: color var(--t-fast), transform var(--t-fast);
}
.lt-luxe-modal-close:hover {
    color: var(--c-wine);
    transform: rotate(90deg);
}

/* Timeline styles inside modal */
.lt-timeline {
    position: relative;
    padding-left: 3.5rem;
    margin-top: 1.5rem;
}
.lt-timeline-line {
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: 1.7rem;
    width: 2px;
    background: rgba(197, 160, 89, 0.35);
}
.lt-timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    min-height: 40px;
}
.lt-timeline-item:last-child {
    margin-bottom: 0;
}
.lt-timeline-badge-img {
    position: absolute;
    left: 0.5rem;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #C5A059;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}
.lt-timeline-badge-img img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}
.lt-timeline-panel {
    margin-left: 1.25rem;
    background: rgba(91, 28, 40, 0.02);
    border: 1px solid rgba(91, 28, 40, 0.05);
    padding: 1.25rem 1.5rem;
    border-radius: var(--r-md);
}
.lt-timeline-panel h4 {
    margin: 0 0 0.35rem 0;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--c-charcoal);
    font-weight: 500;
}
.lt-timeline-panel p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.6;
}

/* Scrollbar style inside modal content */
.lt-luxe-modal-content::-webkit-scrollbar {
    width: 6px;
}
.lt-luxe-modal-content::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.02);
}
.lt-luxe-modal-content::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.3);
    border-radius: 3px;
}

/* Language switcher dropdown (Premium Quiet Luxury UI) */
.lt-lang-switcher {
    position: relative;
    margin-right: 0.75rem;
    display: inline-block;
}

.lt-lang-trigger {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border-radius: var(--r-sm);
    transition: color var(--t-fast), background var(--t-fast);
}

.lt-lang-trigger:hover,
.lt-lang-switcher:hover .lt-lang-trigger,
.lt-lang-switcher.is-open .lt-lang-trigger {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.lt-header.lt-scrolled .lt-lang-trigger {
    color: rgba(255, 255, 255, 0.75);
}

.lt-header.lt-scrolled .lt-lang-trigger:hover,
.lt-header.lt-scrolled .lt-lang-switcher:hover .lt-lang-trigger,
.lt-header.lt-scrolled .lt-lang-switcher.is-open .lt-lang-trigger {
    color: var(--c-gold);
    background: rgba(255, 255, 255, 0.09);
}

.lt-lang-chevron {
    transition: transform 0.3s var(--ease-out);
    opacity: 0.8;
}

.lt-lang-switcher:hover .lt-lang-chevron,
.lt-lang-switcher.is-open .lt-lang-chevron {
    transform: rotate(180deg);
}

.lt-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.55rem;
    background: rgba(28, 16, 18, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-lg);
    padding: 0.45rem 0;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0.28s var(--ease-out);
    z-index: 1001;
}

.lt-lang-switcher:hover .lt-lang-dropdown,
.lt-lang-switcher.is-open .lt-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lt-lang-opt {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.72rem;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.lt-lang-opt:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.lt-lang-opt.is-active {
    color: var(--c-gold);
    font-weight: 600;
    background: rgba(197, 160, 89, 0.08);
}

.lt-lang-opt-code {
    font-weight: 700;
    opacity: 0.55;
    font-size: 0.65rem;
    width: 18px;
    display: inline-block;
}

.lt-lang-opt-name {
    font-weight: 500;
    flex-grow: 1;
}

.lt-lang-check {
    color: var(--c-gold);
    margin-left: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .lt-lang-switcher {
        margin-right: 0.35rem;
    }
    .lt-lang-dropdown {
        right: 0;
        margin-top: 0.4rem;
        min-width: 150px;
    }
    .lt-lang-trigger {
        padding: 0.4rem 0.65rem;
    }
}

/* ==========================================================================
   CookieYes Custom Styling (Gold #C5A059 Overrides)
   ========================================================================== */
/* Accept and Save buttons */
#cky-consent-container .cky-btn-accept,
#cky-consent-container .cky-btn-save,
.cky-consent-container .cky-btn-accept,
.cky-consent-container .cky-btn-save,
.cky-preference-center .cky-btn-accept,
.cky-preference-center .cky-btn-save,
.cky-modal .cky-btn-accept,
.cky-modal .cky-btn-save,
[data-cky-tag="accept-button"],
[data-cky-tag="detail-save-button"],
[data-cky-tag="detail-category-preview-save-button"],
[data-cky-tag="optout-confirm-button"] {
    background-color: #C5A059 !important;
    border-color: #C5A059 !important;
    color: #ffffff !important;
}

/* Customize and Reject buttons */
#cky-consent-container .cky-btn-customize,
#cky-consent-container .cky-btn-reject,
.cky-consent-container .cky-btn-customize,
.cky-consent-container .cky-btn-reject,
.cky-preference-center .cky-btn-customize,
.cky-preference-center .cky-btn-reject,
.cky-modal .cky-btn-customize,
.cky-modal .cky-btn-reject,
[data-cky-tag="settings-button"],
[data-cky-tag="reject-button"] {
    color: #C5A059 !important;
    border-color: #C5A059 !important;
    background-color: transparent !important;
}

/* Revisit button */
#cky-consent-container .cky-revisit-consent,
.cky-revisit-consent,
[data-cky-tag="revisit-consent"] {
    background-color: #C5A059 !important;
    color: #ffffff !important;
}

#cky-consent-container .cky-revisit-consent .cky-revisit-title,
.cky-revisit-consent .cky-revisit-title {
    color: #ffffff !important;
}

/* Always Active text */
#cky-consent-container .cky-always-active,
.cky-preference-center .cky-always-active,
.cky-always-active {
    color: #C5A059 !important;
}

/* Toggles & Switched Slider */
#cky-consent-container .cky-switch input[type="checkbox"]:checked + .cky-switch-slider,
.cky-preference-center .cky-switch input[type="checkbox"]:checked + .cky-switch-slider {
    background-color: #C5A059 !important;
}

#cky-consent-container .cky-switch input[type="checkbox"]:focus + .cky-switch-slider,
.cky-preference-center .cky-switch input[type="checkbox"]:focus + .cky-switch-slider {
    box-shadow: 0 0 1px #C5A059 !important;
}
