/* ==========================================================================
   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(42, 52, 54, 0.12);
    --brand-danger: #b8004d;
    --page-bg: #f3efe6;
    --page-ink: #2a3436;
    --card-shadow: 0 10px 32px rgba(42, 52, 54, 0.06);

    --font-body: 'Quicksand', system-ui, sans-serif;
    --font-heading: 'DM Sans', system-ui, sans-serif;
    --font-nav: 'Jost', 'Trebuchet MS', sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;

    --container-width: 1160px;
    --radius: 12px;
    --transition: 200ms ease;
    --header-clearance: 96px;
    --nav-height: 72px;
    --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(--page-ink);
    background-color: var(--page-bg);
    overflow-x: clip;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 12;
    opacity: 0.04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
}
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; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

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

.section { padding: 112px 0; }
.section-tight { padding: 48px 0; }
.text-center { text-align: center; }
.muted { opacity: 0.65; }
.small { font-size: 13px; }
.lead {
    font-size: 18px;
    line-height: 1.65;
    max-width: 36rem;
    opacity: 0.78;
}

.display {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(40px, 6.5vw, 76px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    max-width: 16ch;
    color: var(--page-ink);
}
h2.display {
    font-size: clamp(32px, 4.5vw, 52px);
    max-width: 14ch;
}
.display-accent {
    display: block;
    font-style: italic;
    font-weight: 600;
    color: var(--brand-alt);
}
.page-intro {
    padding: 48px 0 40px;
}
.page-intro.is-centered {
    text-align: center;
}
.page-intro.is-centered .display {
    margin-left: auto;
    margin-right: auto;
}
.page-intro.is-centered .lead {
    margin-left: auto;
    margin-right: auto;
}
.page-intro .lead { margin-top: 20px; }

.include-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.include-grid > div {
    background: var(--page-bg);
    border: 1px solid var(--brand-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    padding: 28px 24px;
}
.include-grid h3 { font-size: 18px; margin-bottom: 8px; color: var(--page-ink); }
.include-grid p { font-size: 14px; opacity: 0.72; }

.contact-page { padding-bottom: 96px; }

.tariff-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

@media (min-width: 901px) {
    .journey-rail {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 28px;
        max-width: none;
    }
    .journey-step {
        display: block;
        padding-bottom: 0;
    }
    .journey-step::before { display: none; }
    .journey-step-num {
        font-size: 28px;
        margin-bottom: 12px;
        display: block;
    }
}
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
    padding: 8px 0 0;
}
.contact-detail { margin-bottom: 32px; }
.contact-detail h3 {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-alt);
    margin-bottom: 8px;
}
.contact-detail p,
.contact-detail a {
    font-size: 22px;
    font-weight: 600;
    color: var(--page-ink);
}
.contact-form-card {
    background: var(--page-bg);
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 40px 36px;
}

.founder-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}
.founder-photo {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    background: var(--brand-secondary);
    --celestin-zoom: 1.3;
    --celestin-x: 0px;
    --celestin-y: -27px;
}
.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translate(var(--celestin-x), var(--celestin-y)) scale(var(--celestin-zoom));
    transition: transform 1.6s ease;
}
.founder-photo:hover img {
    transform: translate(var(--celestin-x), var(--celestin-y)) scale(calc(var(--celestin-zoom) * 1.045));
}
.founder-copy h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.founder-copy p {
    font-size: 18px;
    line-height: 1.65;
    opacity: 0.78;
}

.cta-band-phone {
    margin-top: 20px;
    font-size: 18px;
    opacity: 0.8;
}
.cta-band-phone a {
    color: var(--brand-light);
    font-weight: 600;
}

.footer-tagline {
    margin-bottom: 16px;
    opacity: 0.65;
    line-height: 1.5;
}

.section-head {
    text-align: left;
    margin-bottom: 56px;
}
.section-head:not(:has(h1)):not(:has(h2)) {
    margin-bottom: 24px;
}
.section-head h1 {
    font-size: clamp(32px, 5vw, 64px);
    letter-spacing: -0.03em;
    max-width: 20ch;
    color: var(--page-ink);
}
.section-head h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    letter-spacing: -0.04em;
    max-width: 14ch;
    color: var(--page-ink);
}
.section-head p {
    font-size: 18px;
    line-height: 1.65;
    max-width: 36rem;
    opacity: 0.75;
    margin-top: 16px;
}

.text-link {
    display: inline-block;
    margin-top: 28px;
    color: var(--brand-alt);
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.text-link:hover { color: var(--page-ink); }

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: transparent;
    color: var(--page-ink);
    border-bottom: none;
    padding: 12px 0 0;
    pointer-events: none;
    transition: padding 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 12px;
    left: 50%;
    width: min(1000px, calc(100vw - 32px));
    height: var(--nav-height);
    transform: translateX(-50%);
    border-radius: 9999px;
    background: rgba(243, 239, 230, 0.92);
    border: 1px solid rgba(42, 52, 54, 0.10);
    box-shadow: 0 8px 24px rgba(42, 52, 54, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    pointer-events: none;
    transition:
        width 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        top 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        border-radius 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}
.site-header.is-scrolled {
    background: transparent;
    padding-top: 0;
}
.site-header.is-scrolled::after {
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: #f3efe6;
    border-color: transparent;
    border-bottom: 1px solid rgba(42, 52, 54, 0.08);
    box-shadow: none;
}
body.has-bleed .site-header,
body.has-bleed .site-header.is-scrolled {
    background: transparent;
}
body.has-bleed .site-header:not(.is-scrolled)::after {
    background: rgba(20, 24, 26, 0.38);
    border-color: rgba(243, 239, 230, 0.16);
    box-shadow: 0 8px 24px rgba(20, 24, 26, 0.16);
}
body:not(.has-bleed) {
    padding-top: var(--header-clearance);
}
.container.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    pointer-events: auto;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    height: var(--nav-height);
    margin: 0;
    padding: 0 max(32px, calc((100% - 1000px) / 2 + 28px));
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: padding 0.65s cubic-bezier(0.22, 1, 0.36, 1), height 0.65s ease;
}
.site-header.is-scrolled .container.nav {
    padding: 0 40px;
}
.container.nav:has(> nav.mobile-open),
.container.nav:has(.nav-links.mobile-open) {
    height: auto;
}
.site-header:has(nav.mobile-open)::after,
.site-header:has(.nav-links.mobile-open)::after {
    height: calc(100% - 12px);
    border-radius: 28px;
}
.site-header.is-scrolled:has(nav.mobile-open)::after,
.site-header.is-scrolled:has(.nav-links.mobile-open)::after {
    height: 100%;
    border-radius: 0;
}
body.has-bleed .site-header:not(.is-scrolled):has(nav.mobile-open)::after,
body.has-bleed .site-header:not(.is-scrolled):has(.nav-links.mobile-open)::after {
    background: rgba(243, 239, 230, 0.92);
    border-color: rgba(42, 52, 54, 0.10);
    box-shadow: 0 8px 24px rgba(42, 52, 54, 0.08);
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.logo:hover { opacity: 0.8; }
.logo-svg {
    width: 188px;
    height: auto;
    max-height: 62px;
    max-width: none;
    display: block;
}
.logo-svg path {
    fill: var(--page-ink) !important;
    transition: fill var(--transition);
}
body.has-bleed .site-header:not(.is-scrolled) .logo-svg path {
    fill: var(--brand-light) !important;
}
.site-header.is-scrolled .logo-svg path {
    fill: var(--page-ink) !important;
}
.nav > nav {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 16px;
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 14px;
    list-style: none;
}
.site-header.is-scrolled .nav-links {
    gap: 36px;
}
.site-header.is-scrolled .nav > nav {
    gap: 36px;
}
.nav-phone {
    flex-shrink: 0;
    letter-spacing: 0.04em;
}
.nav-links a,
.nav-phone,
.nav-phone a {
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--page-ink);
    opacity: 0.86;
    transition: opacity var(--transition), color var(--transition);
    white-space: nowrap;
}
body.has-bleed .site-header:not(.is-scrolled) .nav-links a,
body.has-bleed .site-header:not(.is-scrolled) .nav-phone,
body.has-bleed .site-header:not(.is-scrolled) .nav-phone a {
    color: var(--brand-light);
}
.site-header.is-scrolled .nav-links a,
.site-header.is-scrolled .nav-phone,
.site-header.is-scrolled .nav-phone a {
    color: var(--page-ink);
}
.nav-links a:hover, .nav-links a.active, .nav-phone a:hover { opacity: 1; }
.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: 20px;
    height: 2px;
    background: var(--page-ink);
    border-radius: 1px;
    transition: background var(--transition);
}
body.has-bleed .site-header:not(.is-scrolled) .mobile-menu-toggle span {
    background: var(--brand-light);
}
.site-header.is-scrolled .mobile-menu-toggle span {
    background: var(--page-ink);
}
.site-header.is-logo-on-light:not(.is-scrolled) .logo-svg path { fill: var(--page-ink) !important; }
.site-header.is-nav-on-light:not(.is-scrolled) .nav-links a,
.site-header.is-nav-on-light:not(.is-scrolled) .nav-phone,
.site-header.is-nav-on-light:not(.is-scrolled) .nav-phone a { color: var(--page-ink); }
.site-header.is-nav-on-light:not(.is-scrolled) .mobile-menu-toggle span { background: var(--page-ink); }
body.has-bleed .site-header:not(.is-scrolled) .nav:has(> nav.mobile-open) .logo-svg path,
body.is-home .site-header:not(.is-scrolled) .nav:has(> nav.mobile-open) .logo-svg path {
    fill: var(--page-ink) !important;
}
body.has-bleed .site-header:not(.is-scrolled) .nav:has(> nav.mobile-open) .mobile-menu-toggle span,
body.is-home .site-header:not(.is-scrolled) .nav:has(> nav.mobile-open) .mobile-menu-toggle span {
    background: var(--page-ink);
}
body.has-bleed .site-header:not(.is-scrolled) .nav:has(> nav.mobile-open) .nav-links a,
body.has-bleed .site-header:not(.is-scrolled) .nav:has(> nav.mobile-open) .nav-phone,
body.has-bleed .site-header:not(.is-scrolled) .nav:has(> nav.mobile-open) .nav-phone a,
body.is-home .site-header:not(.is-scrolled) .nav:has(> nav.mobile-open) .nav-links a,
body.is-home .site-header:not(.is-scrolled) .nav:has(> nav.mobile-open) .nav-phone,
body.is-home .site-header:not(.is-scrolled) .nav:has(> nav.mobile-open) .nav-phone a {
    color: var(--page-ink);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    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(--page-ink);
    border-color: var(--page-ink);
}
.btn-outline:hover {
    background: var(--page-ink);
    color: var(--brand-light);
}
.band-dark .btn-outline,
.cta-band .btn-outline {
    color: var(--brand-light);
    border-color: var(--brand-light);
}
.band-dark .btn-outline:hover,
.cta-band .btn-outline:hover {
    background: var(--brand-light);
    color: var(--page-ink);
}
.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: clamp(36px, 5vw, 64px); letter-spacing: -0.03em; max-width: 720px; color: var(--page-ink); }
.hero p { font-size: 16px; max-width: 640px; color: var(--page-ink); opacity: 0.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; margin-top: 6px; }

.hero-video {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--brand-main);
}
.hero-video-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(20, 24, 26, 0.28);
}
.hero-video-copy {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 0 24px;
}
.hero-kicker {
    margin: 0;
    padding: 7px 14px;
    font-family: var(--font-nav);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--brand-ink);
    background: rgba(243, 239, 230, 0.82);
    border: 1px solid rgba(243, 239, 230, 0.35);
    border-radius: 9999px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    white-space: nowrap;
}
.hero-lead {
    margin: 0;
    width: min(1180px, 100%);
    max-width: none;
    font-family: var(--font-serif);
    font-size: clamp(40px, 4.6vw, 58px);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--brand-light);
}
.hero-lead [data-morph] {
    white-space: nowrap;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: inherit;
}
.hero-lead [data-morph].is-started {
    font-style: italic;
    color: var(--brand-alt);
}
.hero-morph-letter, .hero-morph-emoji {
    display: inline-block;
    font-size: 1em;
    font-weight: inherit;
}
.hero-morph-letter.is-pop {
    animation: hero-morph-pop 190ms cubic-bezier(0.22, 1.2, 0.36, 1) both;
}
@keyframes hero-morph-pop {
    0% { opacity: 0; transform: translateY(10px) scale(0.45); }
    60% { opacity: 1; transform: translateY(-2px) scale(1.18); }
    100% { opacity: 1; transform: none; }
}
@media (max-width: 700px) {
    .hero-lead [data-morph] {
        white-space: normal;
    }
}
.home-intro {
    background: var(--page-bg);
    padding: 96px 24px 48px;
    display: flex;
    justify-content: center;
}
.home-intro p {
    width: 1000px;
    max-width: 100%;
    margin: 0;
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
    color: var(--brand-ink);
}

.home-title,
h2.home-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
    color: #2a3436;
    max-width: none;
}
.home-copy {
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.55;
    color: #2a3436;
}

.home-pillars {
    padding: 24px 0 96px;
}
.home-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.home-pillar {
    aspect-ratio: 1;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 24px;
    background: #faf8f2;
    border: 1px solid rgba(42, 52, 54, 0.06);
}
.home-pillar-icon {
    flex-shrink: 0;
}
.home-pillar h3 {
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.4;
    color: #2a3436;
}
.home-pillar p {
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.55;
    color: #2a3436;
}

.home-map {
    background: #f3efe6;
    padding: 40px 0 96px;
}
.home-map-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 64px;
    align-items: center;
}
.home-map-title {
    max-width: 11em;
    margin: 0;
    line-height: 1.05;
}
.home-map-title-lead {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(48px, 5.4vw, 72px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #2a3436;
}
.home-map-title-place {
    display: block;
    margin-top: 12px;
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: 0;
    color: #2a3436;
}
.home-map-frame {
    width: 100%;
    background: transparent;
}
.home-map-svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    margin: 0 auto;
    object-fit: contain;
    background: transparent;
}

.home-commission {
    background: #2a3436;
    color: #f3efe6;
}
.home-commission-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px 72px;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 120px;
}
.home-commission-value {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 0.04em;
    font-family: var(--font-serif);
    font-size: clamp(88px, 12vw, 148px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #f3efe6;
}
.home-commission-num,
.home-commission-pct {
    flex-shrink: 0;
    line-height: 1;
}
.home-commission-pct {
    font-size: 0.727em;
}
.home-commission-rate .home-copy,
.home-commission-copy .home-copy,
.home-commission .home-title {
    color: #f3efe6;
}
.home-commission-rate .home-copy {
    display: block;
    margin-top: 12px;
}
.home-commission-copy .home-copy {
    margin: 16px 0 28px;
    max-width: none;
    white-space: nowrap;
}
.home-commission .btn-outline {
    color: #f3efe6;
    border-color: #f3efe6;
}
.home-commission .btn-outline:hover {
    background: #f3efe6;
    color: #2a3436;
}

.home-inspo {
    position: relative;
    z-index: 2;
    margin-top: -168px;
    padding: 0 0 88px;
    background: transparent;
}
.home-inspo-title {
    text-align: center;
    margin-bottom: 28px;
    color: #f3efe6;
}
.home-inspo-mosaic {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 1.05fr;
    gap: 16px 18px;
    align-items: start;
}
.home-inspo-mosaic figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--brand-secondary);
}
.home-inspo-mosaic figure:nth-child(1) { height: 440px; margin-top: 40px; }
.home-inspo-mosaic figure:nth-child(2) { height: 280px; margin-top: 0; }
.home-inspo-mosaic figure:nth-child(3) { height: 360px; margin-top: 72px; }
.home-inspo-mosaic figure:nth-child(4) { height: 300px; margin-top: 8px; }
.home-inspo-mosaic figure:nth-child(5) { height: 380px; margin-top: -36px; }
.home-inspo-mosaic figure:nth-child(6) { height: 270px; margin-top: 52px; }
.home-inspo-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s ease;
}
.home-inspo-mosaic figure:hover img {
    transform: scale(1.045);
}

.home-who {
    padding: 80px 0 96px;
}
.home-who-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: start;
}
.home-who-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--brand-secondary);
    --celestin-zoom: 1.3;
    --celestin-x: 0px;
    --celestin-y: -27px;
}
.home-who-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translate(var(--celestin-x), var(--celestin-y)) scale(var(--celestin-zoom));
    transition: transform 1.6s ease;
}
.home-who-photo:hover img {
    transform: translate(var(--celestin-x), var(--celestin-y)) scale(calc(var(--celestin-zoom) * 1.045));
}
.home-who-copy .home-title {
    margin: 0 0 20px;
}
.home-who-copy .home-copy + .home-copy {
    margin-top: 12px;
}
.home-who-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}
.home-who-list li {
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.55;
    color: #2a3436;
    padding-left: 0.9em;
    position: relative;
}
.home-who-list li + li {
    margin-top: 4px;
}
.home-who-list li::before {
    content: "–";
    position: absolute;
    left: 0;
}
.home-who-link {
    display: inline-block;
    margin-top: 24px;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: #9e7758;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.home-who-link:hover {
    color: #2a3436;
}

.home-setup {
    background: #2a3436;
    color: #f3efe6;
    padding: 88px 0;
}
.home-setup .home-title,
h2.home-setup-title {
    margin-bottom: 48px;
    color: #f3efe6;
}
.home-steps {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.home-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(243, 239, 230, 0.16);
}
.home-step:last-child {
    border-bottom: none;
}
.home-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid #f3efe6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #f3efe6;
}
.home-step h3,
.home-step p {
    font-family: var(--font-nav);
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.55;
    color: #f3efe6;
}
.home-step h3 {
    font-weight: 500;
}
.home-step p {
    margin-top: 6px;
    font-weight: 400;
}

.home-questions {
    padding: 24px 0 120px;
}
.home-questions-inner {
    max-width: 800px;
}
.home-questions .home-title {
    margin-bottom: 36px;
}
.home-faq-list {
    display: flex;
    flex-direction: column;
}
details.home-faq {
    background: #faf8f2;
    padding: 4px 28px;
    margin-bottom: 10px;
    border-radius: 0;
}
details.home-faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.45;
    color: #2a3436;
}
details.home-faq summary::-webkit-details-marker {
    display: none;
}
details.home-faq summary::after {
    content: "+";
    flex-shrink: 0;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: #2a3436;
}
details.home-faq[open] summary::after {
    content: "−";
}
details.home-faq p {
    padding: 0 0 18px;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.55;
    color: #2a3436;
}

.page-title {
    padding: calc(var(--title-offset) - var(--header-clearance)) 0 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    color: var(--page-ink);
}
.page-title h1,
.page-title h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    letter-spacing: -0.03em;
    max-width: 18ch;
    color: var(--page-ink);
}
body:not(.has-bleed) .page-title {
    padding: 24px 0 16px;
}

.page-hero {
    padding: calc(var(--header-clearance) + 48px) 0 32px;
    background: var(--page-bg);
}

/* ==========================================================================
   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(--page-bg);
}
.stats-strip-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px 24px;
    padding: 72px 24px;
    align-items: baseline;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.stat-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(32px, 3.5vw, 44px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--page-ink);
    min-height: 0;
}
.stat.is-lead .stat-value {
    font-size: clamp(72px, 8vw, 104px);
    font-weight: 600;
    color: var(--brand-alt);
}
.stat-value.is-geo {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
}
.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.4;
    color: var(--brand-alt);
    margin-top: 0;
}

.band-dark {
    background: var(--brand-main);
    color: var(--brand-light);
    padding: 112px 0 96px;
}
.band-dark.band-dark-overlap {
    padding-bottom: 88px;
}
.band-dark .display,
.band-dark .section-head h2,
.band-dark h2 {
    color: var(--brand-light);
}
.band-dark .lead {
    color: rgba(243, 239, 230, 0.78);
}
.band-dark .eyebrow {
    color: var(--brand-secondary);
}
.band-dark .section-head {
    text-align: center;
}
.band-dark .section-head .display {
    margin-left: auto;
    margin-right: auto;
}

.photo-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: -56px;
    margin-bottom: 0;
}
.photo-strip.is-flush {
    margin-top: 0;
}
.photo-strip figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--brand-secondary);
}
.photo-strip figure:nth-child(1) {
    margin-top: 32px;
    aspect-ratio: 3 / 4;
}
.photo-strip figure:nth-child(2) {
    margin-top: 0;
    aspect-ratio: 4 / 5;
}
.photo-strip figure:nth-child(3) {
    margin-top: 48px;
    aspect-ratio: 3 / 4.6;
}
.photo-strip figure:nth-child(4) {
    margin-top: 16px;
    aspect-ratio: 4 / 5;
}
.photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s ease;
}
.photo-strip figure:hover img {
    transform: scale(1.045);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.feature-cards.is-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.feature-card {
    background: var(--page-bg);
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    box-shadow: none;
    padding: 32px 28px;
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--page-ink);
}
.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.78;
}
.band-dark .feature-cards {
    gap: 48px;
}
.band-dark .feature-card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 8px 0 0;
}
.band-dark .feature-card:not(:first-child) {
    padding-left: 36px;
    border-left: 1px solid rgba(214, 208, 194, 0.18);
}
.band-dark .feature-card h3 {
    color: var(--brand-light);
}
.band-dark .feature-card p {
    color: rgba(243, 239, 230, 0.78);
    opacity: 1;
}

.offer-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: var(--page-bg);
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
}
.offer-card-copy {
    padding: 48px 44px;
}
.offer-card-copy .include-list {
    grid-template-columns: 1fr;
    margin-top: 24px;
}
.offer-card-copy .eyebrow { margin-bottom: 8px; }
.offer-card-copy .price-display { margin: 12px 0 8px; }
.offer-card-photo {
    margin: 0;
    min-height: 420px;
    overflow: hidden;
}
.offer-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s ease;
}
.offer-card-photo:hover img {
    transform: scale(1.045);
}

.example-card {
    background: var(--page-bg);
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 40px;
}

/* ==========================================================================
   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: var(--brand-white);
}
.filter-field label { display: block; font-size: 10px; color: rgba(42, 52, 54, 0.65); margin-bottom: 2px; }
.filter-field input, .filter-field select { width: 100%; border: none; background: none; font-size: 13px; color: var(--page-ink); }

/* ==========================================================================
   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(--page-bg);
    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(--page-bg);
}

.booking-box {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 22px;
    position: sticky;
    top: 90px;
    background: var(--page-bg);
    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: var(--brand-white);
}
.booking-field label { display: block; font-size: 10px; color: rgba(42, 52, 54, 0.65); }
.price-row { display: flex; justify-content: space-between; gap: 24px; font-size: 15px; }
.price-row.strong { font-weight: 700; font-size: 16px; }
.pricing-rows { max-width: 640px; }
.pricing-rows .price-row,
.pricing-example .price-row {
    padding: 12px 0;
    border-bottom: 1px solid var(--brand-border);
}
.pricing-rows .price-row.strong,
.pricing-example .price-row.strong { border-bottom: none; }
.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(--page-bg);
}
.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--page-ink);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(42, 52, 54, 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(--page-ink);
}
.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: clamp(36px, 5vw, 64px);
    letter-spacing: -0.03em;
    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(--page-bg);
}
.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(--page-bg);
    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: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 40px;
    padding: 0 0 32px;
}
.team-card { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; text-align: left; }
.avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--brand-secondary);
    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: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(42, 52, 54, 0.7);
}
.field input, .field textarea {
    border: 1px solid rgba(42, 52, 54, 0.18);
    border-radius: 8px;
    padding: 16px 18px;
    font-size: 14px;
    background: var(--brand-white);
    color: var(--page-ink);
}
.field input:focus, .field textarea:focus { border-color: var(--page-ink); 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(--page-bg);
    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-alt);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 13px;
    margin-top: 12px;
    background: var(--page-bg);
    color: var(--page-ink);
}
.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(--page-bg);
}
.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(--page-bg);
}
.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(--page-bg); }
.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(--page-bg);
}

/* ==========================================================================
   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(--page-ink);
    margin-bottom: 12px;
}
.legal-content section p {
    font-size: 15px;
    color: var(--page-ink);
    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(--page-ink);
    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-alt);
}
.legal-content section a {
    color: var(--brand-alt);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-content section a:hover { color: var(--page-ink); }
.legal-notice {
    border: 1px solid var(--brand-danger);
    background: rgba(184, 0, 77, 0.08);
    color: var(--page-ink);
    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(--page-bg);
    font-size: 13px;
}
.callout h4 { font-size: 13px; margin-bottom: 6px; }

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

.site-footer {
    background: #eae6db;
    color: var(--page-ink);
    padding: 56px 0 28px;
    margin-top: 0;
}
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-alt);
    margin-bottom: 12px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a, .footer-col li { font-size: 13px; color: var(--page-ink); opacity: 0.78; }
.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,
.about-hero-inner .display {
    margin: 0;
    color: var(--brand-light);
}
.about-hero .eyebrow {
    color: var(--brand-light);
}
.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: clamp(32px, 5vw, 56px);
    letter-spacing: -0.03em;
    color: var(--brand-light);
    margin-bottom: 14px;
}
.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-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(40px, 4.5vw, 52px);
    letter-spacing: -0.04em;
    line-height: 1.08;
    max-width: 14ch;
    margin-bottom: 16px;
}

/* ==========================================================================
   PARCOURS / TARIFS / FAQ / CHAT
   ========================================================================== */

