/* Variables - Paleta Cálida Elegante */
:root {
    --color-bg-base: #FAF0E6;         
    --color-text-main: #4B3F3A;       
    --color-text-muted: #857368;      
    --color-accent-primary: #D27D46;  
    --color-accent-secondary: #6B8E23;
    --color-white: #ffffff;
    --color-glass: rgba(250, 240, 230, 0.85);

    /* Pareo Tipográfico */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-color: var(--color-bg-base);
}

/* Preloader (Curtain Effect) */
.preloader {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    pointer-events: none; overflow: hidden;
}
.preloader__left, .preloader__right {
    position: absolute; top: 0; width: 50%; height: 100%;
    background-color: var(--color-text-main);
    transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.preloader__left { left: 0; }
.preloader__right { right: 0; }
.preloader__content {
    z-index: 10000; color: var(--color-bg-base);
    font-family: var(--font-heading); font-size: 3.5rem; font-style: italic;
    opacity: 1; transition: opacity 0.5s ease;
    animation: preloaderPulse 1s alternate infinite ease-in-out;
}
@keyframes preloaderPulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.05); opacity: 1; }
}

.loaded .preloader__left { transform: translateX(-100%); }
.loaded .preloader__right { transform: translateX(100%); }
.loaded .preloader__content { opacity: 0; animation: none; }

/* Fluid Gradient Background & Parallax Inverso */
body::before {
    content: "";
    position: fixed;
    top: -20%; left: -20%;
    width: 140%; height: 140%;
    z-index: -2;
    pointer-events: none;
    
    background: 
        radial-gradient(circle at 10% 20%, rgba(210, 125, 70, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(107, 142, 35, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(75, 63, 58, 0.05) 0%, transparent 60%);
    background-color: var(--color-bg-base);
    
    animation: fluidMove 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Parallax Inverso */
    transform: translate(calc(var(--mx, 0px) * -1), calc(var(--my, 0px) * -1));
    transition: transform 0.15s ease-out;
}

/* Granulado (Noise) sutil */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.15; 
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E");
}

@keyframes fluidMove {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.05) translate(2%, 2%); }
    100% { transform: scale(1.02) translate(-2%, 1%); }
}

/* Typography Overrides */
h1, h2, h3, .section__title, .hero__title, .header__logo { font-family: var(--font-heading); }

/* Header & Scrolling logic */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    /* Gradient sólido inicial (Terracota a nulo) */
    background: linear-gradient(to bottom, rgba(210, 125, 70, 0.95) 0%, rgba(210, 125, 70, 0.6) 50%, rgba(210, 125, 70, 0) 100%);
    border: none;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding-bottom: var(--spacing-xl); /* Dar espacio extra a la sombra de degradado */
}
.header--hidden {
    transform: translateY(-100%);
}
.header__container {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: 1200px; margin: 0 auto;
}
.header__logo { text-decoration: none; color: var(--color-bg-base); font-weight: 800; font-size: 1.7rem; letter-spacing: -0.5px; display: flex; align-items: center; gap: var(--spacing-xs); font-style: italic;}
.nav { display: flex; gap: var(--spacing-sm); align-items: center; }
.nav__link { text-decoration: none; color: var(--color-bg-base); font-weight: 600; font-size: 0.95rem; transition: color 0.3s ease, text-shadow 0.3s ease; padding: 8px 12px; }
.nav__link:hover { color: var(--color-white); text-shadow: 0 0 10px rgba(255, 255, 255, 0.6); }

/* Dynamic Status Indicator (Far Right) */
.nav__status {
    background: rgba(255, 255, 255, 0.95);
    color: #2D2522;
    padding: 6px 16px 6px 12px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: inset 0 2px 4px rgba(255,255,255,1), 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    
    /* Efecto Levitación Premium */
    animation: statusLevitate 4s ease-in-out infinite;
    position: relative;
    overflow: hidden; /* Contenedor de partículas */
}
@keyframes statusLevitate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Capa base para partículas rotativas tecnológicas simuladas */
.nav__status::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(210, 125, 70, 0.25) 0%, transparent 60%),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.8) 0%, transparent 40%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.status-interactive:hover .nav__status {
    background: #ffffff;
    /* Glow Cálido */
    box-shadow: inset 0 2px 4px rgba(255,255,255,1), 0 12px 30px rgba(210, 125, 70, 0.35);
    transform: translateY(-6px) scale(1.03);
    animation-play-state: paused;
}
.status-interactive:hover .nav__status::before {
    opacity: 1;
    transform: scale(1);
    animation: particlesPlasma 3s linear infinite;
}
@keyframes particlesPlasma {
    0% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 1; }
    100% { transform: scale(1) rotate(360deg); opacity: 0.6; }
}

