/* ============================================
   Locations Dol-de-Bretagne — Elegant & Épuré
   Tons naturels : beige, vert sauge, crème
   ============================================ */

/* --- Variables & Reset --- */
:root {
    --beige: #F5F0E8;
    --beige-dark: #E8DFD0;
    --cream: #FDFBF7;
    --sage: #7A8B6F;
    --sage-dark: #5C6B52;
    --sage-light: #A8B89E;
    --forest: #3D4A35;
    --charcoal: #2C2C2C;
    --warm-gray: #6B6560;
    --warm-gray-light: #9B9590;
    --gold: #C4A35A;
    --gold-light: #E8D5A0;
    --white: #FFFFFF;
    --error: #B85C5C;
    --success: #6B8F5E;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    --shadow-sm: 0 1px 3px rgba(44,44,44,0.06);
    --shadow-md: 0 4px 16px rgba(44,44,44,0.08);
    --shadow-lg: 0 8px 32px rgba(44,44,44,0.12);
    --shadow-xl: 0 16px 48px rgba(44,44,44,0.16);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip Link */
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--forest); color: var(--white);
    padding: 8px 16px; z-index: 9999;
    font-size: 0.875rem;
}
.skip-link:focus { left: 0; }

/* --- HEADER --- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(253,251,247,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232,223,208,0.6);
    height: var(--header-height);
    transition: all var(--transition);
}
.site-header.scrolled {
    height: 64px;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--forest);
}
.logo-icon {
    font-size: 1.75rem;
    line-height: 1;
    color: var(--sage);
    transition: transform var(--transition);
}
.logo:hover .logo-icon { transform: scale(1.1); }
.logo-text { display: flex; flex-direction: column; }
.logo-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
}

/* Navigation */
.nav-list {
    display: flex; list-style: none; gap: 0;
}
.nav-list a {
    display: block; padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--warm-gray);
    position: relative;
    transition: color var(--transition);
}
.nav-list a::after {
    content: '';
    position: absolute; bottom: 2px; left: 18px; right: 18px;
    height: 1.5px;
    background: var(--sage);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}
.nav-list a:hover, .nav-list a.active {
    color: var(--forest);
}
.nav-list a:hover::after, .nav-list a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hamburger */
.nav-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 8px;
    width: 40px; height: 40px;
    position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 22px; height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: all var(--transition);
    position: absolute; left: 9px;
}
.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0; transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0; transform: rotate(-45deg);
}

/* --- HERO / SLIDESHOW --- */
.hero-slideshow {
    position: relative;
    height: 80vh; min-height: 500px; max-height: 800px;
    overflow: hidden;
    margin-top: var(--header-height);
}
.slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.slide-image {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(61,74,53,0.15) 0%,
        rgba(44,44,44,0.55) 100%
    );
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 24px;
}
.slide-content {
    max-width: 700px;
    animation: fadeUp 1s ease forwards;
}
.slide-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    margin-bottom: 32px;
}
.slide-dots {
    position: absolute; bottom: 32px;
    left: 50%; transform: translateX(-50%);
    display: flex; gap: 12px; z-index: 10;
}
.slide-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.slide-dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

/* --- SECTIONS --- */
.section {
    padding: 80px 0;
}
.section-alt {
    background: var(--beige);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--forest);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
}
.section-divider {
    width: 60px; height: 2px;
    background: linear-gradient(to right, var(--sage-light), var(--sage));
    margin: 0 auto 40px;
    border: none;
}
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    color: var(--warm-gray);
    font-size: 1.05rem;
}

/* --- CARDS HÉBERGEMENTS --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card:hover .card-image img {
    transform: scale(1.05);
}
.card-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--sage);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.card-body {
    padding: 28px;
}
.card-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 8px;
}
.card-meta {
    display: flex; gap: 16px;
    font-size: 0.85rem;
    color: var(--warm-gray-light);
    margin-bottom: 12px;
}
.card-meta span {
    display: flex; align-items: center; gap: 4px;
}
.card-body p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sage-dark);
}
.card-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--warm-gray-light);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}
.btn-primary {
    background: var(--sage);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--sage-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(122,139,111,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--sage-dark);
    border: 1.5px solid var(--sage);
}
.btn-outline:hover {
    background: var(--sage);
    color: var(--white);
}
.btn-gold {
    background: var(--gold);
    color: var(--white);
}
.btn-gold:hover {
    background: #B8963F;
    color: var(--white);
}

/* --- CITY PRESENTATION --- */
.city-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.city-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 20px;
    line-height: 1.2;
}
.city-text p {
    color: var(--warm-gray);
    margin-bottom: 16px;
    line-height: 1.8;
}
.city-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.city-image::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}
.city-image img {
    width: 100%; height: 400px;
    object-fit: cover;
}

