/* =============================================================
   CANDAU PRIVATE OFFICE — Design System
   Palette issue du logo : vert émeraude profond & or
   ============================================================= */

:root {
    --green-950: #071d14;
    --green-900: #0a2b1e;
    --green-850: #0d3323;
    --green-800: #114029;
    --green-700: #1a5638;

    --gold-100: #f4e7c3;
    --gold-200: #e8ce93;
    --gold-300: #d9b96f;
    --gold-400: #c9a45c;
    --gold-500: #b08d45;
    --gold-600: #8f6f33;

    --cream: #faf6ec;
    --cream-dark: #f1ead9;
    --ink: #16211c;
    --ink-soft: #45544c;

    --gold-gradient: linear-gradient(120deg, #9a7a3f 0%, #d9b96f 25%, #f4e7c3 50%, #d9b96f 75%, #9a7a3f 100%);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Segoe UI', sans-serif;

    --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-card: 0 20px 60px -20px rgba(7, 29, 20, 0.35);
}

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

html { scroll-behavior: smooth; }

/* Aucun débordement horizontal : évite le zoom arrière et les bandes
   latérales sur mobile (les overlays fixed couvrent alors tout l'écran). */
html, body { overflow-x: hidden; overflow-x: clip; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    user-select: none;
}

/* La saisie et la sélection restent possibles dans les champs de formulaire */
input, textarea, select {
    -webkit-user-select: auto;
    user-select: auto;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; }

/* ---------- Texte doré ---------- */
.gold-text {
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: goldShimmer 6s linear infinite;
}

@keyframes goldShimmer {
    to { background-position: 200% center; }
}

/* ---------- Séparateur fleur de lys ---------- */
.lys-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gold-400);
    margin: 1.4rem auto;
}

.lys-divider::before,
.lys-divider::after {
    content: '';
    height: 1px;
    width: min(90px, 20vw);
    background: linear-gradient(90deg, transparent, var(--gold-400));
}

.lys-divider::after { background: linear-gradient(90deg, var(--gold-400), transparent); }

.lys-divider span { font-size: 1.15rem; transform: translateY(-1px); }

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 1.1rem 0;
    transition: padding 0.45s var(--ease-lux);
    /* Voile dégradé permanent : garde la navigation lisible sur les images
       claires tant que le fond plein (.is-scrolled) n'est pas affiché. */
    background: linear-gradient(180deg, rgba(7, 29, 20, 0.68) 0%, rgba(7, 29, 20, 0.3) 65%, transparent 100%);
}

/* Fond flouté porté par un pseudo-élément : un backdrop-filter directement
   sur le header en ferait le containing block du menu mobile en position fixed. */
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 29, 20, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 40px -18px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.45s var(--ease-lux);
    pointer-events: none;
}

.site-header.is-scrolled { padding: 0.55rem 0; }

.site-header.is-scrolled::before { opacity: 1; }

.site-header__inner { position: relative; }

.site-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.2rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-header__brand { display: flex; align-items: center; }

.brand-logo {
    height: 76px;
    width: auto;
    display: block;
    transition: height 0.45s var(--ease-lux), filter 0.5s;
}

.site-header__brand:hover .brand-logo {
    filter: drop-shadow(0 0 14px rgba(217, 185, 111, 0.45));
}

.site-header.is-scrolled .brand-logo { height: 58px; }

.site-header__nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem); }

/* ---------- Sélecteur de langue ---------- */

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding-left: clamp(0.4rem, 1.2vw, 1rem);
    border-left: 1px solid rgba(217, 185, 111, 0.3);
}

.lang-switch__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.5rem;
    border: 1px solid transparent;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s, border-color 0.3s, opacity 0.3s;
}

.lang-switch__item:hover { color: var(--gold-200); border-color: rgba(217, 185, 111, 0.45); }

.lang-switch__item.is-active {
    color: var(--gold-200);
    border-color: rgba(217, 185, 111, 0.55);
}

/* Le drapeau de la langue inactive est atténué : l'actif se repère d'un coup. */
.lang-switch__item:not(.is-active) .lang-switch__flag { opacity: 0.55; }

.lang-switch__flag {
    display: block;
    line-height: 0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.lang-switch__flag svg { display: block; }

.nav-link {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold-300);
    transition: width 0.4s var(--ease-lux), left 0.4s var(--ease-lux);
}

.nav-link:hover, .nav-link.is-active { color: var(--gold-200); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; left: 0; }

