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

:root {
    --primary: #ff5a5f;
    --secondary: #008489;
    --dark: #222;
    --gray: #717171;
    --light-gray: #f7f7f7;
    --border: #dddddd;
    --shadow: 0 2px 8px rgba(0,0,0,0.12);
    --radius: 12px;
    --max-width: 1200px;
    --nav-height: 70px;
    --anchor-offset: 96px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--anchor-offset);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: #fff;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #e04e50;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,90,95,0.4);
}

.btn-submit {
    background: var(--primary);
    color: white;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-submit:hover {
    background: #e04e50;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 16px;
    align-items: center;
}

.nav-links a {
    color: var(--gray);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 14px;
}

section[id],
h3[id] {
    scroll-margin-top: var(--anchor-offset);
}

.nav-links a:hover {
    color: var(--dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--gray);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.language-switcher button {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    padding: 2px 3px;
    border-radius: 999px;
}

.language-switcher button.active {
    color: var(--dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.language-switcher button:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* === HERO === */
.hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    margin-top: var(--nav-height);
    overflow: hidden;
    background: #1a1a1a;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.45));
    z-index: 2;
    pointer-events: none;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background: #1a1a1a;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    color: var(--dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.slider-btn:hover {
    background: white;
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 10px;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 12px;
    background: rgba(0,0,0,0.45);
    border-radius: 8px;
    padding: 4px 10px;
    display: inline-flex;
    width: auto;
    max-width: max-content;
    color: #fff;
    overflow: hidden;
}

.hero-rating span,
.hero-review-count {
    display: inline;
    padding: 0;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
    width: auto;
    min-width: 0;
    height: auto;
    color: inherit;
}

.stars {
    color: #ffc107;
    letter-spacing: 2px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 22px;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.5);
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-featured {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* === QUICK INFO === */
.quick-info {
    margin-top: -40px;
    position: relative;
    z-index: 20;
    padding: 0 20px 20px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.info-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.info-card strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
}

.info-card p {
    font-size: 13px;
    color: var(--gray);
}

/* === SECTIONS === */
section {
    padding: 60px 0;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* === DESCRIPTION === */
.description-content {
    max-width: 800px;
    margin: 0 auto;
}

.description p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.description h3 {
    margin-top: 30px;
}

.amenities-list {
    columns: 2;
    gap: 30px;
    list-style: none;
    margin-top: 16px;
}

.amenities-list li {
    margin-bottom: 10px;
    color: var(--gray);
}

.notice {
    margin-top: 30px;
    padding: 16px 20px;
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.notice h4 {
    margin-bottom: 8px;
    color: #e6a200;
}

/* === PHOTOS === */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.photo-item {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: transparent;
    border-radius: var(--radius);
    cursor: zoom-in;
    box-shadow: none;
    font: inherit;
    text-align: inherit;
}

.photo-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.photo-item:hover img {
    transform: scale(1.05);
}

body.lightbox-open {
    overflow: hidden;
}

.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 72px 84px 48px;
    background: rgba(0, 0, 0, 0.9);
}

.photo-lightbox.active {
    display: flex;
}

.photo-lightbox-figure {
    max-width: min(1100px, 100%);
    max-height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.photo-lightbox-img {
    max-width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.55);
    background: #111;
}

.photo-lightbox-caption {
    color: #fff;
    font-size: 15px;
    text-align: center;
}

.photo-lightbox-close,
.photo-lightbox-nav {
    position: absolute;
    border: 0;
    color: #fff;
    background: rgba(255,255,255,0.16);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.photo-lightbox-close:hover,
.photo-lightbox-nav:hover,
.photo-lightbox-close:focus-visible,
.photo-lightbox-nav:focus-visible {
    background: rgba(255,255,255,0.28);
    outline: 2px solid rgba(255,255,255,0.75);
}

.photo-lightbox-close {
    top: 22px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 34px;
    line-height: 1;
}

.photo-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 72px;
    border-radius: 999px;
    font-size: 52px;
    line-height: 1;
}

.photo-lightbox-prev {
    left: 20px;
}

.photo-lightbox-next {
    right: 20px;
}

/* === ÉQUIPEMENTS === */
.equipements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.equipement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 10px;
    font-size: 14px;
    color: var(--gray);
}

.equipement-icon {
    font-size: 20px;
}

/* === TARIFS === */
.tarifs-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.tarif-card {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.tarif-card.featured {
    border-color: var(--primary);
    background: rgba(255,90,95,0.02);
    transform: scale(1.03);
}

.price {
    font-size: 36px;
    font-weight: 700;
    margin: 12px 0;
    color: var(--dark);
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
}

.tarif-card h3 {
    margin-bottom: 8px;
}

.tarif-card p {
    color: var(--gray);
    font-size: 14px;
}

.pricing-notes {
    margin: 24px auto 0;
    display: grid;
    gap: 10px;
    max-width: 900px;
}

.pricing-notes p,
.cleaning-note {
    background: #fff;
    border-left: 4px solid var(--secondary);
    border-radius: 10px;
    padding: 12px 14px;
    color: #334155;
}

/* === RESERVATION CTA / PAGE === */
.reservation-cta {
    background: #fff;
    padding-top: 10px;
}

.reservation-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: linear-gradient(135deg, #fff 0%, #fff7f7 100%);
    box-shadow: var(--shadow);
}

.reservation-cta-card h2 {
    margin-bottom: 8px;
}

.reservation-cta-card p:not(.eyebrow) {
    color: var(--gray);
    max-width: 640px;
}

.eyebrow {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.page-hero {
    padding: 132px 0 44px;
    background: linear-gradient(135deg, rgba(0,132,137,.10), rgba(255,90,95,.08));
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 54px);
    margin-bottom: 12px;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: #475569;
    font-size: 18px;
}

.reservation-page {
    padding-top: 56px;
}

/* === MAP === */
.map-section {
    padding: 60px 0;
    background: white;
}

.map-address {
    text-align: center;
    font-weight: 600;
    margin: 6px 0 16px;
    color: #333;
}

.map-container {
    max-width: 1000px;
    margin: 12px auto 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper {
    position: relative;
}

.map-pin {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    color: #222;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    font-weight: 600;
    font-size: 14px;
    pointer-events: none;
}

.map-caption {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-top: 10px;
}

/* === REVIEWS === */
.reviews {
    padding: 60px 0;
    background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
}

.reviews-header {
    margin-bottom: 32px;
}

.reviews-header h2 {
    text-align: center;
    margin-bottom: 10px;
}

.reviews-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    background: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.reviews-rating .stars {
    font-size: 20px;
    color: #ffc107;
}

.avg-score {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.reviewer {
    font-weight: 700;
    font-size: 15px;
    color: #111;
}

.review-date {
    font-size: 13px;
    color: #999;
}

.review-stars {
    color: #ffc107;
    margin: 8px 0 14px;
    letter-spacing: 1px;
    font-size: 15px;
}

.review-text {
    color: #555;
    font-size: 14px;
    line-height: 1.65;
}

.review-text::before {
    content: "“";
    font-weight: 700;
    color: #ff5a5f;
}

/* === RESERVATION === */
.reservation {
    background: var(--light-gray);
}

.reservation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    gap: 30px;
    max-width: 1180px;
    margin: 0 auto;
}

.calendar-container {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cal-prev, .cal-next {
    background: var(--light-gray);
    border: 1px solid var(--border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.cal-prev:hover, .cal-next:hover {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

#currentMonth {
    font-size: 18px;
    font-weight: 600;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.calendar-container > .calendar-weekdays {
    display: none;
}

.calendar-months {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 4px 0 8px;
}

.calendar-month {
    min-width: 0;
}

.calendar-month-title {
    text-align: center;
    font-size: 18px;
    line-height: 1.25;
    margin: 0 0 12px;
    color: var(--dark);
}

.calendar-weekdays-inline {
    border-bottom: 0;
    padding: 0 0 8px;
}

.calendar-days,
.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
    padding: 0;
}

.calendar-days.calendar-months {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 4px 0 8px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.15s;
    border: 2px solid transparent;
    background: transparent;
    color: var(--dark);
    font-family: inherit;
    line-height: 1;
    padding: 0;
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--light-gray);
}

.cal-day:focus-visible {
    outline: 3px solid rgba(255,90,95,0.35);
    outline-offset: 2px;
}

.cal-day.other-month {
    color: #ccc;
}

.cal-day.disabled {
    color: #aeb7c2;
    cursor: not-allowed;
    background: #f5f7f9;
}

.cal-day.booked {
    color: #9ca3af;
    background: #eef2f7;
}

.cal-day.empty {
    visibility: hidden;
    pointer-events: none;
    cursor: default;
    background: transparent;
    border-color: transparent;
}

.cal-day.selected {
    background: var(--primary) !important;
    color: white;
    font-weight: 600;
}

.cal-day.in-range {
    background: rgba(255,90,95,0.15);
    border-radius: 0;
}

.cal-day.range-start {
    border-radius: 50% 0 0 50%;
}

.cal-day.range-end {
    border-radius: 0 50% 50% 0;
}

.cal-day.empty {
    cursor: default;
}

@media (max-width: 900px) {
    .calendar-months,
    .calendar-days.calendar-months {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .calendar-container {
        padding: 20px;
    }
}

@media (max-width: 520px) {
    .calendar-header {
        gap: 10px;
    }
    #currentMonth {
        font-size: 15px;
        text-align: center;
    }
    .calendar-month-title {
        font-size: 16px;
    }
    .calendar-weekdays-inline {
        font-size: 11px;
    }
    .cal-day {
        font-size: 13px;
        border-width: 1px;
    }
}

/* === FORMULAIRE === */
.booking-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
}

.price-summary {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.placeholder {
    color: var(--gray);
    font-style: italic;
}

#selectionSummary p {
    margin-bottom: 4px;
}

#selectionSummary .total-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 8px;
}

#bookingForm h3 {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-note {
    font-size: 12px;
    color: var(--gray);
    text-align: center;
    margin-top: 12px;
}

.confirmation-message {
    text-align: center;
    padding: 30px 20px;
    background: #e8f5e9;
    border-radius: var(--radius);
}

.payment-cancel-message {
    text-align: center;
    padding: 24px 18px;
    background: #fff4e5;
    color: #7a4a00;
    border-radius: var(--radius);
    margin-top: 14px;
}

/* === INFOS PRATIQUES === */
.infos-pratiques {
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-box {
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius);
}

.info-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.info-box p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* === SEO CONTENT PAGES === */
.seo-hero {
    margin-top: var(--nav-height);
    padding: 88px 0 76px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.74), rgba(0,132,137,0.64)),
        url('/assets/villa/villa-01.jpeg') center/cover;
}

.seo-hero h1 {
    max-width: 850px;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.seo-hero p {
    max-width: 760px;
    font-size: 19px;
    color: rgba(255,255,255,0.9);
}

.seo-hero .eyebrow {
    color: #fff;
    opacity: 0.85;
}

.seo-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.75);
    color: #fff;
    background: rgba(255,255,255,0.12);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.22);
}

.seo-page {
    background: #fff;
}

.seo-summary {
    padding: 38px 0 12px;
    background: #fff;
}

.seo-summary .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.seo-summary-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.seo-summary-card.muted {
    background: var(--light-gray);
}

.seo-summary-card h2 {
    margin-bottom: 12px;
    font-size: 22px;
}

.seo-summary-card ul {
    padding-left: 20px;
    color: var(--gray);
}

.article-layout {
    max-width: 920px;
    padding-top: 24px;
    padding-bottom: 32px;
}

.content-block {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.content-block h2 {
    font-size: clamp(24px, 4vw, 34px);
    margin-bottom: 12px;
}

.content-block p {
    color: var(--gray);
    font-size: 17px;
}

.seo-link-section {
    padding: 58px 0;
    background: var(--light-gray);
}

.seo-link-section h2,
.seo-link-section .eyebrow {
    text-align: center;
}

.seo-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.seo-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.seo-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.seo-card strong {
    color: var(--dark);
}

.seo-card span {
    color: var(--gray);
    font-size: 14px;
}

/* === INTERACTIVE LOCAL GUIDES === */
.interactive-guide {
    padding: 64px 0;
    background: #fff;
}

.interactive-guide.alt {
    background: var(--light-gray);
}

.section-intro {
    max-width: 860px;
    color: var(--gray);
    font-size: 17px;
    margin: 10px auto 26px;
    text-align: center;
}

.place-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.place-card,
.restaurant-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.place-card:hover,
.restaurant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.place-photo {
    position: relative;
    min-height: 190px;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #008489, #ff8a65);
}

.place-photo img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.place-card:hover .place-photo img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}

.place-photo figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 24, 39, 0.58);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.place-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.20));
    pointer-events: none;
}

