﻿/* =========================================================
   PARADIZE CONCIERGERIE — Feuille de style
   Palette : bleu profond (mer) + rose granit (côte) + sable
   ========================================================= */

:root {
    /* Couleurs */
    --navy:        #123449;
    --navy-deep:   #0C2434;
    --navy-soft:   #1D4A63;
    --rose:        #E0796B;
    --rose-dark:   #C85F51;
    --rose-light:  #F5C9C0;
    --sand:        #FBF7F4;
    --sand-dark:   #F1E9E3;
    --ink:         #16242E;
    --muted:       #5E7180;
    --white:       #FFFFFF;
    --line:        #E4DDD7;

    /* Typo */
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --container: 1240px;
    --radius:    18px;
    --radius-sm: 10px;

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--sand);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

/* ---------- Typographie de section ---------- */
.section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--rose-dark);
    margin-bottom: 18px;
}
.section-kicker.light { color: var(--rose-light); }

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--navy);
}
.section-title em { font-style: italic; color: var(--rose-dark); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--rose-light); }

.section-head {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 60px;
}
.section-lead { color: var(--muted); font-size: 1.02rem; }

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 0.93rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all .35s var(--ease);
    white-space: nowrap;
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
}
/* Shimmer subtil au hover sur tous les boutons */
.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    transition: left .55s var(--ease);
}
.btn:hover::after { left: 140%; }

.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,95,81,.3); }

.btn-ghost { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: var(--white); transform: translateY(-2px); }

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(18,52,73,.25); }

.btn-sm { padding: 11px 22px; font-size: 0.86rem; }
.btn-block { width: 100%; }

/* Pulse CTA — halo rose discret */
.btn-pulse {
    animation: btnPulse 3s ease-in-out infinite;
}
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(224,121,107,0); }
    50%       { box-shadow: 0 0 0 8px rgba(224,121,107,.18); }
}
.btn-pulse:hover { animation: none; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: all .4s var(--ease);
    padding: 22px 0;
}
.header.is-scrolled {
    background: rgba(251,247,244,.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
    padding: 12px 0;
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo { display: flex; align-items: center; gap: 12px; }
/* Le SVG porte déjà sa tuile marine et ses arrondis : la lisibilité tient
   aussi bien sur le hero sombre que sur l'en-tête clair une fois scrollé. */
.logo-mark {
    width: 40px; height: 40px;
    display: block;
    flex-shrink: 0;
    transition: transform .4s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.08); }
.logo-text {
    display: flex; flex-direction: column;
    line-height: 1.05;
    font-family: var(--serif);
    font-size: 1.32rem;
    font-weight: 600;
    color: var(--white);
    transition: color .4s var(--ease);
}
.logo-text em {
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    opacity: .75;
}
.header.is-scrolled .logo-text { color: var(--navy); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav > a {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,.88);
    transition: color .3s var(--ease);
    position: relative;
}
.nav > a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -5px;
    width: 0; height: 1.5px;
    background: var(--rose);
    transition: width .35s var(--ease);
}
.nav > a:not(.btn):hover::after { width: 100%; }
.header.is-scrolled .nav > a:not(.btn) { color: var(--navy); }
.nav > a:not(.btn):hover { color: var(--rose); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span {
    width: 26px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .35s var(--ease);
}
.header.is-scrolled .burger span { background: var(--navy); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1715704698525-6581ceb2d32f?auto=format&fit=crop&w=2400&q=80') center/cover no-repeat;
    transform: scale(1.06);
    animation: slowZoom 22s ease-out forwards;
    will-change: transform;
}
@keyframes slowZoom { to { transform: scale(1); } }

.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(12,36,52,.72) 0%, rgba(12,36,52,.55) 45%, rgba(12,36,52,.88) 100%),
        radial-gradient(ellipse at 20% 30%, rgba(224,121,107,.22), transparent 60%);
}