.nav-link--admin {
    border: 1px solid var(--gold-500);
    padding: 0.45rem 1.1rem;
    border-radius: 2rem;
}

.site-header__toggle { display: none; }

/* =============================================================
   HERO
   ============================================================= */

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background: var(--green-950);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: kenburns 22s ease-in-out infinite alternate;
}

@keyframes kenburns {
    from { transform: scale(1) translateY(0); }
    to { transform: scale(1.12) translateY(-2%); }
}

/* ---------- Diaporama du hero ---------- */

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}

/* L'animation reste appliquée pendant la sortie (.is-leaving) pour éviter
   tout retour à l'échelle initiale durant le fondu enchaîné. */
.hero__slide.is-active,
.hero__slide.is-leaving {
    animation: kenburnsOnce 12s ease-out forwards;
}

.hero__slide.is-active {
    opacity: 1;
}

@keyframes kenburnsOnce {
    from { transform: scale(1); }
    to { transform: scale(1.16); }
}

@media (prefers-reduced-motion: reduce) {
    .hero__slide.is-active,
    .hero__slide.is-leaving { animation: none; }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 29, 20, 0.55) 0%, rgba(7, 29, 20, 0.25) 40%, rgba(7, 29, 20, 0.88) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 7rem 1.5rem 4rem;
}

/* Scrim radial : assombrit localement le fond derrière le texte,
   sans toucher à l'éclat des images sur les bords. */
.hero__content::before {
    content: '';
    position: absolute;
    inset: -10% -35%;
    background: radial-gradient(ellipse 58% 52% at center, rgba(7, 29, 20, 0.58), rgba(7, 29, 20, 0.28) 55%, transparent 72%);
    z-index: -1;
    pointer-events: none;
}

.hero__eyebrow {
    font-size: clamp(0.75rem, 1.7vw, 1.05rem);
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--gold-200);
    margin-bottom: 1.6rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.hero__title {
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    font-weight: 500;
    text-shadow: 0 10px 45px rgba(0, 0, 0, 0.45);
    filter: drop-shadow(0 5px 18px rgba(0, 0, 0, 0.5));
}

.hero__title em { font-style: italic; font-weight: 400; }

.hero__subtitle {
    max-width: 620px;
    margin: 1.8rem auto 2.8rem;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

/* Signature de marque : reprend la baseline du logo, en retrait typographique
   du titre pour ne pas lui faire concurrence. */
.hero__signature {
    margin-top: 1.4rem;
    font-size: clamp(0.62rem, 1.25vw, 0.8rem);
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold-200);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

/* Les trois termes restent insécables : la ligne se coupe entre eux et jamais
   au milieu de l'un d'eux (hero étroit sur mobile, colonne du footer). */
.hero__signature span,
.site-footer__tagline span { white-space: nowrap; }

.hero .lys-divider { filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6)); }

.hero__scroll {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gold-200);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.hero__scroll::after {
    content: '';
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--gold-300), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Boutons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    border: 1px solid var(--gold-400);
    color: var(--gold-100);
    background: transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.45s var(--ease-lux), border-color 0.45s;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    transform: translateX(-101%);
    transition: transform 0.55s var(--ease-lux);
    z-index: -1;
}

.btn:hover { color: var(--green-950); }
.btn:hover::before { transform: translateX(0); }

/* Reflet métallique en aller-retour : fine ligne spéculaire presque
   blanche sur un halo doré plus large. Partagé avec la pastille
   « Exclusivité » des cartes de biens. */
.btn::after,
.property-card__badge--featured::after {
    content: '';
    position: absolute;
    top: -25%;
    bottom: -25%;
    left: 0;
    width: 55%;
    background:
        linear-gradient(105deg, transparent 42%, rgba(255, 252, 240, 0.85) 50%, transparent 58%),
        linear-gradient(105deg, transparent 12%, rgba(233, 205, 143, 0.25) 50%, transparent 88%);
    transform: translateX(-160%) skewX(-18deg);
    animation: btnShine 3.4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes btnShine {
    from { transform: translateX(-160%) skewX(-18deg); }
    to { transform: translateX(370%) skewX(-18deg); }
}

.btn--dark { color: var(--green-900); border-color: var(--green-800); }
.btn--dark::before { background: var(--green-900); }
.btn--dark:hover { color: var(--gold-100); }

.btn--solid {
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: var(--green-950);
    border: none;
    font-weight: 500;
}

.btn--solid:hover { background-position: right center; color: var(--green-950); }

/* ---------- Bouton d'appel flottant (mobile) ---------- */

.call-fab { display: none; }

@media (max-width: 900px) {
    .call-fab {
        position: fixed;
        right: 1.1rem;
        bottom: 1.5rem;
        z-index: 90;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gold-gradient);
        color: var(--green-950);
        box-shadow: 0 8px 26px -8px rgba(0, 0, 0, 0.55);
        animation: callPulse 2.6s ease-in-out infinite;
    }

    .call-fab svg { width: 24px; height: 24px; }
}

