@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Poppins:wght@400;500;600&display=swap');


/* =========================
   VARIABLES
========================= */

:root {
    --verde: #234235;
    --dorado: #B8955E;
    --fondo: #F8F7F4;
    --texto: #262626;
    --blanco: #ffffff;
}


/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--texto);
    background: var(--fondo);
}


/* =========================
   HEADER
========================= */

.site-header {
    background: var(--blanco);
    width: 100%;
    position: relative;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    min-height: 105px;
    margin: 0 auto;
    padding: 12px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    display: block;
    width: 145px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--texto);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--dorado);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-reserva {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 24px;

    background: var(--verde);
    color: var(--blanco);

    border-radius: 4px;

    font-weight: 600;
    text-decoration: none;

    transition: background 0.2s ease;
}

.btn-reserva:hover {
    background: var(--dorado);
}

.language-btn {
    min-height: 46px;
    padding: 0 17px;

    background: var(--blanco);
    color: var(--verde);

    border: 1px solid var(--verde);
    border-radius: 4px;

    font-family: inherit;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    width: 100%;
    min-height: 650px;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.08)
        ),
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    position: relative;
}

.hero-content {
    width: min(1280px, calc(100% - 48px));
    min-height: 650px;

    margin: 0 auto;

    position: relative;
}


/* =========================
   HERO TEXTO
========================= */

.hero-copy {
    position: absolute;

    top: 80px;
    left: 0;

    padding: 30px 55px;

    text-align: center;

    background:
        radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.72) 42%,
            rgba(0, 0, 0, 0.34) 70%,
            rgba(0, 0, 0, 0) 100%
        );
}

.hero-copy h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 5vw, 76px);
    line-height: 0.95;

    font-weight: 600;
    color: var(--blanco);

    text-shadow: 0 2px 5px rgba(0,0,0,.45);

    margin-bottom: 22px;
}

.hero-copy p {
    font-size: 21px;
    line-height: 1.4;
    font-weight: 600;

    color: var(--blanco);

    text-shadow: 0 2px 5px rgba(0,0,0,.65);
}


/* =========================
   OCTORATE
========================= */

.booking-wrapper {
    position: absolute;

    left: 0;
    top: 330px;

    z-index: 10;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

    .main-nav {
        display: none;
    }

    .hero-copy {
        left: 30px;
    }

    .booking-wrapper {
        left: 30px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .header-inner {
        min-height: 82px;
        padding: 10px 16px;
    }

    .logo img {
        width: 115px;
    }

    .language-btn {
        display: none;
    }

    .btn-reserva {
        padding: 0 16px;
        font-size: 14px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        width: calc(100% - 24px);
        min-height: 720px;
    }

    .hero-copy {
        top: 45px;
        left: 0;
        right: 0;

        padding: 30px 20px;
    }

    .hero-copy h1 {
        font-size: 48px;
    }

    .hero-copy p {
        font-size: 18px;
    }

    .booking-wrapper {
        top: 340px;
        left: 0;
        right: 0;
    }

}/* =========================
   HABITACIONS
========================= */

.rooms-section {
    background: var(--fondo);
    padding: 90px 24px;
}

.rooms-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-kicker {
    display: block;
    margin-bottom: 8px;

    color: var(--dorado);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 14px;

    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    line-height: 1;
    font-weight: 600;

    color: var(--verde);
}

.section-heading p {
    color: #626262;
    font-size: 16px;
    line-height: 1.7;
}


/* GRID */

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* CARD */

.room-card {
    overflow: hidden;

    background: #ffffff;
    border: 1px solid rgba(35, 66, 53, 0.10);
    border-radius: 7px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.10);
}

.room-image {
    display: block;

    width: 100%;
    height: 265px;

    object-fit: cover;
}

.room-content {
    padding: 25px;
}

.room-content h3 {
    margin-bottom: 4px;

    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    line-height: 1.1;

    color: var(--verde);
}