/* Formes flottantes hero */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}
.hero-shape--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--rose), transparent 70%);
    top: -150px; right: -100px;
    animation: floatShape 14s ease-in-out infinite;
}
.hero-shape--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #4a9aba, transparent 70%);
    bottom: 0; left: -80px;
    animation: floatShape 18s ease-in-out infinite reverse;
}
.hero-shape--3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--rose-light), transparent 70%);
    top: 40%; right: 15%;
    opacity: 0.12;
    animation: floatShape 10s ease-in-out infinite;
}
@keyframes floatShape {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}
.hero-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--rose-light);
    margin-bottom: 24px;
}
.hero h1,
.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 6.2vw, 5.1rem);
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--white);
    max-width: 15ch;
}
.hero h1 em,
.hero-title em { font-style: italic; color: var(--rose-light); }

.hero-sub,
.hero-lead,
.hero-desc {
    margin-top: 26px;
    max-width: 54ch;
    font-size: 1.08rem;
    color: rgba(255,255,255,.85);
    font-weight: 300;
}

.hero-actions,
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* Second bouton retiré du hero */
.hero-actions .btn-outline,
.hero-cta .btn-outline,
.hero-actions .btn-ghost,
.hero-cta .btn-ghost,
.hero-actions .btn-secondary,
.hero-cta .btn-secondary { display: none !important; }

.hero-proof {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 44px;
    margin-top: 54px;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,.2);
    justify-content: start;
}
.proof-item { display: flex; flex-direction: column; gap: 3px; }
.proof-item strong {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}
.proof-item span {
    font-size: 0.78rem;
    color: rgba(255,255,255,.65);
    letter-spacing: 0.02em;
}

/* Badge Superhôte */
.hero-superhote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    padding: 10px 18px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,.9);
    letter-spacing: 0.02em;
    width: fit-content;
}
.hero-superhote svg {
    width: 16px; height: 16px;
    color: var(--rose-light);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 34px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 24px; height: 40px;
    border: 1.5px solid rgba(255,255,255,.4);
    border-radius: 14px;
    display: grid; place-items: start center;
    padding-top: 8px;
}
.hero-scroll span {
    width: 3px; height: 7px;
    background: var(--rose-light);
    border-radius: 2px;
    animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
    0%   { opacity: 0; transform: translateY(0); }
    40%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
}

/* =========================================================
   WAVE DIVIDERS
   ========================================================= */
.wave-divider {
    display: block;
    line-height: 0;
    margin-bottom: -2px;
}
.wave-divider svg {
    width: 100%;
    display: block;
}
.wave-divider--sand { background: var(--navy-deep); } /* contexte précédent = hero overlay foncé */
.wave-divider--sand-bg { background: var(--white); }

/* =========================================================
   PILIERS — Bento Grid
   ========================================================= */
.piliers { padding: 90px 0 100px; background: var(--white); }
.piliers .section-title { margin-bottom: 52px; }

.piliers-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Les 2 grandes cartes = colonne chacune, rang 1 */
.pilier--large {
    grid-row: 1;
}

/* Les 2 petites = côte à côte, rang 2 */
.pilier:not(.pilier--large):nth-child(3) { grid-column: 1; grid-row: 2; }
.pilier:not(.pilier--large):nth-child(4) { grid-column: 2; grid-row: 2; }

.pilier {
    padding: 38px 32px 34px;
    background: var(--sand);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all .5s var(--ease);
    position: relative;
    overflow: hidden;
}
/* Reflet lumineux au hover */
.pilier::before {
    content: '';
    position: absolute;
    top: 0; left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
    transition: left .7s var(--ease);
    pointer-events: none;
}
.pilier:hover::before { left: 130%; }

.pilier:hover {
    background: var(--white);
    border-color: var(--line);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(18,52,73,.1);
}

