
    100% { left: 100%; }
}

/* ============ RESET & VARIABLES ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0a0a0a;
    --bg-light: #fafaf7;
    --text: #1a1a1a;
    --text-soft: #555;
    --text-light: #888;
    --accent: #c8a872;
    --accent-dark: #a08654;
    --border: #e8e2da;
    --white: #ffffff;
    --shadow: 0 4px 30px rgba(0,0,0,0.08);
    --shadow-strong: 0 10px 50px rgba(0,0,0,0.15);
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    background: var(--bg-light);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 24px; }
h3 { font-size: 1.4rem; margin-bottom: 8px; font-weight: 500; }

.section-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 16px;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 24px;
}

p { color: var(--text-soft); }

/* ============ NAVBAR ============ */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    padding: 8px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}
.nav-container {
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-family: var(--serif);
    font-size: 1.8rem; font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    transition: var(--transition);
}
.nav-logo span {
    color: var(--accent);
    font-weight: 300;
    margin-left: 6px;
}
#navbar.scrolled .nav-logo { color: var(--text); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: var(--transition);
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
#navbar.scrolled .nav-links a { color: var(--text); }

.nav-cta {
    background: var(--accent);
    padding: 12px 28px !important;
    border-radius: 2px;
    color: var(--white) !important;
    transition: var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--accent-dark); }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}
.nav-burger span {
    width: 26px; height: 2px;
    background: var(--white);
    transition: var(--transition);
}
#navbar.scrolled .nav-burger span { background: var(--text); }

/* ============ HERO ============ */
#hero {
    position: relative;
    height: calc(75vh + 100px);
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}
.hero-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 0 32px;
}
.hero-tagline {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.3s forwards;
}
.hero-content h1 {
    font-size: clamp(4rem, 12vw, 9rem);
    font-family: var(--serif);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1.2s ease-out 0.5s forwards;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeUp 1.2s ease-out 0.7s forwards;
}
.hero-cta {
    display: inline-block;
    padding: 18px 48px;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0;
    animation: fadeUp 1.2s ease-out 0.9s forwards;
}
.hero-cta:hover {
    background: var(--white);
    color: var(--bg);
    border-color: var(--white);
    transform: translateY(-2px);
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 1.5s ease-out 1.5s forwards;
}
.scroll-indicator span {
    display: block;
    width: 100%;
    height: 30px;
    background: var(--white);
    animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* ============ SECTIONS GENERIC ============ */
section {
    padding: 70px 0;
    position: relative;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

/* ============ ABOUT ============ */
#about { background: var(--white); }
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.section-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: var(--shadow-strong);
}
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}
.stat-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1;
}
.stat-num span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    margin-left: 4px;
}
.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-top: 8px;
}

/* ============ GALERIE ============ */
#gallery { background: var(--bg-light); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 16px;
}
.gallery-item {
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    position: relative;
}
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: var(--white);
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-close { top: 30px; right: 30px; font-size: 50px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); font-size: 60px; }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); font-size: 60px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--accent); }
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 13px;
    letter-spacing: 2px;
}

/* ============ FEATURES ============ */
#features { background: var(--white); }
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 40px;
}
.feature {
    text-align: center;
    flex: 0 0 calc((100% - 3 * 40px) / 4);
    max-width: calc((100% - 3 * 40px) / 4);
}
.feature svg {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}
.feature h3 {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.feature p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============ LOCATION ============ */
#location { background: var(--bg-light); }
.location-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.location-points {
    list-style: none;
    margin-top: 32px;
}
.location-points li {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--text);
    font-size: 1rem;
}
.location-points li span {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--accent);
    min-width: 80px;
    font-weight: 500;
}
.location-map {
    height: 500px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3) contrast(1.05);
}

