:root {
    --forest: #3c473f;
    --forest-dark: #1f2d26;
    --beige: #e8dece;
    --sand: #f6f1e8;
    --gold: #c2ac84;
    --gold-dark: #8f7653;
    --text: #3f3f3f;
    --muted: #6d675f;
    --white: #ffffff;
    --border: rgba(80, 65, 45, .12);
    --shadow: 0 30px 80px rgba(70, 55, 35, .12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--sand);
    color: var(--text);
    overflow-x: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

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

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

.container {
    width: min(1400px, 92%);
    margin: auto;
}

.narrow {
    max-width: 880px;
    margin: auto;
    text-align: center;
}

/* ==============================
   HEADER
============================== */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 999;
    padding: 14px 0;
    background: rgba(246, 241, 232, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(60, 47, 35, .08);
}

.header-container {
    width: min(1400px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 170px 1fr 330px;
    align-items: center;
    gap: 30px;
}

.logo,
.site-logo {
    display: flex;
    align-items: center;
}

.logo img,
.site-logo img {
    width: auto;
    height: 84px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,.10));
    transition: transform .3s ease;
}

.logo:hover img,
.site-logo:hover img {
    transform: scale(1.03);
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.desktop-nav a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: rgba(38, 38, 38, .78);
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(80,65,45,.10);
}

.lang-switcher a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(48,48,48,.62);
}

.header-booking-btn {
    white-space: nowrap;
}

.burger,
.mobile-menu {
    display: none;
}

/* ==============================
   BUTTONS
============================== */

.btn-primary,
.header-booking-btn,
.mobile-book-btn,
.booking-form button,
.request-submit,
.contact-form button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 34px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: linear-gradient(135deg, #d8bc83 0%, #b99d6e 48%, #8f7653 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .045em;
    box-shadow:
        0 14px 34px rgba(89,70,45,.24),
        inset 0 1px 0 rgba(255,255,255,.35);
    overflow: hidden;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
}

.btn-primary::before,
.header-booking-btn::before,
.mobile-book-btn::before,
.booking-form button::before,
.request-submit::before,
.contact-form button::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,0));
    pointer-events: none;
}

.btn-primary::after,
.header-booking-btn::after,
.mobile-book-btn::after,
.booking-form button::after,
.request-submit::after,
.contact-form button::after {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
    transition: transform .35s ease;
}

.btn-primary:hover,
.header-booking-btn:hover,
.mobile-book-btn:hover,
.booking-form button:hover,
.request-submit:hover,
.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 46px rgba(89,70,45,.34),
        inset 0 1px 0 rgba(255,255,255,.45);
}

.btn-primary:hover::after,
.header-booking-btn:hover::after,
.mobile-book-btn:hover::after,
.booking-form button:hover::after,
.request-submit:hover::after,
.contact-form button:hover::after {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.48);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .045em;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 14px 32px rgba(0,0,0,.14);
    transition: .35s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.16);
}

.btn-secondary-dark {
    color: #3d3d3d;
    border-color: rgba(60,60,60,.22);
    background: rgba(255,255,255,.35);
}

.btn-secondary-dark:hover {
    background: rgba(255,255,255,.75);
}

.header-booking-btn {
    min-height: 48px;
    padding: 0 26px;
    font-size: 12px;
}

/* ==============================
   HERO
============================== */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero video,
.hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 160px 20px 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-subtitle,
.section-label {
    display: block;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-subtitle {
    color: rgba(255,255,255,.88);
    letter-spacing: .32em;
}

.hero h1 {
    max-width: 980px;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 8vw, 124px);
    font-weight: 300;
    line-height: .92;
}

.hero p {
    max-width: 720px;
    margin-bottom: 38px;
    font-size: 20px;
    line-height: 1.6;
}

.hero-buttons,
.section-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.section-actions {
    margin-top: 34px;
}

.section-actions.align-left {
    justify-content: flex-start;
}

/* ==============================
   BOOKING BAR
============================== */

