/* ================================================
   RESET & BASE
   ================================================ */
body {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
    font-size: clamp(15px, 1.1vw, 17px);
    font-weight: 200;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 400;
    color: #2C2B28;
    margin: 0;
}

/* ================================================
   NAVBAR — DESKTOP (référence)
   ================================================ */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(20px, 1.8vw, 28px);
    font-weight: 400;
    color: white;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
}

.logo-line {
    display: none;
}

/* Sur fond clair (footer) */
.footer-logo .logo-text {
    color: #2C2418;
}



.hamburger {
    display: none;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(24px, 2.5vw, 48px) clamp(40px, 3.5vw, 80px);
    position: relative;
    z-index: 2;
}

.nav-bar {
    list-style: none;
    display: flex;
    gap: clamp(4px, 1.2vw, 24px);
    margin: 0;
    padding: 0;
    align-items: center;
}

nav > ul > li > a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    border: clamp(2px, 0.07vw, 4px) solid transparent;
    padding: clamp(15px, 1vw, 32px);
    transition: border-color 0.3s;
    white-space: nowrap;
    display: block;
}

nav > ul > li > a:hover {
    border-color: white;
}

.categorie {
    position: relative;
    padding-bottom: 0;
}

.categorie::after {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: 100%;
    height: 22px;
}

.souscategorie {
    position: absolute;
    top: calc(100% + 22px);
    left: 0;
    background-color: white;
    padding: 4px 10px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    min-width: 190px;
}

