:root {
    color-scheme: light dark;
    --background: #f5f5f7;
    --background-alt: #ffffff;
    --surface: rgba(255, 255, 255, 0.9);
    --accent: #101827;
    --accent-light: #1f2937;
    --text: #1d1d1f;
    --text-muted: #6e6e73;
    --highlight: #0b84fe;
    --radius: 20px;
    --max-width: 1140px;
    --shadow: 0 30px 60px rgba(26, 32, 44, 0.12);
    --border: rgba(15, 23, 42, 0.08);
    --overlay-hero: rgba(12, 18, 30, 0.6);
    --overlay-hero-bottom: rgba(12, 18, 30, 0.75);
    --btn-secondary-bg: rgba(255, 255, 255, 0.16);
    --btn-secondary-border: rgba(255, 255, 255, 0.32);
    --gallery-shadow: rgba(15, 23, 42, 0.12);
    --card-shadow: rgba(15, 23, 42, 0.1);
    --reservation-bg: rgba(15, 23, 42, 0.35);
    --footer-bg: #0f172a;
    --footer-text: rgba(255, 255, 255, 0.84);
    --header-bg: rgba(245, 245, 247, 0.85);
    --header-border: rgba(15, 23, 42, 0.05);
    --scroll-btn-bg: linear-gradient(135deg, #0b84fe, #2563eb);
    --scroll-btn-color: #fff;
    --scroll-btn-shadow: 0 20px 40px rgba(11, 132, 254, 0.35);
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #080b12;
        --background-alt: #0f1421;
        --surface: rgba(20, 26, 37, 0.88);
        --accent: #f5f5f7;
        --accent-light: #d8dee9;
        --text: #f5f5f7;
        --text-muted: #9aa4b5;
        --highlight: #4ea8ff;
        --shadow: 0 30px 60px rgba(4, 6, 10, 0.7);
        --border: rgba(117, 127, 144, 0.14);
        --overlay-hero: rgba(0, 0, 0, 0.55);
        --overlay-hero-bottom: rgba(0, 0, 0, 0.82);
        --btn-secondary-bg: rgba(255, 255, 255, 0.12);
        --btn-secondary-border: rgba(255, 255, 255, 0.24);
        --gallery-shadow: rgba(0, 12, 28, 0.4);
        --card-shadow: rgba(0, 12, 28, 0.35);
        --reservation-bg: rgba(15, 19, 30, 0.55);
        --footer-bg: #02050d;
        --footer-text: rgba(255, 255, 255, 0.86);
        --header-bg: rgba(12, 18, 30, 0.82);
        --header-border: rgba(148, 163, 184, 0.08);
        --scroll-btn-bg: linear-gradient(135deg, #4ea8ff, #1d4ed8);
        --scroll-btn-color: #f5f5f7;
        --scroll-btn-shadow: 0 20px 40px rgba(0, 116, 199, 0.45);
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    transition: background 0.35s ease, color 0.35s ease;
}

::selection {
    background: rgba(11, 132, 254, 0.18);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

.wrapper {
    width: min(var(--max-width), 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    transition: background-color 0.35s ease, border-color 0.35s ease;
}

@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .site-header {
        background-color: var(--header-bg);
    }
}

.site-header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.4rem;
}

.logo {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.site-nav {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.95rem;
}

.site-nav a {
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
    background-color: rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.site-nav .cta {
    background: var(--highlight);
    color: #fff;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.18);
}

.site-nav .cta:hover {
    background: color-mix(in srgb, var(--highlight) 80%, #1d4ed8 20%);
}

.hero {
    position: relative;
    overflow: hidden;
    background-color: #060b12;
    color: #fff;
    padding: clamp(6rem, 10vw, 9rem) 0 clamp(5rem, 8vw, 7rem);
    min-height: 72vh;
}

.hero-activites {
    background: linear-gradient(120deg, rgba(16, 26, 38, 0.72), rgba(16, 24, 39, 0.32)), url('https://cdn.pixabay.com/photo/2016/11/18/17/20/lake-1834851_1920.jpg') center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -45% -20% auto -20%;
    height: 220%;
    background: radial-gradient(ellipse at center, rgba(11, 132, 254, 0.35) 0%, rgba(11, 132, 254, 0) 65%);
    animation: auroraDrift 22s ease-in-out infinite;
    mix-blend-mode: screen;
    opacity: 0.45;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--overlay-hero) 0%, rgba(12, 18, 30, 0.15) 65%, var(--overlay-hero-bottom) 100%);
    z-index: 2;
    transition: background 0.35s ease;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-media picture,
.hero-media img {
    width: 100%;
    height: 100%;
}

.hero-media picture {
    display: block;
    transform: scale(1.05);
}

.hero-media img {
    object-fit: cover;
    display: block;
}

.hero .wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    gap: clamp(2rem, 5vw, 3.5rem);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: end;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content {
    opacity: 0;
    transform: translate3d(-28px, 12px, 0);
    transition: opacity 0.6s ease 0.2s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
    will-change: transform, opacity;
    perspective: 1400px;
    perspective-origin: 15% 50%;
    transform-style: preserve-3d;
}

.is-ready .hero-content {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    animation: heroFloat 12s ease-in-out infinite 1.6s;
    animation-fill-mode: both;
}

.hero-content h1 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.hero-content h1 span {
    display: inline-block;
    transform: translate3d(0, 115%, -140px) rotateY(-28deg) rotateX(12deg);
    opacity: 0;
    transform-origin: 5% 100%;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.is-ready .hero-content h1 span {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0deg) rotateX(0deg);
}

.hero-content .lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    max-width: 36rem;
    margin-bottom: 2.4rem;
    color: rgba(255, 255, 255, 0.82);
    transform: translate3d(0, 34px, -90px) rotateX(12deg);
    opacity: 0;
    transform-origin: 0% 100%;
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.45s, opacity 0.5s ease 0.45s;
    will-change: transform, opacity;
}

.is-ready .hero-content .lead {
    transform: translate3d(0, 0, 0) rotateX(0deg);
    opacity: 1;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0b84fe, #2563eb);
    color: #fff;
    box-shadow: 0 20px 40px rgba(11, 132, 254, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 55px rgba(11, 132, 254, 0.45);
}

.btn-secondary {
    background-color: var(--btn-secondary-bg);
    color: #fff;
    border: 1px solid var(--btn-secondary-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.34);
    transform: translateY(-4px);
}

.hero-info {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    perspective: 1400px;
    transform-style: preserve-3d;
}

.info-card {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(8, 11, 18, 0.18);
    transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.hero-info .info-card {
    opacity: 0;
    transform: translate3d(32px, 18px, 0);
    transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    transform-origin: 50% 50%;
}

.hero-info .info-card:nth-child(odd) {
    transform: translate3d(-210px, 32px, -260px) rotateY(32deg) rotateX(10deg);
}

.hero-info .info-card:nth-child(even) {
    transform: translate3d(210px, 32px, -260px) rotateY(-32deg) rotateX(10deg);
}

.hero-info .info-card:nth-child(1) { transition-delay: 0.35s; }
.hero-info .info-card:nth-child(2) { transition-delay: 0.45s; }
.hero-info .info-card:nth-child(3) { transition-delay: 0.55s; }
.hero-info .info-card:nth-child(4) { transition-delay: 0.65s; }

.is-ready .hero-info .info-card {
    opacity: 1;
}

.is-ready .hero-info .info-card:nth-child(odd) {
    animation: cardEntryLeft 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards, infoFloat 12s ease-in-out infinite alternate 1.1s;
}

.is-ready .hero-info .info-card:nth-child(even) {
    animation: cardEntryRight 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards, infoFloat 12s ease-in-out infinite alternate 1.1s;
}

body:not(.is-ready) .hero-content,
body:not(.is-ready) .hero-info .info-card {
    opacity: 1;
    transform: none;
    animation: none;
}

body:not(.is-ready) .hero .wrapper {
    transform: none !important;
}

body:not(.is-ready) .feature,
body:not(.is-ready) .card,
body:not(.is-ready) .destination-grid article {
    opacity: 1;
    transform: none;
}

body:not(.is-ready) .hero-content .lead,
body:not(.is-ready) .hero-content h1 span {
    opacity: 1;
    transform: none;
}

body:not(.is-ready) .feature:hover,
body:not(.is-ready) .card:hover,
body:not(.is-ready) .destination-grid article:hover {
    transform: translate3d(0, -8px, 0);
}

.info-card h3 {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.72);
}

.info-card p {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.5;
}

.info-card a {
    color: inherit;
}

.section {
    padding: clamp(4.5rem, 7vw, 6rem) 0;
}

.section-alt {
    background-color: var(--background-alt);
}

.section-accent {
    background: linear-gradient(135deg, #0f172a, #1f2937 45%, #111827 100%);
    color: #fff;
}

.section-header {
    margin-bottom: clamp(2.2rem, 4vw, 3rem);
    max-width: 40rem;
}

.section-header h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.surtitle {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.section-accent .surtitle,
.section-accent .section-header h2 {
    color: rgba(255, 255, 255, 0.85);
}

.hero .surtitle {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid,
.cards-grid,
.gallery-grid,
.equipements-grid,
.destination-grid {
    display: grid;
    gap: clamp(1.6rem, 3vw, 2.4rem);
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature {
    background: var(--background-alt);
    border-radius: var(--radius);
    padding: clamp(2rem, 4vw, 2.4rem);
    box-shadow: 0 20px 45px var(--card-shadow);
    border: 1px solid var(--border);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.35s ease, background 0.35s ease, opacity 0.4s ease;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.feature p {
    color: var(--text-muted);
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature,
.card,
.destination-grid article {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --lift: 0px;
    transform: translate3d(0, calc(24px + var(--lift)), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    opacity: 0;
}

.feature.is-visible,
.card.is-visible,
.destination-grid article.is-visible {
    transform: translate3d(0, var(--lift), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .feature.is-visible:hover,
    .card.is-visible:hover,
    .destination-grid article.is-visible:hover {
        --lift: -10px;
        box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
    }
}

.card {
    background: var(--background-alt);
    padding: clamp(2rem, 4vw, 2.4rem);
    border-radius: var(--radius);
    box-shadow: 0 22px 50px var(--card-shadow);
    border: 1px solid var(--border);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease, opacity 0.4s ease;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
}

.card p {
    color: var(--text-muted);
}

.card-media {
    display: block;
    width: 100%;
    height: clamp(180px, 28vw, 220px);
    object-fit: cover;
    border-radius: calc(var(--radius) - 6px);
    margin-bottom: 1.3rem;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card.is-visible:hover .card-media {
    transform: scale(1.03);
    box-shadow: 0 28px 50px rgba(15, 23, 42, 0.2);
}

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.4rem;
    font-weight: 600;
    color: var(--highlight);
    transition: transform 0.3s ease, color 0.3s ease;
}

.more-link::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.card:hover .more-link {
    transform: translateX(4px);
}

.card:hover .more-link::after {
    transform: translateX(2px);
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-grid figure {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 18px 35px var(--gallery-shadow);
    background-color: var(--background-alt);
    border: 1px solid var(--border);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.gallery-grid picture {
    display: block;
}

.gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.07);
}

.gallery-grid figure:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.16);
}

.gallery-grid figcaption {
    padding: 1rem 1.2rem 1.4rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.equipements-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.equipements-grid h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}

.equipements-grid ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    color: var(--text-muted);
}

.destination-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.destination-grid article {
    background: var(--background-alt);
    border-radius: var(--radius);
    padding: clamp(2rem, 4vw, 2.4rem);
    box-shadow: 0 18px 38px var(--card-shadow);
    border: 1px solid var(--border);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease, opacity 0.4s ease;
}

.destination-grid h3 {
    margin-bottom: 0.8rem;
}

.destination-grid p {
    color: var(--text-muted);
}

@keyframes heroFloat {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -6px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes infoFloat {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes auroraDrift {
    0% { transform: translate3d(-12%, -8%, 0) rotate(0deg); opacity: 0.3; }
    50% { transform: translate3d(6%, 6%, 0) rotate(12deg); opacity: 0.55; }
    100% { transform: translate3d(-12%, -8%, 0) rotate(0deg); opacity: 0.3; }
}

@keyframes cardEntryLeft {
    0% { opacity: 0; transform: translate3d(-210px, 48px, -260px) rotateY(38deg) rotateX(12deg); }
    70% { opacity: 1; transform: translate3d(18px, -6px, 20px) rotateY(-6deg) rotateX(-2deg); }
    100% { opacity: 1; transform: translate3d(0, 0, 0) rotateY(0deg) rotateX(0deg); }
}

@keyframes cardEntryRight {
    0% { opacity: 0; transform: translate3d(210px, 48px, -260px) rotateY(-38deg) rotateX(12deg); }
    70% { opacity: 1; transform: translate3d(-18px, -6px, 20px) rotateY(6deg) rotateX(-2deg); }
    100% { opacity: 1; transform: translate3d(0, 0, 0) rotateY(0deg) rotateX(0deg); }
}

.section-accent .wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reservation-content {
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.reservation-actions {
    background: var(--reservation-bg);
    border-radius: var(--radius);
    padding: clamp(1.8rem, 4vw, 2.4rem);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 60px rgba(2, 6, 23, 0.3);
}

.reservation-actions a {
    color: #fff;
}

.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 2.5rem 0;
}

.site-footer .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    align-items: flex-start;
    justify-content: space-between;
}

.site-footer .logo {
    font-size: 1.1rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
    color: var(--highlight);
}

.scroll-top {
    position: fixed;
    bottom: clamp(1.5rem, 4vw, 2.4rem);
    right: clamp(1.2rem, 3vw, 2rem);
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--scroll-btn-bg);
    color: var(--scroll-btn-color);
    border: none;
    box-shadow: var(--scroll-btn-shadow);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    z-index: 60;
}

.scroll-top svg {
    width: 1.2rem;
    height: 1.2rem;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

@media (max-width: 960px) {
    .site-header .wrapper {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .site-nav {
        flex: 1 1 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero {
        min-height: 60vh;
        padding: 5.5rem 0 4.5rem;
    }

    .hero .wrapper {
        grid-template-columns: 1fr;
    }

    .hero-info {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 4.5rem 0 3rem;
    }

    .hero-actions {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
    }

    .hero .wrapper {
        text-align: center;
        gap: 2rem;
        transform: none !important;
    }

    .hero-content {
        transform: none;
        opacity: 1;
        transition: none;
        perspective: none;
    }

    .is-ready .hero-content {
        animation: none;
    }

    .hero-content h1 span {
        opacity: 1;
        transform: none !important;
        transition: none;
    }

    .hero-content .lead {
        font-size: 1rem;
        transform: none;
        opacity: 1;
        transition: none;
    }

    .hero-info {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(220px, 1fr);
        overflow-x: auto;
        padding-bottom: 0.8rem;
        gap: 1rem;
        scrollbar-width: thin;
        margin-inline: -0.5rem;
        padding-inline: 0.5rem;
        scroll-snap-type: x proximity;
    }

    .hero-info::-webkit-scrollbar {
        height: 6px;
    }

    .hero-info::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 999px;
    }

    .hero-info .info-card {
        min-width: 220px;
        transform: none;
        opacity: 1;
        transition: none;
        scroll-snap-align: start;
    }

    .is-ready .hero-info .info-card {
        animation: none;
    }

    .feature,
    .card,
    .destination-grid article {
        padding: 1.6rem;
    }

    .cards-grid,
    .features-grid,
    .gallery-grid,
    .equipements-grid,
    .destination-grid {
        gap: 1.4rem;
    }

    .reservation-actions {
        text-align: center;
    }

    .site-footer .wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
