/* ==========================================================================
   Grupo Bacalao - Estilos del tema
   Colores corporativos:
     Azul  #0C3762
     Camel #CFA45D
   ========================================================================== */

/* ---- Fuente corporativa: Century Gothic ---- */
@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/centurygothic.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/centurygothic_bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'),
         url('../fonts/poppins-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('../fonts/caviardreams.woff2') format('woff2'),
         url('../fonts/caviardreams.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('../fonts/caviardreams_bold.woff2') format('woff2'),
         url('../fonts/caviardreams_bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('../fonts/caviardreams_italic.woff2') format('woff2'),
         url('../fonts/caviardreams_italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('../fonts/caviardreams_bolditalic.woff2') format('woff2'),
         url('../fonts/caviardreams_bolditalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --gb-azul: #0C3762;
    --gb-camel: #CFA45D;
    --gb-amarillo: #B28336;
}

body {
    font-family: 'Century Gothic', sans-serif;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 100;
}

.site-header__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ---- Logo ---- */
.site-header__logo {
    flex: 1 1 0;
    line-height: 0;
}

.site-header__logo img {
    display: block;
    width: auto;
    height: 84px;
}

/* ---- Navegaci&oacute;n ---- */
.site-header__nav {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu li {
    margin: 0;
    padding: 0;
    position: relative;
}

.primary-menu a {
    font-family: 'Century Gothic', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gb-azul);
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
    color: var(--gb-camel);
}

/* ---- Submen&uacute;s ---- */
.primary-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--gb-camel);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 200;
}

.primary-menu li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu ul.sub-menu li a {
    display: block;
    padding: 8px 22px;
    font-size: 15px;
}

/* ---- Bot&oacute;n Reserva ---- */
.site-header__cta {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
}

.btn-reserva {
    display: inline-block;
    font-family: 'Century Gothic', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    background: var(--gb-azul);
    padding: 15px 34px;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-reserva:hover,
.btn-reserva:focus {
    background: var(--gb-camel);
    color: #ffffff;
}

/* ---- Bot&oacute;n hamburguesa (m&oacute;vil) ---- */
.site-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.site-header__toggle-bar {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--gb-azul);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(2) {
    transform: translateY(8px) rotate(45deg);
}
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(3) {
    opacity: 0;
}
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(4) {
    transform: translateY(-8px) rotate(-45deg);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
    .primary-menu {
        gap: 24px;
    }
    .primary-menu a {
        font-size: 15px;
    }
}

@media (max-width: 980px) {
    .site-header__inner {
        min-height: 84px;
        flex-wrap: wrap;
    }

    .site-header__logo img {
        height: 48px;
    }

    .site-header__toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .site-header__cta {
        order: 2;
    }

    .site-header__nav {
        order: 4;
        flex: 1 0 100%;
        display: none;
        justify-content: flex-start;
    }

    .site-header.is-open .site-header__nav {
        display: block;
    }

    .primary-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 0 20px;
    }

    .primary-menu > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .primary-menu > li > a {
        display: block;
        padding: 14px 4px;
    }

    .primary-menu ul.sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: 0;
        padding: 0 0 8px 16px;
    }
}

@media (max-width: 560px) {
    .btn-reserva {
        padding: 12px 22px;
        font-size: 14px;
    }
}

/* ==========================================================================
   Home slider
   ========================================================================== */
.home-slider {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    background: var(--gb-azul);
}

.home-slider__track {
    position: absolute;
    inset: 0;
}

/* ---- Slides ---- */
.home-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    z-index: 1;
}

.home-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* ---- Fondo con zoom (Ken Burns) ---- */
.home-slider__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    will-change: transform;
}

.home-slider__slide.is-active .home-slider__bg {
    animation: gb-kenburns var(--slider-duration, 7000ms) ease-out forwards;
}

@keyframes gb-kenburns {
    from { transform: scale(1); }
    to   { transform: scale(1.12); }
}