.pilier-icon {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--navy);
    color: var(--rose-light);
    margin-bottom: 22px;
    transition: all .5s var(--ease);
    animation: iconFloat 4s ease-in-out infinite;
}
/* Stagger le float pour chaque icône */
.pilier:nth-child(1) .pilier-icon { animation-delay: 0s; }
.pilier:nth-child(2) .pilier-icon { animation-delay: 1s; }
.pilier:nth-child(3) .pilier-icon { animation-delay: 2s; }
.pilier:nth-child(4) .pilier-icon { animation-delay: 3s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

.pilier:hover .pilier-icon {
    background: var(--rose);
    color: var(--white);
    transform: translateY(-5px) scale(1.08) rotate(-4deg);
    animation: none;
}
.pilier-icon svg { width: 24px; height: 24px; }

.pilier h3 {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}
.pilier p { font-size: 0.93rem; color: var(--muted); }

/* Détails supplémentaires sur les grandes cartes */
.pilier-detail {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.pilier-detail span {
    font-size: 0.82rem;
    color: var(--navy);
    font-weight: 500;
    opacity: .7;
    transition: opacity .3s;
}
.pilier:hover .pilier-detail span { opacity: 1; }

/* =========================================================
   PRESTATIONS
   ========================================================= */
.prestations { padding: 110px 0; background: var(--sand); }

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.presta {
    background: var(--white);
    padding: 42px 34px;
    transition: background .4s var(--ease);
    position: relative;
    overflow: hidden;
}
/* Barre de couleur gauche au hover */
.presta::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--rose);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .4s var(--ease);
}
.presta:hover::before { transform: scaleY(1); }
.presta:hover { background: #FFFCFB; }

.presta-num {
    display: block;
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 18px;
    letter-spacing: 0.06em;
    transition: letter-spacing .35s var(--ease);
}
.presta:hover .presta-num { letter-spacing: 0.12em; }

.presta h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    transition: color .35s var(--ease);
}
.presta:hover h3 { color: var(--rose-dark); }
.presta p { font-size: 0.93rem; color: var(--muted); }

.prestations-cta {
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
}
.prestations-cta p {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--navy);
}

/* =========================================================
   BIENS
   ========================================================= */
.biens { padding: 110px 0; background: var(--white); }

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 42px;
}
.filter {
    padding: 10px 20px;
    border-radius: 100px;
    border: 1.5px solid var(--line);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    transition: all .3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.filter span {
    font-size: 0.72rem;
    opacity: .6;
}
.filter:hover { border-color: var(--rose); color: var(--rose-dark); }
.filter.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}
.filter.is-active span { opacity: .7; }

.biens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.bien-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    transition: all .45s var(--ease);
    display: flex;
    flex-direction: column;
    will-change: transform;
}
.bien-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 48px rgba(18,52,73,.13);
    border-color: transparent;
}
.bien-card.is-hidden { display: none; }

.bien-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sand-dark);
}
.bien-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.bien-card:hover .bien-media img { transform: scale(1.07); }

/* Reflet lumineux sur image au hover */
.bien-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.14) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .5s var(--ease);
}
.bien-card:hover .bien-media::after { opacity: 1; }

.bien-city {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.02em;
}
.bien-new {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--rose);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bien-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.bien-body h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.22;
    margin-bottom: 10px;
}
.bien-meta {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 18px;
}
.bien-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.bien-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
}
.bien-rating i { font-style: normal; color: var(--rose); }
.bien-rating small { font-weight: 400; color: var(--muted); font-size: 0.8rem; }

.bien-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rose-dark);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .3s var(--ease);
}
.bien-link:hover { gap: 10px; }

.biens-cta { margin-top: 52px; text-align: center; }

/* =========================================================
   PROPRIÉTAIRES
   ========================================================= */
.proprios {
    padding: 110px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
/* Formes flottantes décoratives */
.proprios-shapes { position: absolute; inset: 0; pointer-events: none; }
.proprios-shape {
    position: absolute;
    border-radius: 50%;
}
.proprios-shape--1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(224,121,107,.12), transparent 65%);
    top: -20%; right: -10%;
    animation: floatShape 16s ease-in-out infinite;
}
.proprios-shape--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(74,154,186,.1), transparent 65%);
    bottom: -10%; left: -5%;
    animation: floatShape 20s ease-in-out infinite reverse;
}
.proprios-shape--3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(245,201,192,.08), transparent 65%);
    top: 40%; left: 40%;
    animation: floatShape 12s ease-in-out infinite;
    animation-delay: 3s;
}
.proprios .container { position: relative; z-index: 2; }

