:root {
    /*
     * Couleurs choisies depuis le Creator Studio.
     * Les valeurs de secours correspondent au thème Classic.
     */
    --primary: var(--site-primary, #b85c38);
    --secondary: var(--site-secondary, #2f4738);

    /*
     * Variantes calculées automatiquement.
     */
    --primary-dark: color-mix(in srgb, var(--primary) 78%, black);
    --primary-light: color-mix(in srgb, var(--primary) 22%, white);
    --secondary-dark: color-mix(in srgb, var(--secondary) 78%, black);
    --secondary-light: color-mix(in srgb, var(--secondary) 18%, white);

    /*
     * Palette neutre dérivée des couleurs du site.
     */
    --cream: color-mix(in srgb, var(--primary) 6%, white);
    --cream-dark: color-mix(in srgb, var(--primary) 13%, white);
    --white: #ffffff;
    --text: color-mix(in srgb, var(--secondary) 68%, black);
    --muted: color-mix(in srgb, var(--text) 66%, white);
    --border: color-mix(in srgb, var(--text) 14%, transparent);
    --surface: color-mix(in srgb, var(--primary) 3%, white);
    --surface-transparent: color-mix(in srgb, var(--white) 55%, transparent);

    --shadow:
        0 24px 60px
        color-mix(in srgb, var(--text) 14%, transparent);

    --shadow-soft:
        0 16px 35px
        color-mix(in srgb, var(--text) 8%, transparent);

    --overlay-strong:
        color-mix(in srgb, var(--secondary-dark) 80%, transparent);

    --overlay-medium:
        color-mix(in srgb, var(--secondary-dark) 45%, transparent);

    --overlay-light:
        color-mix(in srgb, var(--secondary-dark) 28%, transparent);

    --text-on-dark:
        color-mix(in srgb, var(--white) 82%, transparent);

    --text-on-dark-muted:
        color-mix(in srgb, var(--white) 68%, transparent);

    --border-on-dark:
        color-mix(in srgb, var(--white) 35%, transparent);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--cream);
    font-family: "DM Sans", sans-serif;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Lora", serif;
    line-height: 1.15;
}

h1 {
    max-width: 900px;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-size: clamp(2.8rem, 7vw, 5.8rem);
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
    font-size: 1.25rem;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.section {
    padding: 7rem 0;
}

.section-soft {
    background: var(--cream-dark);
}

.eyebrow {
    margin-bottom: .75rem;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 3rem;
}

.section-heading > p:last-child {
    color: var(--muted);
}

.section-heading-centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading-split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    max-width: none;
    gap: 2rem;
}

.section-heading-split > p {
    max-width: 430px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: .85rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

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

.btn-sm {
    min-height: 42px;
    padding: .6rem 1rem;
}

.btn-primary {
    color: var(--white);
    background: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-light {
    color: var(--text);
    background: var(--white);
}

.btn-outline {
    border-color: var(--border);
}

.btn-block {
    width: 100%;
}

.main-nav .btn:hover {
    transform: none;
}

.text-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.text-link span {
    display: inline-block;
    margin-left: .35rem;
    transition: .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    transition: .3s ease;
}

.site-header.is-scrolled {
    color: var(--text);
    background:
        color-mix(in srgb, var(--cream) 94%, transparent);
    box-shadow:
        0 10px 40px
        color-mix(in srgb, var(--text) 8%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
}


.brand strong,
.brand small {
    display: block;
}

.brand small {
    opacity: .68;
    font-size: .75rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.main-nav > a {
    text-decoration: none;
    font-size: .92rem;
    font-weight: 600;
}

.main-nav > a:not(.btn):hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    color: inherit;
    background: transparent;
    border: 0;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
}

.hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 100svh;
    padding: 10rem 0 7rem;
    background:
        url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=2000&q=90")
        center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.72),
            rgba(0,0,0,.28)
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.45),
            transparent 55%
        );
}
.hero-content {
    position: relative;
    z-index: 1;
}

.hero .eyebrow {
    color: var(--primary-light);
}

