/* ==========================================================================
   CÉLESTIN CONCIERGERIE — STYLES
   ========================================================================== */

:root {
    --brand-main: #2a3436;
    --brand-secondary: #d6d0c2;
    --brand-alt: #9e7758;
    --brand-light: #f3efe6;
    --brand-ink: #2a3436;
    --brand-surface: #3d4b4b;
    --brand-white: #ffffff;
    --brand-border: rgba(214, 208, 194, 0.16);
    --brand-danger: #b8004d;

    --font-body: 'Quicksand', system-ui, sans-serif;
    --font-heading: 'DM Sans', system-ui, sans-serif;
    --font-nav: 'Quicksand', system-ui, sans-serif;

    --container-width: 1160px;
    --radius: 12px;
    --transition: 200ms ease;
    --header-clearance: 188px;
    --title-gap: 28px;
    --title-offset: max(var(--header-clearance), 30vh);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--brand-light);
    background-color: var(--brand-ink);
    overflow-x: clip;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
*:focus-visible { outline: 2px solid var(--brand-secondary); outline-offset: 2px; }

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

.eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-secondary);
    opacity: 1;
    margin-bottom: 10px;
}

.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.text-center { text-align: center; }
.muted { opacity: 0.65; }
.small { font-size: 13px; }

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: transparent;
    color: var(--brand-secondary);
    border-bottom: none;
    transition: background var(--transition);
}
.site-header.is-scrolled {
    background: rgba(42, 52, 54, 0.94);
    backdrop-filter: blur(12px);
}
body:not(.has-bleed) {
    padding-top: var(--header-clearance);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 29px;
    padding: 22px 0;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.logo:hover { opacity: 0.8; }
.logo-svg {
    width: 180px;
    height: auto;
    max-width: none;
    display: block;
    transform: scaleX(1.13);
    transform-origin: left center;
    transition: width var(--transition);
}
.site-header.is-scrolled .logo-svg {
    width: 120px;
}
.logo-svg path {
    fill: var(--brand-secondary) !important;
    transition: fill var(--transition);
}
.nav > nav { display: flex; }
.nav-links {
    display: flex;
    gap: 38px;
    list-style: none;
}
.nav-links a,
.nav-phone a {
    font-family: var(--font-nav);
    font-size: 18px;
    font-weight: 500;
    color: var(--brand-white);
    opacity: 0.86;
    transition: opacity var(--transition), color var(--transition);
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active, .nav-phone a:hover { opacity: 1; font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 7px;
}
.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--brand-white);
    border-radius: 1px;
    transition: background var(--transition);
}
.site-header.is-logo-on-light:not(.is-scrolled) .logo-svg path { fill: #1c2224 !important; }
.site-header.is-nav-on-light:not(.is-scrolled) .nav-links a,
.site-header.is-nav-on-light:not(.is-scrolled) .nav-phone a { color: #1c2224; }
.site-header.is-nav-on-light:not(.is-scrolled) .mobile-menu-toggle span { background: #1c2224; }
body.is-home .site-header.is-nav-on-light:not(.is-scrolled) .nav-links a,
body.is-home .site-header.is-nav-on-light:not(.is-scrolled) .nav-phone a { color: var(--brand-white); }
body.is-home .site-header.is-nav-on-light:not(.is-scrolled) .mobile-menu-toggle span { background: var(--brand-white); }
body.is-home .logo-svg path { fill: var(--brand-white) !important; }

/* ==========================================================================
   BOUTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 9999px;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-primary {
    background: var(--brand-alt);
    color: var(--brand-light);
    border-color: var(--brand-alt);
}
.btn-primary:hover { background: #8b684c; color: var(--brand-light); }
.btn-outline {
    background: transparent;
    color: var(--brand-secondary);
    border-color: var(--brand-secondary);
}
.btn-outline:hover {
    background: var(--brand-secondary);
    color: var(--brand-main);
}
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ==========================================================================
   HERO / PAGE TITLE
   ========================================================================== */

.hero {
    padding: 72px 0 48px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.hero h1 { font-size: 46px; max-width: 720px; color: var(--brand-light); }
.hero p { font-size: 16px; max-width: 640px; color: var(--brand-light); opacity: 0.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; margin-top: 6px; }

.hero-cinema {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--brand-main);
}
.hero-cinema .photo-carousel {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    max-height: none;
    z-index: 1;
}
.hero-cinema-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(105deg, rgba(20, 24, 26, 0.92) 0%, rgba(28, 34, 36, 0.72) 36%, rgba(28, 34, 36, 0.28) 62%, rgba(28, 34, 36, 0.12) 100%);
}
.hero-cinema-copy {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    padding-top: var(--title-offset);
    padding-bottom: 48px;
}
.hero-cinema-copy h1 {
    font-size: 46px;
    letter-spacing: -0.02em;
    color: var(--brand-light);
    max-width: 640px;
    margin: 0;
}
.hero-cinema-copy p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(249, 249, 248, 0.78);
    max-width: 520px;
}
.hero-cinema .photo-carousel-nav,
.hero-cinema .photo-carousel-dots { z-index: 4; }

.page-title {
    padding: calc(var(--title-offset) - var(--header-clearance)) 0 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--brand-light);
}
.page-title h1,
.page-title h2 { font-size: 30px; max-width: 620px; color: var(--brand-light); }
.page-title p { font-size: 15px; max-width: 500px; opacity: 0.65; }