.room-subtitle {
    display: block;

    margin-bottom: 18px;

    color: var(--dorado);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.room-content p {
    min-height: 76px;
    margin-bottom: 20px;

    color: #626262;

    font-size: 14px;
    line-height: 1.65;
}


/* CARACTERÍSTICAS */

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-bottom: 24px;
}

.room-features span {
    padding: 6px 9px;

    background: #f2f3ef;

    border-radius: 20px;

    color: var(--verde);

    font-size: 11px;
    font-weight: 500;
}


/* BOTÓN RESERVA */

.room-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 45px;

    background: var(--verde);
    color: #ffffff;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: background 0.2s ease;
}

.room-book-btn:hover {
    background: var(--dorado);
}


/* VER TODAS */

.rooms-all {
    margin-top: 45px;
    text-align: center;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 28px;

    border: 1px solid var(--verde);
    border-radius: 4px;

    color: var(--verde);
    background: transparent;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.secondary-btn:hover {
    background: var(--verde);
    color: #ffffff;
}


/* TABLET */

@media (max-width: 950px) {

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .rooms-section {
        padding: 65px 16px;
    }

    .section-heading h2 {
        font-size: 43px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-image {
        height: 245px;
    }

    .room-content p {
        min-height: auto;
    }

}/* =========================
   PÀGINA HABITACIONS
========================= */

.rooms-page-intro {
    padding: 85px 24px 45px;
    background: var(--fondo);
}

.rooms-page-intro-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.rooms-page-intro h1 {
    margin: 8px 0 22px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 68px);
    line-height: 1;
    font-weight: 600;

    color: var(--verde);
}

.rooms-main-message {
    margin-bottom: 10px;

    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;

    color: var(--verde);
}

.rooms-secondary-message {
    max-width: 720px;
    margin: 0 auto;

    font-size: 15px;
    line-height: 1.7;

    color: #626262;
}



/* =========================
   VISTES
========================= */

.property-views {
    padding: 20px 24px 85px;
    background: var(--fondo);
}

.property-views-inner {
    max-width: 1450px;
    margin: 0 auto;
}

.views-title {
    margin-bottom: 28px;
    text-align: center;
}

.views-title h2 {
    margin-top: 7px;

    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 600;

    color: var(--verde);
}

.views-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.views-gallery figure {
    margin: 0;
    overflow: hidden;

    border-radius: 7px;

    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.views-gallery img {
    display: block;

    width: 100%;
    height: 330px;

    object-fit: cover;

    transition: transform .4s ease;
}

.views-gallery figure:hover img {
    transform: scale(1.02);
}



/* =========================
   TOTES LES HABITACIONS
========================= */

.all-rooms-section {
    padding: 85px 24px 100px;
    background: #ffffff;
}

.all-rooms-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.all-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}



/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .all-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .views-gallery {
        grid-template-columns: 1fr;
    }

}



/* =========================
   MÒBIL
========================= */

@media (max-width: 650px) {

    .rooms-page-intro {
        padding: 60px 18px 35px;
    }

    .rooms-page-intro h1 {
        font-size: 48px;
    }

    .rooms-main-message {
        font-size: 18px;
    }

    .property-views {
        padding: 15px 16px 60px;
    }

    .views-title h2 {
        font-size: 34px;
    }

    .views-gallery img {
        height: 240px;
    }

    .all-rooms-section {
        padding: 65px 16px;
    }

    .all-rooms-grid {
        grid-template-columns: 1fr;
    }

}/* Alinear todos los botones Reservar al final de cada card */

.room-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-book-btn {
    margin-top: auto;
}.room-features {
    margin-bottom: 24px;
}/* =========================
   APARCAMENT
========================= */

.parking-section {
    padding: 90px 24px;
    background: #ffffff;
}

.parking-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;

    align-items: center;
}

.parking-image {
    overflow: hidden;
    border-radius: 8px;

    box-shadow: 0 14px 38px rgba(0,0,0,.10);
}

.parking-image img {
    display: block;

    width: 100%;
    height: 520px;

    object-fit: cover;
    object-position: center;

    transition: transform .5s ease;
}

.parking-image:hover img {
    transform: scale(1.02);
}