.journey-rail {
    display: flex;
    flex-direction: column;
    list-style: none;
    max-width: 720px;
    margin: 0;
    padding: 0;
}
.journey-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 24px;
    position: relative;
    padding-bottom: 40px;
    min-width: 0;
}
.journey-step:last-child { padding-bottom: 0; }
.journey-step::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 36px;
    bottom: 0;
    width: 1px;
    background: var(--brand-border);
}
.journey-step:last-child::before { display: none; }
.journey-step-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.03em;
    color: var(--brand-secondary);
    padding-top: 2px;
}
.journey-step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--page-ink);
    letter-spacing: -0.02em;
}
.journey-step p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(42, 52, 54, 0.7);
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.trust-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid var(--brand-secondary);
    border-radius: 9999px;
    background: rgba(28, 34, 36, 0.4);
    color: var(--brand-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    gap: 0;
}
.diff-grid.is-four {
    grid-template-columns: 1fr;
    max-width: 800px;
}
.diff-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid var(--brand-border);
    align-items: start;
    min-width: 0;
}
.diff-item:last-child { border-bottom: none; }
.diff-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 52px;
    letter-spacing: -0.03em;
    color: var(--brand-secondary);
    margin-bottom: 0;
}
.diff-item h3 {
    font-size: 28px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--page-ink);
}
.diff-item p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(42, 52, 54, 0.72);
}

