/* =========================================================
   KRESALA — hoja de estilos
   Medidas tomadas de restaurantkresala.com (1920 px de ancho)
   ========================================================= */

:root {
    --navy:        #101a32;   /* texto y botones */
    --navy-deep:   #01213c;   /* fondo del pie */
    --blue-link:   #1079d3;   /* dirección y teléfono */
    --black:       #000000;   /* panel de gastronomía */
    --white:       #ffffff;
    --header-h:    82px;
    --font:        "bc-sklonar", "Courier New", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

::selection     { background: var(--navy); color: #fff; }
::-moz-selection{ background: var(--navy); color: #fff; }


/* =========================================================
   1. CABECERA
   ========================================================= */
.sticky-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background .35s ease, box-shadow .35s ease;
}

.sticky-header.scrolled {
    background: var(--white);
    box-shadow: 0 1px 0 rgba(16, 26, 50, .08);
}

.header-content {
    height: var(--header-h);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hamburger-menu {
    font-size: 22px;
    line-height: 1;
    color: var(--white);
    cursor: pointer;
    padding: 10px 15px;
    transition: color .35s ease;
}

.sticky-header.scrolled .hamburger-menu { color: var(--navy); }

/* El logotipo va centrado de forma absoluta, como en el original */
.header-logo-link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* El wordmark no se ve hasta que la cabecera se vuelve estática: crece de
   max-width 0 a su ancho real, igual que en el original (transición de 0,5 s). */
.header-logo {
    width: 154px;
    max-width: 0;
    height: auto;
    filter: none;
    transition: max-width .5s ease;
}

.sticky-header.scrolled .header-logo { max-width: 154px; }

.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.header-phone {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    transition: color .35s ease;
}

.sticky-header.scrolled .header-phone { color: var(--navy); }


/* ---------- Selector de idioma ---------- */
.language-selector { position: relative; }

.dropdown { cursor: pointer; user-select: none; }

.selected-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    transition: color .35s ease;
}

.sticky-header.scrolled .selected-lang { color: var(--navy); }

.arrow-down { font-size: 9px; }

.lang-options {
    display: none;
    position: absolute;
    top: 26px;
    left: 0;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: var(--white);
    border: 1px solid rgba(16, 26, 50, .15);
    min-width: 62px;
    z-index: 20;
}

.lang-options.show { display: block; }

.lang-options li {
    padding: 5px 12px;
    font-size: 14px;
    color: var(--navy);
    cursor: pointer;
}

.lang-options li:hover,
.lang-options li.active { background: var(--navy); color: var(--white); }

/* En las subpáginas cada idioma es un enlace a su propia página */
.lang-options li a { display: block; color: inherit; }


/* ---------- Botones ---------- */
.btn-outline {
    display: inline-block;
    padding: 11px 22px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--white);
    transition: background .25s ease, color .25s ease, border-color .35s ease;
}

.btn-outline:hover { background: var(--white); color: var(--navy); }

.sticky-header.scrolled .btn-outline { color: var(--navy); border-color: var(--navy); }
.sticky-header.scrolled .btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-solid {
    display: inline-block;
    padding: 12px 24px;
    background: var(--navy);
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    transition: opacity .25s ease;
}

.btn-solid:hover { opacity: .85; }


/* ---------- Menú a pantalla completa ---------- */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    overflow-y: auto;
    padding: 40px 20px;
}

.menu-overlay.open { opacity: 1; visibility: visible; }

.menu-close {
    position: absolute;
    top: 14px;
    right: 26px;
    background: none;
    border: none;
    color: var(--white);
    font-family: arial, sans-serif;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.menu-logo {
    width: 385px;
    max-width: 70%;
    height: auto;
    margin: 0 0 70px;
    filter: brightness(0) invert(1);      /* el wordmark azul, en blanco */
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.menu-list li { height: 66px; }

.menu-list a {
    display: block;
    font-size: 32px;
    font-weight: 100;
    line-height: 40px;
    text-transform: uppercase;
    color: var(--white);
    transition: opacity .2s ease;
}

.menu-list a:hover { opacity: .65; }

.menu-social {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 44px;
}

.menu-social a,
.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: #69727d;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s ease;
}

.menu-social a:hover,
.footer-social a:hover { opacity: .78; }


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

/* El fondo lleva una imagen fija por debajo del vídeo: si el mp4 remoto
   no llega a cargar, el logotipo blanco del hero se sigue viendo. */
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--navy) url('img/experiencia/experiencia_1.webp') 50% 50% / cover no-repeat;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .18);
}

