/* ── POLICES LOCALES ─────────────────────────────── */
@font-face {
    font-family: 'Cormorant';
    src: url('../fonts/cormorant-v24-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant';
    src: url('../fonts/cormorant-v24-latin-300italic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant';
    src: url('../fonts/cormorant-v24-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant';
    src: url('../fonts/cormorant-v24-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant';
    src: url('../fonts/cormorant-v24-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant';
    src: url('../fonts/cormorant-v24-latin-500italic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v17-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

/* ============================================================
   AZUR HOME COLLECTION — css/style.css
   Fichier CSS GLOBAL partagé par toutes les pages et langues
   Palette : crème #F5F0E8 · Iron Grey #4C5760 · Sand Dune #D7CEB2
   Ne pas modifier sans impact sur toutes les pages
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: #F5F0E8;
    color: #4C5760;
    font-family: 'DM Sans', 'system-ui', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit
}

ul,
ol {
    list-style: none
}

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

button {
    background: none;
    border: none;
    font-family: inherit;
    color: inherit;
    cursor: pointer
}

input,
select,
textarea {
    font-family: inherit
}

:root {
    --iron: #4C5760;
    --steel: #93A8AC;
    --sand: #D7CEB2;
    --sand2: #C8BFA5;
    --khaki: #A59E8C;
    --dim: #66635B;
    --cream: #F5F0E8;
    --cream2: #EDE9E0;
    --white: #FDFAF6;
    --dark: #1D1B17;
    --border: rgba(76, 87, 96, .13);
    --borders: rgba(215, 206, 178, .4);
    --serif: 'Cormorant', 'Georgia', serif;
    --sans: 'DM Sans', 'system-ui', sans-serif;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --ease2: cubic-bezier(.4, 0, .2, 1);
    --nh: 80px;
    --nhs: 60px;
    --maxw: 1280px;
    --pad: 80px;
}

/* ── INTRO ── */
.intro {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}

/* ── Fond sombre luxe ── */
.intro-bg {
    position: absolute;
    inset: 0;
    background: #0C0B09;
    will-change: transform;
}

/* ── Grain texture ── */
.intro-grain {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: .35;
    pointer-events: none;
    z-index: 1;
    animation: grain 1.2s steps(2) infinite;
}

@keyframes grain {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-2%, -3%);
    }

    50% {
        transform: translate(1%, 2%);
    }

    75% {
        transform: translate(3%, -1%);
    }
}

/* ── Lignes horizontales ── */
.intro-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(215, 206, 178, .18);
    transform: scaleX(0);
    z-index: 2;
}

.intro-line--top {
    top: 18%;
    transform-origin: left;
}

.intro-line--bot {
    bottom: 18%;
    transform-origin: right;
}

/* ── Corps central ── */
.intro-body {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

/* ── Eyebrow ── */
.intro-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
}

.ie-text {
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(215, 206, 178, .55);
    white-space: nowrap;
}

.ie-dash {
    width: 32px;
    height: 1px;
    background: rgba(215, 206, 178, .3);
    flex-shrink: 0;
}

/* ── Nom de marque ── */
.intro-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 40px;
}

.intro-brand-line {
    overflow: hidden;
    line-height: 1.1;
}

.ibl-mask {
    display: block;
    overflow: hidden;
}

.ibl-word {
    display: block;
    font-family: var(--serif);
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 300;
    letter-spacing: -.02em;
    color: #fff;
    line-height: 1.08;
    transform: translateY(105%);
    will-change: transform;
}

.intro-brand-line--em .ibl-word {
    font-style: italic;
    color: var(--sand);
    font-size: clamp(42px, 6.5vw, 90px);
}

/* ── Séparateur ── */
.intro-sep {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    opacity: 0;
}

.is-line--l,
.is-line--r {
    height: 1px;
    background: rgba(215, 206, 178, .3);
    transform: scaleX(0);
    transform-origin: center;
}

.is-line--l {
    width: 80px;
    transform-origin: right;
}

.is-line--r {
    width: 80px;
    transform-origin: left;
}

.is-diamond {
    width: 5px;
    height: 5px;
    background: var(--sand2);
    border-radius: 0;
    transform: rotate(45deg) scale(0);
    flex-shrink: 0;
}

/* ── Tagline ── */
.intro-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
}

.intro-tagline span {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
}

.it-dot {
    color: var(--sand2) !important;
    font-size: 14px !important;
    letter-spacing: 0 !important;
}

/* ── Compteur circulaire ── */
.intro-counter {
    position: absolute;
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.ic-circle {
    width: 88px;
    height: 88px;
    position: absolute;
}

.ic-pct {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    color: rgba(215, 206, 178, .7);
    position: relative;
    z-index: 1;
}

/* ── Footer ── */
.intro-footer {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    z-index: 3;
}

.intro-footer span {
    font-family: var(--sans);
    font-size: 7.5px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
}

.if-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(215, 206, 178, .3);
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .ibl-word {
        font-size: clamp(38px, 10vw, 68px);
    }

    .intro-brand-line--em .ibl-word {
        font-size: clamp(30px, 8vw, 54px);
    }

    .intro-counter {
        bottom: -100px;
    }
}


/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--pad);
    height: var(--nh);
    background: rgba(245, 240, 232, .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--borders);
    transition: height .5s var(--ease2), transform .4s var(--ease2), background .4s, border-color .4s;
}

/* Nav transparente sur les pages avec hero photo — avant scroll */
.nav--transparent {
    background: rgba(12, 11, 9, .0) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
}

.nav--transparent .nav-links a {
    color: rgba(255, 255, 255, .85) !important;
}

.nav--transparent .nav-links a:hover {
    color: var(--sand) !important;
}

.nav--transparent .nav-link--active {
    color: #fff !important;
    border-bottom-color: rgba(255, 255, 255, .7) !important;
}

.nav--transparent .lb {
    color: rgba(255, 255, 255, .65) !important;
}

.nav--transparent .lb.active {
    color: #fff !important;
}

.nav--transparent .lb:hover {
    color: var(--sand) !important;
}

.nav--transparent .nav-cta {
    border-color: rgba(255, 255, 255, .55) !important;
    color: rgba(255, 255, 255, .9) !important;
}

.nav--transparent .nav-cta:hover {
    background: rgba(255, 255, 255, .12) !important;
}

.nav.hidden {
    transform: translateY(-100%)
}

.nav.scrolled {
    height: var(--nhs)
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform .3s var(--ease)
}