.souscategorie.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.categorie:hover .souscategorie {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.souscategorie a {
    color: black;
    text-transform: none;
    font-size: 0.9rem;
    font-family: 'Raleway', sans-serif;
    padding: 0 10px;
    white-space: nowrap;
    display: block;
    text-decoration: none;
}

.souscategorie li {
    padding: 16px 0;
}

.souscategorie li:last-child {
    border-bottom: none;
}

/* ================================================
   HERO — spécifique Gîte des Fées (overlay dégradé)
   ================================================ */
.hero {
    height: 100vh;
    position: relative;
    background-image: url("Images/feessalleamanger.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(30,60,90,0.45) 0%, transparent 30%),
        radial-gradient(ellipse at center, rgba(40,70,100,0.38) 0%, rgba(40,70,100,0.12) 55%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-label {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 1px 16px rgba(30,60,90,0.8), 0 1px 4px rgba(30,60,90,0.5);
    margin-bottom: 10px;
}

h1.titre-chambre {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 300;
    color: white;
    text-shadow: 0 2px 24px rgba(30,60,90,0.85), 0 1px 8px rgba(30,60,90,0.55);
    margin-bottom: 8px;
}

.nom-chambre-hero {
    font-family: 'Jost', sans-serif;
    font-size: clamp(13px, 0.9vw, 15px);
    font-weight: 300;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 14px rgba(30,60,90,0.75);
    margin-bottom: 28px;
}

.btn {
    text-decoration: none;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #f2e6db;
    color: #222;
    font-size: clamp(16px, 1.5vw, 24px);
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: #e0d1c0;
}

/* ================================================
   SECTION PRINCIPALE
   ================================================ */
.blanc {
    background-color: #FDF0E6;
    padding-bottom: clamp(40px, 5vw, 80px);
}

.label {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #B8965A;
    margin-bottom: 0.7rem;
}

.trait {
    width: 44px;
    height: 1px;
    background: #B8965A;
    margin: 12px 0 0;
}

/* ================================================
   INTRO
   ================================================ */
.gite-intro {
    display: flex;
    gap: clamp(40px, 6vw, 100px);
    align-items: flex-start;
    padding: clamp(48px, 6vw, 80px) clamp(32px, 6vw, 112px);
    max-width: 1200px;
    margin: 0 auto;
}

.gite-intro-text {
    flex: 1;
}

.gite-intro-text .trait {
    margin: 12px 0 1.6rem;
}

.gite-intro-text p {
    font-family: 'Jost', sans-serif;
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.85;
    font-weight: 300;
    color: #7A7169;
    margin-bottom: 1rem;
}

.gite-intro-infos {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid rgba(44, 37, 32, 0.12);
    padding-left: clamp(24px, 3vw, 48px);
}

.gite-info-item {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: 1px solid rgba(44, 37, 32, 0.08);
}

.gite-info-item:last-child {
    border-bottom: none;
}

.gite-info-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B8965A;
    margin-bottom: 4px;
}

.gite-info-value {
    font-family: 'Jost', sans-serif;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 300;
    color: #2C2B28;
}

/* ================================================
   GALERIE SLIDER
   ================================================ */
.galerie {
    padding: 0 clamp(32px, 6vw, 112px);
    margin-bottom: clamp(40px, 5vw, 60px);
}

.slider-outer {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}

.slider-img {
    display: none;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 20px;
}

.slider-img.active-img {
    display: block;
}

.slider-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.slider-thumb {
    flex: 1;
    height: 120px;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.45;
    transition: opacity 0.3s;
    border: 2px solid transparent;
    overflow: hidden;
}

.slider-thumb.active {
    opacity: 1;
    border-color: #B8965A;
}

.slider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}

.slider-arrow {
    background: none;
    border: 1px solid rgba(44, 37, 32, 0.2);
    color: #2C2B28;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.slider-arrow:hover {
    border-color: #B8965A;
    color: #B8965A;
}

.slider-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(44, 37, 32, 0.15);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.slider-dot.active {
    background: #B8965A;
    width: 20px;
    border-radius: 3px;
}

.slider-counter {
    font-size: 11px;
    color: rgba(44, 37, 32, 0.4);
    letter-spacing: 0.1em;
    min-width: 40px;
    text-align: center;
    font-family: 'Jost', sans-serif;
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.show {
    display: flex;
}

.lightbox-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.lightbox-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    max-width: 90vw;
}

.lightbox-cadre img {
    max-width: 80vw;
    max-height: 75vh;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    align-self: flex-end;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-dots {
    display: flex;
    gap: 6px;
}

.lightbox-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
}

.lightbox-dot.active {
    background: white;
}

/* ================================================
   ÉQUIPEMENTS
   ================================================ */
.section-equipements {
    padding: clamp(48px, 6vw, 80px) clamp(32px, 6vw, 112px);
}

.equipements-inner {
    display: flex;
    gap: clamp(40px, 6vw, 100px);
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.equipements-text {
    flex: 1;
}

.equipements-text h2 { margin-bottom: 0; }

.equipements-text .trait {
    margin: 12px 0 1.6rem;
}

.equipements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
}

.equipement-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.equipement-item img {
    width: 20px;
    height: 20px;
    opacity: 0.55;
    flex-shrink: 0;
}

.equipement-item p {
    color: #2C2B28;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 400;
    font-family: 'Jost', sans-serif;
}

.equipements-photos {
    flex: 0 0 36%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.equipement-photo { overflow: hidden; }

.equipement-photo img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.equipement-photo:hover img {
    transform: scale(1.04);
}

/* ================================================
   TARIFS
   ================================================ */
.section-tarifs {
    background-color: #FDF0E6;
    padding: clamp(48px, 6vw, 80px) clamp(32px, 6vw, 112px);
}

.tarifs-intro {
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.tarifs-intro h2 { margin-bottom: 0; }

.tarifs-intro .trait {
    margin: 12px 0 1rem;
}

.tarifs-intro p {
    font-family: 'Jost', sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    color: #7A7169;
    font-weight: 300;
    line-height: 1.8;
}

.tarif-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.tarif-card {
    border: 1px solid rgba(184, 150, 90, 0.3);
    overflow: hidden;
}

.tarif-card.featured {
    border-color: #B8965A;
}

.tarif-header {
    padding: 1.4rem 1.8rem;
    border-bottom: 1px solid rgba(184, 150, 90, 0.2);
}

.tarif-card.featured .tarif-header {
    background: #2C2B28;
}

.tarif-season {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #B8965A;
}

.tarif-season-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 2vw, 30px);
    font-weight: 400;
    color: #2C2B28;
}

.tarif-card.featured .tarif-season-name { color: white; }

.tarif-period {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #7A7169;
    margin-top: 4px;
    font-weight: 300;
}

.tarif-card.featured .tarif-period {
    color: rgba(255, 255, 255, 0.45);
}

.tarif-body {
    padding: 1.6rem 1.8rem;
}

.tarif-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(184, 150, 90, 0.15);
}

.tarif-row:last-child { border-bottom: none; }

.tarif-type {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #7A7169;
    font-weight: 300;
}

.tarif-type strong {
    display: block;
    color: #2C2B28;
    font-size: clamp(16px, 1.3vw, 19px);
    font-weight: 500;
    margin-bottom: 2px;
}

.tarif-price { text-align: right; }

.tarif-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 400;
    color: #2C2B28;
    line-height: 1;
}