/* Proteccion de Index interno contra particulas background */
.nav__status > * {
    position: relative;
    z-index: 1;
}

.nav__status-led {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav__status-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 2px;
}
.status-countdown {
    font-size: 0.70rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: none;
    margin-top: -3px; line-height: 1;
}
.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
}
.status-dot--open { 
    background-color: #10B981; 
    box-shadow: 0 0 12px #10B981, 0 0 24px rgba(16, 185, 129, 0.8);
}
.status-dot--open::before, .status-dot--open::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #10B981;
    animation: rippleGreen 2s cubic-bezier(0.1, 0.7, 0.1, 1) infinite;
    opacity: 0;
}
.status-dot--open::after {
    animation-delay: 1s;
}
.status-dot--closed { 
    background-color: #EF4444; 
    box-shadow: 0 0 10px #EF4444; 
}
@keyframes rippleGreen {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Custom Tooltip for Status */
.status-interactive {
    position: relative;
    cursor: pointer;
    display: inline-flex;
}

.status-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #2D2522;
    color: var(--color-white);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    pointer-events: none;
    z-index: 100;
}

.status-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #2D2522 transparent transparent transparent;
}

.status-interactive:hover .status-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tooltip-title {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-accent-primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.hero__status {
    margin-top: var(--spacing-lg);
    display: inline-flex;
}

/* Premium Menu & Order Button */
.nav__btn-order {
    position: relative;
    color: var(--color-white);
    padding: 8px 24px 8px 16px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(154, 38, 38, 0.2);
    /* Fondo principal Deep Red */
    background: #9A2626;
}
.nav__btn-order-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0,0,0,0.1);
    z-index: -2;
    border-radius: 40px;
}
.nav__btn-order::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #b12c2c 0%, #9A2626 100%);
    z-index: -1;
    border-radius: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav__btn-order:hover {
    box-shadow: 0 8px 25px rgba(154, 38, 38, 0.4);
}
.nav__btn-order:hover::before {
    opacity: 1;
}

.nav__btn-order-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    padding: 6px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}
.nav__btn-order:hover .nav__btn-order-icon {
    transform: rotate(5deg) scale(1.05);
    background: rgba(255,255,255,0.25);
}

.steam-line {
    transition: all 0.3s ease;
    transform-origin: bottom;
}
.nav__btn-order:hover .sl-1 { animation: steamRiseBtn 1.2s infinite alternate ease-in-out; }
.nav__btn-order:hover .sl-2 { animation: steamRiseBtn 1.2s infinite alternate ease-in-out 0.4s; }
.nav__btn-order:hover .sl-3 { animation: steamRiseBtn 1.2s infinite alternate ease-in-out 0.8s; }

@keyframes steamRiseBtn {
    0% { transform: translateY(0) scaleY(1); opacity: 0.5; }
    100% { transform: translateY(-3px) scaleY(1.4); opacity: 1; }
}