.hero-content { position: relative; z-index: 2; }

.hero-logo {
    width: 524px;
    max-width: 62vw;
    max-height: 80vh;
    height: auto;
}


/* =========================================================
   3. CARRUSEL DE FOTOS (cinta continua)
   ========================================================= */
.strip-section { padding: 30px 0; background: var(--white); }

.strip-viewport { overflow: hidden; }

.strip-track {
    display: flex;
    gap: 30px;
    will-change: transform;
}

/* 3 visibles con 30 px de separación, igual que el Swiper del original.
   El JS calcula --slide sobre el ancho real del contenedor (sin la barra de
   desplazamiento); el calc() es solo la red de seguridad hasta que arranca. */
.strip-track img {
    flex: 0 0 auto;
    width: var(--slide, calc((100vw - 60px) / 3));
    aspect-ratio: 615 / 416;
    height: auto;
    object-fit: cover;
}


/* =========================================================
   4. SECCIONES PARTIDAS (texto + imagen)
   ========================================================= */
.split-section {
    display: flex;
    align-items: stretch;
    /* 919 de imagen + 30 arriba + 30 abajo: así entre dos secciones seguidas
       quedan 60 px de blanco y no parecen una sola franja de fotos. */
    min-height: 979px;
    padding: 30px 0;
    background: var(--white);
    /* La animación fadeInRight desplaza la imagen 60 px: sin esto asomaría
       por la derecha y aparecería scroll horizontal en móvil. */
    overflow: hidden;
}

.split-text {
    flex: 0 0 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
}

.split-media {
    flex: 1 1 auto;
    position: relative;
    overflow: hidden;
}

/* Imágenes que se van cruzando en fundido */
.fade-image {
    position: absolute;
    inset: 0;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.fade-image.active { opacity: 1; }


/* ---------- Tipografía de las secciones ---------- */
.section-title {
    width: 400px;
    max-width: 100%;
    margin: 0 0 26px;
    font-size: 52px;
    font-weight: 300;
    line-height: 52px;
    color: var(--navy);
}

/* En el original los títulos van siempre en una línea, aunque se salgan
   del ancho de la columna de texto. */
@media (min-width: 769px) {
    .section-title { white-space: nowrap; }
    .section-title .title-small { white-space: normal; }
}

.section-title .title-big  { display: block; }

.section-title .title-small {
    display: block;
    margin-top: 18px;
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    text-transform: uppercase;
}

.section-subtitle {
    width: 400px;
    max-width: 100%;
    margin: 0 0 22px;
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    text-transform: uppercase;
    color: var(--navy);
}

.body-text {
    width: 400px;
    max-width: 100%;
    margin: 0 0 22px;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--navy);
}

.claim {
    width: 400px;
    max-width: 100%;
    margin: 24px 0 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: var(--navy);
}

.section-title.light,
.section-subtitle.light,
.body-text.light { color: var(--white); }


/* ---------- Bloque de dirección de EL ASADOR ---------- */
.rule {
    width: 328px;
    max-width: 100%;
    height: 0;
    margin: 30px 0;
    border: none;
    border-top: 1px solid var(--blue-link);
}

.local-address,
.local-phone {
    width: 400px;
    max-width: 100%;
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 300;
    line-height: 33px;
    color: var(--blue-link);
}

.local-address a:hover,
.local-phone a:hover { text-decoration: underline; }

.parking {
    width: 400px;
    max-width: 100%;
    margin: 26px 0 0;
    font-size: 12px;
    line-height: 18px;
    color: #7a7a7a;
}

