/* ================================================
   ESCAPADE PRINTEMPS - PREMIUM LANDING PAGE
   Conversion-optimized for Meta Ads traffic
   Premium, calm, elegant, spacious
   ================================================ */

/* -------------------- RESET & BASE -------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

.landing-escapade {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
    overflow-x: hidden;
    max-width: 100%;
}

/* Container utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    overflow-x: hidden;
}

.container--narrow {
    max-width: 800px;
    width: 100%;
    overflow-x: hidden;
}

/* Button styles — spécificité renforcée pour surclasser le thème */
.landing-escapade .btn,
.hero-escapade .btn {
    display: inline-block;
    padding: 18px 48px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none !important;
    text-align: center;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.3px;
    appearance: none;
    -webkit-appearance: none;
}

.landing-escapade .btn--primary,
.hero-escapade .btn--primary {
    background-color: #5a3d2b !important;
    color: #ffffff !important;
    border: none !important;
}

.landing-escapade .btn--primary:hover,
.hero-escapade .btn--primary:hover {
    background-color: #6d4933 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(90, 61, 43, 0.2);
}

.landing-escapade .btn--large,
.hero-escapade .btn--large {
    padding: 20px 56px;
    font-size: 18px;
}

/* -------------------- HERO SECTION -------------------- */
.hero-escapade {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-escapade__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-escapade__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-escapade__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.hero-escapade__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 2;
}

.hero-escapade__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 160px 24px 60px 24px;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20rem;
}

.hero-escapade__title {
    font-size: 58px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 3px 20px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.6);
}

.hero-escapade__subtitle {
    font-size: 21px;
    font-weight: 300;
    margin-bottom: 32px;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero-escapade__value {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 36px;
    padding: 18px 36px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    color: #ffffff;
}

.hero-escapade__bullets {
    list-style: none;
    margin-bottom: 40px;
    font-size: 17px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.6);
}

.hero-escapade__bullets li {
    display: inline-block;
    margin: 0 20px 12px 20px;
}

.hero-escapade__bullets li::before {
    content: none;
}

.hero-escapade__cta {
    margin-bottom: 32px;
}

.hero-escapade__note {
    font-size: 15px;
    font-style: italic;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Mobile: hide video, show image */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .hero-escapade__video {
        display: none;
    }

    .hero-escapade__image {
        display: block;
    }

    .hero-escapade {
        min-height: 600px;
    }

    .hero-escapade__content {
        padding: 120px 20px 40px 20px;
    }

    .hero-escapade__title {
        font-size: 38px;
    }

    .hero-escapade__subtitle {
        font-size: 18px;
    }

    .hero-escapade__value {
        font-size: 20px;
        padding: 12px 24px;
    }

    .hero-escapade__bullets {
        font-size: 15px;
    }

    .hero-escapade__bullets li {
        display: block;
        margin: 0 0 10px 0;
    }
}

/* -------------------- PACKAGES SECTION -------------------- */
.packages-escapade {
    padding: 120px 0;
    background-color: #fff;
    max-width: 100%;
    overflow-x: hidden;
}

.packages-escapade__title {
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: #2c2c2c;
    letter-spacing: -0.3px;
}

.packages-escapade__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: #fafaf8;
    border: 1px solid #e8e6e0;
    border-radius: 4px;
    padding: 56px 48px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: #d0cdc5;
}

.package-card--featured {
    border: 2px solid #5a3d2b;
    background: linear-gradient(135deg, #fffcf7 0%, #fff 100%);
    box-shadow: 0 4px 16px rgba(90, 61, 43, 0.08);
}

.package-card--featured:hover {
    border-color: #5a3d2b;
    box-shadow: 0 12px 32px rgba(90, 61, 43, 0.12);
}

.package-card__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5a3d2b;
    background: rgba(90, 61, 43, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    min-height: 24px;
}

.package-card__badge-container {
    min-height: 44px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-card__header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e6e0;
}

.package-card__title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.package-card__emotional {
    font-size: 17px;
    color: #5a3d2b;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 12px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.package-card__period {
    font-size: 14px;
    color: #888;
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.package-card__features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    font-size: 16px;
}

.package-card__features li {
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #4a4a4a;
}

.package-card__features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #5a3d2b;
    font-weight: 400;
}

.package-card__footer {
    padding-top: 24px;
    border-top: 1px solid #e8e6e0;
}

.package-card__price {
    font-size: 36px;
    font-weight: 300;
    color: #2c2c2c;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 16px;
}