.place-photo.gradient {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 42px;
}

.place-card-body {
    padding: 20px;
}

.place-tag {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--secondary);
    background: rgba(0,132,137,0.1);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.place-card h3,
.restaurant-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.place-card p,
.restaurant-card p {
    color: var(--gray);
}

.place-tip {
    margin-top: 12px;
    padding: 12px;
    border-left: 3px solid var(--primary);
    background: #fff7f7;
    border-radius: 8px;
}

.place-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.place-actions a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--secondary);
    border: 1px solid rgba(0,132,137,0.25);
    background: #fff;
    font-weight: 700;
    font-size: 13px;
}

.place-actions a:hover {
    background: rgba(0,132,137,0.08);
}

.day-plan-section,
.restaurant-section,
.source-section {
    padding: 64px 0;
    background: #fff;
}

.day-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.day-plan-grid details {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--light-gray);
}

.day-plan-grid summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--dark);
}

.day-plan-grid ol,
.day-plan-grid p {
    margin-top: 12px;
    color: var(--gray);
}

.day-plan-grid ol {
    padding-left: 20px;
}

.restaurant-section {
    background: var(--light-gray);
}

.restaurant-section h3 {
    margin: 34px 0 16px;
    font-size: 26px;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.restaurant-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.source-section {
    background: #fff;
}

.source-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.source-grid a {
    padding: 16px;
    border-radius: var(--radius);
    color: var(--secondary);
    border: 1px solid var(--border);
    background: var(--light-gray);
    font-weight: 700;
}

.source-note,
.photo-credit-note {
    margin-top: 18px;
    color: var(--gray);
    font-size: 14px;
}

.photo-credit-note code {
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(0,132,137,0.08);
    color: var(--secondary);
}

/* === FAQ SEO === */
.faq-section {
    padding: 64px 0;
    background: #fff;
}

.faq-section .eyebrow,
.page-hero .eyebrow,
.reservation-cta .eyebrow {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 8px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 28px;
}

.faq-section > .container > .eyebrow {
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--light-gray);
    padding: 18px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--dark);
    list-style-position: outside;
}