.booking-bar {
    position: relative;
    z-index: 20;
    margin-top: -70px;
}

.booking-form {
    max-width: 1180px;
    margin: auto;
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr .8fr .8fr 1.2fr;
    gap: 14px;
    align-items: stretch;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(80,65,45,.08);
    border-radius: 24px;
    box-shadow:
        0 28px 80px rgba(80,65,45,.16),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.booking-field {
    min-height: 72px;
    padding: 12px 16px 10px;
    background: #f4f1ec;
    border: 1px solid rgba(80,65,45,.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-field label {
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(70,58,42,.55);
}

.booking-field input,
.booking-field select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #393939;
    font-size: 15px;
    font-weight: 700;
}

.booking-form button {
    width: 100%;
    min-height: 72px;
    padding: 0 30px;
    border: none;
    white-space: nowrap;
}

/* ==============================
   SECTIONS COMMON
============================== */

.intro-section {
    padding: 150px 0;
}

.intro-section h2,
.immersive-content h2,
.event-content h2,
.seminar-section h2 {
    margin-bottom: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 300;
    line-height: 1.06;
}

.intro-section p,
.immersive-content p,
.event-content p,
.seminar-section p {
    font-size: 18px;
    line-height: 1.9;
}

/* ==============================
   IMMERSIVE BLOCKS
============================== */

.immersive-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 850px;
}

.immersive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.immersive-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px;
    background: var(--beige);
}

/* ==============================
   EVENT HERO
============================== */

.immersive-event-hero,
.full-image-section,
.event-section {
    position: relative;
    min-height: 900px;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.immersive-event-hero img,
.full-image-section img,
.event-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.immersive-event-hero .overlay,
.full-image-section .overlay,
.event-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.48));
}

.immersive-event-content,
.full-image-content,
.event-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 40px;
    color: white;
}

.immersive-event-content .section-label {
    color: rgba(255,255,255,.75);
}

.immersive-event-content h2,
.full-image-content h2 {
    margin-bottom: 34px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 7vw, 110px);
    line-height: .95;
    font-weight: 300;
}

.immersive-event-content p,
.full-image-content p {
    max-width: 760px;
    margin: auto auto 40px;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,.92);
}

/* ==============================
   PAGE HERO
============================== */

.page-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 170px 20px 90px;
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 96px);
    font-weight: 300;
    line-height: .98;
}

.page-hero-content p {
    font-size: 20px;
    line-height: 1.7;
}

/* ==============================
   LOGEMENTS
============================== */

.lodging-grid {
    display: flex;
    flex-direction: column;
    gap: 110px;
}

.lodging-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.lodging-card.reverse {
    direction: rtl;
}

.lodging-card.reverse .lodging-content {
    direction: ltr;
}

.lodging-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.lodging-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lodging-content h3 {
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 300;
}

.lodging-content p {
    margin-bottom: 30px;
    line-height: 1.9;
}

.lodging-features {
    list-style: none;
    margin-bottom: 38px;
}

.lodging-features li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 20px;
}

.lodging-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.equipment-section,
.seminar-section {
    padding: 140px 0;
}

.equipment-section {
    background: var(--beige);
}

.equipment-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.equipment-item {
    padding: 46px;
    background: white;
    border-radius: 26px;
    box-shadow: 0 20px 50px rgba(0,0,0,.05);
}

.equipment-item h4 {
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
}

/* ==============================
   AVAILABILITY
============================== */

.availability-page,
.availability-section {
    min-height: 100vh;
    padding: 170px 0 120px;
    background: var(--sand);
}

.availability-head,
.availability-summary {
    margin-bottom: 70px;
    text-align: center;
}

.availability-head h1,
.availability-summary h2,
.availability-empty h2 {
    margin: 20px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 86px);
    font-weight: 300;
    line-height: .95;
}