/* ============ CALENDRIER DISPONIBILITES ============ */
.calendar-wrapper {
    background: var(--white);
    padding: 28px;
    border-radius: 4px;
    box-shadow: var(--shadow-strong);
}
.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.calendar-nav h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin: 0;
    text-transform: capitalize;
    color: var(--text);
}
.calendar-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.calendar-nav button:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--bg-light);
}
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}
.calendar-weekdays span {
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
    padding: 8px 0;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text);
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    user-select: none;
}
.cal-day.empty { visibility: hidden; }
.cal-day.available { background: transparent; }
.cal-day.available:hover {
    background: var(--bg-light);
    box-shadow: inset 0 0 0 1px var(--accent);
}
.cal-day.today {
    font-weight: 700;
    color: var(--accent);
}
.cal-day.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}
.cal-day.booked {
    color: #b8b0a0;
    background: #ebe6dc;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    cursor: not-allowed;
}
.cal-day.booked:hover { box-shadow: none; background: #ebe6dc; }
.cal-day.past {
    color: #d8d2c5;
    cursor: not-allowed;
    background: transparent;
}
.cal-day.past:hover { box-shadow: none; background: transparent; }
/* Selection */
.cal-day.selected {
    background: var(--accent) !important;
    color: var(--white) !important;
    box-shadow: none !important;
}
.cal-day.selected.today { color: var(--white) !important; }
.cal-day.selected.today::after { background: var(--white); }
.cal-day.in-range {
    background: rgba(200, 168, 114, 0.2);
    border-radius: 0;
}
.cal-day.range-start { border-radius: 4px 0 0 4px; }
.cal-day.range-end { border-radius: 0 4px 4px 0; }
.cal-day.range-start.range-end { border-radius: 4px; }

/* Selection summary */
.calendar-selection {
    margin-top: 16px;
    padding: 14px 16px;
    background: #faf8f5;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.calendar-selection.active { display: flex; }
.calendar-selection-text {
    font-size: 14px;
    color: var(--text);
}
.calendar-selection-text strong {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--accent);
}
.calendar-selection-text .nights {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}
.btn-selection-clear {
    background: transparent;
    border: 1px solid var(--border);
    padding: 8px 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-soft);
    transition: var(--transition);
}
.btn-selection-clear:hover { border-color: var(--text); color: var(--text); }
.btn-selection-go {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-selection-go:hover { background: var(--accent-dark); }
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-light);
}
.calendar-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.legend-dot.available { background: transparent; border: 1px solid var(--text-light); }
.legend-dot.booked { background: #c8c1b3; }
.calendar-loading {
    text-align: center;
    padding: 60px 0;
    color: var(--text-light);
    font-size: 13px;
}

@media (max-width: 600px) {
    .calendar-wrapper { padding: 20px; }
    .calendar-nav h3 { font-size: 1.3rem; }
    .cal-day { font-size: 12px; }
    .calendar-legend { flex-direction: column; gap: 12px; align-items: center; }
}

/* ============ BOOKING ============ */
#booking {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--white);
}
#booking .section-eyebrow { color: var(--accent); }
#booking h2 { color: var(--white); }
#booking p { color: rgba(255,255,255,0.7); }
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.booking-form-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px;
    border-radius: 4px;
}
.booking-form-title {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 4px;
}
.booking-form-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}
.booking-form { text-align: left; }

/* Recap dates dans le formulaire */
.dates-recap {
    background: rgba(200, 168, 114, 0.08);
    border: 1px solid rgba(200, 168, 114, 0.3);
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 24px;
}
.dates-recap-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}
.dates-recap-block {
    flex: 1;
    text-align: center;
}
.dates-recap-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}
.dates-recap-value {
    display: block;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}
.dates-recap-arrow {
    color: var(--accent);
    font-size: 1.4rem;
    flex-shrink: 0;
}
.dates-recap-nights {
    text-align: center;
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Estimation prix */
.price-estimate {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 20px;
}
.price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.price-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.price-value {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 500;
}
.price-detail {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    text-align: right;
}

/* Checkbox conditions */
.form-checkbox { margin-bottom: 20px; }
.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 12px !important;
    color: rgba(255,255,255,0.8) !important;
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}
.checkbox-mark {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: var(--transition);
}
.checkbox-label input:checked + .checkbox-mark {
    background: var(--accent);
    border-color: var(--accent);
}
.checkbox-label input:checked + .checkbox-mark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-text a {
    color: var(--accent);
    text-decoration: underline;
}

/* Modal conditions */
.conditions-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}
.conditions-modal.active { display: flex; }
.conditions-content {
    background: var(--white);
    color: var(--text);
    padding: 40px;
    border-radius: 4px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}
.conditions-content h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--text);
}
.conditions-content p {
    color: var(--text-soft);
    margin-bottom: 14px;
    font-size: 14px;
}
.conditions-content ul {
    margin: 16px 0;
    padding-left: 20px;
}
.conditions-content li {
    color: var(--text-soft);
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}
.conditions-content li strong { color: var(--text); }
.conditions-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: transparent;
    color: var(--text-light);
    font-size: 28px;
    line-height: 1;
    border-radius: 50%;
    transition: var(--transition);
}
.conditions-close:hover { color: var(--text); background: var(--bg-light); }