.tarif-card.featured .tarif-amount { color: #B8965A; }

.tarif-unit {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    color: #7A7169;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tarif-note {
    max-width: 800px;
    padding: 1rem 1.6rem;
    background: rgba(184, 150, 90, 0.08);
    border-left: 3px solid #B8965A;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: #7A7169;
    font-style: italic;
    line-height: 1.8;
    margin-top: 1.8rem;
    margin-left: auto;
    margin-right: auto;
}

.tarif-extras {
    max-width: 800px;
    margin: 2rem auto 0;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(184, 150, 90, 0.2);
}

.tarif-extras-header {
    margin-bottom: 1rem;
}

.tarif-extras-intro {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #7A7169;
    margin: 4px 0 0;
    font-style: italic;
}

.tarif-options {
    max-width: 800px;
    margin: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tarif-option {
    flex: 1;
    min-width: 200px;
    border: 1px solid rgba(184, 150, 90, 0.25);
    padding: 1rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tarif-option-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B8965A;
}

.tarif-option-value {
    font-family: 'Jost', sans-serif;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 300;
    color: #2C2B28;
    line-height: 1.5;
}

/* ================================================
   SECTION AUTRE GÎTE — couleurs Buron
   ================================================ */
.autresection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 400px;
    background-image: url('Images/buron-allee2.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px;
    text-align: center;
    position: relative;
}

.autresection::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(180, 120, 60, 0.45) 0%, transparent 70%);
}

.autresection > * {
    position: relative;
    z-index: 1;
}

.label-autre {
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 8px rgba(180, 120, 60, 0.4);
}

.nom-chambre {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 400;
    color: white;
    margin: 0;
    text-shadow: 0 2px 20px rgba(180, 120, 60, 0.5), 0 1px 6px rgba(180, 120, 60, 0.3);
}

.prunelia {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 22px;
    transition: border-color 0.3s;
    background: transparent;
}

.prunelia:hover { border-color: white; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background-color: #D4C5B0;
    color: #2C2520;
    padding: clamp(48px, 5vw, 88px) clamp(32px, 5vw, 88px) clamp(24px, 3vw, 48px);
}

.footer-top {
    text-align: center;
    margin-bottom: clamp(28px, 3vw, 52px);
    padding-bottom: clamp(20px, 2vw, 36px);
    border-bottom: 1px solid rgba(44, 37, 32, 0.12);
}

.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(28px, 3vw, 48px);
    color: #2C2520;
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
}