.faq-item p {
    color: var(--gray);
    margin-top: 10px;
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 6px;
    font-size: 14px;
}

.footer a {
    color: #ccc;
    text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .reservation-grid {
        grid-template-columns: 1fr;
    }

    .reservation-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .seo-summary .container {
        grid-template-columns: 1fr;
    }

    .seo-hero {
        padding: 58px 0 54px;
    }

    .seo-hero-actions {
        flex-direction: column;
    }

    .seo-hero-actions .btn {
        text-align: center;
    }

    .reservation-cta-card .btn {
        width: 100%;
        text-align: center;
    }

    .tarifs-cards {
        grid-template-columns: 1fr;
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .amenities-list {
        columns: 1;
    }
}

@media (max-width: 600px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-hero {
        padding: 112px 0 34px;
    }

    .reservation-cta-card {
        padding: 22px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .photo-item.large {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .photo-lightbox {
        padding: 64px 14px 32px;
    }

    .photo-lightbox-img {
        max-height: calc(100vh - 130px);
    }

    .photo-lightbox-nav {
        width: 42px;
        height: 58px;
        font-size: 42px;
    }

    .photo-lightbox-prev {
        left: 8px;
    }

    .photo-lightbox-next {
        right: 8px;
    }
}

/* === CONFIRMATION / RECEIPT PAGE === */
.confirmation-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(0, 132, 137, 0.18), transparent 34%),
        linear-gradient(135deg, #fff7f2 0%, #f6fbfb 52%, #ffffff 100%);
}

.confirmation-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
}

.confirmation-card {
    width: min(920px, 100%);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
    padding: clamp(28px, 5vw, 56px);
    text-align: center;
}

.confirmation-badge {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #0f766e;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 38px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(15, 118, 110, 0.28);
}

.confirmation-card .eyebrow {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 8px;
}

.confirmation-card h1 {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.05;
    margin-bottom: 14px;
}

.confirmation-intro {
    color: var(--gray);
    font-size: 18px;
    margin: 0 auto 24px;
    max-width: 680px;
}

.confirmation-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-weight: 700;
    margin-bottom: 28px;
}