.include-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 48px;
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
}
.include-list li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--page-ink);
}
.include-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--brand-alt);
}
.include-list.is-numbered {
    grid-template-columns: 1fr;
    max-width: 640px;
    gap: 22px;
}
.include-list.is-numbered li {
    padding-left: 0;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: baseline;
}
.include-list.is-numbered li::before { content: none; }
.include-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--brand-alt);
}

.price-block .price-display { margin: 8px 0 16px; }
.price-display {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 96px;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--brand-alt);
}
.price-aside {
    font-size: 16px;
    color: var(--brand-alt);
    margin-bottom: 12px;
}

.photo-mosaic {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: minmax(300px, 38vh) minmax(300px, 38vh) minmax(240px, 28vh);
    gap: 4px;
    width: 100%;
    padding: 0;
}
.photo-mosaic figure {
    margin: 0;
    height: 100%;
    min-height: 240px;
    border-radius: 0;
    overflow: hidden;
    background: var(--brand-secondary);
}
.photo-mosaic figure:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.photo-mosaic figure:nth-child(2) { grid-column: 2; grid-row: 1; }
.photo-mosaic figure:nth-child(3) { grid-column: 3; grid-row: 1; }
.photo-mosaic figure:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
.photo-mosaic figure:nth-child(5) { grid-column: 1 / 3; grid-row: 3; }
.photo-mosaic figure:nth-child(6) { grid-column: 3; grid-row: 3; }
.photo-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s ease;
}
.photo-mosaic figure:hover img {
    transform: scale(1.045);
}