.footer-tagline {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(44, 37, 32, 0.55);
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.ligne-footer {
    display: flex;
    gap: clamp(28px, 4vw, 80px);
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.item-list { min-width: 240px; }

.item-list h3 {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(44, 37, 32, 0.55);
    margin-bottom: 1.4rem;
}

.item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.95rem;
}

.item img {
    width: 15px;
    height: 15px;
    opacity: 0.5;
    filter: brightness(0);
    flex-shrink: 0;
}

.item a {
    color: rgba(44, 37, 32, 0.75);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: color 0.2s;
}

.item a:hover { color: #2C2520; }

.footer-links { margin-top: 1.8rem; }

.btn-footer {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: #2C2520;
    border: 1px solid rgba(44, 37, 32, 0.4);
    padding: 10px 20px;
    transition: border-color 0.3s, color 0.3s;
    background: transparent;
}

.btn-footer:hover {
    border-color: #2C2520;
    color: #2C2520;
}

.carte {
    flex: 1;
    min-width: 280px;
    max-width: 560px;
    height: 360px;
    border: none;
    opacity: 0.88;
}

.footer-bottom {
    margin-top: clamp(28px, 3vw, 48px);
    padding-top: clamp(14px, 1.5vw, 22px);
    border-top: 1px solid rgba(44, 37, 32, 0.12);
    text-align: center;
}

.footer-bottom p {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(44, 37, 32, 0.38);
    font-weight: 400;
}

/* ================================================
   MOBILE — max 1100px
   ================================================ */
@media (max-width: 1100px) {
/* --- Hero --- */
    .hero {
        height: 100dvh;
        background-position: center center;
    }

    .hero-content {
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 92%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    h1.titre-chambre {
        font-size: clamp(32px, 9vw, 52px);
    }

    .nom-chambre-hero {
        font-size: 11px;
        letter-spacing: 0.2em;
    }

    .btn {
        font-size: 1rem;
        padding: 11px 20px;
        margin-top: 16px;
    }

    /* --- Navbar mobile --- */
    nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        height: 64px;
        position: relative;
    }

    .logo {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        transition: opacity 0.15s;
    }

    .logo.logo-hidden {
        visibility: hidden;
        opacity: 0;
    }

    .logo-text {
        font-size: 22px;
        letter-spacing: 0.03em;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        position: static;
        width: 40px;
        height: 40px;
        font-size: 20px;
        background: rgba(255,255,255,0.18);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 8px;
        color: white;
        cursor: pointer;
        z-index: 1001;
        line-height: 1;
        transition: background 0.2s;
        flex-shrink: 0;
    }

    .hamburger:hover {
        background: rgba(255,255,255,0.3);
    }

    .nav-bar {
        position: fixed;
        display: none;
        flex-direction: column;
        top: 0;
        left: 0;
        right: 0;
        gap: 0;
        padding: 72px 0 24px;
        margin: 0;
        background-color: #FAF6F1;
        overflow-y: auto;
        max-height: 100dvh;
        box-shadow: 0 8px 40px rgba(0,0,0,0.14);
        z-index: 998;
    }

    .nav-bar.show { display: flex; }

    .nav-bar > li {
        border-bottom: 1px solid rgba(184,150,90,0.18);
        padding: 0;
    }

    .nav-bar > li:last-child { border-bottom: none; }

    nav > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 28px;
        color: #2C2520;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-family: 'Raleway', sans-serif;
        border: none;
        transition: color 0.2s, background 0.2s;
    }

    nav > ul > li > a:hover {
        border: none;
        color: #B8965A;
        background: rgba(184,150,90,0.07);
    }

    .categorie > a::after {
        content: "+";
        font-size: 1.2em;
        font-weight: 300;
        color: rgba(184,150,90,0.7);
        padding-left: 12px;
        display: inline-block;
    }

    .categorie > a.open::after { content: "−"; }
    .categorie:hover > a::after { transform: none; }
    .categorie { padding-bottom: 0; }
    .categorie::after { display: none; }

    .souscategorie {
        position: static;
        visibility: visible;
        opacity: 1;
        pointer-events: none;
        box-shadow: none;
        background-color: rgba(184,150,90,0.05);
        border-top: 1px solid rgba(184,150,90,0.12);
        padding: 0;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .souscategorie.show {
        pointer-events: auto;
        max-height: 300px;
    }

    .categorie:hover .souscategorie {
        max-height: 0;
        pointer-events: none;
    }

    .categorie:hover .souscategorie.show {
        max-height: 300px;
        pointer-events: auto;
    }

    .souscategorie li { padding: 0; }
    .souscategorie li:last-child { border-bottom: none; }

    .souscategorie a {
        display: block;
        padding: 13px 28px 13px 44px;
        font-size: 0.78rem;
        font-weight: 400;
        letter-spacing: 0.06em;
        color: rgba(44,37,32,0.6);
        font-family: 'Raleway', sans-serif;
        text-transform: none;
        transition: color 0.2s;
    }

    .souscategorie a:hover { color: #B8965A; }

    /* --- Intro --- */
    .gite-intro {
        flex-direction: column;
        padding: 36px 20px;
        gap: 28px;
    }

    .gite-intro-infos {
        flex: none;
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(44, 37, 32, 0.12);
        padding-left: 0;
        padding-top: 24px;
    }

    /* --- Galerie --- */
    .galerie {
        padding: 0 18px;
        margin-bottom: 32px;
    }

    .slider-thumbs { gap: 4px; }

    .slider-thumb {
        height: 52px;
        border-radius: 6px;
    }

    .slider-img { border-radius: 12px; }

    /* --- Équipements --- */
    .section-equipements {
        padding: 36px 20px;
    }

    .equipements-inner {
        flex-direction: column;
        gap: 28px;
    }

    .equipements-photos {
        width: 100%;
        flex: none;
    }

    .equipement-photo img { height: 160px; }

    .equipements-grid { gap: 12px 20px; }

    /* --- Tarifs --- */
    .section-tarifs {
        padding: 36px 20px;
    }

    .tarif-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 100%;
    }

    .tarif-header { padding: 1.2rem 1.4rem; }
    .tarif-body { padding: 1.2rem 1.4rem; }
    .tarif-note { font-size: 12px; }

    /* --- Autre gîte --- */
    .autresection {
        min-height: 280px;
        padding: 48px 24px;
    }

    /* --- Footer --- */
    .footer { padding: 32px 20px 20px; }

    .ligne-footer {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }

    .item-list {
        min-width: 0;
        width: 100%;
    }

    .carte {
        width: 100%;
        max-width: 100%;
        height: 260px;
        box-sizing: border-box;
    }
}

/* ================================================
   MOBILE — max 480px
   ================================================ */
@media (max-width: 480px) {

    h1.titre-chambre { font-size: clamp(26px, 10vw, 40px); }
    .hero-content { width: 95%; }
    nav { padding: 16px; }
    .hamburger { top: 16px; right: 16px; }

    .gite-intro { padding: 28px 16px; }
    .galerie { padding: 0 14px; }
    .slider-thumb { height: 40px; }

    .section-equipements { padding: 28px 16px; }

    .equipements-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .section-tarifs { padding: 28px 16px; }

    .tarif-header,
    .tarif-body { padding: 1rem 1.2rem; }

    .autresection {
        padding: 40px 16px;
        min-height: 240px;
    }
}