.parking-content h2 {
    margin: 8px 0 20px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 600;

    color: var(--verde);
}

.parking-content p {
    margin-bottom: 14px;

    color: #626262;

    font-size: 16px;
    line-height: 1.75;
}

.parking-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 25px;
}

.parking-highlights span {
    padding: 8px 13px;

    background: #f2f3ef;
    border-radius: 30px;

    color: var(--verde);

    font-size: 12px;
    font-weight: 600;
}


/* TABLET / MOBILE */

@media (max-width: 850px) {

    .parking-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .parking-image img {
        height: 420px;
    }

}

@media (max-width: 550px) {

    .parking-section {
        padding: 65px 16px;
    }

    .parking-image img {
        height: 350px;
    }

}/* =========================
   ESPAIS I SERVEIS
========================= */

.services-section {
    padding: 90px 24px 100px;
    background: var(--fondo);
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* TARJETA */

.service-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(35, 66, 53, 0.10);
    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 17px 40px rgba(0,0,0,0.10);
}


/* FOTO */

.service-image {
    overflow: hidden;
}

.service-image img {
    display: block;

    width: 100%;
    height: 270px;

    object-fit: cover;

    transition: transform .45s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.03);
}


/* CONTENIDO */

.service-content {
    padding: 26px 26px 30px;
}

.service-content h3 {
    margin-bottom: 12px;

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;
    line-height: 1.1;
    font-weight: 600;

    color: var(--verde);
}

.service-content p {
    color: #626262;

    font-size: 14px;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MÒBIL */

@media (max-width: 620px) {

    .services-section {
        padding: 65px 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image img {
        height: 245px;
    }

}/* =========================
   ENTORN - HERO
========================= */

.entorn-hero {
    height: 560px;
    position: relative;
    overflow: hidden;
}

.entorn-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.entorn-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.62) 0%,
            rgba(0,0,0,.32) 48%,
            rgba(0,0,0,.05) 100%
        );
}