.nav__btn-order-text {
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Shimmer Overlay */
.nav__btn-order-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    z-index: 2;
    pointer-events: none;
    animation: shineFlow 5s infinite 2s;
}
@keyframes shineFlow {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Esconder links en mobile para priorizar botones */
@media (max-width: 900px) {
    .nav__link { display: none; }
    .header__container { gap: 8px; justify-content: space-between; flex-wrap: wrap; }
    .nav { margin-left: auto; }
    
    .hero__status { margin-top: var(--spacing-md); }
    .nav__btn-order { padding: 6px 16px 6px 10px; font-size: 0.85rem; }
    .nav__btn-order-icon { padding: 4px; }
    .nav__btn-order-icon svg { width: 14px; height: 14px; }
}

/* Hero */
.hero {
    min-height: 90vh; 
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: calc(var(--spacing-xl) + 120px) var(--spacing-md) var(--spacing-md);
    max-width: 1200px; margin: 0 auto;
}
.hero__content { text-align: center; margin-bottom: var(--spacing-lg); }
.hero__title { font-weight: 800; font-size: 3.5rem; line-height: 1.1; margin-bottom: var(--spacing-md); color: var(--color-text-main); }
.hero__title-accent { color: var(--color-accent-primary); font-style: italic; }
.hero__subtitle { font-size: 1.15rem; color: var(--color-text-muted); font-weight: 400; max-width: 600px; margin: 0 auto; line-height: 1.8; }

.hero__visual { width: 100%; max-width: 400px; margin: 0 auto; position: relative; }

/* Decorador Anillo Hero. Aporta al factor novedoso */
.hero__deco-ring {
    position: absolute; top: -15%; left: -15%; width: 130%; height: 130%;
    border: 2px dashed var(--color-accent-secondary);
    border-radius: 50%; opacity: 0.4;
    animation: rotateRing 30s linear infinite; z-index: 0;
}
@keyframes rotateRing { 100% { transform: rotate(360deg); } }

.hero__asset-wrapper { 
    position: relative; width: 100%; aspect-ratio: 1; 
    background: transparent;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    /* Efecto Respiración con brillo verdoso */
    animation: breathingLogo 4s infinite ease-in-out;
}
@keyframes breathingLogo {
    0% { transform: scale(0.98); box-shadow: 0 0 15px rgba(107, 142, 35, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 0 50px rgba(107, 142, 35, 0.6); }
    100% { transform: scale(0.98); box-shadow: 0 0 15px rgba(107, 142, 35, 0.2); }
}

.hero__logo-animado { width: 100%; height: 100%; object-fit: cover; z-index: 2; position: relative; border-radius: 50%; }

/* Global Utilities */
.section__title { font-size: 2.5rem; font-weight: 800; margin-bottom: var(--spacing-md); color: var(--color-text-main); }
.section__title--center { text-align: center; }

/* About Section - Asimétrico Novedoso */
.about { padding: calc(var(--spacing-xl) * 2) var(--spacing-md); }
.about__container { 
    max-width: 1000px; margin: 0 auto; display: grid; gap: var(--spacing-xl);
    grid-template-columns: 1fr;
}
.about__info .section__title { font-size: 3.5rem; line-height: 1.1; margin-bottom: var(--spacing-sm); }
.about__text-wrapper { position: relative; }
.about__text-wrapper::before {
    content: '"'; position: absolute; top: -45px; left: -25px; font-family: var(--font-heading);
    font-size: 8rem; color: var(--color-accent-secondary); opacity: 0.15; line-height: 1;
}
.about__text { font-size: 1.2rem; color: var(--color-text-main); line-height: 1.8; margin-bottom: var(--spacing-sm); position: relative; z-index: 1;}
.about__text strong { color: var(--color-accent-primary); font-weight: 600; }

/* Gallery Section */
.gallery { padding: var(--spacing-xl) 0; }
.gallery__header { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-md); display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: var(--spacing-lg); flex-wrap: wrap; gap: var(--spacing-sm); }
.gallery__header .section__title { margin-bottom: 0; font-size: 3.5rem; line-height: 1; margin-right: 20px;}
.gallery__subtitle { color: var(--color-text-muted); font-style: italic; font-size: 1.25rem; margin-bottom: 10px;}

.gallery__carousel {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: var(--spacing-lg); /* gap ensanchado */
    padding: var(--spacing-md) 0 var(--spacing-xl); /* Espacio vertical extra para staggered Y */
    scrollbar-width: thin; scrollbar-color: var(--color-accent-primary) rgba(75, 63, 58, 0.1);
    -webkit-overflow-scrolling: touch;
}
.gallery__carousel::-webkit-scrollbar { height: 8px; }
.gallery__carousel::-webkit-scrollbar-track { background: rgba(75, 63, 58, 0.1); border-radius: 4px; }
.gallery__carousel::-webkit-scrollbar-thumb { background: var(--color-accent-primary); border-radius: 4px; }
.gallery__item {
    scroll-snap-align: center; flex: 0 0 calc(85% - var(--spacing-md));
    border-radius: var(--border-radius-lg); overflow: hidden; position: relative;
    box-shadow: 0 10px 25px rgba(75, 63, 58, 0.15);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Efecto de olas en la galería (Asimetría en Desktop y Mobile) */
.gallery__item:nth-child(even) { transform: translateY(25px); }

.gallery__item img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.6s ease, filter 0.6s ease; display: block; padding-right: 0;}
.gallery__item::after {
    content: "Descubrir";
    position: absolute; inset: 0; background: rgba(75, 63, 58, 0.5); color: var(--color-bg-base);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 1.5rem; font-style: italic;
    opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.gallery__item:hover:nth-child(even) { transform: translateY(20px) scale(1.03); }
.gallery__item:hover:nth-child(odd) { transform: translateY(-5px) scale(1.03); }
.gallery__item:hover img { transform: scale(1.1); filter: brightness(0.7); }
.gallery__item:hover::after { opacity: 1; }

/* CTA Blocks Section - Estilo Escalonado Grid */
.cta-blocks { padding: calc(var(--spacing-xl)*1.5) var(--spacing-md); position: relative; z-index: 10; margin-top: -30px;}
.cta-blocks__container { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--spacing-xl); }

.cta-card {
    background: var(--color-white); border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl); display: flex; flex-direction: column; align-items: flex-start; gap: var(--spacing-sm);
    text-decoration: none; color: var(--color-text-main);
    box-shadow: 0 15px 40px rgba(75, 63, 58, 0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(210, 125, 70, 0.1);
}
.cta-card:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(210, 125, 70, 0.2); border-color: rgba(210, 125, 70, 0.4); }
.cta-card__icon-wrapper { width: 90px; height: 90px; flex-shrink: 0; color: var(--color-accent-primary); margin-bottom: var(--spacing-xs); }
.cta-card__content h3 { font-size: 1.8rem; margin-bottom: 12px; color: var(--color-accent-primary); }
.cta-card__content p { color: var(--color-text-main); font-size: 1.1rem; line-height: 1.6; }