/* ==========================================================================
   PHOTO PLACEHOLDER
   ========================================================================== */

.photo-placeholder {
    background: var(--brand-surface);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--brand-secondary);
    min-height: 120px;
}
.photo-placeholder svg { width: 28px; height: 28px; }
.photo-placeholder span { font-size: 12px; opacity: 0.7; }

/* ==========================================================================
   STATS STRIP
   ========================================================================== */

.stats-strip {
    background: var(--brand-main);
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
}
.stats-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 40px;
    padding: 56px 24px;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-value {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--brand-secondary);
    min-height: 56px;
}
.stat-value.is-geo {
    display: block;
    flex: 0 0 auto;
    min-height: 0;
    margin-top: auto;
    font-size: 22px;
    line-height: 1.2;
    text-align: center;
}
.stat-label {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(249, 249, 248, 0.55);
    margin-top: 12px;
    min-height: 1.4em;
}

/* ==========================================================================
   FILTER BAR
   ========================================================================== */

.filter-bar {
    display: flex;
    gap: 12px;
    margin: 28px 0;
    flex-wrap: wrap;
}
.filter-field {
    flex: 1;
    min-width: 160px;
    border: 1px solid var(--brand-border);
    border-radius: 6px;
    padding: 10px 14px;
    background: #252c2e;
}
.filter-field label { display: block; font-size: 10px; color: rgba(249, 249, 248, 0.65); margin-bottom: 2px; }
.filter-field input, .filter-field select { width: 100%; border: none; background: none; font-size: 13px; color: var(--brand-light); }