@keyframes callPulse {
    0%, 100% { box-shadow: 0 8px 26px -8px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(217, 185, 111, 0.45); }
    50% { box-shadow: 0 8px 26px -8px rgba(0, 0, 0, 0.55), 0 0 0 12px rgba(217, 185, 111, 0); }
}

/* =============================================================
   SECTIONS
   ============================================================= */

.section { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.2rem, 4vw, 3rem); }

.section__inner { max-width: 1280px; margin: 0 auto; }

.section--dark { background: var(--green-950); color: #fff; }

.section--cream { background: var(--cream); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.5rem, 6vw, 4.5rem); }

.section-head__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold-500);
}

.section--dark .section-head__eyebrow { color: var(--gold-300); }

.section-head__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-top: 0.9rem;
    color: var(--green-900);
}

.section--dark .section-head__title { color: #fff; }

.section-head__text { margin-top: 1.2rem; color: var(--ink-soft); }

.section--dark .section-head__text { color: rgba(255, 255, 255, 0.75); }

/* =============================================================
   CARTES DE BIENS
   ============================================================= */

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.property-card {
    position: relative;
    background: #fff;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.55s var(--ease-lux), box-shadow 0.55s;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px -25px rgba(7, 29, 20, 0.5);
}

.property-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--green-900);
}

.property-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-lux), filter 1.1s;
}

.property-card:hover .property-card__media img { transform: scale(1.08); }

.property-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: rgba(7, 29, 20, 0.82);
    backdrop-filter: blur(6px);
    color: var(--gold-200);
    font-size: 0.66rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border: 1px solid rgba(217, 185, 111, 0.4);
}

.property-card__badge--featured {
    right: 1rem;
    left: auto;
    background: var(--gold-gradient);
    color: var(--green-950);
    border: none;
    font-weight: 500;
    overflow: hidden;
}

.property-card__body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }

.property-card__location {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 0.5rem;
}

.property-card__title {
    font-size: 1.45rem;
    color: var(--green-900);
    transition: color 0.3s;
}

.property-card:hover .property-card__title { color: var(--gold-600); }

.property-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.3rem;
    margin: 1rem 0 1.2rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.property-card__footer {
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.property-card__price {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--green-800);
}

.property-card__link {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-600);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.property-card__link .arrow { transition: transform 0.4s var(--ease-lux); }
.property-card:hover .property-card__link .arrow { transform: translateX(6px); }

.property-card > a.property-card__cover { position: absolute; inset: 0; z-index: 3; }

/* =============================================================
   FILTRES
   ============================================================= */

.filter-wrap { margin-bottom: clamp(2rem, 4vw, 3rem); }

.filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 0.95rem 1.9rem;
    border: 1px solid var(--gold-500);
    background: #fff;
    color: var(--green-900);
    cursor: pointer;
    transition: background 0.35s, color 0.35s, border-color 0.35s;
}

.filter-toggle:hover { border-color: var(--gold-400); background: var(--cream-dark); }

.filter-wrap.is-open .filter-toggle { background: var(--green-950); color: var(--gold-200); border-color: var(--green-950); }

.filter-toggle__icon { font-size: 1rem; }

.filter-toggle__badge {
    display: inline-grid;
    place-items: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.35rem;
    border-radius: 1rem;
    background: var(--gold-gradient);
    color: var(--green-950);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0;
}

.filter-toggle__chevron {
    font-size: 0.85rem;
    transition: transform 0.4s var(--ease-lux);
}

.filter-wrap.is-open .filter-toggle__chevron { transform: rotate(180deg); }

.filter-collapse {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.55s var(--ease-lux);
}

.filter-wrap.is-open .filter-collapse { grid-template-rows: 1fr; }