.nav-logo-img:hover {
    transform: scale(1.05)
}

.nav-links {
    display: flex;
    gap: 30px
}

.nav-links a {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dim);
    transition: color .3s;
    position: relative;
    padding-bottom: 2px
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--iron);
    transition: width .4s var(--ease)
}

.nav-links a:hover {
    color: var(--iron)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px
}

.lang-sel {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px
}

.lang-sel span {
    color: rgba(76, 87, 96, .25)
}

.lb {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: var(--khaki);
    transition: color .3s
}

.lb.active,
.lb:hover {
    color: var(--iron)
}

.nav-cta {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--iron);
    border: 1px solid var(--iron);
    padding: 7px 16px;
    transition: background .3s, color .3s
}

.nav-cta:hover {
    background: var(--iron);
    color: var(--white)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform .4s var(--ease), opacity .3s;
}

.burger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav--transparent .burger span {
    background: #fff;
}

.burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

/* Mobile menu */
.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease)
}

.mob-menu.open {
    opacity: 1;
    pointer-events: all
}

.mob-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.mob-menu a {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 300;
    color: var(--iron);
    display: block;
    padding: 8px 0;
    transition: color .3s
}

.mob-menu a:hover {
    color: var(--khaki)
}

.mob-lang {
    display: flex;
    gap: 14px;
    margin-top: 24px
}

.mob-lang .lb {
    font-size: 11px;
    letter-spacing: 3px
}

/* ── HERO — seule section sombre ── */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden
}

.hero-img-wrap {
    position: absolute;
    inset: 0;
    transform: scale(1.06);
    will-change: transform;
    overflow: hidden
}

.hero-img-wrap picture {
    position: absolute;
    inset: 0;
    display: block
}

.hero-img {
    will-change: transform;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 11, 9, .97) 0%, rgba(12, 11, 9, .78) 35%, rgba(12, 11, 9, .48) 55%, rgba(12, 11, 9, .22) 75%, rgba(12, 11, 9, .08) 100%), linear-gradient(to bottom, rgba(12, 11, 9, .62) 0%, rgba(12, 11, 9, .0) 28%)
}

.hero-content {
    position: relative;
    z-index: 100;
    padding: 0 var(--pad) 52px;
    max-width: 1000px
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 24px;
    opacity: 0;
    transition: opacity .5s;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .7)
}

.he-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--sand);
    flex-shrink: 0
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(42px, 6vw, 90px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 22px;
    text-shadow: 0 2px 28px rgba(0, 0, 0, .5)
}

.h1w {
    overflow: hidden;
    display: block
}

.h1w>* {
    display: block;
    transform: translateY(110%);
    opacity: 0;
    filter: blur(6px);
    will-change: transform, opacity, filter
}

.hero-h1 em {
    font-style: italic;
    color: #ecddc6;
    text-shadow: 0 2px 22px rgba(0, 0, 0, .7)
}

.hero-sub {
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 300;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .92);
    line-height: 1.85;
    max-width: 500px;
    margin-bottom: 0;
    opacity: 0;
    transition: opacity .5s;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .65)
}

/* ── SEARCH PILL — style CSVillas/Emerald arrondi ── */
.search-pill {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, .96);
    border-radius: 60px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .25);
    overflow: hidden;
    max-width: 860px;
    opacity: 1;
    position: relative;
    margin-top: 36px;
}

.sp-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 22px;
    position: relative;
    flex: 1;
    min-width: 0
}

.sp-lbl {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--iron);
    margin-bottom: 4px;
    display: block
}

.sp-inp {
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 300;
    color: var(--iron);
    width: 100%;
    min-width: 0
}

.sp-inp::placeholder {
    color: var(--dim);
    font-size: 13px
}

.sp-date {
    font-size: 12px;
    width: auto;
    min-width: 100px
}

.sp-guests {
    width: 60px;
    font-size: 14px;
    font-weight: 300;
    -moz-appearance: textfield;
}

.sp-guests::-webkit-outer-spin-button,
.sp-guests::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.sp-field--dates {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    flex: 1.6
}

.sp-field--dates .sp-lbl {
    display: block;
    position: absolute;
    top: 10px;
    left: 22px;
    font-size: 7.5px
}

.sp-field--dates {
    padding-top: 22px
}

.sp-arr {
    color: var(--khaki);
    font-size: 12px;
    padding: 0 6px;
    flex-shrink: 0
}

.sp-sep {
    width: 1px;
    background: rgba(76, 87, 96, .12);
    align-self: center;
    height: 28px;
    flex-shrink: 0
}

.sp-step2 {
    display: none;
    align-items: stretch
}

.sp-step2.visible {
    display: flex
}

.sp-btn {
    background: var(--sand);
    color: var(--iron);
    border: none;
    cursor: pointer;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    margin-right: 5px;
    transition: background .3s, transform .3s var(--ease);
    box-shadow: 0 4px 16px rgba(215, 206, 178, .5);
}

.sp-btn:hover {
    background: var(--sand2);
    transform: scale(1.06)
}

.sp-btn-inner {
    display: flex;
    align-items: center;
    justify-content: center
}

.sp-btn-txt {
    display: none !important;
    visibility: hidden
}

/* Destination dropdown */
.sp-dest-drop {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: rgba(255, 255, 255, .98);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(76, 87, 96, .2);
    min-width: 220px;
    padding: 6px;
    z-index: 300;
    display: none;
    backdrop-filter: blur(12px);
}

.sp-dest-drop.open {
    display: block;
    animation: dropIn .2s var(--ease)
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.sp-dest-drop button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 300;
    color: var(--iron);
    border-radius: 8px;
    transition: background .2s;
    background: none;
    border: none;
    cursor: pointer
}

.sp-dest-drop button:hover {
    background: var(--cream2)
}

/* Success message */
.search-ok {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .18);
    border-radius: 8px;
    padding: 12px 20px;
    margin-top: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 300
}

.search-ok.visible {
    display: flex
}

.search-ok span:first-child {
    font-size: 18px;
    color: var(--sand)
}

.hero-scroll-ind {
    position: absolute;
    right: var(--pad);
    bottom: 48px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    font-size: 7px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    writing-mode: vertical-rl;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .5)
}

.hsi-track {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, .14);
    overflow: hidden;
    position: relative
}

.hsi-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--sand);
    transform: translateY(-100%);
    will-change: transform;
    animation: hsi 2.2s ease-in-out infinite
}