.entorn-hero-content {
    position: absolute;
    inset: 0;

    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.section-kicker.light {
    color: #e2c394;
}

.entorn-hero h1 {
    max-width: 750px;
    margin: 8px 0 18px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(50px, 6vw, 76px);
    line-height: .98;
    font-weight: 600;

    color: #fff;
}

.entorn-hero p {
    max-width: 610px;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(255,255,255,.92);
}



/* =========================
   INTRO
========================= */

.entorn-intro {
    padding: 90px 24px 65px;
    background: var(--fondo);
}

.entorn-intro-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.entorn-intro h2 {
    margin: 8px 0 22px;

    font-family: "Cormorant Garamond", serif;
    font-size: 54px;
    line-height: 1;

    color: var(--verde);
}

.entorn-intro p {
    margin-bottom: 13px;

    font-size: 16px;
    line-height: 1.8;

    color: #626262;
}



/* =========================
   DISTÀNCIES
========================= */

.entorn-distances {
    padding: 20px 24px 90px;
    background: var(--fondo);
}

.entorn-distances-inner {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.distance-card {
    padding: 30px;

    background: #fff;

    border: 1px solid rgba(35,66,53,.10);
    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.distance-time {
    display: inline-block;
    margin-bottom: 14px;

    color: var(--dorado);

    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.distance-card h3 {
    margin-bottom: 12px;

    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    line-height: 1.1;

    color: var(--verde);
}

.distance-card p {
    font-size: 14px;
    line-height: 1.7;

    color: #626262;
}



/* =========================
   BLOCS ENTORN
========================= */

.entorn-feature {
    padding: 95px 24px;

    background: #fff;
}

.entorn-feature.reverse {
    background: var(--fondo);
}

.entorn-feature-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;

    align-items: center;
}

.entorn-feature.reverse .entorn-feature-image {
    order: 2;
}

.entorn-feature.reverse .entorn-feature-content {
    order: 1;
}

.entorn-feature-image {
    overflow: hidden;
    border-radius: 8px;

    box-shadow: 0 15px 38px rgba(0,0,0,.10);
}

.entorn-feature-image img {
    display: block;

    width: 100%;
    height: 470px;

    object-fit: cover;
}

.entorn-feature-content h2 {
    margin: 8px 0 20px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 4vw, 54px);
    line-height: 1.05;

    color: var(--verde);
}

.entorn-feature-content p {
    margin-bottom: 14px;

    color: #626262;

    font-size: 15px;
    line-height: 1.8;
}



/* =========================
   GALERIA ENTORN
========================= */

.entorn-gallery-section {
    padding: 90px 24px 100px;
    background: #fff;
}

.entorn-gallery-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.entorn-gallery {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
}

.entorn-gallery figure {
    overflow: hidden;
    margin: 0;

    border-radius: 7px;
}

.entorn-gallery img {
    display: block;

    width: 100%;
    height: 330px;

    object-fit: cover;

    transition: transform .4s ease;
}

.entorn-gallery figure:hover img {
    transform: scale(1.025);
}



/* =========================
   CTA ENTORN
========================= */

.entorn-cta {
    padding: 85px 24px;

    background: var(--verde);

    text-align: center;
}

.entorn-cta-inner {
    max-width: 720px;
    margin: 0 auto;
}

.entorn-cta h2 {
    margin-bottom: 12px;

    font-family: "Cormorant Garamond", serif;
    font-size: 48px;

    color: #fff;
}

.entorn-cta p {
    margin-bottom: 28px;

    color: rgba(255,255,255,.82);

    font-size: 15px;
    line-height: 1.7;
}

.entorn-cta .btn-reserva {
    background: #fff;
    color: var(--verde);
}

.entorn-cta .btn-reserva:hover {
    background: var(--dorado);
    color: #fff;
}



/* =========================
   RESPONSIVE ENTORN
========================= */

@media (max-width: 900px) {

    .entorn-distances-inner {
        grid-template-columns: 1fr;
    }

    .entorn-feature-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .entorn-feature.reverse .entorn-feature-image,
    .entorn-feature.reverse .entorn-feature-content {
        order: initial;
    }

    .entorn-gallery {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 650px) {

    .entorn-hero {
        height: 520px;
    }

    .entorn-hero-content {
        width: calc(100% - 32px);
    }

    .entorn-hero h1 {
        font-size: 48px;
    }

    .entorn-hero p {
        font-size: 16px;
    }

    .entorn-intro {
        padding: 65px 18px 45px;
    }

    .entorn-intro h2 {
        font-size: 43px;
    }

    .entorn-feature {
        padding: 65px 16px;
    }

    .entorn-feature-image img {
        height: 330px;
    }

    .entorn-gallery-section {
        padding: 65px 16px;
    }

    .entorn-gallery {
        grid-template-columns: 1fr;
    }

    .entorn-gallery img {
        height: 260px;
    }

}/* =========================
   COM ARRIBAR
========================= */

.arrival-section {
    padding: 95px 24px 110px;
    background: #ffffff;
}

.arrival-inner {
    max-width: 1200px;
    margin: 0 auto;
}


/* INFORMACIÓ ÚTIL */

.arrival-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    margin-bottom: 75px;
}

.arrival-info-card {
    padding: 28px;

    background: var(--fondo);

    border: 1px solid rgba(35,66,53,.10);
    border-radius: 8px;
}

.arrival-info-card h3 {
    margin-bottom: 15px;

    font-family: "Cormorant Garamond", serif;
    font-size: 29px;

    color: var(--verde);
}

.arrival-info-card p {
    margin-bottom: 10px;

    font-size: 14px;
    line-height: 1.7;

    color: #626262;
}


/* RUTES */

.arrival-routes {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.arrival-route {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 55px;

    align-items: center;
}

.arrival-route.reverse .arrival-route-image {
    order: 2;
}

.arrival-route.reverse .arrival-route-content {
    order: 1;
}

.arrival-route-image {
    overflow: hidden;

    border-radius: 8px;

    box-shadow: 0 14px 38px rgba(0,0,0,.09);
}

.arrival-route-image img {
    display: block;

    width: 100%;
    height: 430px;

    object-fit: cover;
}

.route-number {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--dorado);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: .12em;
    text-transform: uppercase;
}

.arrival-route-content h3 {
    margin-bottom: 20px;

    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 1.05;

    color: var(--verde);
}

.arrival-route-content p {
    margin-bottom: 13px;

    color: #626262;

    font-size: 15px;
    line-height: 1.8;
}


/* TABLET */

@media (max-width: 900px) {

    .arrival-info-grid {
        grid-template-columns: 1fr;
    }

    .arrival-route {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .arrival-route.reverse .arrival-route-image,
    .arrival-route.reverse .arrival-route-content {
        order: initial;
    }

}


/* MÒBIL */

@media (max-width: 600px) {

    .arrival-section {
        padding: 65px 16px 75px;
    }

    .arrival-route-image img {
        height: 310px;
    }

    .arrival-route-content h3 {
        font-size: 35px;
    }

}/* =========================
   FOOTER
========================= */

.site-footer {
    background: var(--verde);
    color: #ffffff;
}


/* CONTENIDO PRINCIPAL */

.footer-main {
    max-width: 1320px;
    margin: 0 auto;
    padding: 65px 24px 50px;

    display: grid;
    grid-template-columns: 1fr 1fr .75fr .9fr 1.35fr;
    gap: 40px;

    align-items: start;
}


/* COLUMNAS */

.footer-column h3 {
    margin-bottom: 18px;

    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 600;

    color: #ffffff;
}

.footer-column p {
    margin-bottom: 10px;

    font-size: 13px;
    line-height: 1.7;

    color: rgba(255,255,255,.78);
}

.footer-column a {
    color: rgba(255,255,255,.88);
    text-decoration: none;

    transition: color .2s ease;
}

.footer-column a:hover {
    color: var(--dorado);
}


/* LOGO */

.footer-logo {
    display: block;

    width: 145px;
    height: auto;

    margin-bottom: 18px;

    background: #ffffff;
}


/* NAVEGACIÓ */

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 9px;

    font-size: 13px;
}


/* BOTÓ RESERVA */

.footer-reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    margin-top: 10px;
    padding: 0 22px;

    background: #ffffff;
    color: var(--verde) !important;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 600;

    transition:
        background .2s ease,
        color .2s ease;
}

.footer-reserve-btn:hover {
    background: var(--dorado);
    color: #ffffff !important;
}


/* =========================
   MAPA
========================= */

.footer-map {
    width: 100%;
    height: 175px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 7px;

    background: rgba(255,255,255,.08);
}

.footer-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}