.proprios-head { max-width: 800px; margin-bottom: 66px; }
.proprios-lead {
    margin-top: 22px;
    color: rgba(255,255,255,.75);
    font-size: 1.04rem;
    font-weight: 300;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}
.step { position: relative; padding-top: 26px; }
.step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,.15);
}
/* Ligne animée au scroll */
.step::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 2px;
    background: var(--rose);
    transition: width .9s var(--ease);
}
.step.is-visible::after { width: 34px; }

.step-num {
    display: block;
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 500;
    color: rgba(255,255,255,.28);
    line-height: 1;
    margin-bottom: 14px;
    transition: color .5s var(--ease);
}
.step:hover .step-num { color: rgba(255,255,255,.5); }

.step h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.step p { font-size: 0.92rem; color: rgba(255,255,255,.65); }

.proprios-box {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 52px;
    align-items: center;
    padding: 48px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    transition: border-color .5s var(--ease), background .5s var(--ease);
}
.proprios-box:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.2);
}
.proprios-box-text h3 {
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}
.proprios-box-text p { color: rgba(255,255,255,.68); font-size: 0.96rem; }

/* ---------- Formulaires ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row--full { grid-template-columns: 1fr; }

.estim-form input,
.estim-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.07);
    color: var(--white);
    font-size: 0.93rem;
    transition: all .3s var(--ease);
}
.estim-form input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.45); }

.estim-form select,
.contact-form select { color: rgba(255,255,255,.55); }
.estim-form select option,
.contact-form select option { color: var(--ink); background: var(--white); }

.estim-form input:focus,
.estim-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--rose);
    background: rgba(255,255,255,.11);
    box-shadow: 0 0 0 4px rgba(224,121,107,.18);
}
.estim-form .btn { margin-top: 4px; }

.form-note {
    margin-top: 14px;
    font-size: 0.78rem;
    color: rgba(255,255,255,.5);
    text-align: center;
}
.form-ok {
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: rgba(224,121,107,.16);
    border: 1px solid rgba(224,121,107,.4);
    color: var(--rose-light);
    font-size: 0.9rem;
    text-align: center;
}
.form-err {
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.28);
    color: rgba(255,255,255,.88);
    font-size: 0.9rem;
    text-align: center;
}
input.has-error, select.has-error, textarea.has-error {
    border-color: var(--rose) !important;
    background: rgba(224,121,107,.12) !important;
}

/* Champ anti-spam : retiré du flux sans display:none (que certains bots détectent) */
.hp-field {
    position: absolute !important;
    left: -9999px;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Bouton d'envoi pendant la requête */
.btn:disabled {
    opacity: .6;
    cursor: progress;
    pointer-events: none;
}

/* =========================================================
   À PROPOS
   ========================================================= */
.apropos { padding: 110px 0; background: var(--sand); }
.apropos-inner {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 76px;
    align-items: center;
}
.apropos-media { position: relative; }
.apropos-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 28px 60px rgba(18,52,73,.16);
    transition: transform .6s var(--ease);
}
.apropos-media:hover img { transform: scale(1.02); }
.apropos-badge {
    position: absolute;
    bottom: -22px; right: -18px;
    background: var(--navy);
    color: var(--white);
    padding: 18px 26px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 36px rgba(18,52,73,.24);
    transition: transform .4s var(--ease);
}
.apropos-media:hover .apropos-badge { transform: translateY(-4px); }
.apropos-badge strong {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--rose-light);
    line-height: 1.1;
}
.apropos-badge span { font-size: 0.76rem; opacity: .7; }

.apropos-text .section-title { margin-bottom: 26px; }
.apropos-text p { color: var(--muted); margin-bottom: 18px; }

.apropos-list { list-style: none; margin-top: 30px; }
.apropos-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 13px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
}
.apropos-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--rose-light);
    box-shadow: inset 0 0 0 4px var(--rose);
    transition: transform .35s var(--ease);
}
.apropos-list li:hover::before { transform: scale(1.2); }


/* =========================================================
   AVIS â€” Marquee infini
   ========================================================= */
.avis { padding: 100px 0 110px; background: var(--white); overflow: hidden; }
.avis-header { margin-bottom: 52px; }
.avis-header .section-kicker { text-align: center; }
.avis-header .section-title { text-align: center; }