/* ==========================================================================
   CARDS LOGEMENTS
   ========================================================================== */

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.property-card {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--brand-surface);
    display: flex;
    flex-direction: column;
}
.property-card .photo-placeholder { border-radius: 0; height: 170px; }
.property-card-body { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.property-card-body h3 { font-size: 15px; }
.property-card-meta { font-size: 12px; opacity: 0.55; }
.property-card-price { font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin-top: 6px; }
.property-card-price small { font-weight: 400; font-size: 11px; opacity: 0.6; }

/* ==========================================================================
   FICHE LOGEMENT
   ========================================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 340px;
    margin: 32px 0;
}
.gallery-grid .photo-placeholder:first-child { grid-row: 1 / 3; }

.property-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; padding-bottom: 64px; }
.property-info h1 { font-size: 26px; margin-bottom: 4px; }
.property-info .location { opacity: 0.6; font-size: 14px; margin-bottom: 4px; }
.property-info .specs { opacity: 0.5; font-size: 13px; margin-bottom: 20px; }
.property-info .description { font-size: 14px; opacity: 0.8; line-height: 1.7; margin-bottom: 24px; }
hr.divider { border: none; border-top: 1px solid var(--brand-border); margin: 24px 0; }

.amenities { display: flex; gap: 10px; flex-wrap: wrap; }
.amenity-chip {
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    background: var(--brand-surface);
}

.booking-box {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 22px;
    position: sticky;
    top: 90px;
    background: var(--brand-surface);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.booking-box .price { font-family: var(--font-heading); font-weight: 700; font-size: 20px; }
.booking-box .price small { font-weight: 400; font-size: 12px; opacity: 0.6; }
.booking-dates { display: flex; gap: 10px; }
.booking-field {
    flex: 1;
    border: 1px solid var(--brand-border);
    border-radius: 6px;
    padding: 9px 12px;
    background: #252c2e;
}
.booking-field label { display: block; font-size: 10px; color: rgba(249, 249, 248, 0.65); }
.price-row { display: flex; justify-content: space-between; font-size: 13px; }
.price-row.strong { font-weight: 700; font-size: 14px; }
.reassurance { font-size: 11px; opacity: 0.5; text-align: center; }

/* ==========================================================================
   SERVICES / CONCIERGERIE
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding-bottom: 8px;
}
.service-card {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 36px 32px;
    background: var(--brand-surface);
}
.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--brand-secondary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(249, 249, 248, 0.78);
}
.services-home-cta {
    margin-top: 48px;
}

.offer-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 40px;
    margin-bottom: 40px;
}
.offer-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--brand-border);
}
.offer-item-number {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--brand-secondary);
    flex-shrink: 0;
}
.offer-item p {
    font-size: 14px;
    color: var(--brand-light);
}
.offer-item-icon {
    display: flex;
    color: var(--brand-secondary);
    margin-bottom: 10px;
}
.offer-item-icon svg { display: block; }

.services-hero {
    position: relative;
    min-height: 100vh;
    background: var(--brand-main);
}
.services-hero-photo {
    position: absolute;
    inset: 0;
    margin: 0;
    overflow: hidden;
}
.services-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.services-hero-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(105deg, rgba(20, 24, 26, 0.92) 0%, rgba(28, 34, 36, 0.75) 38%, rgba(28, 34, 36, 0.5) 68%, rgba(28, 34, 36, 0.38) 100%);
}
.services-hero-inner {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 36px;
    padding: var(--title-offset) 0 48px;
}
.services-hero-intro {
    max-width: 640px;
    text-align: left;
}
.services-hero-intro h1 {
    font-size: 46px;
    letter-spacing: -0.02em;
    color: var(--brand-light);
    margin: 0 0 14px;
}
.services-hero-intro p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(249, 249, 248, 0.78);
    max-width: 520px;
    margin: 0;
}
.services-hero .offer-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-bottom: 0;
    width: 100%;
    max-width: none;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--brand-border);
}
.services-hero .offer-item {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-height: 124px;
    padding: 28px 28px;
    border: none;
    border-radius: 0;
    background: rgba(20, 24, 26, 0.64);
    color: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition);
}
.services-hero .offer-item:hover {
    background: rgba(28, 34, 36, 0.92);
}
.editorial-row {
    scroll-margin-top: 16px;
}
.services-hero .offer-item-icon {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    background: rgba(215, 208, 193, 0.08);
}
.services-hero .offer-item-icon svg {
    width: 28px;
    height: 28px;
}
.services-hero .offer-item p {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--brand-light);
}

.service-detail {
    padding: 32px 0;
    border-top: 1px solid var(--brand-border);
}
.service-detail h2 { font-size: 20px; margin-bottom: 12px; }
.detail-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    max-width: 640px;
}
.detail-list li {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}
.detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-secondary);
    top: 0.55em;
    opacity: 0.85;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 0;
}
.why-card {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 36px 32px;
    background: var(--brand-surface);
}
.why-card h2 { font-size: 16px; margin-bottom: 12px; }
.why-card p { font-size: 14px; line-height: 1.55; }
.why-section .page-title {
    padding-top: 56px;
    padding-bottom: 40px;
}
.why-closer {
    border-top: 1px solid var(--brand-border);
    padding: 56px 0 64px;
}
.why-closer p {
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    max-width: none;
    margin: 0 auto 28px;
    white-space: nowrap;
}

.about-intro {
    max-width: 680px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-intro p { font-size: 16px; line-height: 1.6; }

/* ==========================================================================
   TARIFS
   ========================================================================== */

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: 64px; }
.pricing-card {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 24px;
    background: var(--brand-surface);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pricing-card h3 { font-size: 16px; }
.pricing-rows { display: flex; flex-direction: column; gap: 10px; }

/* ==========================================================================
   ÉQUIPE
   ========================================================================== */

.team-grid { display: flex; justify-content: center; gap: 48px; padding: 48px 0 64px; flex-wrap: wrap; }
.team-card { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 220px; text-align: center; }
.avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    flex-shrink: 0;
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}
.avatar-celestin {
    --celestin-zoom: 1.3;
    --celestin-x: 0px;
    --celestin-y: -27px;
}
.avatar-celestin img {
    object-position: center center;
    transform: translate(var(--celestin-x), var(--celestin-y)) scale(var(--celestin-zoom));
}
.team-card h3 { font-size: 17px; }
.team-card p { font-size: 13px; opacity: 0.6; line-height: 1.5; }