.filter-collapse > .filter-panel { overflow: hidden; min-height: 0; }

.filter-panel {
    background: #fff;
    border: 1px solid rgba(201, 164, 92, 0.35);
    box-shadow: var(--shadow-card);
    padding: 0 clamp(1.5rem, 3vw, 2.4rem);
    margin-top: 0;
    opacity: 0;
    border-width: 0;
    transition: opacity 0.45s var(--ease-lux), padding 0.45s var(--ease-lux), margin-top 0.45s var(--ease-lux);
}

.filter-wrap.is-open .filter-panel {
    padding: clamp(1.5rem, 3vw, 2.4rem);
    margin-top: 1.1rem;
    opacity: 1;
    border-width: 1px;
}

.filter-panel__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
    gap: 1.2rem 1.4rem;
}

.filter-field label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 0.45rem;
}

.filter-field select,
.filter-field input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.92rem;
    padding: 0.8rem 1rem;
    border: 1px solid #ded8c8;
    background: var(--cream);
    color: var(--ink);
    transition: border-color 0.3s;
}

.filter-field select:hover, .filter-field input:hover { border-color: var(--gold-400); }

.filter-field select:focus, .filter-field input:focus { outline: 2px solid var(--gold-300); outline-offset: 1px; }

.filter-panel__actions {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.filter-panel__actions .btn { padding: 0.9rem 2rem; }

.filter-panel__reset {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s;
}

.filter-panel__reset:hover { color: var(--gold-600); }

.filter-count {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 1.6rem;
}

/* =============================================================
   PAGE DÉTAIL D'UN BIEN
   ============================================================= */

.property-hero {
    position: relative;
    min-height: 72svh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: var(--green-950);
    overflow: hidden;
}

.property-hero__bg { position: absolute; inset: 0; }
.property-hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 24s ease-in-out infinite alternate; }

.property-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 29, 20, 0.5) 0%, transparent 35%, rgba(7, 29, 20, 0.92) 100%);
}

.property-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 9rem clamp(1.2rem, 4vw, 3rem) 3.2rem;
}

.property-hero__type {
    font-size: 0.72rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold-200);
}

.property-hero__title { font-size: clamp(2rem, 5vw, 3.6rem); margin: 0.8rem 0 0.6rem; }

.property-hero__location { color: rgba(255, 255, 255, 0.8); letter-spacing: 0.12em; }

.property-hero__price {
    margin-top: 1.4rem;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    font-weight: 600;
}

.property-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.property-description {
    font-size: 1.02rem;
    color: var(--ink-soft);
    white-space: pre-line;
}

.property-aside {
    background: var(--green-950);
    color: #fff;
    padding: 2.2rem 2rem;
    position: sticky;
    top: 110px;
    box-shadow: var(--shadow-card);
}

.property-aside h3 {
    font-size: 1.35rem;
    color: var(--gold-200);
    margin-bottom: 1.4rem;
}

.spec-list { list-style: none; }

.spec-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(217, 185, 111, 0.18);
    font-size: 0.92rem;
}

.spec-list li span:first-child { color: rgba(255, 255, 255, 0.65); }
.spec-list li span:last-child { color: var(--gold-100); font-weight: 400; }

.equipment-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }

.equipment-tag {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    border: 1px solid var(--gold-400);
    color: var(--gold-600);
    background: #fff;
    padding: 0.5rem 1.1rem;
    border-radius: 2rem;
    transition: background 0.35s, color 0.35s;
}

.equipment-tag:hover { background: var(--green-900); color: var(--gold-200); border-color: var(--green-900); }

/* ---------- Galerie ---------- */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: 1.1rem;
}

.gallery__item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    background: var(--green-900);
    border: none;
    padding: 0;
}

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

.gallery__item:hover img { transform: scale(1.07); }

.gallery__item::after {
    content: '+';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    color: var(--gold-100);
    background: rgba(7, 29, 20, 0.45);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery__item:hover::after { opacity: 1; }

/* ---------- Lightbox ---------- */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(7, 29, 20, 0.96);
    display: none;
    place-items: center;
    padding: 3rem 4.5rem;
}

.lightbox.is-open { display: grid; animation: fadeIn 0.35s var(--ease-lux); }

@keyframes fadeIn { from { opacity: 0; } }

.lightbox img {
    max-width: 100%;
    max-height: 85svh;
    object-fit: contain;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: none;
    border: 1px solid rgba(217, 185, 111, 0.4);
    color: var(--gold-200);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.3s, color 0.3s;
}

