:root {
    --ink:    #1A1A1A;
    --cream:  #FBF9F6;
    --bronze: #84754E;
    --olive:  #4A5D4E;
    --border: #E5E5E5;
    --muted:  #9A9088;
    --dark:   #0D0C0B;
}

body { 
    background: var(--cream); 
    scroll-padding-top: 120px; /* Hauteur du header + espace de respiration */
}
/* html, body { background: var(--cream); } */

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

/* Grain overlay */
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;
}

/* =====================================================
    BREADCRUMB SOMBRE (Fil d'ariane)
===================================================== */
.bc-dark { font-family:'Cormorant SC',serif; font-size:0.6rem; letter-spacing:.3em; display:flex; align-items:center; gap:.75rem; margin-bottom:1.5rem; text-transform:uppercase; }
.bc-dark a { color:rgba(255,255,255,.3); text-decoration:none; transition:color .2s; }
.bc-dark a:hover { color:var(--bronze); }
.bc-dark-sep { color:rgba(255,255,255,.12); }
.bc-dark-cur { color:rgba(255,255,255,.55); }

    @media (max-width: 768px) {
    .bc-dark { font-size:0.4rem; gap:.15rem; }
}

/* =====================================================
    COMPACT BOOKING HEADER — remplace le grand hero
===================================================== */
.booking-header {
    background: var(--dark);
    padding: 7rem 4rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
    .booking-header { padding: 6rem 1.5rem 2.5rem; }
}

.booking-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
}

@media (max-width: 768px) {
    .booking-header-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
}

.booking-header-eyebrow {
    font-family: 'Cormorant SC', serif;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: var(--bronze);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.booking-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.95;
    color: #fff;
    letter-spacing: -0.02em;
}

.booking-header-right {
    text-align: right;
}

@media (max-width: 768px) {
    .booking-header-right { text-align: left; }
}

.booking-header-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .booking-header-tags { justify-content: flex-start; }
}

.contact-tag {
    font-family: 'Cormorant SC', serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.607);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 5px 12px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .contact-tag {
    font-size: 0.7rem;
}
}

.booking-header-note {
    font-family: 'Cormorant SC', serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.422);
}

/* =====================================================
    MARQUEE
===================================================== */
.marquee-section {
    background: var(--bronze);
    padding: 1.1rem 0;
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    animation: marquee 22s 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%); }
}

/* =====================================================
    ANIMATIONS 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; }

/* =====================================================
    SECTION LABEL
===================================================== */
.section-label {
    font-family: 'Cormorant SC', serif;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: var(--bronze);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

/* =====================================================
    SECTION RÉSERVATION — SPLIT LAYOUT
===================================================== */
.booking-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    /* align-items: start; */
}

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

.booking-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.booking-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #6B6158;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* =====================================================
    CALENDRIER ÉDITORIAL
===================================================== */
.cal-wrap {
    background: var(--dark);
    padding: 2.5rem;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cal-month {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.cal-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cal-nav-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cal-nav-btn:hover {
    border-color: var(--bronze);
    color: var(--bronze);
}

/* Jours de la semaine */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.cal-day-name {
    font-family: 'Cormorant SC', serif;
    font-size: 9px;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.25);
    text-align: center;
    padding: 0.5rem 0 1rem;
}

/* Cellules jours */
.day-cell {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.65);
    transition: all 0.2s ease;
    position: relative;
}

.day-cell:hover:not(.disabled) {
    color: var(--bronze);
    background: rgba(132,117,78,0.1);
}

/* =====================================================
    CALENDRIER CONTACT — DATES BARRÉES LUXE
===================================================== */
.day-cell.disabled {
    color: rgba(255,255,255,0.15);
    cursor: not-allowed;
    background-color: rgba(255,255,255, 0.02);
    /* Ligne diagonale claire très subtile */
    background-image: linear-gradient(to top left, transparent calc(50% - 1px), rgba(255,255,255,0.15), transparent calc(50% + 1px));
}

/* NOUVEAU : DATES PASSÉES */
.day-cell.past {
    color: rgba(255,255,255,0.1) !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.day-cell.selected {
    background: var(--bronze) !important;
    color: #fff !important;
}

.day-cell.in-range {
    background: rgba(132,117,78,0.25);
    /* background: rgba(184, 163, 111, 0.15); */
    color: var(--bronze);
}

.day-cell.today {
    font-weight: 500;
    color: #fff;
}

.day-cell.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--bronze);
}