@keyframes hsi {
    0% {
        transform: translateY(-100%)
    }

    50% {
        top: 0
    }

    100% {
        top: 100%
    }
}

/* ── SECTIONS communes ── */
section {
    padding: 96px 0
}

.eyebrow {
    display: block;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 16px
}

.eyebrow.dark {
    color: var(--iron)
}

.eyebrow.light {
    color: rgba(215, 206, 178, .75)
}

h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--iron)
}

h2 em {
    font-style: italic;
    color: var(--khaki)
}

/* Boutons */
.btn-primary-dark {
    display: inline-flex;
    align-items: center;
    background: var(--iron);
    color: var(--white);
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 26px;
    transition: opacity .3s, transform .3s var(--ease)
}

.btn-primary-dark:hover {
    opacity: .85;
    transform: translateY(-1px)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    color: var(--iron);
    border: 1px solid var(--iron);
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 24px;
    transition: background .3s, color .3s
}

.btn-outline:hover {
    background: var(--iron);
    color: var(--white)
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    color: var(--iron);
    border: 1px solid rgba(76, 87, 96, .35);
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 13px 28px;
    transition: background .3s, color .3s, border-color .3s
}

.btn-outline-dark:hover {
    background: var(--iron);
    color: var(--white);
    border-color: var(--iron)
}

.btn-sand {
    display: inline-flex;
    align-items: center;
    background: var(--sand);
    color: var(--iron);
    font-size: 9.5px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 30px;
    transition: background .3s, transform .3s var(--ease)
}

.btn-sand:hover {
    background: var(--sand2);
    transform: translateY(-2px)
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .3);
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 26px;
    transition: all .3s
}

.btn-ghost-light:hover {
    border-color: rgba(255, 255, 255, .7);
    color: #fff
}

/* ── IDENTITÉ ── */
.brand {
    background: var(--cream)
}

.brand-wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad)
}

.brand-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 72px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--borders)
}

.bi-left h2 {
    font-size: clamp(26px, 3vw, 44px)
}

.bi-right {
    font-size: 14px;
    font-weight: 300;
    color: var(--dim);
    line-height: 1.9;
    padding-top: 48px
}

.brand-values {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 72px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--borders)
}

.bv {
    display: flex;
    flex-direction: column;
    gap: 0
}

.bv-n {
    font-family: var(--serif);
    font-size: 12px;
    font-weight: 300;
    color: var(--dim);
    letter-spacing: 1px;
    margin-bottom: 12px
}

.bv h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--iron);
    margin-bottom: 8px
}

.bv p {
    font-size: 13px;
    font-weight: 300;
    color: var(--dim);
    line-height: 1.75
}

.services-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px
}

.sv-item {
    display: flex;
    flex-direction: column;
    gap: 0
}

.svi-n {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 300;
    color: rgba(76, 87, 96, .07);
    line-height: 1;
    margin-bottom: -4px
}

.sv-item h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    color: var(--iron);
    margin-bottom: 14px
}

.svi-line {
    width: 26px;
    height: 1px;
    background: var(--sand);
    margin-bottom: 14px
}

.sv-item p {
    font-size: 13px;
    font-weight: 300;
    color: var(--dim);
    line-height: 1.8;
    margin-bottom: 16px;
    flex: 1
}

.sv-item a {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--iron);
    padding-bottom: 2px;
    border-bottom: 1px solid var(--iron);
    transition: opacity .3s;
    align-self: flex-start
}

.sv-item a:hover {
    opacity: .6
}

/* ── COLLECTION — villas horizontales grandes ── */
.collection {
    background: var(--white);
    padding-top: 72px;
    padding-bottom: 72px
}

.coll-header {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 56px
}

.ch-left h2 {
    font-size: clamp(26px, 3.5vw, 48px)
}

.ch-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px
}

.ch-link {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--khaki);
    border-bottom: 1px solid rgba(160, 158, 140, .3);
    padding-bottom: 2px;
    transition: color .3s, border-color .3s
}

.ch-link:hover {
    color: var(--iron);
    border-color: var(--iron)
}

/* Filtres */
.filter-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.fb-dest {
    display: flex;
    align-items: center;
    gap: 6px
}

.fp {
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--khaki);
    padding: 3px 0;
    transition: color .3s;
    background: none;
    border: none;
    cursor: pointer
}

.fp:hover {
    color: var(--iron)
}

.fp--on {
    color: var(--iron);
    border-bottom: 1px solid var(--iron);
    padding-bottom: 2px
}

.fdot {
    color: rgba(76, 87, 96, .25);
    font-size: 11px
}

.fb-amen {
    position: relative
}

.famen-toggle {
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--khaki);
    padding: 5px 12px;
    border: 1px solid rgba(160, 158, 140, .3);
    transition: all .3s;
    background: none;
    cursor: pointer
}

.famen-toggle:hover,
.famen-toggle.open {
    color: var(--iron);
    border-color: var(--iron)
}

.famen-drop {
    position: absolute;
    top: calc(100%+8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--borders);
    box-shadow: 0 12px 32px rgba(76, 87, 96, .12);
    min-width: 300px;
    padding: 16px;
    z-index: 50;
}

.fad-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px
}

.fam {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dim);
    border: 1px solid var(--borders);
    padding: 5px 12px;
    transition: all .3s;
    background: none;
    cursor: pointer
}

.fam:hover,
.fam.on {
    background: var(--iron);
    color: var(--white);
    border-color: var(--iron)
}

.fad-guests {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--borders);
    margin-bottom: 10px
}

.fad-lbl {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--khaki)
}

.fad-ctrl {
    display: flex;
    align-items: center;
    gap: 10px
}

.fad-b {
    width: 26px;
    height: 26px;
    border: 1px solid var(--borders);
    border-radius: 50%;
    font-size: 14px;
    color: var(--dim);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    background: none;
    cursor: pointer
}

.fad-b:hover {
    border-color: var(--iron);
    color: var(--iron)
}

#fag-n {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--iron);
    min-width: 20px;
    text-align: center
}

.fad-reset {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--khaki);
    border-bottom: 1px solid rgba(160, 158, 140, .3);
    transition: color .3s;
    padding-bottom: 1px;
    background: none;
    cursor: pointer
}

.fad-reset:hover {
    color: var(--iron)
}

/* VILLAS — Horizontales grandes avec espace luxe */
.villas {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    flex-direction: column;
    gap: 80px
}

