/* =========================================================
   style.css — Le Mas de Combeau
   ========================================================= */
html { 
            background: var(--cream); 
            scroll-padding-top: 120px; /* Hauteur du header + espace de respiration */
        }
body {
    background-color: #FBF9F6;
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
}

.serif { font-family: 'Playfair Display', serif; }

.card-zoom:hover img {
    transform: scale(1.05);
}

/* =========================================================
   HEADER & BLASON — Logique scroll (V1.5)
   ========================================================= */

#main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    /* height: 88px; */
    transform: translateY(-120px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease, height 0.4s ease;
    z-index: 60;
    opacity: 0;
    pointer-events: none;
}

#dynamic-blason {
    position: fixed;
    top: 0;
    left: 50%;
    width: 120px;
    height: 114px;
    background-color: #4A5D4E;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    transform: translateX(-50%) translateY(-120px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), all 0.4s ease;
    z-index: 70;
    pointer-events: none;
}

.blason-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: white;
    margin-top: 10px;
    text-align: center;
    line-height: 1.4;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

body.scrolled-down #main-header {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    /* height: 88px; */
}

body.scrolled-down #dynamic-blason {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
    height: 114px;
    padding-top: 16px;
}

body.scrolled-down .blason-text {
    opacity: 1;
    transform: translateY(0);
}

body.scrolled-down #dynamic-blason svg {
    transform: scale(1);
}

/* =========================================================
   PAGES INTÉRIEURES
   ========================================================= */

body.inner-page #main-header {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

body.inner-page #dynamic-blason {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

body.inner-page:not(.scrolled-down) #main-header {
    height: 60px;
}

body.inner-page:not(.scrolled-down) #dynamic-blason {
    height: 90px;
    padding-top: 16px;
}

body.inner-page:not(.scrolled-down) #dynamic-blason svg {
    transform: scale(1);
    transform-origin: top center;
}

body.inner-page:not(.scrolled-down) .blason-text {
    opacity: 0;
    transform: translateY(-10px);
}

/* =========================================================
   RESPONSIVE BLASON (Mobile)
   ========================================================= */
@media (max-width: 768px) {
    #dynamic-blason {
        /* width: 105px; */
        height: 45px;
        /* padding-top: 12px; */
    }
    .blason-text {
    font-size: 9px;
    letter-spacing: 0.2em;
    margin-top: 7px;
}

    body.scrolled-down #dynamic-blason {
        height: 108px;
        /* padding-top: 12px; */
    }

    body.inner-page:not(.scrolled-down) #dynamic-blason {
        height: 75px;
        /* padding-top: 10px; */
    }
}

/* =========================================================
   MENU MOBILE
   Aucune règle ici — tout est géré en styles inline
   directement dans components/header.html.
   Toute règle CSS ici sur #mobile-menu écraserait
   le display:none inline et casserait l'affichage.
   ========================================================= */

/* =====================================================
    TYPOGRAPHIE ÉDITORIALE
    Cormorant Garamond — corps de texte haut de gamme
    Cormorant SC — petites capitales pour labels
===================================================== */
:root {
    --ink:    #1A1A1A;
    --cream:  #FBF9F6;
    --bronze: #84754E;
    --olive:  #4A5D4E;
    --border: #E5E5E5;
    --muted:  #9A9088;
    --dark:   #0D0C0B;
}

/* html { background: var(--cream); } */

.font-display   { font-family: 'Cormorant Garamond', serif; }
.font-display-sc{ font-family: 'Cormorant SC', serif; }
.font-body      { font-family: 'Inter', sans-serif; }

/* Grain texture overlay — atmosphère photographique */
body::after {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* =====================================================
    HERO — CINÉMATIQUE
===================================================== */
#hero {
    position: relative;
    height: 100svh;
    min-height: 700px;
    overflow: hidden;
    background: var(--dark);
}
#hero-parallax-wrap {
    position: absolute; inset: 0;
    width: 100%; height: 110%;
    will-change: transform;
}
#hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; /* Redescend à 100% car le wrapper fait 110% */
    object-fit: cover;
    filter: brightness(0.8) contrast(1.05);
    opacity: 0; /* Invisible par défaut — l'animation est déclenchée par JS au bon moment */
    transition: opacity 1.5s ease-in-out;
}
/* Animation déclenchée uniquement quand l'image Sanity est chargée (classe ajoutée par main.js) */
#hero-img.hero-revealed {
    animation: heroReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroReveal {
    from { transform: scale(1.08); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Gradient sophistiqué — haut sombre, bas très sombre */
#hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(13, 12, 11, 0.05) 0%,
            rgba(13,12,11,0.08) 50%,
            rgba(13,12,11,0.15) 55%,
            rgba(13,12,11,0.75) 85%,
            rgba(13,12,11,0.9) 100%
        );
}

