/* ===== VARIABLES ===== */
:root {
    --brun-fonce: #4A2C0A;
    --brun-mid:   #7A5230;
    --or:         #C9A96E;
    --or-clair:   #E8D5B0;
    --creme:      #FAF7F2;
    --texte:      #2C1A0A;
    --blanc:      #FFFFFF;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Georgia', serif;
    background-color: var(--creme);
    color: var(--texte);
    line-height: 1.7;
}

/* ===== TOPBAR ===== */
.topbar {
    background-color: var(--brun-fonce);
    color: var(--or);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 7px 40px;
    font-size: 0.82rem;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar a {
    color: var(--or);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.3s;
}

.topbar a:hover {
    color: var(--or-clair);
}

.topbar-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--blanc);
    border-bottom: 3px solid var(--or);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 40px;
    box-shadow: 0 2px 10px rgba(74, 44, 10, 0.15);
}

.header-logo img {
    height: 120px;
    object-fit: contain;
}

nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--brun-fonce);
    font-size: 0.82rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--or);
    border-bottom-color: var(--or);
}

/* Menu burger mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--brun-fonce);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ===== SLIDER ===== */
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #3D2008;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

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

.slide.active img {
    animation: kenburns 5s ease-out forwards;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(74,44,10,0.25), rgba(74,44,10,0.55));
    z-index: 1;
}

.slide-caption {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--blanc);
    padding: 0 20px;
}

.slide-caption h1,
.slide-caption h2 {
    font-size: 2.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    margin-bottom: 12px;
}

.slide-caption h1 { font-size: 2.2rem; }

.slide-caption p {
    font-size: 1.1rem;
    margin-top: 0;
    font-style: italic;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    margin-bottom: 0;
}

@keyframes kenburns {
    0%   { transform: scale(1); }
    100% { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
    .slide { transition: none; }
    .slide.active img { animation: none; }
}

/* Indicateurs slider */
.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    display: block;
}
.slider-dots span.active {
    background: var(--or);
}

/* ===== SECTION INTRO ===== */
.intro {
    text-align: center;
    padding: 70px 40px;
    max-width: 860px;
    margin: 0 auto;
}

.intro h2 {
    font-size: 2rem;
    color: var(--brun-fonce);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.intro .separateur {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--brun-fonce), var(--or));
    margin: 0 auto 28px;
    border-radius: 2px;
}

.intro p {
    font-size: 1.05rem;
    color: #5a3a1a;
    line-height: 1.9;
}

/* ===== SERVICES / PRESTATIONS ACCUEIL ===== */
.services {
    background-color: var(--or-clair);
    padding: 60px 40px;
}

.services-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 1.7rem;
    color: var(--brun-fonce);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services .separateur {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--brun-fonce), var(--or));
    margin: 0 auto 40px;
    border-radius: 2px;
}

.home-prestations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-prestation-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--blanc);
    box-shadow: 0 2px 12px rgba(74,44,10,0.10);
    transition: box-shadow 0.2s, transform 0.2s;
}

.home-prestation-card:hover {
    box-shadow: 0 6px 24px rgba(74,44,10,0.18);
    transform: translateY(-4px);
}

.home-prestation-card > a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.home-prestation-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.home-prestation-card:hover .home-prestation-img img {
    transform: scale(1.04);
}

.home-prestation-body {
    padding: 16px 18px 20px;
}

.home-prestation-body h3 {
    font-size: 1.05rem;
    color: var(--brun-fonce);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.home-prestation-body p {
    font-size: 0.88rem;
    color: #6b4929;
    margin: 0 0 12px;
    line-height: 1.5;
}

.home-prestation-lien {
    font-size: 0.82rem;
    color: var(--or);
    font-weight: bold;
    letter-spacing: 0.02em;
}

/* ===== SECTION CAMION ===== */
.section-camion {
    background: var(--brun-fonce);
    padding: 70px 40px;
}

.section-camion-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.section-camion-texte {
    flex: 1;
    color: var(--blanc);
}

.section-camion-texte h2 {
    font-size: 1.8rem;
    color: var(--or);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-camion-texte .separateur {
    background: linear-gradient(to right, var(--or), var(--or-clair));
    width: 60px;
    height: 3px;
    margin-bottom: 24px;
    border-radius: 2px;
}

.section-camion-texte p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--or-clair);
    margin-bottom: 16px;
}