.villa {
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 1;
    transition: none
}

.villa.hidden {
    display: none !important
}

/* Image horizontale plein largeur */
.v-img {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 16/7;
    width: 100%;
    text-decoration: none
}

.v-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.1s var(--ease)
}

.villa:hover .v-img img {
    transform: scale(1.025)
}

.v-ph {
    width: 100%;
    min-height: 400px;
    height: 100%;
    background: linear-gradient(145deg, hsl(calc(var(--h, 210)), 18%, 38%) 0%, hsl(calc(var(--h, 210)), 22%, 52%) 100%)
}

.v-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 13, 11, .55) 0%, rgba(14, 13, 11, .05) 35%, transparent 55%);
    transition: background .6s
}

.villa:hover .v-ov {
    background: linear-gradient(to top, rgba(14, 13, 11, .65) 0%, rgba(14, 13, 11, .1) 40%, transparent 60%)
}

/* Infos sous l'image — fond blanc cassé, aéré */
.v-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 28px 0 0;
    border-bottom: 1px solid var(--borders);
    padding-bottom: 0;
}

.vi-l {
    flex: 1;
    min-width: 0
}

.vi-dest {
    display: block;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 10px
}

.v-info h3 {
    font-family: var(--serif);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 300;
    color: var(--iron);
    margin-bottom: 14px;
    line-height: 1.1
}

.vi-desc {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--dim);
    line-height: 1.85;
    max-width: 640px;
    margin-bottom: 16px
}

.vi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px
}

.vi-tags span {
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: .8px;
    color: var(--dim);
    display: flex;
    align-items: center;
    gap: 4px
}

.vi-tags span::before {
    content: '·';
    color: var(--borders);
    margin-right: 2px
}

.vi-tags span:first-child::before {
    display: none
}

.vi-r {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    padding-top: 4px;
    flex-shrink: 0
}

.vi-broch {
    font-size: 8.5px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dim);
    border: 1px solid var(--borders);
    padding: 7px 16px;
    transition: all .3s;
    background: none;
    cursor: pointer;
    white-space: nowrap
}

.vi-broch:hover {
    border-color: var(--iron);
    color: var(--iron)
}

.vi-see {
    font-size: 8.5px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--iron);
    padding-bottom: 2px;
    border-bottom: 1px solid var(--iron);
    transition: opacity .3s;
    white-space: nowrap
}

.vi-see:hover {
    opacity: .6
}

.coll-ft {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    text-align: center;
    margin-top: 56px
}

/* ── DESTINATIONS ── */
.dests {
    background: var(--cream)
}

.dests-wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad)
}

.dests-head {
    margin-bottom: 48px
}

.dests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px
}

.dest {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 3/4;
    max-height: 580px;
    text-decoration: none
}

.dest-img {
    position: absolute;
    inset: 0
}

.dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease)
}

.dest:hover .dest-img img {
    transform: scale(1.05)
}

.dest-vl {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 13, 11, .82) 0%, rgba(14, 13, 11, .18) 50%, transparent 100%);
    transition: background .5s
}

.dest:hover .dest-vl {
    background: linear-gradient(to top, rgba(14, 13, 11, .9) 0%, rgba(14, 13, 11, .3) 60%, rgba(14, 13, 11, .05) 100%)
}

.dest-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 36px;
    z-index: 1
}

.dest-rgn {
    display: block;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 8px
}

.dest-body h3 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 8px;
    transition: transform .4s var(--ease)
}

.dest:hover .dest-body h3 {
    transform: translateY(-3px)
}

.dest-body p {
    font-size: 11px;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .42);
    margin-bottom: 10px
}

.dest-cta {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sand);
    display: block;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity .35s, transform .35s var(--ease)
}

.dest:hover .dest-cta {
    opacity: 1;
    transform: none
}

/* ── CONCIERGERIE ── */
.conc {
    background: var(--cream2)
}

.conc-wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center
}

.conc-img {
    position: relative;
    overflow: hidden;
    height: 560px
}

.conc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease)
}

.conc-img:hover img {
    transform: scale(1.04)
}

.conc-text h2 {
    margin-bottom: 18px
}

.conc-text p {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--dim);
    line-height: 1.85;
    margin-bottom: 22px;
    max-width: 440px
}

.cx-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 26px
}

.cx-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--dim)
}

/* ── PROPRIÉTAIRES ── */
.owners {
    background: var(--white)
}

.ow-wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center
}

.ow-text h2 {
    margin-bottom: 18px
}

.ow-text>p {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--dim);
    line-height: 1.85;
    margin-bottom: 22px;
    max-width: 440px
}

.ow-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px
}

.owp {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--dim)
}

.owp-c {
    color: var(--sand2);
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 1px
}

.ow-kpi {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid var(--borders);
    border-bottom: 1px solid var(--borders);
    margin-bottom: 26px
}

.kpi-n {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 300;
    color: var(--iron)
}

.kpi-l {
    font-size: 12px;
    font-weight: 300;
    color: var(--dim);
    max-width: 190px;
    line-height: 1.5
}

.ow-img {
    overflow: hidden;
    height: 560px
}

.ow-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease)
}

.ow-img:hover img {
    transform: scale(1.04)
}

/* ── TRUST ── */
.trust {
    background: var(--cream);
    padding: 80px 0
}

.trust-wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad)
}

.trust-wrap h2 {
    margin-bottom: 52px
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--borders)
}

.tg {
    padding: 32px 20px;
    border-right: 1px solid var(--borders)
}

.tg:last-child {
    border-right: none
}

.tg-n {
    display: block;
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 300;
    color: var(--iron);
    line-height: 1;
    margin-bottom: 10px
}

.tg p {
    font-size: 10.5px;
    font-weight: 300;
    color: var(--khaki);
    letter-spacing: 1px;
    text-transform: uppercase
}

/* ── FAQ ── */
.faq {
    background: var(--cream2)
}

.faq-wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad)
}

.faq-head {
    margin-bottom: 48px
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: start
}

.faq-list {
    display: flex;
    flex-direction: column
}

.faq-item {
    border-bottom: 1px solid var(--borders)
}

.faq-item:first-child {
    border-top: 1px solid var(--borders)
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    text-align: left;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--dim);
    letter-spacing: .3px;
    line-height: 1.5;
    transition: color .3s;
    background: none;
    border: none;
    cursor: pointer
}

.faq-q:hover,
.faq-q[aria-expanded="true"] {
    color: var(--iron)
}

