﻿/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #FDFAF5;
    color: #1B2744;
}

main {
    display: block;
    margin: 0;
    padding: 0;
}

link {
    display: none;
}

body.no-scroll {
    overflow: hidden;
}

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

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   TYPOGRAPHIE — UTILITAIRES
============================================================ */
.section-label {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #8A94A6;
    margin-bottom: 18px;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.55);
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.9rem, 3.8vw, 3.1rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0.015em;
    color: #1B2744;
    margin: 0 0 26px;
}

.section-title.light {
    color: #ffffff;
}

.section-text {
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: #6B7A8D;
    max-width: 510px;
    margin: 0 0 36px;
}

.section-text.light {
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   CTA — LIEN FLÉCHÉ
============================================================ */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Jost", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1B2744;
    border-bottom: 1px solid rgba(27, 39, 68, 0.35);
    padding-bottom: 3px;
    transition: border-color 0.25s ease, opacity 0.25s ease;
}

.link-arrow::after {
    content: "→";
    font-size: 1em;
    transition: transform 0.25s ease;
}

.link-arrow:hover {
    border-color: #1B2744;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

.link-arrow.light {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

.link-arrow.light:hover {
    border-bottom-color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   CTA — BOUTON FANTÔME (sur fond sombre)
============================================================ */
.btn-ghost {
    display: inline-block;
    padding: 14px 38px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    color: #ffffff;
    font-family: "Jost", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* ============================================================
   CTA — BOUTON CLAIR
============================================================ */
.btn-light {
    display: inline-block;
    padding: 14px 38px;
    background: #ffffff;
    color: #1B2744;
    border-radius: 50px;
    font-family: "Jost", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 12px rgba(27, 39, 68, 0.10);
}

.btn-light:hover {
    background: #F0EAE0;
    box-shadow: 0 4px 20px rgba(27, 39, 68, 0.14);
}

/* ============================================================
   HERO PRINCIPAL
============================================================ */
.home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.home-hero-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-hero-bg.zoomed {
    transform: scale(1);
}

/* Dégradé cinématique : haut + bas */
.home-hero::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background:
        linear-gradient(to bottom,
            rgba(10, 7, 3, 0.45) 0%,
            rgba(10, 7, 3, 0.08) 40%,
            rgba(10, 7, 3, 0.08) 65%,
            rgba(10, 7, 3, 0.52) 100%
        );
    z-index: 1;
}

.home-hero-content {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.home-hero-location {
    font-family: "Jost", sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 22px;
    opacity: 0;
    animation: heroFadeUp 0.9s ease forwards 1.6s;
}

.home-hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 6px;
    gap: 2px;
}

/* "MAS DE" — eyebrow du hero */
.home-hero-eyebrow {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: clamp(0.62rem, 1vw, 0.82rem);
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    font-weight: 300;
    margin-bottom: 6px;
    opacity: 0;
    animation: heroFadeUp 0.9s ease forwards 1.7s;
}

/* ── SVG LOUISE animé ── */
.home-hero-svg {
    display: block;
    width: min(92vw, 860px);
    height: clamp(72px, 13vw, 142px);
    overflow: visible;
}

.hero-svg-outline,
.hero-svg-filled {
    font-family: "Playfair Display", serif;
    font-size: clamp(52px, 9.5vw, 96px);
    font-weight: 400;
    letter-spacing: 0.07em;
}

.hero-svg-L {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.1em;
}

/* Phase 1 — contours qui se tracent */
.hero-svg-outline {
    fill: none;
    stroke: rgba(255, 255, 255, 0.82);
    stroke-width: 1;
    stroke-dasharray: 6000;
    stroke-dashoffset: 6000;
    animation: heroDrawStroke 1.9s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.8s;
}

/* Phase 2 — blanc qui remplit */
.hero-svg-filled {
    fill: #ffffff;
    stroke: none;
    opacity: 0;
    animation: heroFillIn 0.75s ease forwards 3.55s;
}

@keyframes heroDrawStroke {
    to { stroke-dashoffset: 0; }
}

@keyframes heroFillIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.home-hero-tagline {
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 54px;
    opacity: 0;
    animation: heroFadeUp 0.9s ease forwards 3.7s;
}

.home-hero-cta {
    font-family: "Jost", sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding-bottom: 4px;
    opacity: 0;
    transition: border-color 0.25s ease, opacity 0.25s ease;
    animation: heroFadeUp 0.9s ease forwards 4.0s;
}

.home-hero-cta:hover {
    border-color: rgba(255, 255, 255, 0.9);
    opacity: 0.8 !important;
}

/* Accessibilité — désactiver pour préférence */
@media (prefers-reduced-motion: reduce) {
    .hero-svg-outline { animation: none; stroke-dashoffset: 0; }
    .hero-svg-filled  { animation: none; opacity: 1; }
    .home-hero-eyebrow,
    .home-hero-location,
    .home-hero-tagline,
    .home-hero-cta    { animation: none; opacity: 1; transform: none; }
}

/* Indicateur de scroll */
.home-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.home-hero-scroll-label {
    font-family: "Jost", sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: horizontal-tb;
}

.home-hero-scroll-line {
    width: 1px;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    animation: scrollGrow 2s ease-in-out infinite;
}

@keyframes scrollGrow {
    0%   { height: 0; opacity: 0; }
    35%  { opacity: 1; }
    100% { height: 52px; opacity: 0; }
}

/* ============================================================
   SECTION — L'ESPRIT DU MAS (split gauche-droite)
============================================================ */
.home-spirit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 72vh;
    padding: 64px max(5vw, 40px);
    gap: 48px;
    background: #FDFAF5;
    align-items: center;
}

.home-spirit-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 64px 60px 0;
}

.home-spirit-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(27, 39, 68, 0.10);
    min-height: 520px;
}