/* Ligne décorative verticale gauche */
#hero::before {
    content: '';
    position: absolute;
    left: 4rem; top: 15%; bottom: 15%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
    z-index: 2;
    animation: lineReveal 2s ease 0.5s both;
}

@keyframes lineReveal {
    from { opacity: 0; transform: scaleY(0); transform-origin: top; }
    to   { opacity: 1; transform: scaleY(1); }
}

/* Contenu hero */
.hero-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    padding: 0 4rem 5rem;
}

@media (max-width: 768px) {
    .hero-content { padding: 0 1.5rem 4rem; }
    #hero::before { display: none; }
}

/* Numéro éditorial top-right */
.hero-issue {
    position: absolute;
    top: 2.5rem; right: 4rem;
    z-index: 3;
    font-family: 'Cormorant SC', serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.768);
    animation: fadeUp 1s ease 1s both;
}

/* Titre hero — typographie monumentale */
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3.5rem, 9vw, 9rem);
    line-height: 0.92;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
}

/* Sous-titre */
.hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.842);
    margin-bottom: 3rem;
    max-width: 400px;
}

/* Métadonnées hero */
.hero-meta {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-meta-item {
    font-family: 'Cormorant SC', serif;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.702);
}

.hero-meta-sep {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
}

/* CTA hero */
.hero-cta {
    margin-left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Cormorant SC', serif;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 4px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.hero-cta:hover {
    border-color: var(--bronze);
    color: rgba(255,255,255,0.8);
}

.hero-cta-arrow {
    width: 32px; height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.4s ease;
}

.hero-cta:hover .hero-cta-arrow { width: 48px; }

.hero-cta-arrow::after {
    content: '';
    position: absolute;
    right: 0; top: -3px;
    width: 6px; height: 6px;
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    transform: rotate(45deg);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    right: 4rem; bottom: 5rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-family: 'Cormorant SC', serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.3);
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--bronze);
    animation: scrollLine 2s ease-in-out infinite 1.5s;
}

@keyframes scrollLine {
    0%   { top: -100%; }
    100% { top: 200%; }
}

/* =====================================================
    ANIMATIONS GÉNÉRALES AU SCROLL
===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
    SECTION INTRO — ÉDITORIALE
===================================================== */
.section-intro {
    padding: 8rem 4rem;
    /* padding: 8rem 0rem 8rem 0rem; */
    max-width: 1400px;
    margin: 0 auto 0 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: end;
}

@media (max-width: 900px) {
    .section-intro {
        grid-template-columns: 1fr;
        padding: 1rem 1rem;
        gap: 0rem;
    }
}

.section-label {
    font-family: 'Cormorant SC', serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--bronze);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px; height: 1px;
    background: var(--bronze);
}

.section-intro-number {
    z-index: 10;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 300;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(26,26,26,0.12);
    letter-spacing: -0.02em;
}

.section-intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.section-intro-text em { font-style: italic; color: var(--bronze); }

/* =====================================================
    IMAGE ÉDITORIALE INCORPORÉE (STYLE KINFOLK)
===================================================== */
.section-intro {
    position: relative;
    z-index: 1;
}

.intro-decor-wrap {
    position: absolute;
    top: 34%;
    left: 0;
    width: 40%;
    height: 40%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.intro-decor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.35); /* Zoom élégant dans la texture de la pierre et du paysage */
    transform-origin: left center;
}

.intro-decor-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* TRICHE VOILE BLANC/CRÈME : L'image commence nette à gauche et s'efface complètement 
        dans le fond sable clair (#FBF9F6) du site pour ne jamais gêner le texte noir */
    background: linear-gradient(to right, 
        rgba(251, 249, 246, 0.03) 0%, 
        rgba(251, 249, 246, 0.466) 40%,
        rgba(251, 249, 246, 0.93) 85%,
        rgb(251, 249, 246) 100%
    );
}

/* Désactivation propre sur tablettes et mobiles pour préserver la grille minimaliste */
@media (max-width: 900px) {
    .intro-decor-wrap {
        display: none;
    }
}

/* =====================================================
    SECTION LOGEMENTS — GRILLE ÉDITORIALE
===================================================== */
#logements {
    padding: 0 4rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #logements { padding: 0 1.5rem 1rem; }
}

.logements-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.logements-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--ink);
    letter-spacing: -0.01em;
}