.confirmation-status.pending {
    background: #fef3c7;
    color: #92400e;
}

.confirmation-status.error {
    background: #fee2e2;
    color: #991b1b;
}

.receipt-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    text-align: left;
    margin: 10px 0 26px;
}

.receipt-grid > div {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
}

.receipt-grid dt {
    color: var(--gray);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.receipt-grid dd {
    font-size: 17px;
    font-weight: 800;
    word-break: break-word;
}

.confirmation-note {
    text-align: left;
    background: #f8fafc;
    border-left: 4px solid var(--secondary);
    border-radius: 14px;
    padding: 16px 18px;
    color: #334155;
    margin-bottom: 24px;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.confirmation-actions .btn {
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    cursor: pointer;
}

.confirmation-actions .btn-primary {
    background: var(--primary);
    color: #fff;
}

.confirmation-actions .btn-secondary {
    background: #eef2f7;
    color: var(--dark);
}

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

@media print {
    body.confirmation-page {
        background: #fff;
    }

    .confirmation-shell {
        min-height: auto;
        padding: 0;
    }

    .confirmation-card {
        box-shadow: none;
        border: 0;
        border-radius: 0;
        padding: 0;
    }

    .confirmation-actions {
        display: none;
    }
}

/* Multi-logements Villa/Bungalow */
.properties-section {
    background: #f8fbfa;
}
.property-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.property-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(15, 76, 92, 0.12);
    border: 1px solid rgba(0, 132, 137, 0.12);
}
.property-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
.property-card > div {
    padding: 24px;
}
.property-card h3 {
    margin: 0 0 10px;
    color: #173f44;
}
.property-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}
.booking-property-choice {
    background: #fff;
    border: 1px solid rgba(0,132,137,.16);
    border-radius: 18px;
    padding: 18px;
    margin: 0 0 24px;
    box-shadow: 0 12px 30px rgba(15, 76, 92, 0.08);
}
.booking-property-choice label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #173f44;
}
.booking-property-choice select,
.property-admin-picker select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #cfe3df;
    background: #fff;
    font: inherit;
}
.bungalow-hero .hero-content {
    max-width: 780px;
}
.reservation-cta {
    background: linear-gradient(135deg, #e8f7f3, #fff8ef);
    text-align: center;
}
.property-admin-picker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #fff;
}
.property-admin-picker select {
    min-width: 180px;
    padding: 8px 10px;
}
@media (max-width: 720px) {
    .property-admin-picker {
        width: 100%;
        justify-content: space-between;
    }
    .property-actions {
        flex-direction: column;
    }
}