.home-spirit-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-spirit-image.in-view img {
    transform: scale(1);
}

/* ============================================================
   BANDEAU CHIFFRES
============================================================ */
.home-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #FDFAF5;
    padding: 0 max(4vw, 32px);
    margin: 56px 0;
}

.home-stat {
    padding: 56px 32px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(27, 39, 68, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.home-stat:first-child {
    border-radius: 20px 0 0 20px;
}

.home-stat:last-child {
    border-radius: 0 20px 20px 0;
}

.home-stat:hover {
    box-shadow: 0 6px 28px rgba(27, 39, 68, 0.10);
    transform: translateY(-2px);
}

.home-stat-number {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #1B2744;
    margin-bottom: 8px;
}

.home-stat-label {
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8A94A6;
}

/* ============================================================
   SECTION — SUITES
============================================================ */
.home-suites {
    padding: 120px 80px;
    background: #FDFAF5;
}

.home-suites-header {
    text-align: center;
    margin-bottom: 72px;
}

.home-suites-header .section-text {
    margin: 0 auto;
}

.home-suites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.home-suite-card {
    position: relative;
    display: block;
    text-decoration: none;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(27, 39, 68, 0.08);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.home-suite-card:hover {
    box-shadow: 0 10px 40px rgba(27, 39, 68, 0.13);
    transform: translateY(-4px);
}

.home-suite-card-img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-suite-card:hover .home-suite-card-img {
    transform: scale(1.05);
}

.home-suite-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(
        to top,
        rgba(10, 7, 3, 0.72) 0%,
        rgba(10, 7, 3, 0) 55%
    );
    z-index: 1;
}

.home-suite-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
}

.home-suite-name {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.home-suite-size {
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.home-suites-cta {
    text-align: center;
}

/* ============================================================
   SECTION — LE DOMAINE (pleine largeur)
============================================================ */
.home-domaine-wrap {
    padding-top: 72px;
    padding-bottom: 72px;
    padding-left: max(4vw, 28px);
    padding-right: max(4vw, 28px);
    background: #F0EBE2;
}

.home-domaine {
    position: relative;
    height: 72vh;
    min-height: 460px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(27, 39, 68, 0.14);
}

.home-domaine::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(
        to top,
        rgba(8, 5, 2, 0.72) 0%,
        rgba(8, 5, 2, 0.22) 55%,
        rgba(8, 5, 2, 0.12) 100%
    );
    border-radius: inherit;
}

.home-domaine-content {
    position: relative;
    z-index: 1;
    padding: 0 10vw 80px;
    max-width: 800px;
}

/* ============================================================
   SECTION — BIEN-ÊTRE (split droite)
============================================================ */
.home-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 72vh;
    padding: 64px max(5vw, 40px);
    gap: 48px;
    background: #F6F1EA;
    align-items: center;
}

.home-split-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(27, 39, 68, 0.10);
    min-height: 520px;
}

.home-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-split-image.in-view img {
    transform: scale(1);
}