.section-camion-texte strong {
    color: var(--blanc);
}

.section-camion-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.section-camion-img img {
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

.btn-cta-inline {
    margin-top: 8px;
}

/* ===== PAGE INTÉRIEURE (sol / sdb) ===== */
.page-hero {
    height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(74, 44, 10, 0.5);
}

.page-hero-carrelage {
    background-image: url('../picture/carrelage/collegien/carrelage-jardin-collegien-apres.jpg');
    background-color: #6B4C2A;
}

.page-hero-parquet {
    background-image: url('../picture/parquet/collegien/parquet-collegien-sejour-apres-2.jpg');
    background-color: #5C3D1E;
}

.page-hero-cuisine {
    background-image: url('../picture/cuisine/noisy/cuisine-noisy-le-grand-apres-renovation.jpg');
    background-color: #3D2008;
}

.page-hero-sdb {
    background-image: url('../picture/salle_de_bain/collegien/salle-de-bain-mansardee-collegien-apres-wc-suspendu-velux.jpg');
    background-color: #3D2008;
}

.page-hero-cloison {
    background-image: url('../picture/cloison/Bussy-Saint-Martin/cloison-placo-bussy-saint-martin-en-cours-ossature-cloisons-1.jpg');
    background-color: #3A3F45;
}

.page-hero-apropos {
    background: linear-gradient(135deg, #4A2C0A, #8B6347);
}

.page-hero-contact {
    background: linear-gradient(135deg, #2C1A0A, #7A5230);
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    color: var(--blanc);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-sub {
    color: var(--or-clair);
    font-size: 1.05rem;
    font-style: italic;
    margin-top: 10px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.projet-hero-tag {
    color: var(--or);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* ===== PROJETS GRID (page parquet) ===== */
.projets-section {
    padding: 60px 40px;
    background-color: var(--creme);
}

.projets-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.projets-section h2 {
    font-size: 1.5rem;
    color: var(--brun-fonce);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.projets-intro {
    color: #5a3a1a;
    font-size: 1rem;
    margin-bottom: 0;
}

.projets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 36px;
}

.projet-card {
    background: var(--blanc);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(74,44,10,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.projet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(74,44,10,0.2);
}

.projet-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.projet-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.projet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s;
}

.projet-card:hover .projet-card-img img {
    transform: scale(1.06);
}

.projet-card-img--placeholder {
    background-color: #c8ae87;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projet-card-placeholder-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.projet-card-body {
    padding: 18px 20px 20px;
    border-top: 3px solid var(--or);
}

.projet-card-body h3 {
    font-size: 1rem;
    color: var(--brun-fonce);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.projet-card-lieu {
    font-size: 0.85rem;
    color: var(--brun-mid);
    font-style: italic;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.projet-card-lien {
    font-size: 0.82rem;
    color: var(--or);
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== FAQ ===== */
.faq-section {
    background-color: var(--or-clair);
    padding: 60px 40px;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 1.5rem;
    color: var(--brun-fonce);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
}

.faq-item {
    background: var(--blanc);
    border-left: 4px solid var(--or);
    border-radius: 4px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(74,44,10,0.08);
}

.faq-item summary {
    cursor: pointer;
    padding: 16px 20px;
    font-weight: bold;
    color: var(--brun-fonce);
    font-size: 0.97rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--or);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 20px 18px;
    color: #5a3a1a;
    font-size: 0.95rem;
    line-height: 1.85;
    margin: 0;
}

/* ===== FIL D'ARIANE ===== */
.breadcrumb {
    padding: 12px 40px;
    background-color: var(--blanc);
    border-bottom: 1px solid var(--or-clair);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.82rem;
    color: var(--brun-mid);
}

.breadcrumb li + li::before {
    content: '›';
    margin-right: 6px;
    color: var(--or);
}

.breadcrumb a {
    color: var(--brun-mid);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--or);
}

/* ===== PAGE PROJET DÉTAIL ===== */
.projet-content {
    padding: 60px 40px;
}

.projet-content-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

.projet-description h2 {
    font-size: 1.5rem;
    color: var(--brun-fonce);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.projet-description p {
    color: #5a3a1a;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.projet-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.projet-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--or-clair);
    border-radius: 2px;
    font-size: 0.82rem;
    color: var(--brun-fonce);
    font-weight: bold;
    letter-spacing: 0.5px;
}

.projet-infos {
    background: var(--blanc);
    border-top: 4px solid var(--or);
    border-radius: 4px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(74,44,10,0.1);
}

.projet-infos h2 {
    font-size: 1rem;
    color: var(--brun-fonce);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.projet-infos dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 16px;
    font-size: 0.9rem;
}

.projet-infos dt {
    color: var(--or);
    font-weight: bold;
    white-space: nowrap;
}

.projet-infos dd {
    color: #5a3a1a;
    margin: 0;
}

.btn-cta-sm {
    display: inline-block;
    margin-top: 24px;
    padding: 11px 24px;
    font-size: 0.85rem;
}

.projet-galerie-section {
    padding: 40px 40px 60px;
    background-color: var(--or-clair);
}

.projet-galerie-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.projet-galerie-section h2 {
    font-size: 1.5rem;
    color: var(--brun-fonce);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.projet-galerie {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.projet-galerie-item {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(74,44,10,0.15);
    aspect-ratio: 4 / 3;
    transition: transform 0.3s;
}

.projet-galerie-item:hover {
    transform: scale(1.02);
}

.projet-galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.projet-nav-section {
    padding: 24px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.projet-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brun-mid);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.projet-nav-back:hover {
    color: var(--or);
}

/* ===== GALERIE PAR PIÈCE (page projet) ===== */
.rooms-section {
    background-color: var(--or-clair);
    padding: 60px 40px;
}

.rooms-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.rooms-section h2 {
    font-size: 1.5rem;
    color: var(--brun-fonce);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rooms-intro {
    color: var(--brun-mid);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0;
}

.room-block {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(74, 44, 10, 0.12);
}

.room-block:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 36px;
}

.prestation-liste {
    margin: 12px 0 16px 20px;
    color: var(--brun-texte);
    line-height: 1.9;
}

.prestation-tarif {
    margin-top: 10px;
    color: var(--brun-fonce);
    font-size: 0.97rem;
}

.prestation-total {
    border-top: 2px solid var(--or-clair);
    text-align: right;
}

.prestation-tarif-total {
    font-size: 1.15rem;
    color: var(--brun-fonce);
    letter-spacing: 0.5px;
}

.room-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--brun-fonce);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.room-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--or);
    color: var(--blanc);
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

.room-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.room-photo {
    margin: 0;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(74,44,10,0.12);
}

/* Photo avant qui s'étire sur 2 lignes (quand 3+ photos) */
.room-photo--span {
    grid-row: span 2;
}

/* Dernière photo qui prend toute la largeur (pour les comptes impairs) */
.room-photo--full {
    grid-column: span 2;
}

.room-photo-btn {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    background: none;
    cursor: zoom-in;
    overflow: hidden;
}

.room-photo-btn {
    aspect-ratio: 4 / 3;
}

.room-photo-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.room-photo-btn:hover img {
    transform: scale(1.04);
}

.room-photo figcaption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 1;
    pointer-events: none;
}

.badge {
    display: inline-block;
    padding: 4px 11px;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    backdrop-filter: blur(2px);
}

.badge--avant {
    background: rgba(44, 26, 10, 0.82);
    color: var(--or-clair);
}

.badge--pendant {
    background: rgba(201, 169, 110, 0.9);
    color: var(--brun-fonce);
}

.badge--apres {
    background: rgba(40, 90, 50, 0.85);
    color: #fff;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-overlay.is-open {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 2px;
    cursor: default;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.85);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
    z-index: 1;
}

.lightbox-close:hover {
    color: #fff;
}

.lightbox-caption {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-style: italic;
    pointer-events: none;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-content h2 {
    font-size: 1.5rem;
    color: var(--brun-fonce);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.page-content .separateur {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--brun-fonce), var(--or));
    margin-bottom: 28px;
    border-radius: 2px;
}

.page-content p {
    margin-bottom: 20px;
    color: #5a3a1a;
    font-size: 1rem;
}

/* Grille photos page intérieure */
.galerie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.galerie-item {
    height: 200px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 3px 12px rgba(74,44,10,0.15);
    transition: transform 0.3s;
}

.galerie-item:hover { transform: scale(1.02); }

.galerie-placeholder-1 { background: linear-gradient(135deg, #C9A96E, #7A5230); }
.galerie-placeholder-2 { background: linear-gradient(135deg, #8B6347, #E8D5B0); }
.galerie-placeholder-3 { background: linear-gradient(135deg, #5C3D1E, #C9A96E); }
.galerie-placeholder-4 { background: linear-gradient(135deg, #4A2C0A, #9E7550); }

.galerie-texte {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

/* ===== PRESTATIONS LISTE ===== */
.prestations {
    background-color: var(--or-clair);
    padding: 50px 40px;
}

.prestations h2 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--brun-fonce);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.prestations .separateur {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--brun-fonce), var(--or));
    margin: 0 auto 30px;
    border-radius: 2px;
}

.prestations ul {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.prestations ul li {
    padding-left: 28px;
    position: relative;
    color: var(--brun-fonce);
    font-size: 1rem;
}

.prestations ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--or);
    font-size: 0.7rem;
    top: 5px;
}

/* ===== CTA ===== */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background-color: var(--brun-fonce);
}

.cta-section h2 {
    color: var(--or-clair);
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.cta-section p {
    color: rgba(232, 213, 176, 0.8);
    margin-bottom: 28px;
    font-size: 1rem;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(to right, var(--or), #D4AA70);
    color: var(--brun-fonce);
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: opacity 0.3s, transform 0.3s;
}

.btn-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--brun-fonce);
    border-top: 3px solid var(--or);
    color: var(--or-clair);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.footer-logo img {
    height: 90px;
    filter: brightness(1.1);
    flex-shrink: 0;
}

.footer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.footer-contact a {
    color: var(--or);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--or-clair);
}

.footer-contact .icone-pied {
    font-size: 1.2rem;
}

.icone-pied-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-copy {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(232, 213, 176, 0.5);
    font-variant-numeric: lining-nums;
}

/* ===== PAGE À PROPOS ===== */
.apropos-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 40px;
}

.apropos-content h2 {
    font-size: 1.5rem;
    color: var(--brun-fonce);
    margin-top: 40px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.apropos-content h2:first-child {
    margin-top: 0;
}

.apropos-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--or);
    margin-bottom: 16px;
}

.apropos-prestations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0 12px;
}

.apropos-prestation-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(74,44,10,0.10);
    transition: box-shadow 0.2s, transform 0.2s;
    background: var(--blanc);
}

.apropos-prestation-card:hover {
    box-shadow: 0 6px 24px rgba(74,44,10,0.18);
    transform: translateY(-3px);
}

.apropos-prestation-card > a {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.apropos-prestation-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.apropos-prestation-card:hover .apropos-prestation-img img {
    transform: scale(1.04);
}

.apropos-prestation-body {
    padding: 16px 20px 20px;
}

.apropos-prestation-body h3 {
    font-size: 1.05rem;
    color: var(--brun-fonce);
    margin: 0 0 8px;
    font-family: 'Playfair Display', serif;
}

.apropos-prestation-body p {
    font-size: 0.9rem;
    color: #6b4929;
    margin: 0 0 12px;
    line-height: 1.5;
}

.apropos-prestation-lien {
    font-size: 0.85rem;
    color: var(--or);
    font-weight: 600;
    letter-spacing: 0.02em;
}

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

.apropos-content .separateur {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--brun-fonce), var(--or));
    margin-bottom: 28px;
    border-radius: 2px;
}

.apropos-content p {
    margin-bottom: 20px;
    color: #5a3a1a;
    font-size: 1rem;
    line-height: 1.9;
}

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

.valeur-item {
    background: var(--blanc);
    border-top: 4px solid var(--or);
    border-radius: 4px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(74,44,10,0.1);
}

.valeur-item .icone {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}

.valeur-item h3 {
    font-size: 1rem;
    color: var(--brun-fonce);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.valeur-item p {
    font-size: 0.9rem;
    color: #6b4c2a;
    line-height: 1.7;
    margin: 0;
}

/* ===== PAGE CONTACT ===== */
.contact-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.5rem;
    color: var(--brun-fonce);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.contact-info .separateur {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--brun-fonce), var(--or));
    margin-bottom: 28px;
    border-radius: 2px;
}

.contact-info p {
    color: #5a3a1a;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

.contact-liens {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-lien {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--brun-fonce);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-lien:hover {
    color: var(--or);
}

.contact-lien .icone-contact {
    width: 42px;
    height: 42px;
    background: var(--or-clair);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-form-block h2 {
    font-size: 1.5rem;
    color: var(--brun-fonce);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.contact-form-block .separateur {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--brun-fonce), var(--or));
    margin-bottom: 28px;
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--or-clair);
    border-radius: 4px;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    color: var(--texte);
    background: var(--blanc);
    transition: border-color 0.3s;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--or);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .btn-cta {
    align-self: flex-start;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, var(--or), #D4AA70);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-succes,
.form-erreur {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.form-succes {
    background: #e6f4ea;
    color: #2d6a4f;
    border: 1px solid #95d5b2;
}

.form-erreur {
    background: #fdecea;
    color: #9b2335;
    border: 1px solid #f5c2c7;
}

/* ===== RESPONSIVE ===== */

/* Header / nav : burger dès 1023px */
@media (max-width: 1023px) {
    header { padding: 6px 20px; }

    .header-logo img { height: 70px; }

    nav { display: none; width: 100%; }
    nav.open { display: block; }
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--blanc);
        padding: 20px;
        border-top: 2px solid var(--or);
        gap: 16px;
        box-shadow: 0 6px 16px rgba(74,44,10,0.12);
    }

    .menu-toggle { display: flex; }
}

@media (max-width: 768px) {
    .topbar {
        padding: 6px 16px;
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }
    .topbar-left { gap: 12px; }
    .topbar-right { gap: 12px; flex-wrap: wrap; justify-content: center; }

    .slider-wrapper { height: 340px; }
    .slide-caption h1,
    .slide-caption h2 { font-size: 1.4rem; }

    .intro { padding: 44px 20px; }
    .intro h2 { font-size: 1.5rem; }

    .services { padding: 40px 20px; }
    .home-prestations-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .section-camion { padding: 50px 20px; }
    .section-camion-inner { flex-direction: column; gap: 32px; }
    .section-camion-img img { max-height: 220px; }

    .prestations ul { grid-template-columns: 1fr; }

    .page-content { padding: 40px 20px; }
    .page-hero h1 { font-size: 1.6rem; }

    .footer-contact { flex-direction: column; gap: 16px; align-items: center; }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .apropos-content { padding: 40px 20px; }
    .valeurs { grid-template-columns: 1fr; }

    .projets-section { padding: 40px 20px; }
    .projets-grid { grid-template-columns: 1fr; }

    .faq-section { padding: 40px 20px; }

    .breadcrumb { padding: 10px 20px; }

    .projet-content { padding: 40px 20px; }
    .projet-content-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .projet-galerie-section { padding: 30px 20px 40px; }
    .projet-galerie { grid-template-columns: 1fr 1fr; }

    .projet-nav-section { padding: 20px; }

    .rooms-section { padding: 40px 20px; }

    .room-photos {
        grid-template-columns: 1fr;
    }

    .room-photo--span,
    .room-photo--full {
        grid-row: auto;
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .home-prestations-grid { grid-template-columns: 1fr; }
}