.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--gold-400); color: var(--green-950); }

.lightbox__close { top: 1.6rem; right: 1.6rem; }
.lightbox__prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

/* =============================================================
   SECTION AVANTAGES / INVEST
   ============================================================= */

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.6rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(217, 185, 111, 0.22);
    padding: 2.4rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--ease-lux), border-color 0.5s, background 0.5s;
}

.advantage-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-400);
    background: rgba(217, 185, 111, 0.07);
}

.advantage-card__num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--gold-300);
    opacity: 0.75;
    line-height: 1;
}

.advantage-card h3 { font-size: 1.4rem; margin: 1rem 0 0.7rem; color: var(--gold-100); }

.advantage-card p { font-size: 0.94rem; color: rgba(255, 255, 255, 0.72); }

/* ---------- Stats ---------- */

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 2rem;
    text-align: center;
}

.stat__value {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 600;
}

.stat__label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.5rem;
}

/* ---------- Île section (image + texte) ---------- */

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.split__media {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.split__media::before {
    content: '';
    position: absolute;
    inset: 1.1rem;
    border: 1px solid rgba(217, 185, 111, 0.55);
    z-index: 2;
    pointer-events: none;
}

.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.2; transition: transform 1.2s var(--ease-lux); }

.split__media:hover img { transform: scale(1.06); }

.split__content h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--green-900); }

.section--dark .split__content h2 { color: #fff; }

.split__content p { margin-top: 1.2rem; color: var(--ink-soft); }

.section--dark .split__content p { color: rgba(255, 255, 255, 0.75); }

/* ---------- Bandeau mosaïque île ---------- */

.island-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 45vw), 1fr));
    gap: 0.9rem;
}

.island-mosaic figure {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.island-mosaic figure:nth-child(even) { transform: translateY(1.6rem); }

.island-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-lux), filter 1s;
    filter: saturate(0.92);
}

.island-mosaic figure:hover img { transform: scale(1.08); filter: saturate(1.1); }

.island-mosaic figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2.2rem 1.2rem 1.1rem;
    background: linear-gradient(180deg, transparent, rgba(7, 29, 20, 0.85));
    color: var(--gold-100);
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* ---------- CTA final ---------- */

.cta {
    text-align: center;
    padding: clamp(5rem, 10vw, 8rem) 1.5rem;
    background:
        linear-gradient(rgba(7, 29, 20, 0.88), rgba(7, 29, 20, 0.88)),
        url('/images/palmiers.jpg') center/cover fixed;
    color: #fff;
}

.cta h2 { font-size: clamp(2rem, 4.8vw, 3.4rem); max-width: 760px; margin: 0 auto; }

.cta p { max-width: 560px; margin: 1.4rem auto 2.6rem; color: rgba(255, 255, 255, 0.8); }

/* =============================================================
   LES TROIS MÉTIERS
   ============================================================= */

.expertises {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(2.4rem, 5vw, 3.6rem);
    text-align: center;
}

/* Filet doré au-dessus de chaque métier : c'est lui qui porte l'or, le titre
   reste en vert profond pour rester lisible sur le fond crème. */
.expertise::before {
    content: '';
    display: block;
    width: 38px;
    height: 1px;
    margin: 0 auto 1.5rem;
    background: var(--gold-400);
}

.expertise__title {
    font-size: clamp(0.78rem, 1.5vw, 0.88rem);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--green-900);
}

.expertise p {
    margin-top: 1.1rem;
    font-size: 0.96rem;
    color: var(--ink-soft);
}

/* =============================================================
   ANIMATIONS AU SCROLL (reveal)
   ============================================================= */

[data-reveal] {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
    transition-delay: var(--reveal-delay, 0s);
}

[data-reveal="left"] { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="zoom"] { transform: scale(0.92); }

[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .hero__bg, .property-hero__bg img { animation: none; }
    .btn::after, .property-card__badge--featured::after, .call-fab { animation: none; }
}

/* =============================================================
   CONTACT
   ============================================================= */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.7fr);
    gap: 3rem;
    align-items: start;
}

.contact-layout--single {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

.contact-property {
    position: sticky;
    top: 110px;
    background: var(--green-950);
    color: var(--cream);
    padding: 2.4rem 2.2rem;
    box-shadow: var(--shadow-card);
}

.contact-property__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-200);
    margin-bottom: 1rem;
}