.frame-shot {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
}
.frame-shot > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.frame-shot-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgba(20, 24, 26, 0.88) 0%, rgba(20, 24, 26, 0.15) 48%, transparent 70%);
}
.frame-shot-copy {
    position: relative;
    z-index: 2;
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 0 56px;
}
.frame-shot-copy h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: -0.04em;
    line-height: 1.08;
    max-width: 14ch;
    margin-bottom: 16px;
    color: var(--brand-light);
}
.frame-shot-copy p {
    font-size: 18px;
    line-height: 1.65;
    max-width: 36rem;
    color: rgba(249, 249, 248, 0.85);
}

.cta-band {
    position: relative;
    overflow: hidden;
    background: var(--brand-main);
    color: var(--brand-light);
}
.cta-band-bg,
.cta-band-veil { display: none; }
.cta-band .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px;
}
.cta-band h2,
.cta-band .display {
    font-size: clamp(32px, 4.5vw, 52px);
    letter-spacing: -0.04em;
    max-width: 16ch;
    margin-bottom: 20px;
    color: var(--brand-light);
}
.cta-band .lead {
    margin-bottom: 28px;
    color: rgba(243, 239, 230, 0.8);
    max-width: 32rem;
}
.cta-band .hero-actions {
    justify-content: center;
}