/* Choix logement réservation — cartes propres */
.property-choice-header {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}
.property-choice-header label {
    font-size: 1.35rem;
    margin: 0;
}
.property-choice-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.property-choice-card {
    appearance: none;
    border: 2px solid rgba(0, 132, 137, 0.16);
    background: linear-gradient(180deg, #ffffff, #f8fbfa);
    border-radius: 18px;
    padding: 18px;
    text-align: left;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    box-shadow: 0 10px 24px rgba(15, 76, 92, 0.08);
}
.property-choice-card:hover,
.property-choice-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(0, 132, 137, 0.45);
    box-shadow: 0 18px 38px rgba(15, 76, 92, 0.14);
    outline: none;
}
.property-choice-card.active {
    color: #fff;
    border-color: #008489;
    background: linear-gradient(135deg, #008489, #0f4c5c);
    box-shadow: 0 18px 42px rgba(0, 132, 137, 0.28);
}
.choice-name {
    display: block;
    font-weight: 800;
    font-size: 1.08rem;
    margin-bottom: 6px;
}
.choice-meta {
    display: block;
    font-size: .93rem;
    line-height: 1.45;
    opacity: .85;
}
.property-select-native {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
    pointer-events: none;
    clip-path: inset(50%);
}
.property-actions .btn-primary {
    box-shadow: 0 10px 22px rgba(255, 90, 95, 0.22);
}
@media (max-width: 720px) {
    .property-choice-cards {
        grid-template-columns: 1fr;
    }
}

/* === BUNGALOW DETAIL PAGE === */
.bungalow-hero::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.22) 38%, rgba(0,0,0,0.70) 100%);
}

.bungalow-hero .slide img {
    object-position: center 48%;
}

.bungalow-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bungalow-quick-info .info-card {
    border: 1px solid rgba(0,132,137,0.14);
}

.section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 34px;
}

.section-header .eyebrow,
.bungalow-description .eyebrow,
.bungalow-tarifs .eyebrow,
.bungalow-equipements .eyebrow {
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 8px;
}

.section-header p:not(.eyebrow) {
    color: var(--gray);
    font-size: 17px;
}

.description-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.bungalow-side-card {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
    position: sticky;
    top: calc(var(--nav-height) + 20px);
}

.bungalow-side-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.bungalow-side-card-content {
    padding: 24px;
}

.bungalow-side-card-content h3 {
    margin-bottom: 10px;
}

.bungalow-side-card-content p:not(.eyebrow) {
    color: var(--gray);
    margin-bottom: 18px;
}

.bungalow-experience {
    padding: 56px 0;
    background: linear-gradient(135deg, rgba(0,132,137,0.08), rgba(255,90,95,0.06));
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.experience-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.experience-card span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(0,132,137,0.10);
    font-size: 25px;
    margin-bottom: 14px;
}

.experience-card h3 {
    margin-bottom: 8px;
}