.availability-head p,
.availability-summary p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.availability-card {
    background: white;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

.availability-card-content {
    padding: 40px;
}

.availability-card h2,
.availability-card h3 {
    margin: 16px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
}

.availability-card p {
    margin-bottom: 28px;
    line-height: 1.8;
}

.availability-empty,
.availability-error {
    max-width: 800px;
    margin: auto;
    padding: 60px;
    border-radius: 34px;
    text-align: center;
    background: white;
    box-shadow: var(--shadow);
}

.availability-error {
    background: #fff0f0;
    color: #8f2f2f;
}

/* ==============================
   CONTACT / REQUEST
============================== */

.contact-request-page {
    padding: 170px 0 120px;
    background: var(--sand);
}

.contact-request-page .contact-grid,
.contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 90px;
    align-items: start;
}

.contact-content h1,
.contact-content h2 {
    margin: 24px 0 34px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(54px, 6vw, 92px);
    font-weight: 300;
    line-height: .95;
    color: #3d3d3d;
}

.contact-content p {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.75;
}

.contact-info {
    margin-top: 54px;
    display: grid;
    gap: 28px;
}

.contact-info h4 {
    margin-bottom: 4px;
    font-size: 15px;
}

.contact-info p {
    color: var(--text);
}

.premium-request-card,
.contact-form {
    padding: 44px;
    background: white;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.request-form {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.request-form-header {
    margin-bottom: 32px;
}

.request-form-header span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
}

.request-form-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1;
}

.form-row {
    margin-bottom: 22px;
}

.form-row label {
    display: block;
    margin-bottom: 9px;
    font-size: 13px;
    font-weight: 800;
    color: #5f564a;
}

.form-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.request-form input,
.request-form select,
.request-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(75,60,42,.08);
    border-radius: 16px;
    outline: none;
    background: #f4f1ec;
    color: #2f2f2f;
    font-size: 15px;
    font-weight: 500;
}

.request-form textarea,
.contact-form textarea {
    min-height: 150px;
    padding: 18px;
    resize: vertical;
    line-height: 1.5;
}

.request-submit {
    width: 100%;
    min-height: 62px;
    border: none;
}

.request-success,
.request-error {
    margin-bottom: 26px;
    padding: 18px 20px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.5;
}

.request-success {
    background: #edf8ef;
    color: #246b3a;
}

.request-success strong,
.request-success span {
    display: block;
}

.request-error {
    background: #fff0f0;
    color: #943232;
}

/* ==============================
   FOOTER
============================== */

.site-footer {
    background: #d8cab5;
    padding: 100px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 70px;
}

.footer-logo {
    width: 130px;
    margin-bottom: 22px;
}

.footer-grid h4 {
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
}

.footer-grid a {
    display: block;
    margin-bottom: 12px;
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,.10);
    text-align: center;
}

/* ==============================
   LEGAL / MAP
============================== */

.legal-section {
    padding: 180px 0 120px;
}

.legal-section h1 {
    margin-bottom: 60px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
}

.legal-section h2 {
    margin: 40px 0 20px;
}