@media (max-width: 900px) {
    .booking-grid { grid-template-columns: 1fr; gap: 32px; }
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.08);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: var(--white);
    border: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}
.btn-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
.form-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
}

/* ============ FOOTER ============ */
footer {
    background: var(--bg);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 40px;
    text-align: center;
}
.footer-logo {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-logo span {
    color: var(--accent);
    font-weight: 300;
    margin-left: 6px;
}
footer p { color: rgba(255,255,255,0.5); }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 32px 0;
}
.footer-links a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.copyright {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid .feature { flex: 0 0 calc((100% - 2 * 40px) / 3); max-width: calc((100% - 2 * 40px) / 3); }
    .section-grid { grid-template-columns: 1fr; gap: 60px; }
    .location-card { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    section { padding: 50px 0; }
    .container { padding: 0 24px; }
    .nav-container { padding: 0 24px; }
    .nav-links {
        position: fixed;
        top: 0; right: 0; left: 0;
        flex-direction: column;
        background: rgba(0,0,0,0.97);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links a { color: var(--white); font-size: 18px; }
    #navbar.scrolled .nav-links a { color: var(--white); }
    .nav-burger { display: flex; }
    .nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .nav-burger.active span:nth-child(2) { opacity: 0; }
    .nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
    .nav-burger.active span { background: var(--white) !important; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-item.large { grid-column: span 2; grid-row: span 2; }
    .features-grid { gap: 40px 24px; }
    .features-grid .feature { flex: 0 0 calc((100% - 24px) / 2); max-width: calc((100% - 24px) / 2); }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .section-image img { height: 400px; }
    .section-header-center { margin-bottom: 50px; }
    .lightbox-prev, .lightbox-next { font-size: 40px; }
    .lightbox-close { font-size: 36px; top: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .features-grid .feature { flex: 0 0 100%; max-width: 100%; }
    .stats { grid-template-columns: 1fr 1fr; }
    .footer-links { flex-wrap: wrap; gap: 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; grid-row: span 1; }
    .gallery-item { aspect-ratio: 4/3; }
    .gallery-grid { grid-auto-rows: auto; }
}

.hero-version {
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}



/* === BOUTONS RESERVATION DOUBLE === */
.booking-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}
.booking-buttons .btn-submit {
    width: 100%;
    margin-top: 0;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    line-height: 1;
}
.booking-buttons .btn-submit span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
.booking-buttons .btn-submit em {
    font-style: normal;
    font-size: 8px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.3px;
    opacity: 0.7;
    margin-top: 1px;
}
.btn-direct {
    background: var(--accent);
    color: white;
}
.btn-direct:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
.btn-airbnb {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-airbnb:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .booking-buttons { grid-template-columns: 1fr; }
}

/* === "by Randagne" — signature stylee sur le logo === */
.by-randagne {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.55em;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-left: 14px;
    letter-spacing: 0.8px;
    vertical-align: middle;
    transform: translateY(-1px);
    white-space: nowrap;
}
.by-randagne::before {
    content: "· ";
    color: rgba(200, 168, 114, 0.4);
    margin-right: 2px;
}
#navbar.scrolled .by-randagne {
    color: rgba(80, 80, 80, 0.85);
}
#navbar.scrolled .by-randagne::before {
    color: rgba(150, 120, 70, 0.5);
}
.by-randagne-footer {
    font-size: 0.5em;
    margin-left: 12px;
}

/* === "by Randagne" v2 — sous le logo, plus petit, italique === */
/* Override des regles precedentes (cascades en fin de fichier) */
.nav-logo, .footer-logo {
    display: inline-block;
    line-height: 1.05;
}
.by-randagne {
    display: block !important;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.46em !important;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-left: 0 !important;
    margin-top: 2px;
    letter-spacing: 1px;
    text-align: right;
    transform: none !important;
    white-space: nowrap;
}
.by-randagne::before {
    content: "" !important;
    margin-right: 0 !important;
}
#navbar.scrolled .by-randagne {
    color: rgba(80, 80, 80, 0.85);
}
.by-randagne-footer {
    font-size: 0.4em !important;
    margin-left: 0 !important;
    text-align: center;
}