.parking a { text-decoration: underline; }


/* =========================================================
   5. BANDA DECORATIVA DEL PEZ
   ========================================================= */
/* El pez va con background-attachment: fixed, que es de donde sale el efecto
   parallax del original: el dibujo queda anclado a la ventana y la banda lo
   va descubriendo al pasar por encima. Por eso position y size se miden
   contra la ventana, no contra la banda. */
.pez-band {
    height: 250px;
    background-image: url('img/deco/pez.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 667px 306px;
    background-size: 39%;
}


/* =========================================================
   6. GASTRONOMÍA VASCA (fondo de baldosas)
   ========================================================= */
/* Las baldosas llevan el mismo parallax que el pez: fondo fijo a la ventana. */
.gastro-section {
    background-image: url('img/gastronomia/baldosas.webp');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    overflow: hidden;                 /* igual que .split-section */
}

.gastro-inner {
    display: flex;
    align-items: stretch;
    min-height: 950px;
}

.gastro-media {
    flex: 0 0 66%;
    position: relative;
    overflow: hidden;
}

.gastro-panel {
    flex: 1 1 auto;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    text-align: center;
}

.gastro-panel .section-title,
.gastro-panel .section-subtitle,
.gastro-panel .body-text { width: 501px; }

/* Iconos de carta y bodega */
.cartas {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 34px;
}

.carta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.carta img { width: 150px; height: auto; }

.carta span {
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
}

.carta:hover span { text-decoration: underline; }

.disclaimer {
    width: 501px;
    max-width: 100%;
    margin: 34px 0 0;
    font-size: 12px;
    line-height: 18px;
    color: var(--white);
}


/* =========================================================
   7. PIE
   ========================================================= */
.site-footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: 60px 20px 0;
}

.footer-cols {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col {
    flex: 1 1 30%;
    text-align: center;
}

.footer-col h4 {
    margin: 0 0 22px;
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
}

.footer-col p { margin: 0 0 4px; font-size: 14px; line-height: 21px; }

.footer-col a:hover { text-decoration: underline; }

.sagardi-logo { width: 222px; margin: 0 auto 26px; }

.badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
}

.badges img { width: 99px; height: auto; }