.faq-ico {
    font-size: 22px;
    font-weight: 200;
    color: var(--khaki);
    flex-shrink: 0;
    line-height: 1;
    transition: transform .4s var(--ease)
}

.faq-q[aria-expanded="true"] .faq-ico {
    transform: rotate(45deg);
    color: var(--iron)
}

.faq-a {
    overflow: hidden
}

.faq-a p {
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--dim);
    padding: 0 40px 22px 0;
    max-width: 580px
}

.faq-aside {
    position: sticky;
    top: calc(var(--nhs) + 72px)
}

.fa-card {
    background: var(--white);
    border: 1px solid var(--borders);
    padding: 28px
}

.fa-ico {
    font-size: 24px;
    margin-bottom: 12px;
    display: block
}

.fa-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    color: var(--iron);
    margin-bottom: 10px
}

.fa-card>p {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--dim);
    line-height: 1.75;
    margin-bottom: 20px
}

.fa-tels {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--borders)
}

.fa-tel {
    font-size: 11px;
    color: var(--dim);
    transition: color .3s
}

.fa-tel:hover {
    color: var(--iron)
}

.fa-hrs {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dim);
    margin-top: 10px
}

/* ── NEWSLETTER ── */
.newsletter {
    background: var(--cream);
    border-top: 1px solid var(--borders)
}

.nl-wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center
}

.nl-text h2 {
    margin-bottom: 16px
}

.nl-text>p {
    font-size: 13px;
    font-weight: 300;
    color: var(--dim);
    line-height: 1.82;
    margin-bottom: 18px
}

.nl-bens {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.nl-bens li {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--dim)
}

.nl-form {
    background: var(--white);
    border: 1px solid var(--borders);
    padding: 28px
}

.nl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.nl-f {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.nl-f--check {
    justify-content: flex-end;
    padding-bottom: 2px
}

.nl-f label:not(.nl-ck) {
    font-size: 7.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--khaki)
}

.nl-f input[type="text"],
.nl-f input[type="email"],
.nl-sel {
    background: var(--cream);
    border: 1px solid rgba(76, 87, 96, .18);
    outline: none;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--iron);
    transition: border-color .3s;
    width: 100%
}

.nl-f input:focus,
.nl-sel:focus {
    border-color: var(--iron)
}

.nl-f input::placeholder {
    color: var(--khaki)
}

.nl-sel {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer
}

option {
    background: var(--cream);
    color: var(--iron)
}

.nl-ck {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 11px;
    color: var(--dim);
    line-height: 1.5
}

.nl-ck input {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    accent-color: var(--iron);
    margin-top: 1px;
    cursor: pointer
}

.nl-submit {
    width: 100%;
    background: var(--iron);
    color: var(--white);
    border: none;
    padding: 13px;
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: opacity .3s, transform .3s var(--ease);
    margin-top: 14px
}

.nl-submit:hover {
    opacity: .85;
    transform: translateY(-1px)
}

.nl-legal {
    font-size: 9.5px;
    color: var(--dim);
    margin-top: 10px;
    line-height: 1.6
}

.nl-legal a {
    color: var(--dim);
    border-bottom: 1px solid rgba(76, 87, 96, .18);
    transition: color .3s
}

.nl-legal a:hover {
    color: var(--iron)
}

/* ── CTA FINAL ── */
.cta-final {
    background: var(--iron);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(215, 206, 178, .08) 0%, transparent 65%)
}

.cf-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 var(--pad)
}

.cf-inner h2 {
    color: #fff;
    margin-bottom: 14px
}

.cf-inner h2 em {
    color: var(--sand)
}

.cf-inner p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    line-height: 1.85;
    max-width: 500px;
    margin: 0 auto 32px
}

.cf-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.cf-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 11px;
    color: rgba(255, 255, 255, .38)
}

.cf-contacts a {
    color: rgba(255, 255, 255, .42);
    transition: color .3s
}

.cf-contacts a:hover {
    color: var(--sand)
}

.cf-contacts span {
    color: rgba(255, 255, 255, .18)
}

/* ── FOOTER ── */
.footer {
    background: var(--cream2);
    border-top: 1px solid var(--borders);
    padding: 60px 0 0
}

.ft-top {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 56px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--borders)
}

.ft-brand {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ft-logo-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover
}

.ftb-sub {
    font-size: 10px;
    font-weight: 300;
    color: var(--khaki);
    line-height: 1.75
}

.ft-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.fn-col {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.fn-col h4 {
    font-size: 7.5px;
    font-weight: 400;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--khaki);
    margin-bottom: 4px
}

.fn-col a {
    font-size: 11px;
    font-weight: 300;
    color: var(--iron);
    transition: color .3s;
    line-height: 1.65
}

.fn-col a:hover {
    color: var(--iron)
}

.ft-bot {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 16px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 9.5px;
    color: var(--khaki)
}

.ft-credit a {
    color: var(--iron);
    border-bottom: 1px solid rgba(76, 87, 96, .2);
    transition: color .3s
}

.ft-credit a:hover {
    color: var(--dim)
}

.ft-legal {
    display: flex;
    gap: 14px
}

.ft-legal a {
    color: var(--dim);
    font-size: 9px;
    transition: color .3s
}

.ft-legal a:hover {
    color: var(--iron)
}

/* ── MODALE ── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease)
}

.modal.open {
    opacity: 1;
    pointer-events: all
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(76, 87, 96, .45);
    backdrop-filter: blur(8px);
    cursor: pointer
}

.modal-box {
    position: relative;
    background: var(--white);
    border: 1px solid var(--borders);
    max-width: 440px;
    width: 100%;
    z-index: 1;
    transform: translateY(22px) scale(.97);
    transition: transform .45s var(--ease)
}

.modal.open .modal-box {
    transform: none
}

.modal-hd {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px 22px 16px;
    border-bottom: 1px solid var(--borders)
}

.modal-ey {
    font-size: 7px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--khaki);
    margin-bottom: 5px
}

.modal-hd h2 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    color: var(--iron)
}

.modal-prop {
    font-size: 11px;
    color: var(--khaki);
    margin-top: 3px
}

.modal-x {
    color: var(--khaki);
    font-size: 20px;
    line-height: 1;
    transition: color .3s;
    cursor: pointer
}

.modal-x:hover {
    color: var(--iron)
}

.mf {
    padding: 18px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 11px
}

.mf-r {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mf-r label {
    font-size: 7.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--khaki)
}

.mf-r input {
    background: var(--cream);
    border: 1px solid rgba(76, 87, 96, .18);
    outline: none;
    padding: 10px 12px;
    font-size: 12.5px;
    color: var(--iron);
    transition: border-color .3s
}

.mf-r input::placeholder {
    color: var(--khaki)
}

.mf-r input:focus {
    border-color: var(--iron)
}

.mf button[type="submit"] {
    background: var(--iron);
    color: var(--white);
    border: none;
    padding: 12px;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity .3s
}

.mf button[type="submit"]:hover {
    opacity: .85
}

.mf-legal {
    font-size: 9px;
    color: var(--khaki);
    text-align: center
}

/* ── MAJORDOME ── */
.maj {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px
}