.contact-property h2 { font-size: 1.7rem; margin-bottom: 0.6rem; }

.contact-property__meta {
    color: var(--gold-200);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.contact-property__desc {
    color: rgba(250, 246, 236, 0.82);
    font-size: 0.92rem;
    margin-bottom: 1.6rem;
}

.contact-property__back {
    color: var(--gold-300);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-property__back:hover { color: var(--gold-100); }

.contact-card {
    background: #fff;
    padding: 2.6rem 2.4rem;
    box-shadow: var(--shadow-card);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.6rem;
}

.contact-field { margin-bottom: 1.3rem; }
.contact-field--full { grid-column: 1 / -1; }

.contact-card label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.45rem;
}

.contact-card input[type="text"],
.contact-card input[type="email"],
.contact-card input[type="tel"],
.contact-card textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #c6b98f;
    background: #fdfbf5;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
}

.contact-card textarea { resize: vertical; }

.contact-card input:focus, .contact-card textarea:focus { outline: 2px solid var(--gold-400); }

/* ---------- Radios en pastilles ----------
   Utilisé par le choix du sujet du formulaire de contact et par la nature de
   l'annonce dans l'administration. */

.contact-subject { margin-bottom: 1.5rem; }

.contact-subject__choices,
.radio-pills { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.contact-subject__choices > div,
.radio-pills > div { display: contents; }

.contact-subject__choices input[type="radio"],
.radio-pills input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-subject__choices label,
.radio-pills label {
    margin: 0;
    padding: 0.65rem 1.4rem;
    border: 1px solid var(--gold-500);
    color: var(--ink);
    font-size: 0.78rem;
    letter-spacing: normal;
    text-transform: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.contact-subject__choices input[type="radio"]:checked + label,
.radio-pills input[type="radio"]:checked + label {
    background: var(--green-950);
    border-color: var(--green-950);
    color: var(--gold-200);
}

.contact-subject__choices input[type="radio"]:focus-visible + label,
.radio-pills input[type="radio"]:focus-visible + label {
    outline: 2px solid var(--gold-400);
    outline-offset: 2px;
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 0.4rem 0 1.6rem;
}

.contact-consent input { margin-top: 0.35rem; accent-color: var(--gold-500); }

.contact-consent label {
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--ink);
    margin: 0;
}

.contact-card ul {
    list-style: none;
    color: #b0503c;
    font-size: 0.8rem;
    margin: -0.9rem 0 1rem;
}

.contact-card form > ul { margin: 0 0 1.4rem; font-size: 0.9rem; }

altcha-widget {
    display: block;
    margin-bottom: 1.6rem;
    --altcha-border-radius: 0;
    --altcha-color-border: var(--cream-dark);
    --altcha-color-base: var(--cream);
}

.contact-submit { width: 100%; justify-content: center; }

/* ---------- Barre fixe « Demander un renseignement » ---------- */

.inquiry-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: rgba(7, 29, 20, 0.92);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(217, 185, 111, 0.28);
    padding: 0.75rem clamp(1.2rem, 4vw, 3rem);
}