.map-section iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1100px) {
    .header-container {
        grid-template-columns: 140px 1fr 280px;
    }

    .desktop-nav {
        gap: 26px;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
    }

    .booking-form button {
        grid-column: 1 / -1;
    }

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

@media (max-width: 992px) {
    .site-header {
        padding: 12px 0;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
    }

    .logo img,
    .site-logo img {
        height: 62px;
    }

    .desktop-nav,
    .lang-switcher,
    .header-booking-btn {
        display: none;
    }

    .burger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        border: none;
        background: none;
    }

    .burger span {
        width: 28px;
        height: 2px;
        background: var(--forest-dark);
    }

    .hero h1 {
        font-size: 68px;
    }

    .hero-buttons,
    .section-actions,
    .section-actions.align-left {
        width: 100%;
        justify-content: stretch;
    }

    .hero-buttons a,
    .section-actions a,
    .btn-primary,
    .btn-secondary,
    .mobile-book-btn {
        width: 100%;
    }

    .immersive-section,
    .lodging-card,
    .contact-request-page .contact-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .immersive-content,
    .lodging-content,
    .premium-request-card,
    .contact-form {
        padding: 36px 28px;
    }

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

    .form-two-cols {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1400px);
    }

    .hero-content {
        padding: 130px 18px 110px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero p {
        font-size: 17px;
    }

    .booking-bar {
        margin-top: -40px;
        padding: 0 14px;
    }

    .booking-form {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .intro-section,
    .availability-page,
    .availability-section,
    .contact-request-page {
        padding: 100px 0 70px;
    }

    .immersive-event-hero,
    .full-image-section,
    .event-section {
        min-height: 760px;
        height: 90vh;
    }

    .immersive-event-content,
    .full-image-content {
        padding: 22px;
    }

    .immersive-event-content h2,
    .full-image-content h2 {
        font-size: 50px;
    }

    .page-hero-content h1,
    .availability-head h1,
    .availability-summary h2,
    .contact-content h1,
    .contact-content h2 {
        font-size: 48px;
    }

    .availability-card-content,
    .availability-empty,
    .availability-error {
        padding: 32px 24px;
    }
}/* HOME HERO VIDEO ONLY */

.hero-video-only {
    min-height: 88vh;
    height: 88vh;
    margin-top: 0;
}

.hero-video-only video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* TEXT BELOW VIDEO */

.home-intro-booking {
    padding: 90px 0 46px;
    background: var(--sand);
    text-align: center;
}

.home-intro-booking h1 {
    max-width: 980px;
    margin: 0 auto 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 7vw, 112px);
    font-weight: 300;
    line-height: .94;
    color: #3d3d3d;
}

.home-intro-booking p {
    max-width: 680px;
    margin: 0 auto 34px;
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
}

.home-buttons {
    margin-top: 28px;
}

.booking-under-text {
    margin-top: 0;
    padding: 0 0 90px;
    background: var(--sand);
}

/* évite que le formulaire chevauche comme avant */
.booking-under-text .booking-form {
    transform: none;
}

@media(max-width: 768px) {
    .hero-video-only {
        height: 72vh;
        min-height: 560px;
    }

    .home-intro-booking {
        padding: 64px 0 34px;
    }

    .home-intro-booking h1 {
        font-size: 54px;
    }

    .home-intro-booking p {
        font-size: 17px;
    }

    .booking-under-text {
        padding-bottom: 70px;
    }
}/* =========================
   LODGING CAROUSEL
========================= */

.lodging-carousel {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 720px;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform .5s ease;
}

.carousel-track img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,.86);
    backdrop-filter: blur(10px);

    color: #2f2f2f;
    font-size: 28px;
    cursor: pointer;

    z-index: 5;

    transition: .3s ease;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.06);
}

.carousel-btn.prev {
    left: 24px;
}

.carousel-btn.next {
    right: 24px;
}

@media(max-width: 992px){

    .lodging-carousel{
        min-height: 420px;
    }

}.equipment-details-section {
    padding: 140px 0;
    background: var(--sand);
}

.equipment-details-head {
    max-width: 820px;
    margin: 0 auto 70px;
    text-align: center;
}

.equipment-details-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 24px;
}

.equipment-details-head p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
}

.equipment-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.equipment-detail-card {
    background: #fff;
    border-radius: 30px;
    padding: 38px;
    box-shadow: 0 24px 60px rgba(70,55,35,.08);
}

.equipment-detail-card.wide {
    grid-column: span 3;
}

.equipment-detail-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 24px;
}

.equipment-detail-card ul {
    columns: 2;
    list-style: none;
}

.equipment-detail-card:not(.wide) ul {
    columns: 1;
}

.equipment-detail-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.equipment-detail-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

@media(max-width: 992px) {
    .equipment-details-grid {
        grid-template-columns: 1fr;
    }

    .equipment-detail-card.wide {
        grid-column: auto;
    }

    .equipment-detail-card ul {
        columns: 1;
    }
}