/* SVG Animations - Moto */
.moto-wheel { transform-origin: center; transform-box: fill-box; }
.cta-card--delivery:hover .moto-wheel { animation: motoWheelSpin 0.4s linear infinite; }
.cta-card--delivery:hover .moto-line { animation: motoLinesMove 0.5s ease-in-out infinite; }
.cta-card--delivery:hover .moto-line:nth-child(2) { animation-delay: 0.1s; }
.cta-card--delivery:hover .moto-line:nth-child(3) { animation-delay: 0.2s; }
.cta-card--delivery:hover .moto-chassis { animation: motoChassisBounce 0.25s alternate infinite ease-in-out; }

@keyframes motoWheelSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes motoLinesMove { 0% { transform: translateX(0); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateX(-15px); opacity: 0; } }
@keyframes motoChassisBounce { 0% { transform: translateY(0px) rotate(0deg); } 100% { transform: translateY(-2px) rotate(-1.5deg); } }

/* SVG Animations - Book/Feather */
.feather-wrapper { transform-origin: 60px 65px; }
.cta-card--booking:hover .feather-wrapper { animation: featherWrite 1.2s ease-in-out infinite; }
@keyframes featherWrite {
    0% { transform: rotate(0deg) translate(0, 0); }
    25% { transform: rotate(8deg) translate(-2px, -3px); }
    50% { transform: rotate(-5deg) translate(4px, 2px); }
    75% { transform: rotate(6deg) translate(-1px, -2px); }
    100% { transform: rotate(0deg) translate(0, 0); }
}

/* Location Section - Flotante */
.location { padding: calc(var(--spacing-xl)*1.5) var(--spacing-md); background: transparent; border: none; }
.location__container { 
    position: relative; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: flex-end; 
    min-height: 600px; border-radius: var(--border-radius-lg); overflow: hidden; 
}
.location__map-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden;}
.location__map { width: 100%; height: 100%; border: 0; }
.location__info-card {
    position: relative; z-index: 2; background: rgba(250, 240, 230, 0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-xl); border-radius: var(--border-radius-lg);
    box-shadow: 0 40px 80px rgba(75, 63, 58, 0.2);
    max-width: 450px; border: 1px solid rgba(255, 255, 255, 0.6);
    margin: var(--spacing-lg);
}
.location__toggle-btn { display: none; } /* Oculto en escritorio */
.location__text { font-size: 1.15rem; margin-bottom: var(--spacing-sm); color: var(--color-text-main); }
.location__address { font-weight: 600; font-size: 1.15rem; margin-top: var(--spacing-md); color: var(--color-accent-primary); }