.package-card__nuance {
    font-size: 14px;
    font-style: italic;
    color: #888;
    font-weight: 300;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 768px) {
    .packages-escapade {
        padding: 60px 0;
    }

    .packages-escapade__title {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .packages-escapade__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .package-card {
        padding: 32px 20px;
    }

    .package-card__badge-container {
        min-height: 38px;
    }

    .package-card__badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .package-card__title {
        font-size: 24px;
    }

    .package-card__emotional {
        font-size: 16px;
    }

    .package-card__period {
        font-size: 13px;
    }

    .package-card__price {
        font-size: 32px;
    }
}

/* -------------------- TRUST SECTION -------------------- */
.trust-escapade {
    padding: 120px 0;
    background-color: #fafaf8;
    max-width: 100%;
    overflow-x: hidden;
}

.trust-escapade__title {
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: #2c2c2c;
}

.trust-escapade__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
}

.trust-item__icon {
    color: #5a3d2b;
    margin-bottom: 24px;
    opacity: 0.8;
}

.trust-item__title {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.trust-item__text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .trust-escapade {
        padding: 60px 0;
    }

    .trust-escapade__title {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .trust-escapade__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* -------------------- STORY SECTION (with video) -------------------- */
.story-escapade {
    padding: 120px 0;
    background-color: #fff;
    max-width: 100%;
    overflow-x: hidden;
}

.story-escapade__title {
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 48px;
    color: #2c2c2c;
    letter-spacing: -0.3px;
}

.story-escapade__content {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.story-escapade__text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #4a4a4a;
    text-align: center;
    font-weight: 300;
}

.story-escapade__text:last-child {
    margin-bottom: 0;
}

.story-escapade__video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.story-escapade__video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.story-escapade__video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .story-escapade {
        padding: 60px 0;
    }

    .story-escapade__title {
        font-size: 28px;
    }

    .story-escapade__content {
        margin-bottom: 48px;
    }

    .story-escapade__text {
        font-size: 17px;
        text-align: left;
    }

    .story-escapade__video-container {
        border-radius: 4px;
    }
}

/* -------------------- CTA BOOKING SECTION -------------------- */
.cta-booking {
    padding: 120px 0;
    background: linear-gradient(135deg, #5a3d2b 0%, #6d4933 100%);
    text-align: center;
    color: #fff;
    max-width: 100%;
    overflow-x: hidden;
}

.cta-booking__title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 24px;
    color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.cta-booking__subtitle {
    font-size: 17px;
    margin-bottom: 56px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

/* Booking Form */
.booking-form {
    max-width: 600px;
    margin: 0 auto 64px auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 48px 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden; /* contient les débordements internes */
    box-sizing: border-box;
}

.booking-form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form__field {
    margin-bottom: 20px;
    min-width: 0; /* empêche le débordement dans les grilles CSS */
}

.booking-form__label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: left;
}

.booking-form__input,
.booking-form__select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(90, 61, 43, 0.2);
    border-radius: 4px;
    color: #2c2c2c;
    transition: all 0.3s ease;
    outline: none;
}

.booking-form__input:focus,
.booking-form__select:focus {
    background: #ffffff;
    border-color: #5a3d2b;
    box-shadow: 0 0 0 3px rgba(90, 61, 43, 0.1);
}

.booking-form__input::placeholder {
    color: #888;
}

.booking-form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232c2c2c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.booking-form__input[type="date"] {
    position: relative;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' stroke='%235a3d2b' stroke-width='1.5'/%3E%3Cpath d='M3 10h18M8 2v4M16 2v4' stroke='%235a3d2b' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01M16 18h.01' stroke='%235a3d2b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.booking-form__input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 16px;
    opacity: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.booking-form__checkbox-wrapper {
    margin: 24px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    text-align: left;
}

.booking-form__checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

.booking-form__checkbox-text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

.booking-form__submit {
    width: 100%;
    margin-top: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.cta-booking__payment-note {
    max-width: 600px;
    margin: 24px auto 0 auto;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    text-align: center;
    font-style: italic;
}

/* Separator */
.cta-booking__separator {
    max-width: 600px;
    margin: 0 auto 48px auto;
    position: relative;
    text-align: center;
}

.cta-booking__separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.cta-booking__separator-text {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 0 24px;
    background: linear-gradient(135deg, #5a3d2b 0%, #6d4933 100%);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

.cta-booking__actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 32px auto;
}

.cta-booking__btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background-color: #fff;
    color: #5a3d2b;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-booking__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-booking__icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.cta-booking__btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-booking__btn-label {
    font-size: 15px;
    font-weight: 500;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 4px;
}

.cta-booking__btn-detail {
    font-size: 13px;
    font-weight: 300;
    opacity: 0.8;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-booking__reassurance {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-booking__availability {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 300;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 768px) {
    .cta-booking {
        padding: 60px 0;
        overflow-x: hidden;
    }

    .cta-booking__title {
        font-size: 32px;
    }

    .cta-booking__subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .booking-form {
        padding: 32px 24px;
        margin-bottom: 48px;
        max-width: 100%;
    }

    .booking-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form__field {
        margin-bottom: 16px;
        min-width: 0;
        width: 100%;
    }

    .booking-form__label {
        font-size: 13px;
    }

    .booking-form__input,
    .booking-form__select {
        padding: 12px 14px;
        font-size: 16px; /* 16px évite le zoom auto iOS Safari */
        min-height: 44px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .booking-form__input[type="date"] {
        padding-right: 44px;
        background-position: right 14px center;
        width: 100%;
        max-width: 100%;
    }

    .booking-form__checkbox-wrapper {
        padding: 16px;
        margin: 20px 0;
    }

    .booking-form__checkbox-text {
        font-size: 12px;
    }

    .booking-form__submit {
        padding: 14px 28px;
        font-size: 15px;
        min-height: 52px;
    }

    .cta-booking__payment-note {
        font-size: 12px;
        margin-top: 20px;
    }

    .cta-booking__separator {
        margin-bottom: 40px;
    }

    .cta-booking__separator-text {
        font-size: 13px;
        padding: 0 20px;
    }

    .cta-booking__actions {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-booking__btn {
        padding: 18px 24px;
        min-height: 56px;
    }

    .cta-booking__btn-label {
        font-size: 14px;
    }

    .cta-booking__btn-detail {
        font-size: 12px;
    }
}

/* -------------------- ROOMS GALLERY SECTION -------------------- */
.rooms-gallery-escapade {
    padding: 120px 0;
    background-color: #fff;
    max-width: 100%;
    overflow-x: hidden;
}

.rooms-gallery-escapade__title {
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -0.3px;
}

.rooms-gallery-escapade__subtitle {
    font-size: 17px;
    text-align: center;
    margin-bottom: 80px;
    color: #888;
    font-weight: 300;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.rooms-gallery-escapade__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.rooms-gallery-escapade__item {
    text-align: center;
}

.rooms-gallery-escapade__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 24px;
    aspect-ratio: 4/3;
    background-color: #f5f5f5;
}

.rooms-gallery-escapade__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.rooms-gallery-escapade__item:hover .rooms-gallery-escapade__image {
    transform: scale(1.03);
}

.rooms-gallery-escapade__name {
    font-size: 18px;
    font-weight: 400;
    color: #2c2c2c;
    font-family: 'Georgia', 'Times New Roman', serif;
}

@media (max-width: 1024px) {
    .rooms-gallery-escapade__grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .rooms-gallery-escapade {
        padding: 60px 0;
    }

    .rooms-gallery-escapade__title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .rooms-gallery-escapade__subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .rooms-gallery-escapade__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .rooms-gallery-escapade__image-wrapper {
        margin-bottom: 16px;
    }

    .rooms-gallery-escapade__name {
        font-size: 18px;
    }
}

/* -------------------- FAQ SECTION -------------------- */
.faq-escapade {
    padding: 120px 0;
    background-color: #fafaf8;
    max-width: 100%;
    overflow-x: hidden;
}

.faq-escapade__title {
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: #2c2c2c;
}

.faq-escapade__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e8e6e0;
    border-radius: 4px;
    margin-bottom: 16px;
    padding: 28px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.faq-item[open] {
    border-color: #d0cdc5;
}

.faq-item__question {
    font-size: 18px;
    font-weight: 400;
    color: #2c2c2c;
    list-style: none;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: '+';
    float: right;
    font-size: 22px;
    color: #5a3d2b;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item[open] .faq-item__question::after {
    content: '−';
}

.faq-item__answer {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    padding-top: 20px;
    border-top: 1px solid #e8e6e0;
    font-weight: 300;
}

@media (max-width: 768px) {
    .faq-escapade {
        padding: 60px 0;
    }

    .faq-escapade__title {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .faq-item {
        padding: 24px;
    }

    .faq-item__question {
        font-size: 17px;
    }

    .faq-item__answer {
        font-size: 15px;
    }
}

/* -------------------- TRÈS PETITS ÉCRANS (iPhone SE, 375px) -------------------- */
@media (max-width: 375px) {
    .hero-escapade__title {
        font-size: 32px;
    }

    .hero-escapade__value {
        font-size: 17px;
        padding: 10px 18px;
    }

    .hero-escapade__content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .container {
        padding: 0 16px;
    }

    .package-card {
        padding: 28px 16px;
    }

    .booking-form {
        padding: 24px 16px;
    }

    .packages-escapade__title,
    .trust-escapade__title,
    .story-escapade__title,
    .cta-booking__title,
    .rooms-gallery-escapade__title,
    .faq-escapade__title {
        font-size: 28px;
    }
}

/* -------------------- ACCESSIBILITY -------------------- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for keyboard navigation */
.btn:focus-visible,
.faq-item:focus-visible {
    outline: 2px solid #5a3d2b;
    outline-offset: 4px;
}