.home-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0 60px 48px;
    background: transparent;
}

/* ============================================================
   SECTION — EXPÉRIENCES (intro teaser)
============================================================ */
.home-experiences {
    background: #F0EBE2;
    padding: 72px max(4vw, 28px);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}

.home-experiences-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}

.home-experiences-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.home-experience-tile {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 18px rgba(27, 39, 68, 0.08);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.home-experience-tile:hover {
    box-shadow: 0 8px 32px rgba(27, 39, 68, 0.13);
    transform: translateY(-3px);
}

.home-experience-tile img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.home-experience-tile:hover img {
    transform: scale(1.05);
}

.home-experience-tile-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 56px 24px 24px;
    background: linear-gradient(to top, rgba(10,7,3,0.65) 0%, transparent 100%);
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Tile CTA — 4ème carte sombre */
.home-experience-tile--cta {
    background: #0D1B35;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 28px;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(13, 27, 53, 0.20);
}

.home-experience-tile--cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(13, 27, 53, 0.28);
}

.home-experience-cta-label {
    font-family: "Jost", sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(253, 250, 245, 0.45);
}

.home-experience-cta-title {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #FDFAF5;
    line-height: 1.25;
    margin: 0;
}

.home-experience-cta-title em {
    font-style: italic;
}

.home-experience-cta-arrow {
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: rgba(253, 250, 245, 0.55);
    margin-top: 4px;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.home-experience-tile--cta:hover .home-experience-cta-arrow {
    color: #FDFAF5;
    letter-spacing: 0.20em;
}

/* ============================================================
   SECTION — PRIVATISATION (fond sombre)
============================================================ */
.home-privatisation-wrap {
    padding-top: 72px;
    padding-bottom: 72px;
    padding-left: max(4vw, 28px);
    padding-right: max(4vw, 28px);
    background: #FDFAF5;
}

.home-privatisation {
    background: #0D1B35;
    padding: 100px 80px;
    display: flex;
    justify-content: center;
    border-radius: 28px;
    box-shadow: 0 16px 56px rgba(13, 27, 53, 0.22);
}

.home-privatisation-inner {
    max-width: 680px;
    text-align: center;
}

.home-privatisation-inner .section-text {
    margin-left: auto;
    margin-right: auto;
}

.home-privatisation-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    margin-top: 12px;
    flex-wrap: wrap;
}

/* ============================================================
   SECTION — CITATION
============================================================ */
.home-quote {
    padding: 110px 40px;
    text-align: center;
    background: #FDFAF5;
}

.home-quote blockquote {
    margin: 0;
    padding: 0;
}

.home-quote blockquote p {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    color: #1B2744;
    margin: 0 auto 24px;
    line-height: 1.55;
    max-width: 760px;
}

.home-quote blockquote cite {
    font-family: "Jost", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #8A94A6;
    font-style: normal;
}

/* ============================================================
   SECTION — PORTRAIT LOUISE
============================================================ */
.home-louise {
    display: grid;
    grid-template-columns: 5fr 7fr;
    min-height: 72vh;
    padding: 72px max(5vw, 48px);
    gap: 64px;
    background: #FDFAF5;
    align-items: center;
}

/* ── Photo portrait (flottante, non plein-bord) ── */
.home-louise-portrait {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 20px 64px rgba(27, 39, 68, 0.13);
    min-height: 580px;
    align-self: stretch;
}

.home-louise-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.04);
    transition: transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-louise-portrait.in-view img {
    transform: scale(1);
}

/* ── Contenu texte (côté droit) ── */
.home-louise-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 8px;
    position: relative;
    overflow: hidden;
}

/* Grand "L" décoratif en filigrane */
.home-louise-content::before {
    content: "L";
    position: absolute;
    bottom: -20px;
    right: -16px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: clamp(160px, 20vw, 240px);
    color: rgba(197, 180, 154, 0.12);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ── Nom "Louise" ── */
.home-louise-name {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 400;
    color: #1B2744;
    margin: 12px 0 6px;
    line-height: 1;
    letter-spacing: 0.02em;
}

/* Le "L" en Cormorant italique, plus grand */
.home-louise-name-L {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.16em;
    letter-spacing: 0;
    display: inline-block;
    line-height: 1;
    vertical-align: baseline;
}

/* ── Origine ── */
.home-louise-origin {
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C5B49A;
    margin: 0 0 36px;
}

/* ── Filet séparateur ── */
.home-louise-origin::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: #C5B49A;
    margin-top: 24px;
}