/* Affichage dates sélectionnées */
.cal-dates-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 1.5rem;
    background: rgba(255,255,255,0.05);
}

.cal-date-item {
    background: rgba(255,255,255,0.03);
    padding: 1rem 1.25rem;
}

.cal-date-label {
    font-family: 'Cormorant SC', serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--bronze);
    display: block;
    margin-bottom: 6px;
}

.cal-date-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.7);
}

/* =====================================================
    RÉSUMÉ RÉSERVATION (CALENDRIER)
===================================================== */
.booking-summary {
    margin-top: 1px; 
    background: rgba(255,255,255,0.03);
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.summary-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.summary-logement {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.1;
}
.summary-nuits {
    font-family: 'Cormorant SC', serif;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}
.summary-total {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--bronze);
    line-height: 1.1;
}

/* =====================================================
    FORMULAIRE ÉDITORIAL
===================================================== */
.form-group { margin-bottom: 1.75rem; }

@media (max-width: 900px) {
    .form-group { margin-bottom: 0.25rem; }
}

.form-label {
    display: block;
    font-family: 'Cormorant SC', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: #6B6158;
    margin-bottom: 8px;
}

.form-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-field::placeholder {
    color: rgba(26,26,26,0.35);
}

.form-field:focus {
    border-color: var(--bronze);
}

textarea.form-field {
    resize: none;
    min-height: 100px;
    line-height: 1.7;
}

.form-submit {
    width: 100%;
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 1.5rem 2rem;
    font-family: 'Cormorant SC', serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.form-submit:hover { background: var(--bronze); }

.form-submit-arrow {
    width: 24px; height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.4s ease;
}

.form-submit:hover .form-submit-arrow { width: 36px; }

.form-submit-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);
}

.form-note {
    font-family: 'Cormorant SC', serif;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: #6B6158;
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .form-note { margin-top: 0.2rem; margin-bottom: 3rem; }
}

/* =====================================================
    INFO CONTACTS — COLONNE LATÉRALE
===================================================== */
.contact-info-section {
    background: var(--dark);
    padding: 8rem 4rem;
}

@media (max-width: 768px) {
    .contact-info-section { padding: 5rem 1.5rem; }
}

.contact-info-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

@media (max-width: 768px) {
    .contact-info-inner { grid-template-columns: 1fr; }
}

.contact-info-item {
    padding: 3rem;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.contact-info-item:last-child { border-right: none; }

@media (max-width: 768px) {
    .contact-info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 2.5rem 0; }
}

.contact-info-icon {
    width: 32px; height: 32px;
    margin-bottom: 1.5rem;
    color: var(--bronze);
}

.contact-info-label {
    font-family: 'Cormorant SC', serif;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.45);
    display: block;
    margin-bottom: 0.75rem;
}

.contact-info-value {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* =====================================================
    SECTION CARTE
===================================================== */
.map-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .map-section { padding: 5rem 1.5rem; }
}

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

.map-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--ink);
    letter-spacing: -0.01em;
}

.map-address {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: #6B6158;
}

.map-container {
    position: relative;
}

.map-frame {
    position: absolute;
    top: -1rem; left: -1rem;
    right: 1rem; bottom: 1rem;
    border: 1px solid rgba(132,117,78,0.2);
    pointer-events: none;
    z-index: 1;
}

#map {
    width: 100%;
    height: 480px;
    position: relative;
    z-index: 0;
}

.maplibregl-popup-content {
    background: var(--dark) !important;
    color: #fff !important;
    font-family: 'Cormorant SC', serif !important;
    font-size: 11px !important;
    letter-spacing: 0.2em !important;
    border-radius: 0 !important;
    padding: 1rem 1.5rem !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
}

.maplibregl-popup-tip { border-top-color: var(--dark) !important; }

/* =====================================================
    SUCCESS STATE FORMULAIRE
===================================================== */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
    background: rgba(132,117,78,0.05);
    border: 1px solid rgba(132,117,78,0.2);
}

.form-success.visible { display: block; }

.form-success-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--bronze);
    margin-bottom: 1rem;
}

.form-success-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.form-success-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6B6158;
    letter-spacing: 0.05em;
}