.maj-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--iron);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px rgba(76, 87, 96, .28);
    transition: transform .35s var(--ease), background .3s;
    position: relative;
    cursor: pointer
}

.maj-btn:hover {
    transform: scale(1.08);
    background: var(--dim)
}

.maj-notif {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #E74C3C;
    color: #fff;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.maj-panel {
    width: 350px;
    background: var(--white);
    border: 1px solid var(--borders);
    box-shadow: 0 18px 48px rgba(76, 87, 96, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(.96);
    transition: opacity .4s var(--ease), transform .4s var(--ease)
}

.maj-panel.open {
    opacity: 1;
    pointer-events: all;
    transform: none
}

.maj-hd {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--borders);
    background: var(--cream2)
}

.maj-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0
}

.maj-name {
    font-size: 11px;
    font-weight: 400;
    color: var(--iron);
    margin-bottom: 2px
}

.maj-st {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 8.5px;
    color: var(--khaki)
}

.maj-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2ECC71;
    flex-shrink: 0;
    animation: mp 2s ease-in-out infinite
}

@keyframes mp {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.3)
    }
}

.maj-wa-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(37, 211, 102, .1);
    border: 1px solid rgba(37, 211, 102, .25);
    color: #25D366;
    margin-left: auto;
    transition: background .3s;
    text-decoration: none
}

.maj-wa-ico:hover {
    background: rgba(37, 211, 102, .2)
}

.maj-x {
    font-size: 17px;
    color: var(--khaki);
    line-height: 1;
    transition: color .3s;
    margin-left: 6px;
    cursor: pointer
}

.maj-x:hover {
    color: var(--iron)
}

.maj-msgs {
    max-height: 150px;
    overflow-y: auto;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    scrollbar-width: thin
}

.mm-b {
    background: var(--cream2);
    border-radius: 0 8px 8px 8px;
    padding: 8px 12px;
    align-self: flex-start;
    max-width: 90%
}

.mm-u {
    background: var(--iron);
    border-radius: 8px 0 8px 8px;
    padding: 8px 12px;
    align-self: flex-end;
    max-width: 90%
}

.mm-b p {
    font-size: 11.5px;
    line-height: 1.5;
    color: var(--iron)
}

.mm-u p {
    font-size: 11.5px;
    line-height: 1.5;
    color: #fff
}

.maj-flow {
    padding: 10px 12px 12px;
    border-top: 1px solid var(--borders)
}

.mj-step {
    display: none
}

.mj-step.active {
    display: block;
    animation: mjin .3s var(--ease)
}

@keyframes mjin {
    from {
        opacity: 0;
        transform: translateX(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.mj-q {
    font-size: 11.5px;
    font-weight: 400;
    color: var(--iron);
    margin-bottom: 8px;
    line-height: 1.5
}

.mj-ch {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mj-ch button {
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    border: 1px solid rgba(76, 87, 96, .15);
    background: var(--cream);
    font-size: 11px;
    font-weight: 300;
    color: var(--dim);
    transition: background .2s, border-color .2s, color .2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px
}

.mj-ch button:hover {
    background: var(--cream2);
    border-color: var(--iron);
    color: var(--iron)
}

.mj-wa {
    background: rgba(37, 211, 102, .07) !important;
    border-color: rgba(37, 211, 102, .22) !important
}

.mj-back {
    font-size: 8.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--khaki);
    margin-top: 7px;
    transition: color .3s;
    cursor: pointer
}

.mj-back:hover {
    color: var(--iron)
}

.mj-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 6px
}

.mj-form input {
    background: var(--cream);
    border: 1px solid rgba(76, 87, 96, .18);
    outline: none;
    padding: 9px 12px;
    font-size: 12px;
    color: var(--iron);
    width: 100%;
    transition: border-color .3s
}

.mj-form input::placeholder {
    color: var(--khaki)
}

.mj-form input:focus {
    border-color: var(--iron)
}

.mj-form button[type="submit"] {
    background: var(--iron);
    color: var(--white);
    border: none;
    padding: 10px;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity .3s
}

.mj-form button[type="submit"]:hover {
    opacity: .85
}

.mj-leg {
    font-size: 8.5px;
    color: var(--khaki);
    margin-bottom: 4px
}

.mj-ok {
    text-align: center;
    padding: 6px 0
}

.mj-check {
    font-size: 26px;
    color: var(--iron);
    margin-bottom: 8px
}

.mj-ok p:first-of-type {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 300;
    color: var(--iron);
    margin-bottom: 5px
}

.mj-ok p:last-of-type {
    font-size: 11px;
    color: var(--dim);
    margin-bottom: 12px;
    line-height: 1.6
}

.maj-prog {
    height: 2px;
    background: var(--borders)
}

.maj-bar {
    height: 100%;
    background: var(--sand2);
    transition: width .4s var(--ease);
    width: 0
}

/* ── STICKY MOBILE ── */
.sticky-mob {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 850;
    display: none;
    grid-template-columns: 2fr 1fr;
    background: var(--white);
    border-top: 1px solid var(--borders)
}

.sm-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    background: #25D366;
    color: #fff;
    font-size: 9.5px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background .3s;
    text-decoration: none
}

.sm-wa:hover {
    background: #1db954
}

.sm-villas {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--iron);
    border-left: 1px solid var(--border);
    transition: background .3s;
    cursor: pointer;
    text-decoration: none
}

.sm-villas:hover {
    background: var(--cream)
}


/* ── Villa style badge ── */
.vi-style-badge {
    display: inline-block;
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sand2);
    border: 1px solid rgba(200, 191, 165, .4);
    padding: 3px 10px;
    margin-bottom: 8px;
}