/* --- DETAIL PAGE --- */
.detail-hero {
    margin-top: var(--header-height);
    padding: 60px 0 40px;
    background: var(--beige);
}
.detail-hero .container {
    max-width: 1000px;
}
.breadcrumb {
    font-size: 0.85rem;
    color: var(--warm-gray-light);
    margin-bottom: 16px;
}
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { color: var(--sage-dark); }

.detail-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 8px;
}
.detail-tags {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 24px;
}
.detail-tag {
    background: var(--sage-light);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.detail-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 24px;
}
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}
.detail-description {
    color: var(--warm-gray);
    line-height: 1.8;
    font-size: 1.02rem;
}
.detail-description p { margin-bottom: 16px; }

.detail-sidebar {
    position: sticky; top: calc(var(--header-height) + 20px);
    align-self: start;
}

/* Equipements */
.equipements-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    list-style: none;
    margin: 24px 0;
}
.equipements-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; color: var(--warm-gray);
    padding: 6px 0;
}
.equipements-list li::before {
    content: '✓';
    color: var(--sage);
    font-weight: 600;
}

/* Tarifs sidebar */
.tarifs-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--beige-dark);
}
.tarifs-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 20px;
    text-align: center;
}
.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.tarifs-table th, .tarifs-table td {
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px solid var(--beige);
}
.tarifs-table th {
    color: var(--forest);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tarifs-table td {
    color: var(--warm-gray);
}
.tarifs-table .price {
    font-weight: 500;
    color: var(--sage-dark);
}
.tarifs-cta {
    margin-top: 24px;
    text-align: center;
}
.tarifs-cta .btn { width: 100%; justify-content: center; }

/* --- PHOTO GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 32px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.gallery-grid img {
    width: 100%; height: 220px;
    object-fit: cover;
    cursor: pointer;
    transition: filter var(--transition);
}
.gallery-grid img:hover { filter: brightness(0.85); }

/* --- REGION ARTICLES --- */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.region-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--beige-dark);
}
.region-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.region-card-image {
    height: 200px; overflow: hidden;
}
.region-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.region-card:hover .region-card-image img {
    transform: scale(1.05);
}
.region-card-body {
    padding: 24px;
}
.region-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 8px;
}
.region-card-body p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* --- CONTACT FORM --- */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 20px;
}
.contact-info p {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}
.contact-detail {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 20px;
}
.contact-detail-icon {
    width: 44px; height: 44px;
    background: var(--beige);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--sage);
    font-size: 1.2rem;
}
.contact-detail-text h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 2px;
}
.contact-detail-text p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin: 0;
}

.form-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--beige-dark);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 6px;
}
.form-group label .required {
    color: var(--error);
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1.5px solid var(--beige-dark);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--charcoal);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-control:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(122,139,111,0.12);
}
textarea.form-control {
    resize: vertical; min-height: 120px;
}
select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6560' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; }

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.alert-success {
    background: rgba(107,143,94,0.1);
    border: 1px solid rgba(107,143,94,0.3);
    color: var(--success);
}
.alert-error {
    background: rgba(184,92,92,0.08);
    border: 1px solid rgba(184,92,92,0.2);
    color: var(--error);
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--beige-dark);
}
.faq-question {
    width: 100%;
    background: none; border: none;
    padding: 24px 40px 24px 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--forest);
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--sage); }
.faq-question::after {
    content: '+';
    position: absolute;
    right: 0; top: 50%; transform: translateY(-50%);
    font-size: 1.5rem; font-weight: 300;
    color: var(--sage);
    transition: transform var(--transition);
}
.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-answer-inner {
    padding: 0 0 24px;
    color: var(--warm-gray);
    line-height: 1.8;
}

/* --- AVIS / REVIEWS --- */
.avis-summary {
    text-align: center;
    margin-bottom: 48px;
}
.avis-note {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stars {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 1.2rem;
}
.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.avis-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--beige-dark);
    transition: box-shadow var(--transition);
}
.avis-card:hover { box-shadow: var(--shadow-md); }
.avis-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.avis-author {
    font-weight: 500;
    color: var(--forest);
}
.avis-hebergement {
    font-size: 0.8rem;
    color: var(--sage);
}
.avis-date {
    font-size: 0.8rem;
    color: var(--warm-gray-light);
}
.avis-text {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}
.avis-response {
    margin-top: 16px;
    padding: 16px;
    background: var(--beige);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--warm-gray);
}
.avis-response strong {
    display: block;
    color: var(--forest);
    margin-bottom: 4px;
    font-size: 0.85rem;
}