/* ── Biographie ── */
.home-louise-bio {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.home-louise-bio p {
    font-family: "Inter", sans-serif;
    font-size: 0.97rem;
    font-weight: 300;
    line-height: 1.9;
    color: #6B7A8D;
    margin: 0;
}

/* ── Signature ── */
.home-louise-signature {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.35rem;
    color: rgba(27, 39, 68, 0.28);
    margin-top: 44px;
    letter-spacing: 0.04em;
}

/* ── Lien contact ── */
.home-louise-cta {
    margin-top: 20px;
    align-self: flex-start;
}

/* ── Responsive Louise ── */
@media (max-width: 900px) {
    .home-louise {
        grid-template-columns: 1fr;
        padding: 48px 24px 56px;
        gap: 36px;
    }

    .home-louise-portrait {
        height: 72vw;
        min-height: 320px;
        align-self: auto;
    }

    .home-louise-content {
        padding: 0;
    }

    .home-louise-content::before {
        font-size: 120px;
    }
}

/* ============================================================
   RESPONSIVE — TABLETTE
============================================================ */
@media (max-width: 1100px) {
    .home-spirit-text {
        padding: 48px 40px 48px 0;
    }

    .home-split-text {
        padding: 48px 0 48px 40px;
    }

    .home-suites {
        padding: 100px 40px;
    }

    .home-domaine-content {
        padding: 0 7vw 70px;
    }

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

    .home-stat:first-child  { border-radius: 20px 0 0 0; }
    .home-stat:nth-child(2) { border-radius: 0 20px 0 0; }
    .home-stat:nth-child(3) { border-radius: 0 0 0 20px; }
    .home-stat:last-child   { border-radius: 0 0 20px 0; }
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 768px) {
    /* Spirit */
    .home-spirit {
        grid-template-columns: 1fr;
        padding: 48px 20px;
        gap: 28px;
    }

    .home-spirit-text {
        padding: 32px 0 0;
        order: 2;
    }

    .home-spirit-image {
        height: 62vw;
        min-height: 260px;
        order: 1;
        border-radius: 16px;
    }

    /* Suites */
    .home-suites {
        padding: 72px 20px;
    }

    .home-suites-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-suite-card {
        aspect-ratio: 16/10;
        border-radius: 14px;
    }

    /* Domaine */
    .home-domaine-wrap {
        padding: 48px 16px;
    }

    .home-domaine {
        background-attachment: scroll;
        height: 80vw;
        min-height: 320px;
        border-radius: 20px;
    }

    .home-domaine-content {
        padding: 0 28px 48px;
    }

    /* Split wellness */
    .home-split {
        grid-template-columns: 1fr;
        padding: 48px 20px;
        gap: 28px;
    }

    .home-split-image {
        height: 62vw;
        min-height: 260px;
        border-radius: 16px;
    }

    .home-split-text {
        padding: 32px 0 0;
    }

    /* Privatisation */
    .home-privatisation-wrap {
        padding: 48px 16px 56px;
    }

    .home-privatisation {
        padding: 72px 24px;
        border-radius: 20px;
    }

    .home-privatisation-ctas {
        flex-direction: column;
        gap: 30px;
    }

    /* Stats */
    .home-stats {
        grid-template-columns: repeat(2, 1fr);
        margin: 36px 0;
    }

    .home-stat { border-radius: 0 !important; }
    .home-stat:first-child  { border-radius: 16px 0 0 0 !important; }
    .home-stat:nth-child(2) { border-radius: 0 16px 0 0 !important; }
    .home-stat:nth-child(3) { border-radius: 0 0 0 16px !important; }
    .home-stat:last-child   { border-radius: 0 0 16px 0 !important; }

    /* Experiences */
    .home-experiences {
        grid-template-columns: 1fr;
        padding: 48px 20px;
        gap: 32px;
    }

    .home-experiences-left {
        padding: 0;
    }

    .home-experiences-right {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .home-experience-tile {
        aspect-ratio: 1/1;
    }

    .home-experience-tile {
        height: 58vw;
        border-radius: 12px;
    }

    .home-experience-tile--wide {
        height: 44vw;
        min-height: 180px;
    }

    /* Quote */
    .home-quote {
        padding: 80px 24px;
    }
}