/* ── Collection header simplifié (sans filtres) ── */
.coll-header--simple {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    margin-bottom: 56px;
}

.coll-header--simple .eyebrow {
    margin-bottom: 14px
}


/* ── Search pill — champ manquant ── */
.sp-inp.sp-error {
    border-bottom: 2px solid #E74C3C !important;
    color: #E74C3C
}

.sp-inp.sp-error::placeholder {
    color: rgba(231, 76, 60, .6)
}

.sp-inp:focus {
    outline: none
}

/* ── Search pill step2 visible ── */
#sp-step2 {
    flex-shrink: 0
}


/* ── Collection header avec lien ── */
.coll-header--simple {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    margin-bottom: 52px;
}

.chs-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px
}

.chs-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--khaki);
    border-bottom: 1px solid rgba(160, 158, 140, .3);
    padding-bottom: 2px;
    transition: color .3s, gap .35s, border-color .3s;
}

.chs-link:hover {
    color: var(--iron);
    gap: 12px;
    border-color: var(--iron)
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
    :root {
        --pad: 40px
    }

    .brand-intro {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .bi-right {
        padding-top: 0
    }

    .brand-values,
    .services-row {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    .conc-wrap,
    .ow-wrap {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .conc-img,
    .ow-img {
        height: 360px
    }

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

    .faq-layout,
    .nl-wrap {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .faq-aside {
        position: static
    }

    .ft-top {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .ft-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px
    }
}

@media(max-width:768px) {
    :root {
        --nh: 58px;
        --nhs: 48px;
        --pad: 22px
    }

    section {
        padding: 64px 0
    }

    .nav-links,
    .lang-sel,
    .nav-cta {
        display: none
    }

    .burger {
        display: flex
    }

    .nav {
        padding: 0 var(--pad);
        height: var(--nh)
    }

    .hero-content {
        padding: 0 var(--pad) 44px;
        max-width: 100%
    }

    .hero-h1 {
        font-size: clamp(30px, 10vw, 50px)
    }

    .hero-sub {
        font-size: 13px;
        margin-bottom: 24px
    }

    .hero-scroll-ind {
        display: none
    }

    /* Search pill mobile */
    .search-pill {
        flex-direction: column;
        border-radius: 16px;
        max-width: 100%
    }

    .sp-field {
        border-bottom: 1px solid var(--border);
        padding: 12px 18px
    }

    .sp-field--dates {
        flex-direction: row;
        align-items: center
    }

    .sp-sep {
        display: none
    }

    .sp-btn {
        width: 100%;
        height: 52px;
        border-radius: 0 0 14px 14px;
        margin: 0;
        justify-content: center;
        gap: 10px
    }

    .sp-btn-txt {
        display: inline
    }

    /* Villas */
    .villas {
        padding: 0 var(--pad);
        gap: 56px
    }

    .v-img {
        aspect-ratio: 4/3
    }

    .v-info {
        flex-direction: column;
        gap: 16px
    }

    .vi-r {
        flex-direction: row;
        align-self: flex-start
    }

    .vi-desc {
        font-size: 13px
    }

    /* Misc */
    .coll-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 var(--pad)
    }

    .ch-right {
        align-items: flex-start
    }

    .coll-ft {
        padding: 0 var(--pad)
    }

    .dests-wrap,
    .conc-wrap,
    .ow-wrap,
    .faq-wrap,
    .nl-wrap,
    .trust-wrap,
    .brand-wrap {
        padding: 0 var(--pad)
    }

    .dests-grid {
        grid-template-columns: 1fr;
        gap: 2px
    }

    .dest {
        max-height: 380px
    }

    .conc-img,
    .ow-img {
        height: 260px
    }

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

    .faq-layout,
    .nl-wrap {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .nl-row {
        grid-template-columns: 1fr
    }

    .ft-top {
        padding: 0 var(--pad);
        padding-bottom: 36px
    }

    .ft-nav {
        grid-template-columns: 1fr 1fr
    }

    .ft-bot {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px var(--pad)
    }

    .cf-btns {
        flex-direction: column;
        align-items: stretch
    }

    .btn-sand,
    .btn-ghost-light {
        justify-content: center
    }

    .sticky-mob {
        display: none !important
    }

    .maj {
        bottom: 24px
    }

    .maj-panel {
        width: calc(100vw - 28px);
        max-width: 340px
    }

    .modal-box {
        max-width: calc(100vw - 28px)
    }

    .famen-drop {
        right: auto;
        left: 0;
        min-width: 280px
    }

    .services-row {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .hero-h1 {
        font-size: clamp(26px, 9vw, 38px)
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr
    }

    .tg-n {
        font-size: 38px
    }

    .ft-nav {
        grid-template-columns: 1fr
    }

    .brand-values {
        grid-template-columns: 1fr
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}

/* ══════════════════════════════════════════
   MODALE LEAD — Style luxe premium
══════════════════════════════════════════ */
.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s cubic-bezier(.16, 1, .3, 1);
}

.lead-modal.open {
    opacity: 1;
    pointer-events: all
}

.lm-bg {
    position: absolute;
    inset: 0;
    background: rgba(28, 27, 23, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
}

.lm-box {
    position: relative;
    z-index: 1;
    background: var(--white);
    max-width: 520px;
    width: 100%;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .28);
    transform: translateY(28px) scale(.96);
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
    overflow: hidden;
}

.lead-modal.open .lm-box {
    transform: none
}

/* Ligne décorative dorée en haut */
.lm-box::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, var(--sand) 0%, var(--sand2) 50%, var(--sand) 100%);
}

.lm-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--khaki);
    transition: color .3s;
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
}

.lm-close:hover {
    color: var(--iron)
}

/* Header modale */
.lm-header {
    padding: 32px 36px 22px;
    border-bottom: 1px solid var(--borders);
    text-align: center;
}

.lm-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
}

.lm-eyebrow {
    display: block;
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--khaki);
    margin-bottom: 10px;
}

.lm-title {
    font-family: 'Cormorant', 'Georgia', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 300;
    color: var(--iron);
    line-height: 1.15;
    margin-bottom: 8px;
}

.lm-title em {
    font-style: italic;
    color: var(--khaki)
}

.lm-sub {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--dim);
    line-height: 1.7
}

/* Récap dates/destination */
.lm-recap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 36px;
    background: var(--cream2);
    border-bottom: 1px solid var(--borders);
}

.lm-recap:empty {
    display: none
}