.footer-map-link {
    display: inline-block;

    margin-top: 12px;

    color: var(--dorado) !important;

    font-size: 12px;
    font-weight: 600;
}

.footer-map-link:hover {
    color: #ffffff !important;
}


/* =========================
   FOOTER INFERIOR
========================= */

.footer-bottom {
    padding: 17px 24px;

    border-top: 1px solid rgba(255,255,255,.18);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    font-size: 12px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.62);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-legal a {
    color: rgba(255,255,255,.80);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--dorado);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }

    .footer-location {
        grid-column: span 2;
    }

    .footer-map {
        height: 230px;
    }

}


/* =========================
   MÒBIL
========================= */

@media (max-width: 650px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;

        padding: 50px 20px 40px;
    }

    .footer-location {
        grid-column: auto;
    }

    .footer-map {
        height: 210px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 10px 16px;
    }

}/* =========================
   INTRO COMERCIAL HOME
========================= */

.intro-hotel {
    padding: 70px 24px 35px;
    background: var(--fondo);
}

.intro-hotel-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-hotel h2 {
    margin: 8px 0 16px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 600;

    color: var(--verde);
}

.intro-hotel p {
    max-width: 760px;
    margin: 0 auto 10px;

    font-size: 15px;
    line-height: 1.75;

    color: #626262;
}/* ==================================================
   HEADER RESPONSIVE DEFINITIVO
================================================== */

.menu-toggle {
    display: none;
}

.mobile-language {
    display: none;
}