/* ==========================================================================
   FORMULAIRES (contact / devenir propriétaire)
   ========================================================================== */

.form-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; padding-bottom: 64px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 500; color: rgba(249, 249, 248, 0.65); }
.field input, .field textarea {
    border: 1px solid var(--brand-border);
    border-radius: 6px;
    padding: 11px 14px;
    font-size: 14px;
    background: #252c2e;
    color: var(--brand-light);
}
.field input:focus, .field textarea:focus { border-color: var(--brand-secondary); outline: none; }
.field textarea { resize: vertical; min-height: 143px; }
.field.full { grid-column: 1 / -1; }

.why-box {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 22px;
    background: var(--brand-surface);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: start;
}
.why-box h3 { font-size: 15px; }
.why-item { display: flex; flex-direction: column; gap: 2px; }
.why-item strong { font-size: 13px; }
.why-item span { font-size: 12px; opacity: 0.65; line-height: 1.5; }

.form-feedback {
    display: none;
    border: 1px solid var(--brand-secondary);
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 13px;
    margin-top: 12px;
    background: var(--brand-surface);
}
.form-feedback.visible { display: block; }
.form-feedback-error {
    border-color: var(--brand-danger);
}
.contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0);
    border: 0 !important;
}

/* ==========================================================================
   TUNNEL DE RÉSERVATION
   ========================================================================== */

.stepper { display: flex; border-bottom: 1px solid var(--brand-border); margin-bottom: 32px; overflow-x: auto; }
.step {
    padding: 14px 20px 12px;
    border-bottom: 2px solid transparent;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.4;
    white-space: nowrap;
}
.step.active { border-bottom-color: var(--brand-secondary); font-weight: 700; opacity: 1; }
.step.done { opacity: 0.7; }

.step-panel { display: none; }
.step-panel.active { display: block; }

.reservation-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 64px; }
.summary-card {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    margin-bottom: 16px;
    background: var(--brand-surface);
}
.summary-card .photo-placeholder { width: 110px; border-radius: 0; flex-shrink: 0; }
.summary-card-body { padding: 12px 14px; }
.summary-card-body h4 { font-size: 14px; }
.summary-card-body p { font-size: 12px; opacity: 0.6; }
.summary-totals {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--brand-surface);
}
.stepper-nav { display: flex; justify-content: space-between; margin-top: 24px; }

.guest-stepper { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--brand-border); border-radius: 6px; padding: 10px 14px; background: var(--brand-surface); }
.guest-stepper button { background: var(--brand-secondary); color: var(--brand-main); border: none; width: 26px; height: 26px; border-radius: 50%; font-size: 14px; }

/* ==========================================================================
   CONFIRMATION
   ========================================================================== */

.confirmation-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 64px 0;
    text-align: center;
}
.check-circle {
    width: 56px; height: 56px; border-radius: 50%;
    border: 1.5px solid var(--brand-secondary);
    display: flex; align-items: center; justify-content: center;
}
.confirmation-recap {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 20px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    background: var(--brand-surface);
}

/* ==========================================================================
   PAGES LÉGALES
   ========================================================================== */