.lm-recap-item {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: .5px;
    color: var(--dim);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lm-recap-item strong {
    color: var(--iron);
    font-weight: 400
}

.lm-recap-dot {
    color: var(--borders);
    font-size: 14px
}

/* Formulaire */
.lm-form {
    padding: 22px 36px 28px
}

.lm-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px
}

.lm-field {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.lm-field--full {
    grid-column: span 2
}

.lm-lbl {
    font-size: 7.5px;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--khaki)
}

.lm-req {
    color: var(--sand2)
}

.lm-inp {
    background: var(--cream);
    border: 1px solid rgba(76, 87, 96, .18);
    outline: none;
    padding: 11px 14px;
    font-family: 'DM Sans', 'system-ui', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--iron);
    transition: border-color .3s, box-shadow .3s;
    width: 100%;
}

.lm-inp::placeholder {
    color: var(--khaki)
}

.lm-inp:focus {
    border-color: var(--iron);
    box-shadow: 0 0 0 3px rgba(76, 87, 96, .06)
}

.lm-inp.error {
    border-color: #c0392b;
    animation: shake .35s ease
}

@keyframes shake {

    0%,
    100% {
        transform: none
    }

    25% {
        transform: translateX(-4px)
    }

    75% {
        transform: translateX(4px)
    }
}

.lm-textarea {
    resize: none;
    font-size: 12.5px
}

/* Bouton submit */
.lm-submit {
    width: 100%;
    background: var(--iron);
    color: var(--white);
    border: none;
    cursor: pointer;
    padding: 14px 24px;
    font-family: 'DM Sans', 'system-ui', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .3s, transform .3s cubic-bezier(.16, 1, .3, 1);
    margin-bottom: 12px;
}

.lm-submit:hover {
    background: var(--dim);
    transform: translateY(-1px)
}

.lm-submit:disabled {
    opacity: .6;
    pointer-events: none
}

.lm-rgpd {
    font-size: 9.5px;
    color: var(--khaki);
    text-align: center;
    line-height: 1.6
}

/* ── CONFIRMATION ── */
.lm-confirm {
    padding: 48px 36px;
    text-align: center
}

.lm-confirm-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0
}

/* Cercle check animé */
.lm-check-anim {
    width: 60px;
    height: 60px;
    color: var(--sand2);
    margin-bottom: 20px;
}

.lm-check-circle {
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    animation: drawCircle .6s ease forwards .1s;
}

.lm-check-tick {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: drawTick .4s ease forwards .7s;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes drawTick {
    to {
        stroke-dashoffset: 0
    }
}

.lm-conf-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px
}

.lm-conf-title {
    font-family: 'Cormorant', 'Georgia', serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 300;
    color: var(--iron);
    margin-bottom: 14px;
    line-height: 1.1;
}

.lm-conf-title em {
    font-style: italic;
    color: var(--khaki)
}

.lm-conf-sub {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--dim);
    line-height: 1.85;
    max-width: 380px;
    margin-bottom: 24px;
}

.lm-conf-sub strong {
    color: var(--iron);
    font-weight: 400
}

.lm-conf-divider {
    width: 32px;
    height: 1px;
    background: var(--sand);
    margin: 0 auto 16px
}

.lm-conf-sign {
    font-family: 'Cormorant', 'Georgia', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--khaki);
    margin-bottom: 16px;
}

.lm-conf-contacts {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 11px;
    color: var(--dim);
    margin-bottom: 28px;
}

.lm-conf-contacts a {
    color: var(--iron);
    transition: color .3s
}

.lm-conf-contacts a:hover {
    color: var(--khaki)
}

.lm-conf-contacts span {
    color: var(--borders)
}

.lm-conf-close {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--khaki);
    border-bottom: 1px solid rgba(160, 158, 140, .3);
    padding-bottom: 2px;
    transition: color .3s, border-color .3s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
}

.lm-conf-close:hover {
    color: var(--iron);
    border-color: var(--iron)
}

/* Responsive modale */
@media(max-width:600px) {
    .lm-box {
        max-width: 100%
    }

    .lm-header,
    .lm-form {
        padding-left: 22px;
        padding-right: 22px
    }

    .lm-recap {
        padding: 12px 22px
    }

    .lm-fields {
        grid-template-columns: 1fr
    }

    .lm-field--full {
        grid-column: auto
    }

    .lm-confirm {
        padding: 36px 22px
    }
}

/* ── Performance optimisations ── */
.hero-img,
.lcc-img,
.gp-img,
.gg-img,
.ap-hero-img,
.bl-hero-img,
.ct-hero-img,
.cx-hero-img,
.ges-hero-img,
.loc-hero-img {
    will-change: transform;
    transform: translateZ(0);
}

.hero,
.collection,
.brand,
.owners,
.trust,
.faq,
.newsletter {
    contain: layout style;
}

/* Éviter les animations non composées — utiliser transform au lieu de top/left */
.intro-body,
.intro-center {
    transform: translateZ(0);
    will-change: opacity, transform;
}

/* ── COOKIE BANNER ── */
.ck-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8500;
    background: var(--iron);
    border-top: 1px solid rgba(215, 206, 178, .15);
    transform: translateY(100%);
    transition: transform .6s cubic-bezier(.16, 1, .3, 1);
    will-change: transform;
}

.ck-banner.visible {
    transform: translateY(0);
}

.ck-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 18px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.ck-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.ck-eyebrow {
    font-size: 7.5px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sand);
    display: block;
}

.ck-text {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
    max-width: 620px;
}

.ck-link {
    color: var(--sand);
    border-bottom: 1px solid rgba(215, 206, 178, .3);
    transition: border-color .3s;
    margin-left: 6px;
    white-space: nowrap;
}

.ck-link:hover {
    border-color: var(--sand);
}

.ck-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ck-refuse {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 9px 18px;
    background: none;
    cursor: pointer;
    transition: color .3s, border-color .3s;
    font-family: var(--sans);
}

.ck-refuse:hover {
    color: rgba(255, 255, 255, .75);
    border-color: rgba(255, 255, 255, .35);
}

.ck-accept {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--iron);
    background: var(--sand);
    border: 1px solid var(--sand);
    padding: 9px 22px;
    cursor: pointer;
    transition: background .3s, transform .3s var(--ease);
    font-family: var(--sans);
}

.ck-accept:hover {
    background: var(--sand2);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .ck-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px var(--pad);
    }

    .ck-right {
        width: 100%;
        justify-content: flex-end;
    }
}