.proof-score {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(72px, 14vw, 128px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--brand-secondary);
}
.proof-label {
    font-size: 18px;
    margin: 16px 0 12px;
    color: var(--brand-light);
}
.proof-meta {
    font-size: 16px;
    max-width: 36rem;
    opacity: 0.75;
}

.pricing-teaser {
    text-align: center;
}
.pricing-teaser > p {
    max-width: 560px;
    margin: 0 auto 24px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(42, 52, 54, 0.78);
}

.pricing-hero {
    text-align: center;
    padding: 8px 0 56px;
}
.pricing-hero-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 72px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--brand-alt);
}
.pricing-hero-aside {
    margin-top: 10px;
    font-size: 15px;
    color: var(--brand-alt);
}
.pricing-hero > p:last-child {
    max-width: 480px;
    margin: 16px auto 0;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(42, 52, 54, 0.78);
}

.pricing-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-bottom: 48px;
}
.pricing-split h2,
.pricing-split h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--brand-alt);
}
.pricing-split .pricing-card p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(42, 52, 54, 0.78);
}

.pricing-example {
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 40px;
    background: var(--page-bg);
    box-shadow: var(--card-shadow);
    margin-bottom: 48px;
}
.pricing-example h2 {
    font-size: 20px;
    margin-bottom: 8px;
}
.pricing-example .pricing-rows {
    margin-top: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
details.faq {
    border: none;
    border-bottom: 1px solid var(--brand-border);
    border-radius: 0;
    padding: 22px 0;
    background: transparent;
}
details.faq summary {
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--page-ink);
}
details.faq p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(42, 52, 54, 0.75);
}