.legal-content { max-width: 680px; margin: 0 auto; padding-bottom: 64px; display: flex; flex-direction: column; gap: 36px; }
.legal-content section h2 {
    font-size: 18px;
    color: var(--brand-secondary);
    margin-bottom: 12px;
}
.legal-content section p {
    font-size: 15px;
    color: var(--brand-light);
    line-height: 1.75;
    margin-bottom: 10px;
}
.legal-content section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
}
.legal-content section li {
    color: var(--brand-light);
    font-size: 15px;
    line-height: 1.75;
    padding-left: 20px;
    position: relative;
}
.legal-content section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-secondary);
}
.legal-content section a {
    color: var(--brand-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-content section a:hover { color: var(--brand-light); }
.legal-notice {
    border: 1px solid var(--brand-danger);
    background: #3a1a26;
    color: var(--brand-light);
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 13px;
    margin-bottom: 8px;
}

/* ==========================================================================
   CALLOUTS génériques
   ========================================================================== */

.callout {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 18px 20px;
    background: var(--brand-surface);
    font-size: 13px;
}
.callout h4 { font-size: 13px; margin-bottom: 6px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer { background: #14191a; color: var(--brand-light); padding: 48px 0 28px; margin-top: 0; }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-secondary);
    margin-bottom: 12px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a, .footer-col li { font-size: 13px; color: var(--brand-light); opacity: 0.75; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid var(--brand-border);
    padding-top: 16px;
    font-size: 12px;
    opacity: 0.55;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

/* ==========================================================================
   PHOTO CAROUSEL / EDITORIAL
   ========================================================================== */

.photo-carousel {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 62vh;
    min-height: 380px;
    max-height: 720px;
    overflow: hidden;
    background: var(--brand-main);
}
.photo-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}
.photo-carousel-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 600ms ease;
    pointer-events: none;
}
.photo-carousel-slide.is-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}
.photo-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.photo-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(215, 208, 193, 0.25);
    border-radius: 9999px;
    background: rgba(28, 34, 36, 0.55);
}
.photo-carousel-nav::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    margin: 0 auto;
    border-left: 1.5px solid var(--brand-secondary);
    border-bottom: 1.5px solid var(--brand-secondary);
}
.photo-carousel-nav.is-prev { left: 20px; }
.photo-carousel-nav.is-prev::before { transform: rotate(45deg) translate(2px, -1px); }
.photo-carousel-nav.is-next { right: 20px; }
.photo-carousel-nav.is-next::before { transform: rotate(-135deg) translate(2px, -1px); }
.photo-carousel-nav:hover { background: rgba(28, 34, 36, 0.8); }
.photo-carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.photo-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: rgba(215, 208, 193, 0.45);
    transition: width var(--transition), background var(--transition);
}
.photo-carousel-dot.is-active {
    width: 22px;
    background: var(--brand-secondary);
}

.about-hero {
    position: relative;
    min-height: 100vh;
    background: var(--brand-main);
}
.about-hero-photo {
    position: absolute;
    inset: 0;
    margin: 0;
    overflow: hidden;
}
.about-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.about-hero-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(105deg, rgba(20, 24, 26, 0.94) 0%, rgba(28, 34, 36, 0.82) 42%, rgba(28, 34, 36, 0.55) 70%, rgba(28, 34, 36, 0.35) 100%);
}
.about-hero-inner {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    padding: var(--title-offset) 0 48px;
}
.about-hero-inner h1 {
    font-size: 46px;
    letter-spacing: -0.02em;
    color: var(--brand-light);
    margin: 0;
}
.about-hero .about-intro {
    max-width: 640px;
    margin-bottom: 0;
}
.about-hero .about-intro p,
.about-hero .detail-list li {
    color: rgba(249, 249, 248, 0.82);
}

.contact-hero {
    position: relative;
    min-height: 100vh;
    background: var(--brand-main);
}
.contact-hero-photo {
    position: absolute;
    inset: 0;
    margin: 0;
    overflow: hidden;
}
.contact-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.contact-hero-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(105deg, rgba(20, 24, 26, 0.94) 0%, rgba(28, 34, 36, 0.82) 42%, rgba(28, 34, 36, 0.55) 70%, rgba(28, 34, 36, 0.35) 100%);
}
.contact-hero-inner {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
    padding: var(--title-offset) 24px 48px;
}
.contact-hero-intro { max-width: none; }
.contact-hero-intro h1 {
    font-size: 46px;
    letter-spacing: -0.02em;
    color: var(--brand-light);
    margin-bottom: 14px;
    white-space: nowrap;
}
.contact-hero-intro p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(249, 249, 248, 0.78);
}
.contact-hero .form-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 0;
}
.contact-hero .form-layout > :first-child {
    flex: 3 1 0;
    min-width: 0;
}
.contact-hero form[data-contact-form] {
    position: relative;
}
.contact-hero .why-box {
    flex: 2 1 0;
    margin-top: calc(12px * 1.6 + 6px);
    align-self: flex-start;
    background: rgba(20, 24, 26, 0.42);
    backdrop-filter: blur(6px);
}
.contact-hero .form-feedback {
    background: rgba(20, 24, 26, 0.42);
    backdrop-filter: blur(6px);
}