/* Wrapper masquant avec gradients aux extrÃ©mitÃ©s */
.avis-marquee-wrap {
    position: relative;
    overflow: hidden;
}
.avis-marquee-wrap::before,
.avis-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 160px;
    z-index: 2;
    pointer-events: none;
}
.avis-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}
.avis-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

/* Track : flex sans retour, animation translateX */
.avis-marquee-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: marqueeScroll 38s linear infinite;
    will-change: transform;
}
.avis-marquee-wrap:hover .avis-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Cartes avis */
.avis-card {
    flex: 0 0 340px;
    padding: 32px 28px;
    background: var(--sand);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
    cursor: default;
    user-select: none;
}
.avis-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(18,52,73,.1);
    border-color: var(--line);
    background: var(--white);
}

.stars { color: var(--rose); font-size: 1rem; letter-spacing: 0.08em; margin-bottom: 16px; }
.avis-card p {
    font-size: 0.94rem;
    color: var(--ink);
    font-style: italic;
    flex: 1;
    margin-bottom: 22px;
    line-height: 1.75;
}
.avis-card cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.avis-card cite strong { font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.avis-card cite span { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }


/* =========================================================
   ZONE
   ========================================================= */
.zone { padding: 110px 0; background: var(--sand); }
.zone-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.zone-list li {
    padding: 13px 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--muted);
    transition: all .35s var(--ease);
    cursor: default;
}
.zone-list li.is-main {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}
.zone-list li:hover {
    transform: translateY(-3px);
    border-color: var(--rose);
    color: var(--rose-dark);
    box-shadow: 0 8px 20px rgba(200,95,81,.12);
}
.zone-list li.is-main:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
}

/* ---------- Détail par secteur (contenu local) ---------- */
.zone-details {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 48px;
}
.zone-detail h3 {
    font-family: var(--serif);
    font-size: 1.32rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}
.zone-detail h3::before {
    content: '';
    display: block;
    width: 34px;
    height: 2px;
    background: var(--rose);
    margin-bottom: 14px;
}
.zone-detail p {
    font-size: 0.94rem;
    color: var(--muted);
    line-height: 1.75;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 110px 0; background: var(--white); }
.faq-list {
    margin-top: 20px;
    border-top: 1px solid var(--line);
}
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 44px 26px 0;
    position: relative;
    transition: color .35s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
    display: inline;
    font-family: var(--sans);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--navy);
    transition: color .35s var(--ease);
}
.faq-item summary:hover h3 { color: var(--rose-dark); }

/* Chevron */
.faq-item summary::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    width: 9px; height: 9px;
    margin-top: -6px;
    border-right: 2px solid var(--rose);
    border-bottom: 2px solid var(--rose);
    transform: rotate(45deg);
    transition: transform .35s var(--ease);
}
.faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: -2px;
}
.faq-item > p {
    padding: 0 60px 28px 0;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
    animation: faqReveal .4s var(--ease-out);
}
@keyframes faqReveal {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: none; }
}

@media (max-width: 860px) {
    .zone-details { grid-template-columns: 1fr; gap: 30px; }
    .faq-item > p { padding-right: 12px; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: 110px 0; background: var(--navy-deep); }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: start;
}
.contact-text .section-title { margin-bottom: 22px; }
.contact-text > p { color: rgba(255,255,255,.72); font-weight: 300; }

.contact-list { list-style: none; margin-top: 40px; }
.contact-list li {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.13);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose-light);
    font-weight: 600;
}
.contact-value {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    transition: color .3s var(--ease);
}
a.contact-value:hover { color: var(--rose-light); }

.contact-form {
    padding: 40px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    transition: border-color .4s var(--ease);
}
.contact-form:focus-within {
    border-color: rgba(255,255,255,.22);
}
.contact-form input,
.contact-form select,
.contact-form textarea { margin-bottom: 12px; }
.contact-form textarea { resize: vertical; min-height: 110px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding-top: 76px; }
.footer-inner {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
}
.logo-footer { display: inline-block; margin-bottom: 20px; }
.logo-full {
    width: 190px; height: auto;
    display: block;
    transition: transform .5s var(--ease);
}
.logo-footer:hover .logo-full { transform: scale(1.04); }
.footer-brand p { font-size: 0.9rem; max-width: 34ch; }