.logements-count {
    font-family: 'Cormorant SC', serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--muted);
}

/* Grille asymétrique — inspirée du layout éditorial Jacquemus */
.logements-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 1100px) {
    .logements-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .logements-grid { grid-template-columns: 1fr; }
}

/* Card logement */
.card {
    position: relative;
    cursor: pointer;
}

/* Card 1 : grande, décalée vers le bas */
.card:nth-child(1) { margin-top: 0; }
.card:nth-child(2) { margin-top: 3rem; }
.card:nth-child(3) { margin-top: 1.5rem; }
.card:nth-child(4) { margin-top: 0; }

/* Animation de chargement chic */
@keyframes shimmer {
    0% { background-color: #E8E5DF; }
    50% { background-color: #F5F3F0; }
    100% { background-color: #E8E5DF; }
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    background: #E8E5DF; /* Remplace le fond #111 */
    animation: shimmer 2s infinite ease-in-out;
}

/* Ratios différents par card — séquence mode */
.card:nth-child(1) .card-img-wrap { aspect-ratio: 3/4; }
.card:nth-child(2) .card-img-wrap { aspect-ratio: 4/5; }
.card:nth-child(3) .card-img-wrap { aspect-ratio: 5/6; }
.card:nth-child(4) .card-img-wrap { aspect-ratio: 3/4; }

.card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0; /* Invisible au départ */
    transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: brightness(0.92);
}

.card-img.loaded {
    opacity: 1;
}

.card:hover .card-img {
    transform: scale(1.06);
    filter: brightness(1);
}

/* Numérotation card */
.card-num {
    position: absolute;
    top: 1rem; left: 1rem;
    font-family: 'Cormorant SC', serif;
    font-size: 9px;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.5);
    z-index: 2;
}

/* Overlay hover card */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,12,11,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.card:hover .card-overlay { opacity: 1; }

.card-overlay-cta {
    font-family: 'Cormorant SC', serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-overlay-cta::after {
    content: '→';
    font-size: 14px;
}

/* Infos sous la card */
.card-body {
    padding: 1.25rem 0 0;
}

.card-type {
    font-family: 'Cormorant SC', serif;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--bronze);
    margin-bottom: 0.4rem;
    display: block;
}

.card-nom {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0.35rem;
    letter-spacing: 0.01em;
}

.card-tag {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.card-footer {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.card-prix {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--ink);
}

.card-link {
    font-family: 'Cormorant SC', serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.card-link:hover {
    border-color: var(--bronze);
    color: var(--bronze);
}

/* =====================================================
    SECTION DESTINATION — FULL BLEED ÉDITORIAL
===================================================== */
#destination {
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.destination-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .destination-inner { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 4rem; }
}

/* --- Préparation pour l'image Destination (vers la ligne 418) --- */
.destination-img-wrap {
    position: relative;
    background: transparent;
    animation: shimmer 2s infinite ease-in-out;
}

.destination-img {
    width: 100%;
    height: auto;
    min-height: 700px;
    max-height: 800px;
    aspect-ratio: 4/5;
    object-fit: cover;
    /* display: block; */
    opacity: 0; /* Invisible au départ */
    transition: opacity 1s ease;
    cursor: zoom-in;
}

.destination-img.loaded {
    opacity: 1;
}

/* Cadre décoratif décalé */
.destination-img-frame {
    position: absolute;
    top: -1.5rem; left: -1.5rem;
    right: 1.5rem; bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

/* Chiffre monumental en arrière-plan */
.destination-bg-num {
    position: absolute;
    right: -2rem; top: 50%;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18rem;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Contenu texte destination */
.destination-label {
    font-family: 'Cormorant SC', serif;
    font-size: 1rem;
    letter-spacing: 0.35em;
    color: var(--bronze);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.destination-sejour {
    font-family: 'Cormorant SC', serif;
    font-size: 1.4rem;
    /* letter-spacing: 0.35em; */
    color: var(--bronze);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    /* text-transform: uppercase; */
}

.destination-label::before {
    content: '';
    display: inline-block;
    width: 24px; height: 1px;
    background: var(--bronze);
}

.destination-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

.destination-title em {
    font-style: italic;
    color: rgba(255,255,255,0.6);
}

.destination-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 3rem;
}

.destination-viewer-wrap {
    display: flex;
    gap: 1rem;
    position: relative;
    align-items: flex-start;
}

.destination-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 80px; /* Largeur des vignettes */
    flex-shrink: 0;
    max-height: 700px; /* Bloque la hauteur à environ 9 photos (ajuste selon ta taille) */
    overflow-y: auto;  /* Active le scroll si ça dépasse */
    scrollbar-width: none; /* Cache la barre de scroll (Firefox) */
    padding-right: 5px;
}

.destination-thumbs::-webkit-scrollbar {
    display: none;
}

.thumb-item {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: opacity 2s ease, border-color 0.3s ease;
}

.thumb-item:hover, .thumb-item.active {
    border-color: var(--bronze);
    opacity: 1;
}

.thumb-item { opacity: 0.5; }

.destination-img-main {
    flex-grow: 1;
    position: relative;
    background: transparent;
    display: flex; /* <-- MODIFIÉ */
    height: auto;; /* <-- MODIFIÉ */
}

/* Points d'intérêt — redesign épuré */
.poi-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.poi-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s ease;
}

.poi-item:hover { border-color: rgba(255,255,255,0.2); }

.poi-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    text-transform: capitalize;
}

.poi-distance {
    font-family: 'Cormorant SC', serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--bronze);
}