.editorial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 72vh;
    background: var(--brand-main);
}
.editorial-row.is-reverse .editorial-row-photo { order: 2; }
.editorial-row-photo {
    margin: 0;
    position: relative;
    height: 0;
    min-height: 100%;
    overflow: hidden;
}
.editorial-row-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.editorial-row-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 106px 48px;
}
.editorial-row-body h2 { font-size: 24px; margin-bottom: 12px; }

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

@media (max-width: 900px) {
    .property-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .pricing-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .property-layout, .form-layout, .reservation-layout { grid-template-columns: 1fr; }
    .booking-box { position: static; }
    .footer-columns { grid-template-columns: repeat(2, 1fr); }
    .editorial-row, .editorial-row.is-reverse { grid-template-columns: 1fr; }
    .about-hero-inner h1 { font-size: 30px; }
    .about-hero-inner { padding: var(--title-offset) 0 32px; }
    .editorial-row.is-reverse .editorial-row-photo { order: 0; }
    .editorial-row { min-height: 0; }
    .editorial-row-photo { min-height: 320px; }
    .editorial-row-body { padding: 56px 24px; }
    .services-hero-intro h1 { font-size: 30px; }
    .services-hero-inner { padding: var(--title-offset) 0 32px; }
    .services-hero .offer-list { grid-template-columns: repeat(2, 1fr); }
    .contact-hero-intro h1 { font-size: 30px; white-space: nowrap; }
    .contact-hero-inner { padding: var(--title-offset) 32px 32px; }
    .contact-hero .form-layout { flex-direction: column; }
    .contact-hero .form-layout > :first-child,
    .contact-hero .why-box { flex: 1 1 auto; }
    .contact-hero .why-box { margin-top: 0; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--brand-ink);
        border-bottom: 1px solid var(--brand-border);
        padding: 12px 24px 16px;
    }
    .nav-links.mobile-open a,
    .site-header.is-nav-on-light .nav-links.mobile-open a {
        padding: 10px 0;
        opacity: 1;
        color: var(--brand-secondary);
    }
    .nav-actions { display: none; }
    .nav > nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 0;
    }
    .nav-links.mobile-open { top: 0; }
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        margin-right: 12px;
    }
    .property-grid, .services-grid, .pricing-grid, .why-grid, .offer-list { grid-template-columns: 1fr; }
    .why-closer p { white-space: normal; }
    .services-hero .offer-list { grid-template-columns: 1fr; }
    .gallery-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 120px); }
    .gallery-grid .photo-placeholder:first-child { grid-column: 1 / 3; grid-row: 1; }
    .form-grid { grid-template-columns: 1fr; }
    .stats-strip-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px; }
    .stat-value { font-size: 36px; min-height: 44px; }
    .stat-value.is-geo { font-size: 20px; }
    .stat-label { font-size: 14px; }
    .footer-columns { grid-template-columns: 1fr; }
    .hero h1 { font-size: 30px; }
    .photo-carousel { min-height: 320px; }
    .photo-carousel-nav.is-prev { left: 12px; }
    .photo-carousel-nav.is-next { right: 12px; }
    .hero-cinema {
        height: 100vh;
    }
    .hero-cinema-veil {
        background: linear-gradient(180deg, rgba(28, 34, 36, 0.12) 0%, rgba(28, 34, 36, 0.9) 100%);
    }
    .hero-cinema .container.hero-cinema-copy {
        justify-content: flex-start;
        padding: var(--title-offset) 24px 32px;
    }
    .hero-cinema-copy h1 { font-size: 30px; }
    .services-hero-intro h1 { font-size: 30px; }
    .services-hero-inner {
        justify-content: flex-start;
        padding: var(--title-offset) 0 28px;
        gap: 20px;
    }
    .services-hero-intro {
        box-sizing: border-box;
        min-height: 0;
        padding-top: 0;
        display: block;
        text-align: left;
    }
    .about-hero-inner h1 { font-size: 30px; }
    .about-hero-inner {
        justify-content: flex-start;
        padding: var(--title-offset) 0 32px;
    }
    .contact-hero-intro h1 { font-size: 30px; white-space: normal; }
    .contact-hero-inner {
        justify-content: flex-start;
        padding: var(--title-offset) 36px 32px;
    }
    .editorial-row { min-height: 0; }
}