.experience-card p {
    color: var(--gray);
    font-size: 15px;
}

.bungalow-equipements {
    background: #fff;
}

.bungalow-equipements .equipement-item {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 6px 18px rgba(0,0,0,0.045);
}

.bungalow-tarifs {
    background: var(--light-gray);
}

.bungalow-cta-card {
    background: linear-gradient(135deg, #fff 0%, rgba(0,132,137,0.08) 100%);
    border: 1px solid rgba(0,132,137,0.14);
}

@media (max-width: 900px) {
    .description-layout {
        grid-template-columns: 1fr;
    }

    .bungalow-side-card {
        position: static;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .bungalow-hero .hero-badges {
        justify-content: center;
    }

    .bungalow-side-card img {
        height: 210px;
    }
}

.minimum-stay-site-note,
.minimum-stay-warning,
.minimum-stay-ok {
    margin: 10px 0;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
}
.minimum-stay-site-note,
.minimum-stay-ok {
    background: #e8f7f2;
    color: #0f766e;
    border: 1px solid #99e6d3;
}
.minimum-stay-warning {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fdba74;
}
.contact-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f7fbfb, #fff7f1);
}
.contact-card {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
    gap: 28px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 28px;
}
.contact-form {
    display: grid;
    gap: 16px;
}
.contact-form .btn-submit {
    max-width: 260px;
}
@media (max-width: 780px) {
    .contact-card { grid-template-columns: 1fr; padding: 22px; }
}

.contact-page-body {
    background: #f8fafc;
}
.contact-page-main {
    padding-top: 80px;
}
.contact-hero {
    padding: 70px 0 32px;
    background: linear-gradient(135deg, rgba(0,132,137,.12), rgba(255,122,89,.10));
}
.contact-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    margin: 10px 0 14px;
    color: var(--text-dark);
}
.contact-hero p {
    max-width: 760px;
    color: var(--text-light);
    font-size: 1.12rem;
    line-height: 1.75;
}
.contact-page-section {
    padding-top: 42px;
}
.contact-page-card {
    grid-template-columns: minmax(260px, .72fr) minmax(360px, 1.28fr);
    padding: 0;
    overflow: hidden;
}
.contact-info-panel {
    height: 100%;
    padding: 34px;
    background: linear-gradient(160deg, #063b3d, #008489);
    color: #fff;
}
.contact-info-panel h2 {
    color: #fff;
    margin-bottom: 14px;
}
.contact-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 12px;
}
.contact-checklist li {
    position: relative;
    padding-left: 28px;
    line-height: 1.55;
}
.contact-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: #b9f7d0;
}
.contact-mini-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
}
.contact-mini-card a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}
.contact-form-panel {
    padding: 34px;
}
.contact-cta-card {
    align-items: center;
    grid-template-columns: minmax(280px, 1fr) auto;
}
.contact-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}
.contact-success-card {
    text-align: center;
    padding: 44px 24px;
    border: 1px solid #bbf7d0;
    border-radius: 22px;
    background: linear-gradient(180deg, #f0fdf4, #ffffff);
}
.contact-success-card .success-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: #16a34a;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
}
.contact-success-card h2 {
    margin-bottom: 10px;
}
.contact-success-card .actions {
    justify-content: center;
    margin-top: 22px;
}
@media (max-width: 860px) {
    .contact-page-card,
    .contact-cta-card {
        grid-template-columns: 1fr;
    }
    .contact-cta-actions {
        justify-content: flex-start;
    }
    .contact-page-main {
        padding-top: 68px;
    }
}

/* === LOI 25 / PRIVACY CONSENT === */
.privacy-consent-overlay {
    position: fixed;
    inset: auto 14px 14px auto;
    z-index: 10000;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}
.privacy-consent-panel {
    width: min(430px, calc(100vw - 28px));
    max-height: min(72vh, 620px);
    overflow-y: auto;
    background: rgba(255,255,255,.97);
    color: var(--text-dark);
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, .16);
    padding: 16px;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}