.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav h4 {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose-light);
    font-weight: 600;
    margin-bottom: 6px;
}
.footer-nav a {
    font-size: 0.9rem;
    transition: color .3s var(--ease);
}
.footer-nav a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.83rem;
}
.footer-bottom a { margin-left: 22px; transition: color .3s var(--ease); }
.footer-bottom a:hover { color: var(--white); }

/* =========================================================
   ANIMATIONS AU SCROLL — Variantes
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .85s var(--ease),
        transform .85s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Depuis la gauche */
.reveal-left {
    transform: translateX(-36px);
}
.reveal-left.is-visible { transform: none; }

/* Depuis la droite */
.reveal-right {
    transform: translateX(36px);
}
.reveal-right.is-visible { transform: none; }

/* Scale depuis 0.93 */
.reveal-scale {
    transform: scale(0.93) translateY(16px);
}
.reveal-scale.is-visible { transform: none; }

/* Animation Hero */
.hero-content > * { opacity: 0; transform: translateY(20px); transition: all 1s var(--ease); }
.hero-content > *:nth-child(1) { transition-delay: .2s; }
.hero-content > *:nth-child(2) { transition-delay: .4s; }
.hero-content > *:nth-child(3) { transition-delay: .6s; }
.hero-content.is-ready > * { opacity: 1; transform: none; }

/* Réduction du mouvement */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
    .prestations-grid { grid-template-columns: repeat(2, 1fr); }
    .biens-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-proof { grid-template-columns: repeat(2, auto); gap: 28px 44px; }
    .avis-card { flex: 0 0 calc(50% - 11px); }
}

@media (max-width: 900px) {
    .section-head { grid-template-columns: 1fr; gap: 22px; align-items: start; }
    .apropos-inner { grid-template-columns: 1fr; gap: 70px; }
    .apropos-media { max-width: 420px; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .proprios-box { grid-template-columns: 1fr; gap: 34px; padding: 36px 28px; }
    .piliers-bento { grid-template-columns: 1fr; }
    .pilier--large { grid-row: auto; }
    .pilier:not(.pilier--large):nth-child(3),
    .pilier:not(.pilier--large):nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .nav {
        position: fixed;
        top: 0; right: 0;
        width: min(84vw, 340px);
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 26px;
        padding: 40px;
        background: var(--navy);
        transform: translateX(100%);
        transition: transform .5s var(--ease);
        z-index: 99;
    }
    .nav.is-open { transform: none; }
    .nav > a,
    .header.is-scrolled .nav > a:not(.btn) { color: var(--white); font-size: 1.12rem; }
    .nav-cta { margin-top: 10px; }
    .burger { display: flex; z-index: 101; }
    .burger.is-open span { background: var(--white); }
}

@media (max-width: 680px) {
    .container, .header-inner, .hero-content { padding: 0 20px; }

    .piliers, .prestations, .biens, .proprios,
    .apropos, .avis, .zone, .faq, .contact { padding: 76px 0; }

    .hero { min-height: auto; padding: 130px 0 76px; }
    .hero-proof {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        margin-top: 46px;
    }
    .proof-item strong { font-size: 1.4rem; }
    .hero-scroll { display: none; }
    .btn { padding: 14px 26px; }

    .prestations-grid,
    .biens-grid,
    .steps { grid-template-columns: 1fr; }

    .prestations-grid { border-radius: var(--radius); }
    .presta { padding: 32px 26px; }

    .avis-card { flex: 0 0 calc(100% - 0px); }
    .avis-controls { margin-top: 24px; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 22px; }

    .footer-inner { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .footer-bottom a { margin: 0 22px 0 0; }

    .apropos-badge { right: 0; bottom: -16px; padding: 14px 20px; }
    .prestations-cta { flex-direction: column; gap: 18px; text-align: center; }

    .hero-shapes { display: none; }
}