.footer-social {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.footer-links {
    margin: 60px auto 50px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

.footer-links a:hover { text-decoration: underline; }
.footer-links span { margin: 0 12px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    line-height: 21px;
    max-width: 1560px;
    margin: 0 auto;
}

.footer-bottom p { margin: 0; }
.footer-bottom a:hover { text-decoration: underline; }


/* =========================================================
   8. MODAL DE EVENTOS CORPORATIVOS
   ========================================================= */
/* Medidas reales del pop-up de LePopup: caja de 720x540, banda de imagen de
   180 px, fondo #efe3d3 y tipografías serif del propio plugin (no la de marca). */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 200;
    padding: 20px;
}

.modal-overlay.show { opacity: 1; visibility: visible; }

.modal-box {
    position: relative;
    width: 720px;
    max-width: 100%;
    background: #efe3d3;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--white);
    font-family: arial, sans-serif;
    font-size: 40px;
    line-height: 40px;
    cursor: pointer;
    z-index: 2;
}

.modal-img {
    height: 180px;
    background-image: url('img/modal/pop-up.png');
    background-size: cover;
    background-position: 50% 50%;
}

.modal-body { padding: 20px 50px 40px; }

.modal-body h3 {
    margin: 0;
    font-family: Garamond, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 58.8px;
    color: #444;
}

.modal-sub {
    margin: 10px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #444;
}

.modal-btn {
    display: inline-block;
    width: 205px;
    margin-top: 32px;
    padding: 12px 0;
    background: #a6957a;
    border-radius: 5px;
    color: var(--white);
    font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
    text-align: center;
    transition: opacity .25s ease;
}

.modal-btn:hover { opacity: .88; }

.modal-rule {
    height: 0;
    margin: 19px 0 0;
    border: none;
    border-top: 1px solid rgba(68, 68, 68, .22);
}

.modal-note {
    margin: 26px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-style: italic;
    line-height: 22.4px;
    color: #8c8c8c;
}


/* =========================================================
   9. ANIMACIONES DE ENTRADA
   Réplica de las de Elementor: fadeIn, fadeInUp y fadeInRight,
   con los mismos retardos escalonados (0 / 250 / 500 / 750 / 1000 / 1250 ms).
   El JS añade .seen cuando el elemento entra en pantalla.
   ========================================================= */
.anim {
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
    transition-delay: var(--anim-delay, 0ms);
}

.anim.up    { transform: translateY(40px); }
.anim.right { transform: translateX(60px); }

.anim.seen {
    opacity: 1;
    transform: none;
}

/* Si el usuario prefiere menos movimiento, todo se ve sin animar. */
@media (prefers-reduced-motion: reduce) {
    .anim { opacity: 1; transform: none; transition: none; }
}


/* =========================================================
   10. SUBPÁGINAS (reserva / regala)
   ========================================================= */
.page-banner {
    height: 352px;
    background: var(--navy) url('img/asador/asador_3.webp') 50% 50% / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner h1 {
    margin: 0;
    padding-top: 90px;                 /* el título va algo por debajo del centro */
    font-size: 52px;
    font-weight: 400;
    line-height: 52px;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
}

.page-intro {
    max-width: 1140px;
    margin: 0 auto;
    padding: 64px 20px 32px;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    color: var(--navy-deep);
    text-align: center;
}

.page-intro strong { font-weight: 700; }

.cover-frame {
    display: block;
    width: 100%;
    max-width: 1140px;
    height: 550px;
    margin: 0 auto;
    border: none;
}

.page-embed { padding-bottom: 166px; }


/* =========================================================
   11. RESPONSIVE
   Puntos de corte de Elementor: 1024 (tableta) y 767 (móvil).
   ========================================================= */
@media (max-width: 1400px) {
    .gastro-panel .section-title,
    .gastro-panel .section-subtitle,
    .gastro-panel .body-text,
    .disclaimer { width: 100%; max-width: 460px; }

    .cartas { gap: 60px; }
}

@media (max-width: 1024px) {
    .split-section { min-height: 0; flex-direction: column; padding: 22px 0; }

    /* En columna, flex-basis se refiere al alto: hay que anularlo */
    .split-text  { flex: 0 0 auto; width: 100%; padding: 60px 24px; order: 2; }
    .split-media { flex: 0 0 auto; width: 100%; height: 420px; order: 1; }

    .gastro-inner { flex-direction: column; min-height: 0; }
    .gastro-media { flex: 0 0 auto; width: 100%; height: 420px; }
    .gastro-panel { flex: 0 0 auto; width: 100%; padding: 50px 24px; }

    /* 2 fotos visibles, como el Swiper en tableta */
    .strip-track img { width: var(--slide, calc((100vw - 30px) / 2)); }

    .menu-logo { margin-bottom: 44px; }
    .menu-list a { font-size: 26px; line-height: 34px; }
    .menu-list li { height: 54px; }

    /* background-attachment: fixed va fatal en iOS y en varios navegadores
       móviles (o lo ignoran, o da tirones), así que por debajo de 1024 no hay
       parallax. Y sin parallax el pez no aporta nada: se queda en un dibujo
       suelto en medio del blanco. Se quita y la banda pasa a ser solo el
       respiro que separa las dos secciones. */
    .pez-band {
        height: 40px;
        background-image: none;
    }

    .gastro-section { background-attachment: scroll; }
}

@media (max-width: 768px) {
    :root { --header-h: 66px; }

    /* En la cabecera de móvil caben los cinco elementos (hamburguesa, logo,
       teléfono, idioma y RESERVA) porque van ajustados al milímetro: a 360 px
       ocupan unos 315 y sobra margen. Si se tocan tamaños, comprobar que el
       botón no se sale por la derecha. */
    .header-content { padding: 0 8px; }
    .hamburger-menu { padding: 8px; font-size: 20px; }

    /* El logo deja de estar centrado en absoluto para que no pise al botón.
       Se queda algo más pequeño que en la tableta para pagar el aire que
       necesita el teléfono. */
    .header-logo-link { position: static; transform: none; }
    .header-logo { width: 68px; }
    .sticky-header.scrolled .header-logo { max-width: 68px; }

    /* El teléfono también sale en la cabecera estática del móvil, y separado
       del selector de idioma: pegados no se distingue dónde acaba uno y
       empieza el otro. 8 del gap + 8 del margen = 16 px de aire. */
    .header-right { gap: 8px; }
    .header-phone { font-size: 11px; white-space: nowrap; margin-right: 8px; }
    .selected-lang { font-size: 11px; gap: 3px; }
    .arrow-down { font-size: 7px; }
    .lang-options { top: 20px; min-width: 46px; }
    .lang-options li { font-size: 11px; padding: 4px 8px; }

    .btn-outline { padding: 7px 8px; font-size: 10px; letter-spacing: 0; }

    .hero-logo { width: auto; max-width: 74vw; max-height: 62vh; }

    .menu-close { right: 16px; }
    .menu-logo { max-width: 62%; margin-bottom: 34px; }
    .menu-list a { font-size: 22px; line-height: 30px; }
    .menu-list li { height: 46px; }
    .menu-social { margin-top: 30px; }

    .strip-section { padding: 16px 0; }
    .strip-track { gap: 14px; }
    /* 1 foto visible, como el Swiper en móvil */
    .strip-track img { width: var(--slide, calc(100vw - 28px)); }

    .split-media,
    .gastro-media { height: 300px; }

    .section-title { font-size: 38px; line-height: 40px; margin-bottom: 20px; }
    .section-title .title-small { font-size: 19px; line-height: 27px; }
    .section-subtitle { font-size: 19px; line-height: 27px; }
    .body-text, .claim { font-size: 16px; line-height: 25px; }

    .local-address, .local-phone { font-size: 19px; line-height: 29px; }
    .rule { width: 260px; margin: 24px 0; }
    .btn-solid { font-size: 19px; }

    .gastro-section { padding: 40px 0; }
    .cartas { gap: 40px; }
    .carta img { width: 110px; }
    .carta span { font-size: 19px; }

    .footer-cols { flex-wrap: wrap; gap: 44px; }
    .footer-col { flex: 1 1 100%; }
    .footer-col h4 { font-size: 24px; line-height: 26px; margin-bottom: 16px; }
    .footer-links { margin: 44px auto 34px; font-size: 15px; }
    .footer-links span { margin: 0 6px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; font-size: 13px; }

    .page-banner { height: 240px; }
    .page-banner h1 { font-size: 34px; line-height: 38px; padding-top: 60px; }
    .page-intro { padding: 40px 20px 24px; font-size: 18px; line-height: 28px; }
    .cover-frame { height: 980px; }
    .page-embed { padding-bottom: 60px; }

    .modal-img { height: 140px; }
    .modal-body { padding: 18px 24px 28px; }
    .modal-body h3 { font-size: 28px; line-height: 38px; }
    .modal-sub { font-size: 17px; line-height: 24px; }
    .modal-btn { width: 100%; margin-top: 24px; }
    .modal-note { font-size: 14px; line-height: 20px; margin-top: 20px; }
}

/* Pantallas muy estrechas (iPhone SE y similares): la cabecera se aprieta un
   punto más para que el botón RESERVA siga sin salirse. */
@media (max-width: 359px) {
    .header-logo { width: 52px; }
    .sticky-header.scrolled .header-logo { max-width: 52px; }

    .header-right { gap: 6px; }
    .header-phone { font-size: 10px; margin-right: 6px; }   /* 12 px de aire */
    .selected-lang { font-size: 10px; }
    .btn-outline { padding: 6px 7px; font-size: 9px; }
}