.celestin-chat-launch {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: var(--brand-alt);
    color: var(--brand-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
}
.celestin-chat-launch:hover { background: #8b684c; }
.celestin-chat-panel {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 40;
    width: 360px;
    max-height: 70vh;
    background: var(--page-bg);
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(42, 52, 54, 0.16);
    color: var(--page-ink);
}
.celestin-chat-panel.is-open { display: flex; }
.celestin-chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--brand-border);
    font-family: var(--font-heading);
    font-weight: 700;
}
.celestin-chat-log {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 180px;
}
.celestin-chat-msg {
    max-width: 88%;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}
.celestin-chat-msg.is-celestin {
    align-self: flex-start;
    background: var(--brand-secondary);
    color: var(--page-ink);
}
.celestin-chat-msg.is-me {
    align-self: flex-end;
    background: var(--brand-alt);
    color: var(--brand-light);
}
.celestin-chat-form {
    display: flex;
    gap: 8px;
    padding: 12px 16px 16px;
    border-top: 1px solid var(--brand-border);
}
.celestin-chat-close {
    border: none;
    background: transparent;
    color: var(--page-ink);
    font-size: 22px;
    line-height: 1;
    padding: 4px 6px;
    opacity: 0.7;
}
.celestin-chat-close:hover { opacity: 1; }
.celestin-chat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 12px;
}
.celestin-chat-chips[hidden] { display: none; }
.celestin-chat-chips button {
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    background: var(--brand-white);
    color: var(--page-ink);
}
.celestin-chat-chips button:hover { border-color: var(--brand-alt); }
.celestin-chat-chips button:disabled { opacity: 0.55; cursor: default; }
.celestin-chat-form input {
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(42, 52, 54, 0.18);
    border-radius: 6px;
    padding: 11px 14px;
    font-size: 14px;
    background: var(--brand-white);
    color: var(--page-ink);
}
.celestin-chat-form input:focus {
    border-color: var(--brand-secondary);
    outline: none;
}
.celestin-chat-form input:disabled,
.celestin-chat-form button:disabled {
    opacity: 0.55;
    cursor: default;
}
.celestin-chat-form .btn { flex-shrink: 0; }
.celestin-chat-msg a { text-decoration: underline; }

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