.hero-lead {
    margin-bottom: 2rem;
    color: var(--text-on-dark);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.hero-scroll {
    position: absolute;
    z-index: 2;
    bottom: 1.5rem;
    left: 50%;
    width: 26px;
    height: 42px;
    border: 1px solid
        color-mix(in srgb, var(--white) 65%, transparent);
    border-radius: 20px;
    transform: translateX(-50%);
}

.hero-scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 999px;
    transform: translateX(-50%);
    animation: scroll 1.7s infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 5rem;
}

.image-card {
    min-height: 560px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center;
}

.image-main {
    background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=90");
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2rem;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.stats > div {
    padding: 1.4rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats strong,
.stats span {
    display: block;
}

.stats strong {
    color: var(--secondary);
    font-family: "Lora", serif;
    font-size: 1.7rem;
}

.stats span {
    color: var(--muted);
    font-size: .82rem;
}

.intro-copy > p {
    color: var(--muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-card {
    padding: 2rem;
    background: var(--surface-transparent);
    border: 1px solid
        color-mix(in srgb, var(--text) 8%, transparent);
    border-radius: var(--radius-md);
    transition: .25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.2rem;
    color: var(--white);
    background: var(--secondary);
    border-radius: 50%;
    font-weight: 700;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.gallery-section {
    background: var(--secondary);
    color: var(--white);
}

.gallery-section .section-heading > p,
.gallery-section .section-heading-split > p {
    color: var(--text-on-dark-muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr .7fr;
    grid-template-rows: repeat(2, 240px);
    gap: 1rem;
}

.gallery-item {
    border: 0;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    cursor: zoom-in;
    transition: .25s ease;
}

.gallery-item:hover {
    filter: brightness(.85);
    transform: scale(.99);
}

.gallery-large {
    grid-row: span 2;
}

.image-gallery-1 {
    background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1300&q=90");
}

.image-gallery-2 {
    background-image: url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=900&q=90");
}

.image-gallery-3 {
    background-image: url("https://images.unsplash.com/photo-1616594039964-ae9021a400a0?auto=format&fit=crop&w=900&q=90");
}

.image-gallery-4 {
    background-image: url("https://images.unsplash.com/photo-1556912167-f556f1f39fdf?auto=format&fit=crop&w=900&q=90");
}

.image-gallery-5 {
    background-image: url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=900&q=90");
}

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

.booking-grid {
    display: grid;
    grid-template-columns: 1fr .82fr;
    align-items: center;
    gap: 5rem;
}

.booking-grid > div > p:not(.eyebrow) {
    color: var(--muted);
}

.booking-benefits {
    padding: 0;
    margin: 2rem 0 0;
    list-style: none;
}

.booking-benefits li {
    position: relative;
    margin: .8rem 0;
    padding-left: 1.8rem;
}

.booking-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.booking-card {
    padding: 2rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-full {
    grid-column: 1 / -1;
}

.booking-card label span {
    display: block;
    margin-bottom: .5rem;
    font-size: .85rem;
    font-weight: 700;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
    width: 100%;
    min-height: 50px;
    padding: .7rem .9rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
    border-color: var(--primary);
    outline: 3px solid
        color-mix(in srgb, var(--primary) 18%, transparent);
}


.booking-card textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.booking-card select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding-right: 3rem;
    background-color: var(--white);

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--text) 50%
        ),
        linear-gradient(
            135deg,
            var(--text) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 1.15rem) 50%,
        calc(100% - .85rem) 50%;

    background-size:
        .35rem .35rem,
        .35rem .35rem;

    background-repeat: no-repeat;
}

.booking-card small {
    display: block;
    margin-top: .8rem;
    color: var(--muted);
    text-align: center;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.location-map {
    position: relative;
    z-index: 0;
    min-height: 430px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            color-mix(in srgb, var(--secondary) 12%, white),
            color-mix(in srgb, var(--primary) 10%, white)
        );
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    isolation: isolate;
}

.location-map .leaflet-container {
    width: 100%;
    height: 100%;
    min-height: 430px;
    font-family: "DM Sans", sans-serif;
    background: var(--cream-dark);
}

.location-map .leaflet-control-zoom {
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
}

.location-map .leaflet-control-zoom a {
    color: var(--text);
    background: color-mix(in srgb, var(--white) 94%, transparent);
    border-bottom-color: var(--border);
}

.location-map .leaflet-control-zoom a:hover {
    color: var(--primary);
    background: var(--white);
}

.location-map .leaflet-control-attribution {
    padding: .12rem .35rem;
    color: var(--muted);
    background: color-mix(in srgb, var(--white) 78%, transparent);
    font-size: .62rem;
    opacity: .72;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.location-map .leaflet-control-attribution a {
    color: var(--primary-dark);
}

.location-map .leaflet-popup-content-wrapper {
    color: var(--text);
    background: var(--white);
    border: 1px solid
        color-mix(in srgb, var(--text) 8%, transparent);
    border-radius: 16px;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, .18);
}

.location-map .leaflet-popup-content {
    min-width: 220px;
    margin: 1.15rem 1.25rem 1.1rem;
    line-height: 1.45;
}

.location-map .leaflet-popup-tip {
    background: var(--white);
}

.location-map-popup strong,
.location-map-popup span {
    margin-bottom: .9rem;
    color: var(--muted);
    font-size: .86rem;
}

.location-map-popup strong {
    margin-bottom: .3rem;
    color: var(--secondary);
    font-family: "Lora", serif;
    font-size: 1.12rem;
    line-height: 1.25;
}

.location-map-popup span {
    margin-bottom: .75rem;
    color: var(--muted);
    font-size: .82rem;
}

.location-map-popup a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--primary);
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        color .2s ease,
        transform .2s ease;
}

.location-map-popup a:hover {
    color: var(--primary-dark);
    transform: translateX(2px);
}

.location-map-marker-wrapper {
    background: transparent;
    border: 0;
}

.location-map-marker {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: var(--primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, .24),
        0 0 0 7px color-mix(in srgb, var(--primary) 16%, transparent);
    animation: location-map-marker-appear .35s ease-out both;
}

.location-map-marker svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
    transform: translateY(-1px);
}

@keyframes location-map-marker-appear {
    from {
        opacity: 0;
        transform: scale(.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.location-map-loading,
.location-map-unavailable {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 430px;
    padding: 2rem;
    color: var(--secondary);
    text-align: center;
}

.location-map-loading {
    position: absolute;
    z-index: 2;
    inset: 0;
    gap: .75rem;
    background:
        linear-gradient(
            135deg,
            color-mix(in srgb, var(--secondary) 12%, white),
            color-mix(in srgb, var(--primary) 10%, white)
        );
    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.location-map.is-ready .location-map-loading {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.location-map-loading-icon {
    width: 34px;
    height: 34px;
    border: 3px solid
        color-mix(in srgb, var(--primary) 20%, transparent);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: location-map-spin .8s linear infinite;
}

@keyframes location-map-spin {
    to {
        transform: rotate(360deg);
    }
}

.location-map-unavailable {
    gap: .45rem;
}

.location-map-unavailable-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: .5rem;
    color: var(--white);
    background: var(--primary);
    border-radius: 50%;
    font-size: 1.6rem;
}

.location-map-unavailable strong {
    font-family: "Lora", serif;
    font-size: 1.15rem;
}

.location-map-unavailable > span:last-child {
    max-width: 320px;
    color: var(--muted);
    font-size: .9rem;
}

.distances {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.distances > div {
    padding: 1.2rem;
    border-left: 3px solid var(--primary);
    background: var(--surface-transparent);
}

.distances strong,
.distances span {
    display: block;
}

.distances span {
    color: var(--muted);
    font-size: .85rem;
}

.contact-section {
    padding-top: 0;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    color: var(--white);
    background: var(--secondary);
    border-radius: var(--radius-lg);
}

.contact-card h2 {
    max-width: 620px;
}

.contact-card p:not(.eyebrow) {
    margin-bottom: 0;
    color: var(--text-on-dark-muted);
}

.contact-actions {
    display: flex;
    flex-shrink: 0;
    gap: .8rem;
}

.contact-card .btn-outline {
    color: var(--white);
    border-color: var(--border-on-dark);
}

.contact-card .btn-outline:hover {
    color: var(--secondary);
    background: var(--white);
    border-color: var(--white);
}

.site-footer {
    padding: 5rem 0 2rem;
    color: var(--text-on-dark-muted);
    background: var(--secondary-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr 1fr;
    gap: 4rem;
}

.site-footer h3 {
    color: var(--white);
    font-size: 1rem;
}

.site-footer a,
.site-footer span {
    display: block;
    margin: .55rem 0;
    text-decoration: none;
}

.brand-footer {
    color: var(--white);
}

.footer-grid > div:first-child > p {
    max-width: 320px;
    margin-top: 1.4rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid
        color-mix(in srgb, var(--white) 10%, transparent);
    font-size: .8rem;
}

.lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem 6rem;
    color: var(--white);
    background:
        color-mix(in srgb, var(--secondary-dark) 94%, transparent);
}

.lightbox.is-open {
    display: flex;
}

.lightbox-image {
    width: min(100%, 1100px);
    height: min(72vh, 720px);
    border-radius: var(--radius-md);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--white);
    background: transparent;
    border: 0;
    font-size: 2.5rem;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    z-index: 2;
    top: 50%;

    display: grid;
    place-items: center;

    width: 54px;
    height: 54px;

    color: var(--white);
    background:
        color-mix(in srgb, var(--white) 8%, transparent);

    border: 1px solid
        color-mix(in srgb, var(--white) 18%, transparent);

    border-radius: 50%;

    font-size: 2.2rem;
    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);
    transition: .25s ease;
}

.lightbox-nav:hover {
    background:
        color-mix(in srgb, var(--white) 16%, transparent);

    border-color:
        color-mix(in srgb, var(--white) 32%, transparent);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    margin-top: .55rem;
    color:
        color-mix(in srgb, var(--white) 62%, transparent);
    font-size: .85rem;
}


@media (max-width: 640px) {
    .location-map .leaflet-control-zoom {
        display: none;
    }

    .location-map .leaflet-popup-content {
        min-width: 175px;
        margin: .95rem 1rem;
    }

    .location-map-popup strong {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .lightbox {
        padding: 1.5rem 3.5rem;
    }

    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1.8rem;
    }

    .lightbox-prev {
        left: .5rem;
    }

    .lightbox-next {
        right: .5rem;
    }
}

@media (max-width: 960px) {
    .main-nav {
        position: fixed;
        inset: 88px 1rem auto;
        display: none;
        align-items: stretch;
        flex-direction: column;
        padding: 1rem;
        color: var(--text);
        background: var(--cream);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .intro-grid,
    .booking-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 220px);
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .contact-card {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 5rem 0;
    }

    .header-inner {
        min-height: 74px;
    }

    .main-nav {
        inset: 74px 1rem auto;
    }

    .brand strong {
        font-size: .9rem;
    }

    .hero {
        padding-bottom: 5rem;
    }

    .hero-actions,
    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .section-heading-split {
        align-items: flex-start;
        flex-direction: column;
    }

    .image-card {
        min-height: 400px;
    }

    .features-grid,
    .form-grid,
    .distances,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        padding-bottom: .5rem;
        scroll-snap-type: x mandatory;
    }

    .gallery-item {
        min-width: 82vw;
        height: 300px;
        scroll-snap-align: start;
    }

    .booking-card,
    .contact-card {
        padding: 1.4rem;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: .5rem;
    }
}



.location-map-popup-city{
    display:block;
    margin:.35rem 0 .9rem;
    color:var(--muted);
    font-size:.86rem;
    line-height:1.45;
}

.location-map-popup a{
    display:inline-flex;
    align-items:center;
    gap:.4rem;
    color:var(--primary);
    text-decoration:none;
    font-weight:700;
}

.location-map-popup-link-icon,
.location-map-popup-link-label{
    display:inline;
    margin:0;
}