/* Citation typographique pleine largeur */
.destination-quote {
    grid-column: 1 / -1;
    padding: 5rem 0 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.destination-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.4;
    color: rgba(255,255,255,0.4);
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: 0.01em;
}

.destination-quote blockquote em { color: rgba(255,255,255,0.7); }

/* =====================================================
    MARQUEE — SÉPARATEUR ANIMÉ ENTRE SECTIONS
===================================================== */
.marquee-section {
    background: var(--ink);
    padding: 1.1rem 0;
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: 'Cormorant SC', serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.8);
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.marquee-item::after {
    content: '◆';
    font-size: 6px;
    opacity: 0.5;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =====================================================
    RESPONSIVE MOBILE
===================================================== */
@media (max-width: 640px) {
    .hero-scroll { display: none; }
    .hero-issue  { display: none; }
    .hero-meta { gap: 0.2rem;}
    .hero-cta { margin-left: 0; padding-top: 15px;}
    #hero::after {
        background:
            linear-gradient(to bottom,
                rgba(13, 12, 11, 0.15) 0%,
                rgba(13,12,11,0.18) 50%,
                rgba(13,12,11,0.25) 55%,
                rgba(13,12,11,0.75) 85%,
                rgba(13,12,11,0.92) 100%
            );
    }
    .logements-header { 
        flex-direction: column; 
        gap: 0.5rem; 
        margin-bottom: 1rem;
        padding-bottom: 0;
    }
    .marquee-section {
        margin: 0 0 0 !important;
    }
    .destination-thumbs {
        gap: 0.2rem;
        width: 50px;
        max-height: 400px; /* Bloque la hauteur à environ 9 photos (ajuste selon ta taille) */
    }
    .destination-img {
        /* width: 100%; */
        /* height: auto; */
        min-height: 400px;
        max-height: 500px;
        /* aspect-ratio: 4 / 5;
        object-fit: cover; */
    }
    .poi-name {
        font-size: 0.9rem;
        font-weight: 300;
    }

    .poi-distance {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }
}

/* =====================================================
    --- LIGHTBOX ---
===================================================== */
.lightbox { 
    position: fixed; inset: 0; z-index: 9999; 
    background: rgba(13,12,11,0.98); 
    display: flex; align-items: center; justify-content: center; 
    opacity: 0; pointer-events: none; 
    transition: opacity 0.3s ease; 
}
.lightbox.active { opacity: 1; pointer-events: auto; }

.lightbox-img { 
    width: 100vw; 
    height: 100vh; 
    padding: 4rem; 
    object-fit: contain; 
    transform: scale(0.98); 
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease; 
    will-change: transform, opacity; 
}
.lightbox.active .lightbox-img { transform: scale(1); }

/* RESTAURATION DU STYLE DES BOUTONS DE FERMETURE ET NAVIGATION */
.lightbox-close { 
    position: absolute; 
    top: 2rem; 
    right: 2rem; 
    color: rgba(255,255,255,0.6); 
    background: transparent; 
    border: none; 
    cursor: pointer; 
    padding: 1rem; 
    transition: color 0.3s ease; 
    z-index: 10000; 
}
.lightbox-close:hover { color: #fff; }

.lightbox-nav { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    color: rgba(255,255,255,0.4); 
    background: transparent; 
    border: none; 
    cursor: pointer; 
    padding: 2rem; 
    transition: color 0.3s ease; 
    z-index: 10000; 
}
.lightbox-nav:hover { color: #fff; }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
@media (max-width: 768px) {
    .lightbox-img { padding: 0;}
    .lightbox-nav {
        top:auto;
        bottom: 2%;
        padding: 0;
    }
}