/* ---- Contenido (texto + bot&oacute;n) ---- */
.home-slider__content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 60px 0 120px;
    max-width: 700px;
    z-index: 3;
}

.home-slider__text {
    display: inline-block;
    margin: 0 0 18px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--gb-azul);
    font-family: 'Century Gothic', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.home-slider__btn {
    display: inline-block;
    font-family: 'Century Gothic', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s ease, color 0.25s ease;
}

/* Bot&oacute;n azul: fondo azul, texto blanco. */
.home-slider__btn--blue {
    background: var(--gb-azul);
    color: #ffffff;
}

.home-slider__btn--blue:hover,
.home-slider__btn--blue:focus {
    background: var(--gb-amarillo);
    color: var(--gb-azul);
}

/* Bot&oacute;n amarillo corporativo: fondo amarillo, texto azul. */
.home-slider__btn--camel {
    background: var(--gb-amarillo);
    color: var(--gb-azul);
}

.home-slider__btn--camel:hover,
.home-slider__btn--camel:focus {
    background: var(--gb-azul);
    color: #ffffff;
}

/* ---- Flechas ---- */
.home-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    box-sizing: border-box;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    color: var(--gb-azul);
    border: 0;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.home-slider__arrow span {
    margin-top: -3px;
}

.home-slider__arrow:hover {
    background: var(--gb-azul);
    color: #ffffff;
}

.home-slider__arrow--prev {
    left: 24px;
}

.home-slider__arrow--next {
    right: 24px;
}

/* ---- Dots / barra de progreso ---- */
.home-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.home-slider__dot {
    position: relative;
    width: 54px;
    height: 4px;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
    border: 0;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.home-slider__dot-fill {
    position: absolute;
    inset: 0;
    width: 0;
    background: #ffffff;
    border-radius: 2px;
}

.home-slider__dot.is-active .home-slider__dot-fill {
    animation: gb-dotgrow var(--slider-duration, 7000ms) linear forwards;
}

@keyframes gb-dotgrow {
    from { width: 0; }
    to   { width: 100%; }
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
    .home-slider {
        height: 560px;
    }
    .home-slider__content {
        padding: 0 30px;
        max-width: 90%;
    }
    .home-slider__btn {
        font-size: 16px;
        padding: 16px 28px;
    }
}

@media (max-width: 560px) {
    .home-slider {
        height: 460px;
    }
    .home-slider__arrow {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }
    .home-slider__dot {
        width: 34px;
    }
}

/* ==========================================================================
   P&aacute;gina El Grupo Bacalao
   ========================================================================== */
.grupo-page {
    width: 100%;
    padding: 0 100px;
    box-sizing: border-box;
    font-family: 'Century Gothic', sans-serif;
    color: #333333;
}

.grupo-row {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 70px 0;
}

.grupo-row__text {
    flex: 1 1 50%;
    min-width: 0;
}

.grupo-row__media {
    flex: 1 1 50%;
    min-width: 0;
}

.grupo-row__media img {
    display: block;
    width: 100%;
    height: auto;
}

/* Imagen a la izquierda: el bloque de imagen va primero (orden natural del HTML). */
/* Imagen a la derecha: el bloque de texto va primero (orden natural del HTML). */

/* ---- Tipograf&iacute;a ---- */
.grupo-title-lg {
    margin: 0 0 18px;
    font-family: 'Century Gothic', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.1;
    color: var(--gb-amarillo);
}

.grupo-eyebrow {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gb-amarillo);
}

.grupo-heading {
    margin: 0 0 26px;
    font-family: 'Century Gothic', sans-serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 1.25;
    color: var(--gb-azul);
}

.grupo-row__text p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

.grupo-row__text p.is-bold {
    font-weight: 700;
    color: #333333;
}

.grupo-list {
    margin: 0 0 18px;
    padding-left: 22px;
}