.privacy-kicker {
    margin: 0 0 3px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .68rem;
    font-weight: 800;
    color: var(--primary);
}
.privacy-consent-copy h2 {
    margin: 0 0 6px;
    font-size: 1.12rem;
}
.privacy-consent-copy p {
    margin: 4px 0;
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.45;
}
.privacy-note {
    font-size: .78rem;
}
.privacy-consent-options {
    display: grid;
    gap: 8px;
    margin: 12px 0;
}
.privacy-consent-options[hidden] {
    display: none;
}
.privacy-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 9px;
    align-items: start;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #f8fafc;
    font-size: .9rem;
}
.privacy-option input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
}
.privacy-option small {
    display: block;
    margin-top: 2px;
    color: var(--text-light);
    font-size: .78rem;
    line-height: 1.35;
}
.privacy-option-disabled {
    opacity: .82;
}
.privacy-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.privacy-consent-actions .btn {
    padding: 9px 12px;
    font-size: .88rem;
}
.privacy-policy-link {
    margin: 10px 0 0;
    font-size: .82rem;
}
.privacy-manage-button {
    position: fixed;
    left: 14px;
    bottom: 14px;
    z-index: 9998;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    padding: 8px 11px;
    background: rgba(15, 23, 42, .78);
    color: #fff;
    font: inherit;
    font-size: .8rem;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(15,23,42,.18);
}
.privacy-embed-placeholder {
    min-height: 320px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 10px;
    padding: 32px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f8fafc, #eef9f8);
    border: 1px solid var(--border);
}
.privacy-embed-placeholder p {
    max-width: 520px;
    margin: 0 auto;
    color: var(--text-light);
}
.privacy-embed-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.privacy-page-main {
    padding-top: 96px;
    background: #f8fafc;
}
.privacy-content {
    max-width: 980px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: clamp(26px, 4vw, 48px);
    margin-bottom: 70px;
}
.privacy-content h1 {
    margin-bottom: 12px;
}
.privacy-content h2 {
    margin-top: 30px;
}
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: .94rem;
}
.privacy-table th,
.privacy-table td {
    border: 1px solid var(--border);
    padding: 10px;
    text-align: left;
    vertical-align: top;
}
.privacy-table th {
    background: #f1f5f9;
}
@media (max-width: 720px) {
    .privacy-consent-overlay { inset: auto 10px 10px 10px; justify-content: center; }
    .privacy-consent-panel { width: 100%; max-height: 68vh; padding: 14px; }
    .privacy-consent-actions .btn { flex: 1 1 auto; }
    .privacy-table { display: block; overflow-x: auto; }
    .privacy-manage-button { left: 10px; bottom: 10px; }
}