@media (max-width: 1100px) {
    .container.nav {
        flex-wrap: wrap;
        height: var(--nav-height);
        padding: 0 24px;
    }
    .site-header.is-scrolled .container.nav {
        padding: 0 24px;
    }
    .logo-svg {
        width: 156px;
        height: auto;
        max-height: 54px;
    }
    .container.nav:has(> nav.mobile-open),
    .container.nav:has(.nav-links.mobile-open) {
        height: auto;
    }
    .nav-links,
    .nav-phone { display: none; }
    .nav > nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav > nav.mobile-open {
        position: static;
        height: auto;
        overflow: visible;
        flex-basis: 100%;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: transparent;
        border: none;
    }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        position: static;
        padding: 12px 8px 8px;
        background: transparent;
        border: none;
    }
    nav.mobile-open .nav-phone {
        display: block;
        padding: 8px 8px 14px;
    }
    .nav-actions { display: none; }
    nav.mobile-open .nav-actions,
    .container.nav:has(.nav-links.mobile-open) .nav-actions {
        display: block;
        margin-top: 8px;
        padding: 4px 8px 12px;
    }
    nav.mobile-open .nav-actions .btn,
    .container.nav:has(.nav-links.mobile-open) .nav-actions .btn { width: 100%; }
    .nav-links.mobile-open a,
    .site-header.is-nav-on-light .nav-links.mobile-open a,
    body.has-bleed .site-header:not(.is-scrolled) .nav-links.mobile-open a,
    body.is-home .site-header:not(.is-scrolled) .nav-links.mobile-open a,
    nav.mobile-open .nav-phone,
    nav.mobile-open .nav-phone a {
        padding: 10px 0;
        font-size: 13px;
        opacity: 1;
        color: var(--page-ink);
        white-space: normal;
    }
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        margin-right: 0;
    }
}