/* Lógica Drawer Location Mobile App-like */
@media (max-width: 768px) {
    .location__container {
        align-items: flex-end; justify-content: center;
        min-height: 80vh; /* Take up more screen space on mobile */
    }
    .location__info-card {
        margin: 0; width: 100%; max-width: 100%;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-sm);
        display: flex; flex-direction: column;
    }
    .location__toggle-btn {
        display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px;
        width: 100%; min-height: 40px; background: transparent; border: none;
        cursor: pointer; margin-bottom: var(--spacing-sm);
    }
    .toggle-line {
        width: 50px; height: 5px; background: rgba(75, 63, 58, 0.25);
        border-radius: 10px; transition: background 0.3s;
    }
    .toggle-text {
        font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
        color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px;
    }
    .location__toggle-btn:hover .toggle-line {
        background: var(--color-accent-primary);
    }
    /* Animación de apertura con CSS Grid nativo */
    .location__card-wrapper {
        display: grid;
        grid-template-rows: 1fr;
        transition: grid-template-rows 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .location__card-content {
        overflow: hidden;
        opacity: 1; transition: opacity 0.4s ease;
        padding-bottom: var(--spacing-lg);
    }
    .location__info-card.is-collapsed .location__card-wrapper {
        grid-template-rows: 0fr;
    }
    .location__info-card.is-collapsed .location__card-content {
        opacity: 0; pointer-events: none;
    }
}

/* Footer - Multi Column */
.footer { 
    background-color: var(--color-text-main); color: var(--color-bg-base); 
    padding: calc(var(--spacing-xl)*1.5) var(--spacing-md) var(--spacing-sm); 
    margin-top: calc(var(--spacing-xl)*2); 
}
.footer__container { 
    display: grid; grid-template-columns: 1fr; gap: var(--spacing-xl); 
    max-width: 1200px; margin: 0 auto var(--spacing-xl); 
}
.footer__brand h3 { color: var(--color-accent-primary); font-family: var(--font-heading); font-size: 3rem; margin-bottom: var(--spacing-xs); }
.footer__brand p { font-size: 1.15rem; color: rgba(250, 240, 230, 0.8); max-width: 350px; }
.footer h4 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: var(--spacing-md); color: var(--color-accent-secondary); }
.footer__contact p { color: rgba(250, 240, 230, 0.9); margin-bottom: 0.8rem; font-size: 1.1rem; }
.footer__socials a { color: rgba(250, 240, 230, 0.9); text-decoration: none; margin-bottom: 0.8rem; display: block; transition: color 0.3s, transform 0.3s; font-size: 1.1rem; }
.footer__socials a:hover { color: var(--color-accent-primary); transform: translateX(8px); }
.footer__bottom { text-align: center; border-top: 1px solid rgba(250, 240, 230, 0.1); padding-top: var(--spacing-md); font-size: 0.95rem; color: rgba(250, 240, 230, 0.5); }

/* Desktop Responsive */
@media (min-width: 768px) {
    .nav { gap: var(--spacing-md); }
    
    .hero { flex-direction: row; text-align: left; align-items: center; justify-content: space-between; padding-top: calc(var(--spacing-xl) + 120px); min-height: 90vh; }
    .hero__content { text-align: left; flex: 1; padding-right: var(--spacing-lg); margin-bottom: 0; }
    .hero__subtitle { margin-left: 0; margin-right: 0; }
    .hero__title { font-size: 5.5rem; }
    .hero__visual { flex: 1; max-width: 500px; }

    .about__container { grid-template-columns: 1fr 1.5fr; align-items: center; }
    
    .cta-blocks__container { grid-template-columns: repeat(2, 1fr); }
    .cta-card:nth-child(2) { margin-top: 80px; margin-bottom: -80px; } /* Asimetría del grid vertical */
    
    .gallery__item { flex: 0 0 calc(30% - var(--spacing-md)); }
    
    .location__container { min-height: 600px; }
    .location__info-card { width: auto; text-align: left; }

    .footer__container { grid-template-columns: 1.5fr 1fr 1fr; }
}