/* === MOBILE UX OPTIMIZATION — public site === */
@media (max-width: 900px) {
    :root {
        --nav-height: 64px;
        --anchor-offset: 82px;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    .navbar {
        padding: 0;
    }

    .navbar .container {
        height: var(--nav-height);
        padding: 0 14px;
        gap: 10px;
    }

    .logo {
        min-width: 0;
        flex: 1 1 auto;
        font-size: 19px;
        line-height: 1;
    }

    .logo-icon {
        font-size: 25px;
        flex: 0 0 auto;
    }

    .nav-links {
        top: var(--nav-height);
        left: 10px;
        right: 10px;
        width: auto;
        max-height: calc(100dvh - var(--nav-height) - 16px);
        overflow-y: auto;
        padding: 12px;
        gap: 6px;
        border: 1px solid var(--border);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 18px 42px rgba(0,0,0,.16);
        align-items: stretch;
    }

    .nav-links li,
    .nav-links a {
        width: 100%;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 15px;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        background: #f6f7f8;
        outline: none;
    }

    .nav-links .btn,
    .nav-links .btn-primary {
        justify-content: center;
        min-height: 48px;
        margin-top: 4px;
        color: #fff;
        font-weight: 800;
    }

    .mobile-menu-toggle {
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: #fff;
        flex: 0 0 auto;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        transform-origin: center;
        transition: transform .18s ease, opacity .18s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .language-switcher {
        margin-left: 0;
        padding: 7px 9px;
        min-height: 38px;
        flex: 0 0 auto;
        font-size: 13px;
    }

    .language-switcher button {
        min-width: 30px;
        min-height: 30px;
    }
}

@media (max-width: 600px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero {
        height: min(72vh, 620px);
        min-height: 480px;
    }

    .hero-content {
        left: 16px;
        right: 16px;
        bottom: 28px;
        max-width: none;
    }

    .hero-content h1,
    .page-hero h1,
    .contact-hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.08;
    }

    .hero-subtitle,
    .page-hero p,
    .contact-hero p,
    .section-header p:not(.eyebrow) {
        font-size: 16px;
        line-height: 1.55;
    }

    .hero-badges,
    .seo-hero-actions,
    .contact-cta-actions,
    .property-actions,
    .confirmation-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-badge,
    .btn,
    .property-actions .btn,
    .contact-cta-actions .btn,
    .confirmation-actions .btn {
        width: 100%;
        text-align: center;
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    section,
    .contact-section,
    .bungalow-experience {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .info-cards,
    .property-cards,
    .amenities-grid,
    .reviews-grid,
    .guide-grid,
    .pricing-grid,
    .tarifs-cards,
    .info-grid,
    .experience-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .info-card,
    .property-card,
    .review-card,
    .guide-card,
    .pricing-card,
    .experience-card,
    .contact-card,
    .reservation-cta-card {
        border-radius: 18px;
    }

    .property-card > div,
    .contact-card,
    .booking-property-choice,
    .calendar-container,
    .booking-card {
        padding: 18px;
    }

    .property-card img {
        height: 220px;
    }

    .photo-grid {
        gap: 10px;
    }

    .photo-item,
    .photo-item.large {
        aspect-ratio: 4 / 3;
        min-height: 0;
    }

    .photo-lightbox-close {
        width: 48px;
        height: 48px;
        font-size: 28px;
    }

    .photo-lightbox-caption {
        font-size: 13px;
        padding: 0 8px;
    }

    .reservation-page .container > h2,
    section h2 {
        font-size: clamp(1.65rem, 7vw, 2.15rem);
        line-height: 1.15;
    }

    .reservation-grid {
        gap: 18px;
    }

    .booking-card {
        position: static;
        box-shadow: 0 10px 28px rgba(0,0,0,.10);
    }

    .property-choice-card {
        min-height: 76px;
        padding: 16px;
    }

    .calendar-header {
        display: grid;
        grid-template-columns: 44px 1fr 44px;
        align-items: center;
    }

    .cal-prev,
    .cal-next,
    .calendar-header button {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 999px;
    }

    .calendar-month {
        padding: 12px 8px;
        border-radius: 14px;
    }

    .calendar-weekdays,
    .calendar-weekdays-inline {
        gap: 4px;
    }

    .calendar-weekdays div,
    .calendar-weekdays-inline div {
        font-size: 11px;
    }

    .calendar-days-single,
    .calendar-days-grid {
        gap: 4px;
    }

    .cal-day {
        min-height: 42px;
        min-width: 0;
        border-radius: 12px;
        touch-action: manipulation;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px;
        border-radius: 12px;
    }

    .form-group textarea {
        min-height: 118px;
    }

    .btn-submit {
        min-height: 52px;
        font-size: 16px;
        border-radius: 14px;
    }

    .contact-form .btn-submit {
        max-width: none;
    }

    .cf-turnstile-placeholder,
    .turnstile-group iframe {
        max-width: 100%;
        overflow: hidden;
    }

    .footer {
        text-align: center;
        padding: 28px 0;
    }
}

@media (max-width: 430px) {
    .navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .logo span:last-child {
        max-width: 130px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .language-switcher {
        gap: 2px;
        padding: 5px 7px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hero-content h1,
    .page-hero h1,
    .contact-hero h1 {
        font-size: clamp(1.85rem, 9vw, 2.5rem);
    }

    .info-card {
        padding: 16px 10px;
    }

    .privacy-consent-overlay {
        inset: auto 8px 8px 8px;
    }

    .privacy-consent-panel {
        max-height: min(76vh, 620px);
        overflow-y: auto;
        border-radius: 18px;
        padding: 14px;
    }

    .privacy-consent-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .privacy-option {
        padding: 10px;
        gap: 9px;
    }

    .privacy-option input {
        width: 22px;
        height: 22px;
        flex: 0 0 auto;
    }

    .privacy-manage-button {
        max-width: calc(100vw - 16px);
        min-height: 42px;
        border-radius: 999px;
    }
}

@media (max-width: 600px) {
    .privacy-table,
    .privacy-table thead,
    .privacy-table tbody,
    .privacy-table tr,
    .privacy-table th,
    .privacy-table td {
        display: block;
        width: 100%;
    }

    .privacy-table {
        overflow: visible;
        border: 0;
    }

    .privacy-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .privacy-table tr {
        margin-bottom: 12px;
        border: 1px solid var(--border);
        border-radius: 14px;
        overflow: hidden;
        background: #fff;
    }

    .privacy-table td {
        border: 0;
        border-bottom: 1px solid #eef2f7;
        padding: 10px 12px;
        word-break: break-word;
    }

    .privacy-table td:last-child {
        border-bottom: 0;
    }
}

/* Mobile hero alignment fix */
@media (max-width: 600px) {
    .hero-content {
        left: 16px;
        right: 16px;
        width: auto;
        transform: none;
    }
}