@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,
    .about-hero-inner .display { font-size: 32px; }
    .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; }
    .editorial-row-body h2 { font-size: 28px; }
    .services-hero-intro h1 { font-size: 32px; }
    .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: 32px; }
    .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; }
    .stats-strip-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
        padding: 56px 24px;
        align-items: start;
    }
    .include-grid,
    .feature-cards.is-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .feature-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .band-dark .feature-cards {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .band-dark .feature-card {
        padding: 0;
    }
    .band-dark .feature-card:not(:first-child) {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(214, 208, 194, 0.18);
        padding-top: 32px;
        margin-top: 32px;
    }
    .photo-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -32px;
    }
    .photo-strip.is-flush {
        margin-top: 0;
    }
    .photo-strip figure:nth-child(1),
    .photo-strip figure:nth-child(2),
    .photo-strip figure:nth-child(3),
    .photo-strip figure:nth-child(4) {
        margin-top: 0;
        aspect-ratio: 4 / 5;
    }
    .offer-card { grid-template-columns: 1fr; }
    .offer-card-photo { min-height: 280px; }
    .contact-split { grid-template-columns: 1fr; gap: 48px; }
    .founder-split { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pricing-split { grid-template-columns: 1fr; }
    .tariff-split { grid-template-columns: 1fr; }
    .diff-grid,
    .diff-grid.is-four { grid-template-columns: 1fr; }
    .photo-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }
    .photo-mosaic figure {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 240px;
        min-height: 240px;
    }
    .include-list { grid-template-columns: 1fr; }
    .section-head h2,
    .cta-band h2 { font-size: 28px; }
}

@media (max-width: 640px) {
    .section { padding: 72px 0; }
    .band-dark { padding: 72px 0 64px; }
    .section-head { margin-bottom: 36px; }
    .section-head h1 { font-size: 32px; }
    .section-head h2 { font-size: 28px; }
    .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: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
        padding: 48px 24px;
        align-items: start;
    }
    .include-grid,
    .feature-cards.is-four,
    .feature-cards { grid-template-columns: 1fr; }
    .band-dark .feature-cards { gap: 0; }
    .band-dark .feature-card {
        padding: 0;
    }
    .band-dark .feature-card:not(:first-child) {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(214, 208, 194, 0.18);
        padding-top: 32px;
        margin-top: 32px;
    }
    .team-grid { grid-template-columns: 1fr; }
    .stat-value.is-geo { font-size: 32px; }
    .stat-label { font-size: 13px; }
    .footer-columns { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    .photo-carousel { min-height: 320px; }
    .photo-carousel-nav.is-prev { left: 12px; }
    .photo-carousel-nav.is-next { right: 12px; }
    .hero-video {
        height: 100vh;
        min-height: 520px;
    }
    .hero-kicker {
        white-space: normal;
        text-align: center;
    }
    .hero-lead {
        width: min(1180px, calc(100% - 48px));
    }
    .services-hero-intro h1 { font-size: 32px; }
    .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,
    .about-hero-inner .display { font-size: 32px; }
    .about-hero-inner {
        justify-content: flex-start;
        padding: var(--title-offset) 0 32px;
    }
    .contact-hero-intro h1 { font-size: 32px; }
    .contact-hero-inner {
        justify-content: flex-start;
        padding: var(--title-offset) 36px 32px;
    }
    .editorial-row { min-height: 0; }
    .pricing-hero-value,
    .price-display { font-size: 64px; }
    .cta-band .container { padding: 88px 24px; }
    .cta-band h2 { font-size: 28px; }
    .frame-shot,
    .frame-shot-copy { min-height: 60vh; }
    .frame-shot-copy { padding: 64px 0 48px; }
    .photo-mosaic figure { height: 240px; min-height: 240px; }
    .celestin-chat-panel {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 88px;
        max-height: calc(100vh - 120px);
    }
    .celestin-chat-launch {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 900px) {
    .home-pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-map-inner,
    .home-commission-inner,
    .home-who-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .home-inspo {
        margin-top: -96px;
    }
    .home-inspo-mosaic {
        grid-template-columns: 1fr 1fr;
    }
    .home-inspo-mosaic figure:nth-child(n) {
        height: 260px;
        margin-top: 0;
    }
    .home-inspo-mosaic figure:nth-child(2),
    .home-inspo-mosaic figure:nth-child(4),
    .home-inspo-mosaic figure:nth-child(6) {
        margin-top: 36px;
    }
    .home-map-title {
        max-width: 14em;
    }
}

@media (max-width: 640px) {
    .home-intro {
        padding: 72px 24px 36px;
    }
    .home-pillars {
        padding-bottom: 72px;
    }
    .home-pillar {
        padding: 22px 18px;
        gap: 12px;
    }
    .home-map,
    .home-who,
    .home-questions {
        padding-bottom: 72px;
    }
    .home-setup {
        padding: 64px 0;
    }
    .home-commission-inner {
        padding-top: 64px;
        padding-bottom: 64px;
        gap: 28px;
    }
    .home-commission-copy .home-copy {
        white-space: normal;
    }
    .home-inspo {
        margin-top: -56px;
        padding-bottom: 64px;
    }
    .home-inspo-mosaic figure:nth-child(n) {
        height: 220px;
    }
    .home-who-photo {
        max-width: 320px;
    }
}