.inquiry-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.inquiry-bar__label {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inquiry-bar .btn { padding: 0.7rem 1.6rem; flex-shrink: 0; }

/* Réserve la place de la barre et remonte le bouton d'appel flottant */
body.has-inquiry-bar .site-footer { padding-bottom: 5.5rem; }
body.has-inquiry-bar .call-fab { bottom: 5.6rem; }

/* =============================================================
   FLASH
   ============================================================= */

.flash {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.6rem;
    font-size: 0.92rem;
}

.flash--success {
    background: #eaf5ec;
    border: 1px solid #bcdcc5;
    color: #1d5c31;
    margin-top: 90px;
}

/* =============================================================
   LOGIN
   ============================================================= */

.login-page {
    min-height: 100svh;
    display: grid;
    place-items: center;
    background:
        linear-gradient(rgba(7, 29, 20, 0.9), rgba(7, 29, 20, 0.94)),
        url('/images/lagon.jpg') center/cover;
    padding: 2rem;
}

.login-card {
    width: min(430px, 100%);
    background: rgba(10, 43, 30, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(217, 185, 111, 0.35);
    padding: 3rem 2.6rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
}

.login-card img { width: 110px; margin: 0 auto 1.4rem; border-radius: 50%; }

.login-card h1 { font-size: 1.7rem; color: var(--gold-100); margin-bottom: 2rem; }

.login-card label { display: block; text-align: left; font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-200); margin: 1.1rem 0 0.4rem; }

.login-card input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(217, 185, 111, 0.3);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.login-card input:focus { outline: 2px solid var(--gold-300); }

.login-card .btn { width: 100%; justify-content: center; margin-top: 2rem; }

.login-error {
    background: rgba(190, 60, 60, 0.18);
    border: 1px solid rgba(220, 100, 100, 0.5);
    color: #f3c1c1;
    padding: 0.8rem 1rem;
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

/* =============================================================
   ADMIN
   ============================================================= */

.admin-body { background: #f4f4f0; min-height: 100svh; }

.admin-topbar {
    background: var(--green-950);
    color: #fff;
    padding: 0.9rem clamp(1.2rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.admin-topbar__brand { font-family: var(--font-display); letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-200); font-size: 1.05rem; }

.admin-topbar nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }

.admin-topbar a { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.85); }

.admin-topbar a:hover, .admin-topbar a.is-active { color: var(--gold-200); }

.admin-main { max-width: 1180px; margin: 0 auto; padding: 2.5rem clamp(1.2rem, 4vw, 3rem) 4rem; }

.admin-main h1 { font-size: 2rem; color: var(--green-900); margin-bottom: 1.8rem; }

.admin-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 1.3rem; margin-bottom: 2.5rem; }

.admin-card { background: #fff; border: 1px solid #e3e1d8; padding: 1.6rem; box-shadow: 0 8px 30px -18px rgba(7,29,20,0.25); }

.admin-card__value { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--green-800); line-height: 1; }

.admin-card__label { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.5rem; }

.admin-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.admin-table { width: 100%; border-collapse: collapse; background: #fff; box-shadow: 0 8px 30px -18px rgba(7,29,20,0.25); }

.admin-table th {
    text-align: left;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--green-950);
    color: var(--gold-200);
    padding: 0.9rem 1.1rem;
    font-weight: 500;
}

.admin-table td { padding: 0.85rem 1.1rem; border-bottom: 1px solid #eeece4; font-size: 0.92rem; vertical-align: middle; }

.admin-table tr:hover td { background: #faf8f0; }

.admin-table img { width: 72px; height: 52px; object-fit: cover; }

.admin-table .row-actions { display: flex; gap: 0.6rem; align-items: center; }

.badge { display: inline-block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 2rem; }

.badge--on { background: #eaf5ec; color: #1d5c31; border: 1px solid #bcdcc5; }
.badge--off { background: #f7efe9; color: #8a5a2b; border: 1px solid #e4cdb4; }
.badge--gold { background: #f7f0dd; color: #8f6f33; border: 1px solid #e0cf9e; }

.btn-sm {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--green-800);
    color: var(--green-800);
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.3s, color 0.3s;
}

.btn-sm:hover { background: var(--green-800); color: #fff; }

.btn-sm--danger { border-color: #b0503c; color: #b0503c; }
.btn-sm--danger:hover { background: #b0503c; color: #fff; }

.btn-sm--gold { border-color: var(--gold-500); color: var(--gold-600); }
.btn-sm--gold:hover { background: var(--gold-400); color: var(--green-950); }

/* ---------- Formulaires admin ---------- */

.admin-form { background: #fff; padding: 2.2rem; box-shadow: 0 8px 30px -18px rgba(7,29,20,0.25); max-width: 860px; }

.admin-form .form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 0 1.6rem; }

.admin-form label { display: block; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-800); margin: 1.2rem 0 0.4rem; font-weight: 500; }

.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form input[type="email"],
.admin-form input[type="file"],
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d8d5c8;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #fbfaf6;
}

.admin-form textarea { resize: vertical; }

.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus { outline: 2px solid var(--gold-300); }

.admin-form ul { list-style: none; color: #b0503c; font-size: 0.85rem; margin-top: 0.3rem; }

.admin-form .checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr)); gap: 0.5rem; margin-top: 0.5rem; }

.admin-form .checkbox-grid > div { display: flex; align-items: center; gap: 0.55rem; background: #faf8f0; border: 1px solid #eeeadf; padding: 0.55rem 0.8rem; }

.admin-form .checkbox-grid label { margin: 0; text-transform: none; letter-spacing: 0; font-size: 0.9rem; font-weight: 400; color: var(--ink); }

.admin-form .checkbox-grid input { width: auto; accent-color: var(--gold-500); }

.admin-form .checkbox-inline { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.2rem; }
.admin-form .checkbox-inline label { margin: 0; }
.admin-form .checkbox-inline input { width: auto; accent-color: var(--gold-500); }

.photo-manage { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; margin: 1rem 0 1.5rem; }

.photo-manage figure { position: relative; }

.photo-manage img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid #ddd; }

.photo-manage .photo-delete { position: absolute; top: 0.4rem; right: 0.4rem; }

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

.site-footer { position: relative; background: var(--green-950); color: rgba(255, 255, 255, 0.8); overflow: hidden; }

.site-footer__glow {
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
    height: 360px;
    background: radial-gradient(ellipse, rgba(217, 185, 111, 0.14), transparent 70%);
    pointer-events: none;
}

.site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.2rem, 4vw, 3rem) 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
    gap: 2.5rem;
}

.site-footer__brand img { border-radius: 50%; box-shadow: 0 0 40px rgba(217, 185, 111, 0.25); }

.site-footer__tagline { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-300); margin-top: 1.2rem; }

.site-footer__col h3 {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-200);
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.site-footer__col a, .site-footer__col p { display: block; font-size: 0.92rem; margin-bottom: 0.6rem; color: rgba(255, 255, 255, 0.75); transition: color 0.3s; }

.site-footer__col a:hover { color: var(--gold-200); }

.site-footer__seo { font-size: 0.85rem; line-height: 1.8; }

.site-footer__bottom {
    border-top: 1px solid rgba(217, 185, 111, 0.15);
    padding: 1.4rem clamp(1.2rem, 4vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__admin-link { color: rgba(255, 255, 255, 0.4); }
.site-footer__admin-link:hover { color: var(--gold-300); }

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

@media (max-width: 900px) {
    .brand-logo { height: 54px; }
    .site-header.is-scrolled .brand-logo { height: 46px; }

    .site-header__toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 110;
    }

    .site-header__toggle span {
        width: 26px;
        height: 2px;
        background: var(--gold-200);
        transition: transform 0.35s var(--ease-lux), opacity 0.35s;
    }

    .site-header__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .site-header__toggle.is-open span:nth-child(2) { opacity: 0; }
    .site-header__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .site-header__nav {
        position: fixed;
        inset: 0;
        background: rgba(7, 29, 20, 0.97);
        flex-direction: column;
        justify-content: center;
        gap: 2.2rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-30px);
        transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux), visibility 0s 0.5s;
    }

    .lang-switch {
        border-left: 0;
        border-top: 1px solid rgba(217, 185, 111, 0.3);
        padding: 1.6rem 0 0;
        gap: 1rem;
    }

    .lang-switch__item { font-size: 0.8rem; padding: 0.5rem 0.9rem; }

    .site-header__nav .nav-link {
        transform: translateY(18px);
        opacity: 0;
        transition: transform 0.5s var(--ease-lux), opacity 0.5s var(--ease-lux);
    }

    .site-header__nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux), visibility 0s;
    }

    .site-header__nav.is-open .nav-link {
        transform: none;
        opacity: 1;
    }

    .site-header__nav.is-open .nav-link:nth-child(1) { transition-delay: 0.08s; }
    .site-header__nav.is-open .nav-link:nth-child(2) { transition-delay: 0.14s; }
    .site-header__nav.is-open .nav-link:nth-child(3) { transition-delay: 0.2s; }
    .site-header__nav.is-open .nav-link:nth-child(4) { transition-delay: 0.26s; }
    .site-header__nav.is-open .nav-link:nth-child(5) { transition-delay: 0.32s; }

    .nav-link { font-size: 1rem; }

    .hero__scroll { display: none; }

    .property-hero { min-height: 100svh; }

    .property-layout { grid-template-columns: 1fr; }

    .property-aside { position: static; }

    .island-mosaic figure:nth-child(even) { transform: none; }

    .lightbox { padding: 4.5rem 0.8rem; }
    .lightbox__prev { left: 0.5rem; }
    .lightbox__next { right: 0.5rem; }

    .contact-layout { grid-template-columns: 1fr; }
    .contact-property { position: static; }
    .contact-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 600px) {
    .inquiry-bar__label { display: none; }
    .inquiry-bar__inner { justify-content: center; }
    .inquiry-bar .btn { width: 100%; justify-content: center; }
}