.grupo-list li {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

.grupo-cta-text {
    font-size: 22px !important;
    color: var(--gb-azul) !important;
    margin-top: 26px !important;
}

/* ---- Redes sociales ---- */
.grupo-social {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 8px;
}

.grupo-social a {
    color: var(--gb-amarillo);
    font-size: 22px;
    line-height: 1;
    transition: color 0.2s ease;
}

.grupo-social a:hover {
    color: var(--gb-azul);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .grupo-page {
        padding: 0 50px;
    }
    .grupo-row {
        gap: 45px;
    }
}

@media (max-width: 860px) {
    .grupo-page {
        padding: 0 30px;
    }
    .grupo-row,
    .grupo-row--img-left,
    .grupo-row--img-right {
        flex-direction: column;
        gap: 30px;
        padding: 45px 0;
    }
    .grupo-row--img-right .grupo-row__media {
        order: -1;
    }
    .grupo-title-lg {
        font-size: 34px;
    }
    .grupo-heading {
        font-size: 27px;
    }
}

/* ---- Secci&oacute;n locales (3 columnas) ---- */
.grupo-locales {
    display: flex;
    gap: 60px;
    padding: 40px 0 90px;
}

.grupo-local {
    flex: 1 1 33.333%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.grupo-local__logo {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.grupo-local__logo img {
    max-height: 90px;
    max-width: 260px;
    width: auto;
    height: auto;
}

.grupo-local__btn {
    display: inline-block;
    font-family: 'Century Gothic', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    background: var(--gb-camel);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.25s ease, color 0.25s ease;
}

.grupo-local__btn:hover,
.grupo-local__btn:focus {
    background: var(--gb-azul);
    color: #ffffff;
}

.grupo-local__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 24px;
}

.grupo-local__social a {
    color: var(--gb-camel);
    font-size: 20px;
    line-height: 1;
    transition: color 0.2s ease;
}

.grupo-local__social a:hover {
    color: var(--gb-azul);
}

.grupo-local__map {
    width: 100%;
}

.grupo-local__map iframe {
    width: 100%;
    height: 260px;
    display: block;
    border: 0;
}

@media (max-width: 860px) {
    .grupo-locales {
        flex-direction: column;
        gap: 55px;
        padding: 20px 0 60px;
    }
}

/* ==========================================================================
   Footer - Kit Digital (portada)
   ========================================================================== */
.site-footer {
    background: #ffffff;
}

.footer-kit {
    padding: 40px 30px;
}

.footer-kit__logos {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-kit__logos img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 560px) {
    .footer-kit__logos {
        gap: 24px;
    }
    .footer-kit__logos img {
        height: 48px;
    }
}

/* ==========================================================================
   Footer - P&aacute;ginas interiores (enlaces + Kit Digital)
   ========================================================================== */
.footer-interior {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 100px;
    box-sizing: border-box;
}

.footer-interior__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'Century Gothic', sans-serif;
    font-size: 15px;
}

.footer-interior__links a {
    color: #e5007e;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-interior__links a:hover {
    opacity: 0.7;
}

.footer-interior__links .footer-sep {
    color: #e5007e;
}

.footer-interior__rrhh {
    font-weight: 700;
    text-decoration: underline !important;
}

.footer-interior__kit .footer-kit__logos {
    margin: 0;
    gap: 34px;
}

.footer-interior__kit .footer-kit__logos img {
    height: 56px;
}

@media (max-width: 980px) {
    .footer-interior {
        padding: 30px 40px;
        justify-content: center;
        text-align: center;
    }
    .footer-interior__links {
        justify-content: center;
    }
}

/* ==========================================================================
   P&aacute;gina Bacalao Restaurante
   ========================================================================== */
.bac-page {
    font-family: 'Century Gothic', sans-serif;
    color: #4a4a4a;
}

/* ---- 1. Hero ---- */
.bac-hero {
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* ---- 2. Intro (fondo azul) ---- */
.bac-intro {
    width: 100%;
    background: var(--gb-azul);
    padding: 90px 40px;
    box-sizing: border-box;
}

.bac-intro__inner {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.bac-intro__media {
    flex: 0 0 40%;
    max-width: 40%;
}

.bac-intro__media img {
    display: block;
    width: 100%;
    height: auto;
}

.bac-intro__text {
    flex: 1 1 60%;
    color: #ffffff;
}

.bac-intro__title {
    margin: 0 0 14px;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.1;
    color: #ffffff;
}

.bac-intro__subtitle {
    margin: 0 0 26px;
    font-size: 31px;
    line-height: 1.3;
    color: var(--gb-amarillo);
}

.bac-intro__text p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.65;
    color: #eaeef3;
}

/* ---- 3. Parallax ---- */
.bac-parallax {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ---- 4/5/6. Filas de contenido ---- */
.bac-row {
    display: flex;
    align-items: center;
    gap: 70px;
    width: 100%;
    padding: 80px 100px;
    box-sizing: border-box;
}

.bac-row--reverse {
    flex-direction: row-reverse;
}

.bac-row__text {
    flex: 1 1 50%;
    min-width: 0;
}

.bac-row__media {
    flex: 1 1 50%;
    min-width: 0;
}

.bac-row__media img {
    display: block;
    width: 100%;
    height: auto;
}

.bac-h {
    margin: 0 0 26px;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.25;
}

.bac-h--blue {
    color: var(--gb-azul);
}

.bac-h--camel {
    color: var(--gb-amarillo);
}

.bac-row__text p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.65;
    color: #111111;
}

.bac-row__text p strong {
    color: #111111;
}

/* ---- Botones ---- */
.bac-btn {
    display: inline-block;
    margin-top: 14px;
    font-family: 'Century Gothic', sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #ffffff;
    padding: 15px 34px;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.bac-btn i {
    margin-right: 8px;
}

.bac-btn--blue {
    background: var(--gb-azul);
}

.bac-btn--blue:hover,
.bac-btn--blue:focus {
    background: var(--gb-amarillo);
    color: var(--gb-azul);
}

.bac-btn--camel {
    background: var(--gb-camel);
}

.bac-btn--camel:hover,
.bac-btn--camel:focus {
    background: var(--gb-azul);
    color: #ffffff;
}

/* ---- 7. Mapa ---- */
.bac-map__frame iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: 0;
}

.bac-map .bac-row__text p {
    color: #4a4a4a;
}

.bac-map .bac-row__text p strong {
    color: var(--gb-azul);
}

/* ---- 8. Bono (fondo oscuro) ---- */
.bac-bono {
    width: 100%;
    background: #082440;
    padding: 70px 40px;
    text-align: center;
    box-sizing: border-box;
}

.bac-bono__text {
    margin: 0 0 30px;
    color: #ffffff;
    font-size: 22px;
}

/* ---- 9. Opiniones ---- */
.bac-reviews {
    width: 100%;
    padding: 80px 100px;
    box-sizing: border-box;
    text-align: center;
}

.bac-reviews__title {
    text-align: center;
    margin-bottom: 26px;
}

.bac-reviews__intro {
    max-width: 1100px;
    margin: 0 auto 50px;
    color: var(--gb-amarillo);
    font-size: 16px;
    line-height: 1.6;
}

.bac-reviews__carousel {
    position: relative;
    overflow: hidden;
}

.bac-reviews__track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.bac-review {
    flex: 0 0 calc((100% - 60px) / 3);
    box-sizing: border-box;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    padding: 26px 28px;
    text-align: left;
    background: #ffffff;
}

.bac-review__name {
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 16px;
    color: #333333;
}

.bac-review__stars {
    color: #f2c200;
    letter-spacing: 2px;
    margin-right: 8px;
    white-space: nowrap;
}

.bac-review__text {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.bac-reviews__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.bac-reviews__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #cfcfcf;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bac-reviews__dot.is-active {
    background: var(--gb-azul);
}

/* ---- 10. Banda final ---- */
.bac-band {
    position: relative;
    width: 100%;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bac-band__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 55, 98, 0.45);
}

.bac-band__title {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.3;
}

/* ---- Responsive p&aacute;gina Bacalao ---- */
@media (max-width: 1100px) {
    .bac-row {
        padding: 60px 50px;
        gap: 45px;
    }
    .bac-reviews {
        padding: 60px 50px;
    }
}

@media (max-width: 1050px) {
    .bac-review {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 860px) {
    .bac-hero {
        height: 420px;
    }
    .bac-intro {
        padding: 60px 30px;
    }
    .bac-intro__inner {
        flex-direction: column;
        gap: 35px;
    }
    .bac-intro__media {
        flex-basis: auto;
        max-width: 70%;
    }
    .bac-parallax {
        height: 340px;
        background-attachment: scroll;
    }
    .bac-row,
    .bac-row--reverse {
        flex-direction: column;
        padding: 45px 30px;
        gap: 30px;
    }
    .bac-band__title {
        font-size: 27px;
    }
}

@media (max-width: 700px) {
    .bac-review {
        flex: 0 0 100%;
    }
}

/* ==========================================================================
   Footer de restaurante
   ========================================================================== */
.site-footer--rest {
    background: #ffffff;
}

.rest-footer {
    background: var(--gb-azul);
    color: #ffffff;
    padding: 60px 100px 30px;
    box-sizing: border-box;
}

.rest-footer__inner {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.rest-footer__intro {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rest-footer__info {
    flex: 1 1 50%;
}

.rest-footer__lead {
    margin: 0 0 20px;
    color: var(--gb-amarillo);
    font-size: 17px;
    line-height: 1.6;
}

.rest-footer__claim {
    margin: 0;
    color: var(--gb-amarillo);
    font-size: 17px;
}

.rest-footer__info p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.55;
    color: #eaeef3;
}

.rest-footer__info strong {
    color: #ffffff;
}

.rest-footer__cierre a {
    color: #ffffff;
    text-decoration: underline;
}

.rest-footer__social {
    display: flex;
    gap: 18px;
    margin-top: 6px;
}

.rest-footer__social a {
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    transition: color 0.2s ease;
}

.rest-footer__social a:hover {
    color: var(--gb-amarillo);
}

.rest-footer__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 14px;
}

.rest-footer__links a {
    color: #dfe5ec;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.rest-footer__links a:hover {
    opacity: 0.7;
}

.rest-footer__links .footer-sep {
    color: #6d8199;
}

.rest-footer__rrhh {
    font-weight: 700;
    text-decoration: underline !important;
}

.footer-kit--rest {
    padding: 30px;
}

@media (max-width: 860px) {
    .rest-footer {
        padding: 45px 30px 25px;
    }
    .rest-footer__inner {
        flex-direction: column;
        gap: 35px;
    }
    .rest-footer__links {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   P&aacute;gina La Chumbera (.lch-page): misma estructura que Bacalao con la
   paleta invertida (camel <-> azul). Solo overrides de color; el layout se
   hereda de las clases .bac-*.
   ========================================================================== */

/* -- Intro: fondo camel, t&iacute;tulo/subt&iacute;tulo azul, texto blanco, v&iacute;deo -- */
.lch-page .bac-intro {
    background: var(--gb-amarillo);
}

.lch-page .bac-intro__title,
.lch-page .bac-intro__subtitle {
    color: var(--gb-azul);
}

.lch-page .bac-intro__text,
.lch-page .bac-intro__text p {
    color: #ffffff;
}

.bac-intro__media video {
    display: block;
    width: 100%;
    height: auto;
}

/* -- Filas: color del cuerpo de texto seg&uacute;n secci&oacute;n -- */
.lch-page .bac-row__text.lch-body--blue p {
    color: var(--gb-azul);
}

.lch-page .bac-row__text.lch-body--camel p {
    color: var(--gb-amarillo);
}

/* -- Mapa: refuerzo del strong en camel (heading ya es camel) -- */
.lch-page .bac-map .bac-row__text p strong {
    color: var(--gb-amarillo);
}

/* -- Bono: fondo camel, texto blanco, bot&oacute;n azul oscuro -- */
.lch-page .bac-bono {
    background: var(--gb-amarillo);
}

.lch-page .bac-bono__text {
    color: #ffffff;
}

.lch-page .bac-bono .bac-btn--blue {
    background: #082440;
    color: #ffffff;
}

.lch-page .bac-bono .bac-btn--blue:hover,
.lch-page .bac-bono .bac-btn--blue:focus {
    background: var(--gb-azul);
    color: #ffffff;
}

/* -- Banda final: overlay camel en lugar de azul -- */
.lch-page .bac-band__overlay {
    background: rgba(178, 131, 54, 0.5);
}

/* -- Footer de La Chumbera: fondo camel, texto blanco -- */
.site-footer--lch .rest-footer {
    background: var(--gb-amarillo);
}

.site-footer--lch .rest-footer__lead,
.site-footer--lch .rest-footer__claim {
    color: #ffffff;
}

.site-footer--lch .rest-footer__info p {
    color: #ffffff;
}

.site-footer--lch .rest-footer__links a {
    color: #ffffff;
}

.site-footer--lch .rest-footer__links .footer-sep {
    color: rgba(255, 255, 255, 0.6);
}

.site-footer--lch .rest-footer__social a:hover {
    color: var(--gb-azul);
}

/* ==========================================================================
   Secciones reutilizables (Tienda, Eventos, ...)
   .page-hero  = hero con texto sobre imagen
   .page-cta   = banda CTA/bono sobre imagen
   .gb-list    = lista con vi&ntilde;etas dentro de .bac-row__text
   Filas, parallax, mapa y rese&ntilde;as heredan de las clases .bac-*.
   ========================================================================== */

/* -- Hero con texto encima de imagen -- */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    padding: 90px 40px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 35, 0.55);
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    text-align: center;
    color: #ffffff;
}

.page-hero__title {
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #ffffff;
}

.page-hero__subtitle {
    margin: 0 0 26px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    color: #ffffff;
}

.page-hero__inner p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.65;
    color: #eaeef3;
}

/* -- Listas con vi&ntilde;etas dentro de las filas -- */
.gb-list {
    margin: 0 0 18px;
    padding-left: 22px;
}

.gb-list li {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.gb-list ul {
    margin: 8px 0 0;
    padding-left: 22px;
    list-style: circle;
}

/* -- Subcabecera y helpers de color de texto -- */
.gb-subhead {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 17px;
}

.gb-text--blue {
    color: var(--gb-azul);
}

.gb-text--camel {
    color: var(--gb-amarillo);
}

/* -- Banda CTA/bono sobre imagen -- */
.page-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 70px 40px;
    box-sizing: border-box;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 55, 98, 0.6);
}