/* --- PAGE HERO (pages intérieures) --- */
.page-hero {
    margin-top: var(--header-height);
    padding: 64px 0 48px;
    background: var(--beige);
    text-align: center;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 12px;
}
.page-hero p {
    color: var(--warm-gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- ARTICLE PAGE --- */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px;
}
.article-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--forest);
    margin: 32px 0 16px;
}
.article-content p {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}
.article-content img {
    border-radius: var(--radius-md);
    margin: 24px 0;
}

/* --- FOOTER --- */
.site-footer {
    position: relative;
    color: var(--beige);
}
.footer-wave {
    color: var(--forest);
    line-height: 0;
}
.footer-wave svg {
    width: 100%; height: 60px;
}
.footer-content {
    background: var(--forest);
    padding: 48px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}
.footer-col h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 8px;
}
.footer-col a {
    color: var(--sage-light);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-col address {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--sage-light);
    line-height: 1.8;
}
.footer-col address a {
    color: var(--sage-light);
}
.footer-bottom {
    border-top: 1px solid rgba(168,184,158,0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--warm-gray-light);
}

/* --- BACK TO TOP --- */
.back-to-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 90;
}
.back-to-top.visible {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
}

/* --- MENTIONS LÉGALES --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px;
}
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--forest);
    margin: 32px 0 12px;
}
.legal-content p {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* --- 404 PAGE --- */
.error-page {
    margin-top: var(--header-height);
    padding: 120px 24px;
    text-align: center;
}
.error-page h1 {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    color: var(--beige-dark);
    line-height: 1;
}
.error-page p {
    color: var(--warm-gray);
    font-size: 1.1rem;
    margin: 16px 0 32px;
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1; transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .city-section {
        grid-template-columns: 1fr;
    }
    .city-image { order: -1; }
    .city-image img { height: 300px; }
    .detail-grid { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
}

@media (max-width: 768px) {
    :root { --header-height: 64px; }

    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0; right: 0; bottom: 0;
        background: rgba(253,251,247,0.98);
        backdrop-filter: blur(20px);
        display: flex; align-items: center; justify-content: center;
        opacity: 0; visibility: hidden;
        transition: all var(--transition);
    }
    .main-nav.open {
        opacity: 1; visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .nav-list a {
        font-size: 1.2rem;
        padding: 16px 24px;
    }
    .nav-list a::after { display: none; }

    .hero-slideshow {
        height: 60vh;
        min-height: 400px;
    }
    .section { padding: 56px 0; }
    .cards-grid { grid-template-columns: 1fr; }

    .contact-section {
        grid-template-columns: 1fr;
    }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }

    .equipements-list { grid-template-columns: 1fr; }

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

    .avis-grid { grid-template-columns: 1fr; }
    .region-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .slide-content h1 { font-size: 1.8rem; }
    .hero-slideshow { height: 50vh; min-height: 350px; }
    .form-card { padding: 24px; }
    .gallery-grid { grid-template-columns: 1fr; }
}

/* --- Language Switch --- */
.lang-switch-link {
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 20px !important;
    padding: 4px 12px !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}
.lang-switch-link:hover {
    background: rgba(255,255,255,0.15) !important;
}

/* --- Lightbox / Shadowbox --- */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}
.lightbox-image-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-image-wrapper img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    animation: lbFadeIn 0.3s ease;
}
@keyframes lbFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.lightbox-close {
    position: absolute;
    top: 16px; right: 20px;
    color: #fff;
    font-size: 2.2rem;
    background: rgba(255,255,255,0.12);
    border: none;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.2s;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    color: #fff;
    font-size: 2.5rem;
    background: rgba(255,255,255,0.10);
    border: none;
    width: 52px; height: 52px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.2s;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 14px;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .lightbox-nav { width: 42px; height: 42px; font-size: 1.8rem; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 10px; right: 12px; width: 40px; height: 40px; font-size: 1.8rem; }
}

/* Print styles */
@media print {
    .site-header, .site-footer, .back-to-top, .nav-toggle,
    .slide-dots, .btn { display: none !important; }
    body { font-size: 12pt; color: #000; }
    .hero-slideshow { display: none; }
}