/* TABLET / MOBILE */

@media (max-width: 900px) {

    .site-header {
        position: relative;
        z-index: 1000;
    }

    .header-inner {
        position: relative;

        width: 100%;
        max-width: none;

        min-height: 82px;
        padding: 10px 16px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 10px;
    }


    /* LOGO */

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        width: 115px;
        height: auto;
    }


    /* ACCIONES DERECHA */

    .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;

        gap: 8px;

        margin-left: auto;
    }


    /* RESERVAR */

    .btn-reserva {
        min-height: 42px;

        padding: 0 15px;

        font-size: 13px;

        white-space: nowrap;
    }


    /* OCULTAMOS IDIOMA DE ESCRITORIO */

    .desktop-language {
        display: none !important;
    }


    /* HAMBURGUESA */

    .menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        padding: 0;

        background: transparent;

        border: 1px solid rgba(35, 66, 53, .25);
        border-radius: 4px;

        cursor: pointer;
    }

    .menu-toggle span {
        display: block;

        width: 20px;
        height: 2px;

        margin: 2.5px 0;

        background: var(--verde);

        transition:
            transform .25s ease,
            opacity .25s ease;
    }


    /* MENÚ DESPLEGABLE */

    .main-nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px 18px 18px;

        background: #ffffff;

        border-top: 1px solid rgba(35,66,53,.08);

        box-shadow:
            0 12px 25px rgba(0,0,0,.10);

        z-index: 999;
    }


    /* MENÚ ABIERTO */

    .site-header.menu-open .main-nav {
        display: flex;
    }


    /* LINKS */

    .main-nav a {
        display: block;

        width: 100%;

        padding: 13px 5px;

        border-bottom:
            1px solid rgba(35,66,53,.08);

        color: var(--verde);

        font-size: 14px;
        font-weight: 500;

        text-align: left;
    }


    /* IDIOMA DENTRO DEL MENÚ */

    .mobile-language {
        display: block;

        padding-top: 14px;
    }

    .language-btn-mobile {
        width: 100%;
        min-height: 44px;

        padding: 0 15px;

        background: #ffffff;
        color: var(--verde);

        border:
            1px solid rgba(35,66,53,.30);

        border-radius: 4px;

        font-family: "Poppins", sans-serif;
        font-size: 13px;
        font-weight: 500;

        text-align: left;

        cursor: pointer;
    }


    /* ANIMACIÓN HAMBURGUESA */

    .site-header.menu-open
    .menu-toggle span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .site-header.menu-open
    .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.menu-open
    .menu-toggle span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

}


/* MÓVILES MUY ESTRECHOS */

@media (max-width: 390px) {

    .header-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .logo img {
        width: 105px;
    }

    .btn-reserva {
        padding: 0 11px;

        font-size: 12px;
    }

    .menu-toggle {
        width: 39px;
        height: 39px;
    }

}/* =========================
   SELECTOR IDIOMES
========================= */

.language-switcher {
    position: relative;
}

.language-menu {
    display: none;

    position: absolute;
    top: calc(100% + 8px);
    right: 0;

    min-width: 165px;

    padding: 7px;

    background: #ffffff;

    border: 1px solid rgba(35,66,53,.12);
    border-radius: 6px;

    box-shadow: 0 12px 30px rgba(0,0,0,.12);

    z-index: 10020;
}

.language-switcher.open .language-menu {
    display: block;
}

.language-menu a {
    display: block;

    padding: 10px 12px;

    border-radius: 4px;

    color: var(--verde);

    font-size: 13px;
    text-decoration: none;
}

.language-menu a:hover {
    background: var(--fondo);
    color: var(--dorado);
}


/* IDIOMES MÒBIL */

.mobile-language-title {
    display: block;

    margin-bottom: 9px;

    color: #777;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: .10em;
    text-transform: uppercase;
}

.mobile-language-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.mobile-language-links a {
    padding: 9px 5px !important;

    border: 1px solid rgba(35,66,53,.18) !important;
    border-radius: 4px;

    text-align: center !important;

    font-size: 12px !important;
}