/* Overlay m&aacute;s suave para la banda CTA (Eventos) */
.page-cta--soft .page-cta__overlay {
    background: rgba(15, 25, 40, 0.4);
}

/* ==========================================================================
   P&aacute;gina Reservas (.reservas-page)
   ========================================================================== */
.reservas-form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 40px;
    box-sizing: border-box;
}

.reservas-maps {
    display: flex;
    gap: 40px;
    padding: 0 100px 80px;
    box-sizing: border-box;
}

.reservas-map {
    flex: 1 1 50%;
    min-width: 0;
}

.reservas-map .bac-h {
    font-size: 26px;
    margin-bottom: 12px;
}

.reservas-map p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.55;
    color: #4a4a4a;
}

.reservas-map iframe {
    width: 100%;
    height: 340px;
    border: 0;
    display: block;
}

.reservas-cta {
    text-align: center;
    padding: 70px 40px;
    background: var(--gb-azul);
    box-sizing: border-box;
}

.reservas-cta__title {
    margin: 0 0 26px;
    color: #ffffff;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.25;
}

@media (max-width: 860px) {
    .reservas-maps {
        flex-direction: column;
        padding: 0 30px 50px;
        gap: 30px;
    }
    .reservas-form {
        padding: 45px 25px;
    }
}

.page-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    color: #ffffff;
}

.page-cta__title {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.25;
    color: #ffffff;
}

.page-cta__text {
    margin: 0 0 28px;
    font-size: 18px;
    color: #ffffff;
}

/* -- Footer Tienda/Eventos: fondo azul (por defecto) con lead en blanco -- */
.site-footer--tienda .rest-footer__lead,
.site-footer--tienda .rest-footer__claim {
    color: #ffffff;
}

@media (max-width: 860px) {
    .page-hero__title {
        font-size: 28px;
    }
    .page-hero__subtitle {
        font-size: 18px;
    }
    .page-cta__title {
        font-size: 24px;
    }
}

/* ==========================================================================
   Blog (.blog-page) y art&iacute;culos (.single-article)
   ========================================================================== */

/* -- Hero: imagen centrada sobre fondo camel + texto blanco -- */
.blog-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 60px 40px;
    box-sizing: border-box;
    text-align: center;
    background-color: var(--gb-amarillo);
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.blog-hero__title {
    margin: 0;
    max-width: 1150px;
    color: #ffffff;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.3;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

/* -- Rejilla de tarjetas -- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 70px 100px;
    box-sizing: border-box;
}

.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    overflow: hidden;
}

.blog-card__thumb {
    position: relative;
    display: block;
}

.blog-card__thumb img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.blog-card__badge {
    position: absolute;
    top: 16px;
    right: 0;
    background: var(--gb-camel);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
}

.blog-card__avatar {
    position: absolute;
    left: 18px;
    bottom: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    z-index: 2;
    background: #fff;
}

.blog-card__avatar img {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 32px 24px 24px;
}

.blog-card__title {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.35;
}

.blog-card__title a {
    color: var(--gb-azul);
    font-weight: 700;
    text-decoration: none;
}

.blog-card__title a:hover {
    color: var(--gb-amarillo);
}

.blog-card__excerpt {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.blog-card__more {
    margin-top: auto;
    color: var(--gb-camel);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.blog-card__more:hover {
    color: var(--gb-azul);
}

.blog-card__meta {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #eeeeee;
    font-size: 12px;
    color: #999999;
}

.blog-empty {
    padding: 90px 40px;
    text-align: center;
    font-size: 18px;
    color: #555555;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 40px 80px;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--gb-azul);
    text-decoration: none;
    font-size: 14px;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--gb-azul);
    color: #ffffff;
    border-color: var(--gb-azul);
}

/* -- Art&iacute;culo individual -- */
.single-article {
    max-width: 820px;
    margin: 0 auto;
    padding: 70px 24px 40px;
    box-sizing: border-box;
}

.single-article__badge {
    display: inline-block;
    background: var(--gb-camel);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 18px;
}

.single-article__title {
    margin: 0 0 20px;
    color: var(--gb-azul);
    font-weight: 700;
    font-size: 34px;
    line-height: 1.25;
}

.single-article__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #888888;
}

.single-article__avatar {
    border-radius: 50%;
}

.single-article__thumb {
    margin: 0 0 34px;
}

.single-article__thumb img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.single-article__content {
    font-size: 17px;
    line-height: 1.8;
    color: #333333;
}

.single-article__content p {
    margin: 0 0 22px;
}

.single-article__content h2,
.single-article__content h3 {
    color: var(--gb-azul);
    line-height: 1.3;
    margin: 34px 0 16px;
}

.single-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.single-article__content a {
    color: var(--gb-amarillo);
}

.single-article__foot {
    margin-top: 40px;
}

.single-comments {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* -- Footer del Blog -- */
.blog-footer__intro p {
    margin: 0 0 16px;
    max-width: 1150px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

.blog-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
}

.blog-footer__bottom .rest-footer__links,
.blog-footer__bottom .rest-footer__social {
    margin-top: 0;
}

@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 50px;
    }
}

@media (max-width: 860px) {
    .blog-hero__title {
        font-size: 22px;
    }
    .single-article__title {
        font-size: 26px;
    }
}

@media (max-width: 700px) {
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 40px 25px;
    }
}
