/* ATRIA MEDITERRANEE MIX v1.3 — hero plein écran + corps méditerranéen */
/* ========================================================================== 
   ATRIA CONCIERGERIE — DIRECTION MÉDITERRANÉE CHIC
   ========================================================================== */

@font-face {
    font-family: 'Cinzel';
    src: url('Fonts/Cinzel/static/Cinzel-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cinzel';
    src: url('Fonts/Cinzel/static/Cinzel-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cinzel';
    src: url('Fonts/Cinzel/static/Cinzel-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('Fonts/Montserrat/static/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('Fonts/Montserrat/static/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('Fonts/Montserrat/static/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #072c4c;
    --navy-deep: #041c31;
    --navy-soft: #153f5f;
    --gold: #c29b4e;
    --gold-dark: #9f7730;
    --gold-light: #e2c987;
    --sand: #f4eee3;
    --sand-soft: #faf7f1;
    --sage: #dfe7e2;
    --white: #ffffff;
    --ink: #25323c;
    --muted: #68737b;
    --line: rgba(7, 44, 76, .14);
    --success: #28785a;
    --error: #a63c3c;
    --shadow: 0 24px 70px rgba(7, 44, 76, .10);
    --shadow-soft: 0 14px 42px rgba(7, 44, 76, .07);
    --radius-sm: 14px;
    --radius: 26px;
    --radius-lg: 54px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, blockquote {
    margin-top: 0;
    font-family: 'Cinzel', Georgia, serif;
    color: var(--navy);
    line-height: 1.18;
}
p { margin-top: 0; }
::selection { background: var(--gold); color: var(--navy-deep); }

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    transform: translateY(-150%);
    padding: 10px 14px;
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.section-shell { width: min(1240px, calc(100% - 10vw)); margin-inline: auto; }
section { position: relative; padding: 120px 0; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-dark);
    font-size: .69rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--gold-light); }
.section-heading { max-width: 760px; margin: 0 auto 62px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading h2,
.about-copy h2,
.contact-copy h2,
.rate-copy h2 {
    margin: 14px 0 20px;
    font-size: clamp(2.35rem, 4.6vw, 5.1rem);
    font-weight: 500;
    letter-spacing: -.035em;
}
.section-heading p { margin: 0 auto; color: var(--muted); font-size: 1.02rem; }

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .71rem;
    font-weight: 600;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 14px 30px rgba(7, 44, 76, .17); }
.btn-primary:hover { background: var(--navy-deep); box-shadow: 0 18px 38px rgba(7, 44, 76, .24); }
.btn-secondary { border-color: rgba(7, 44, 76, .25); background: rgba(255, 255, 255, .68); color: var(--navy); }
.btn-secondary:hover { background: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-full { width: 100%; }

/* En-tête */
.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    background: rgba(255, 255, 255, .91);
    border-bottom: 1px solid rgba(7, 44, 76, .08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { background: rgba(255, 255, 255, .97); box-shadow: 0 10px 35px rgba(7, 44, 76, .08); }
body.menu-open { overflow: hidden; }
.nav-container {
    width: min(1380px, calc(100% - 8vw));
    min-height: 94px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.logo-area { flex: 0 0 auto; line-height: 0; }
.logo-img { width: 140px; height: 76px; object-fit: contain; }
.nav-tools { display: none; align-items: center; gap: 10px; }
.nav-menu { display: flex; align-items: center; gap: 25px; margin: 0; padding: 0; list-style: none; }
.nav-menu a {
    position: relative;
    color: var(--navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .68rem;
    font-weight: 600;
}
.nav-menu a:not(.nav-contact)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}
.nav-menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-contact { padding: 11px 17px; border: 1px solid rgba(7, 44, 76, .22); border-radius: 999px; }
.nav-contact:hover { background: var(--navy); color: var(--white); }
.menu-toggle { display: none; position: relative; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; border-radius: 999px; }
.burger-bar { position: absolute; left: 7px; width: 28px; height: 2px; background: var(--navy); transition: .3s ease; }
.burger-bar-1 { top: 12px; }.burger-bar-2 { top: 20px; }.burger-bar-3 { top: 28px; }
.menu-toggle.open .burger-bar-1 { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open .burger-bar-2 { opacity: 0; }
.menu-toggle.open .burger-bar-3 { transform: translateY(-8px) rotate(-45deg); }

/* Accueil */
.hero {
    min-height: 100vh;
    padding-top: 145px;
    padding-bottom: 70px;
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 8% 20%, rgba(194, 155, 78, .10), transparent 24%),
        linear-gradient(180deg, var(--white), var(--sand));
}
.hero-inner {
    width: min(1380px, calc(100% - 10vw));
    margin-inline: auto;
    display: grid;
    grid-template-columns: .96fr 1.04fr;
    align-items: center;
    gap: clamp(45px, 7vw, 105px);
}
.hero-copy { max-width: 650px; }
.hero h1 {
    margin: 24px 0 28px;
    font-size: clamp(3.15rem, 6vw, 6.7rem);
    font-weight: 500;
    letter-spacing: -.055em;
}
.hero-copy > p { max-width: 600px; margin-bottom: 0; color: #52616c; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 35px; }
.hero-visual { position: relative; min-width: 0; padding: 18px 28px 30px 18px; }
.hero-image-frame { position: relative; overflow: hidden; min-height: 650px; border-radius: 220px 220px 26px 26px; box-shadow: var(--shadow); }
.hero-image-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(4, 28, 49, .22)); pointer-events: none; }
.hero-image-frame img { width: 100%; height: 650px; object-fit: cover; transform: scale(1.015); animation: hero-background-zoom 24s ease-in-out infinite alternate; will-change: transform; }
.hero-seal {
    position: absolute;
    top: 70px;
    right: 0;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 16px 32px rgba(7, 44, 76, .18);
}
.hero-seal span { font-family: 'Cinzel', Georgia, serif; font-size: 2rem; line-height: 1; }
.hero-seal small { font-size: .48rem; letter-spacing: .22em; }
.hero-note {
    position: absolute;
    right: 4px;
    bottom: 0;
    max-width: 230px;
    padding: 18px 22px;
    border-radius: 18px 18px 4px 18px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Cinzel', Georgia, serif;
    font-size: .92rem;
    line-height: 1.45;
    box-shadow: 0 16px 35px rgba(7, 44, 76, .20);
}
.hero-note-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.hero-note-link span {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.15rem;
    transition: transform .3s ease;
}
.hero-note-link:hover {
    transform: translateY(-4px);
    background: var(--navy-deep);
    box-shadow: 0 22px 42px rgba(7, 44, 76, .28);
}
.hero-note-link:hover span { transform: translateX(4px); }

@keyframes hero-background-zoom {
    from { transform: scale(1.015); }
    to { transform: scale(1.115); }
}

/* Services */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.service-card {
    position: relative;
    grid-column: span 2;
    min-height: 345px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(7, 44, 76, .10);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(194, 155, 78, .45); box-shadow: var(--shadow); }
.service-card--wide { grid-column: span 3; min-height: 300px; }
.service-icon { width: 47px; height: 47px; padding: 11px; border-radius: 50%; background: var(--sand); color: var(--gold-dark); fill: currentColor; }
.service-card h3 { margin: 26px 0 17px; font-size: 1.28rem; font-weight: 500; }
.service-card p { margin-bottom: 11px; color: var(--muted); font-size: .88rem; }

/* Tarifs */
.rates-section {
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}
.rates-section::before { content: ''; position: absolute; top: -30%; right: -10%; width: 650px; height: 650px; border: 1px solid rgba(226, 201, 135, .15); border-radius: 50%; }
.rates-layout { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 9vw, 120px); align-items: center; }
.rate-figure {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 32px 160px 32px 32px;
    background: var(--gold);
    color: var(--navy-deep);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .20);
}
.rate-figure span, .rate-figure small { text-transform: uppercase; letter-spacing: .17em; font-size: .69rem; font-weight: 600; }
.rate-figure strong { font-family: 'Cinzel', Georgia, serif; font-size: clamp(7.2rem, 13vw, 12rem); line-height: .9; letter-spacing: -.08em; }
.rate-copy h2 { color: var(--white); }
.rate-copy > p { color: #dbe6ed; }
.rate-list { display: grid; gap: 15px; margin: 30px 0 34px; padding: 0; list-style: none; }
.rate-list li { position: relative; padding-left: 29px; color: #dbe6ed; }
.rate-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--gold-light); font-weight: 700; }

/* Logements */
.properties-section { background: var(--sand); }
.properties-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 390px; gap: 24px; }
.property-card { position: relative; min-width: 0; overflow: hidden; border-radius: var(--radius); text-decoration: none; box-shadow: var(--shadow-soft); }
.property-card--featured { grid-row: span 2; }
.property-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.75,.2,1); }
.property-card:hover img { transform: scale(1.055); }
.property-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 32px 29px;
    background: linear-gradient(180deg, transparent 35%, rgba(4, 28, 49, .90));
    color: var(--white);
}
.property-title { font-family: 'Cinzel', Georgia, serif; font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.25; }
.property-location { margin-top: 5px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .15em; font-size: .66rem; font-weight: 600; }
.property-link { display: flex; align-items: center; gap: 7px; margin-top: 18px; opacity: 0; transform: translateY(8px); text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; transition: .35s ease; }
.property-link svg { width: 14px; height: 14px; fill: currentColor; }
.property-card:hover .property-link, .property-card:focus-visible .property-link { opacity: 1; transform: translateY(0); }
.empty-public-message { padding: 35px; border: 1px dashed rgba(7,44,76,.25); border-radius: var(--radius); text-align: center; color: var(--muted); }

/* À propos */
.about-section { background: var(--white); }
.about-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(55px, 8vw, 105px); align-items: center; }
.about-visual { position: relative; padding: 0 0 38px 28px; }
.about-visual img { width: 100%; height: 650px; object-fit: cover; border-radius: 30px 200px 30px 30px; box-shadow: var(--shadow); }
.about-visual::before { content: ''; position: absolute; z-index: -1; left: 0; bottom: 0; width: 72%; height: 65%; border-radius: 24px; background: var(--sand); }
.about-badge { position: absolute; right: -18px; bottom: 0; width: 150px; height: 150px; display: grid; place-items: center; align-content: center; border-radius: 50%; background: var(--sage); color: var(--navy); text-align: center; box-shadow: var(--shadow-soft); }
.about-badge strong { font-family: 'Cinzel', Georgia, serif; font-size: 2.9rem; line-height: 1; }
.about-badge span { max-width: 95px; text-transform: uppercase; letter-spacing: .12em; font-size: .53rem; }
.about-copy > p { color: var(--muted); }
.promise-card { margin-top: 32px; padding: 25px 28px; border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--sand-soft); }
.promise-card span { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; font-weight: 600; }
.promise-card p { margin: 8px 0 0; color: var(--navy); font-family: 'Cinzel', Georgia, serif; font-size: 1.15rem; }

/* Témoignages */
.testimonials-section { overflow: hidden; background: var(--sage); text-align: center; }
.testimonials-section::before, .testimonials-section::after { content: ''; position: absolute; border: 1px solid rgba(7,44,76,.09); border-radius: 50%; }
.testimonials-section::before { width: 330px; height: 330px; left: -160px; top: -120px; }
.testimonials-section::after { width: 450px; height: 450px; right: -250px; bottom: -260px; }
.testimonial-eyebrow { justify-content: center; }
.testimonial-carousel { position: relative; z-index: 1; max-width: 1000px; margin: 28px auto 0; }
.testimonial-slides { position: relative; min-height: 320px; }
.testimonial-slide { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; opacity: 0; visibility: hidden; transform: translateX(25px); transition: opacity .55s ease, transform .55s ease, visibility .55s; }
.testimonial-slide.is-active { position: relative; opacity: 1; visibility: visible; transform: translateX(0); }
.quote-icon { width: 45px; height: 45px; margin-bottom: 22px; fill: var(--gold-dark); opacity: .75; }
.testimonial-slide blockquote { max-width: 930px; margin: 0 auto 27px; font-size: clamp(1.5rem, 3vw, 2.85rem); font-weight: 500; line-height: 1.5; }
.testimonial-slide p { margin: 0; color: var(--navy-soft); }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.testimonial-arrow { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(7,44,76,.22); border-radius: 50%; background: transparent; color: var(--navy); }
.testimonial-arrow:hover { background: var(--navy); color: var(--white); }
.testimonial-arrow svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-dots { display: flex; align-items: center; gap: 8px; }
.testimonial-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(7,44,76,.25); }
.testimonial-dot.is-active { width: 24px; border-radius: 999px; background: var(--gold-dark); }

/* Contact */
.contact-section { background: var(--sand-soft); }
.contact-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(45px, 8vw, 100px); align-items: start; }
.contact-copy h2 { margin-bottom: 20px; }
.contact-copy > p { color: var(--muted); }
.contact-details {
    display: grid;
    gap: 0;
    margin-top: 40px;
}

.contact-detail-entry {
    display: flex;
    align-items: center;
    gap: 17px;
    min-width: 0;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    text-decoration: none;
}

a.contact-detail-entry:hover {
    color: var(--gold-dark);
}

.contact-detail-entry > svg {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    padding: 5px;
    border-radius: 50%;
    background: var(--white);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail-entry span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    font-size: .92rem;
    overflow-wrap: anywhere;
}

.contact-detail-entry small {
    margin-bottom: 2px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .58rem;
}

.contact-phone-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.contact-phone-row .contact-detail-entry {
    border-bottom: 0;
}

.contact-vcard-download {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-left: 12px;
    border: 1px solid rgba(7, 44, 76, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .72);
    color: var(--navy);
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.contact-vcard-download:hover,
.contact-vcard-download:focus-visible {
    transform: translateY(-2px);
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy-deep);
    outline: none;
}

.contact-vcard-download svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-form-card { padding: clamp(30px, 5vw, 52px); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.contact-form-card form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.contact-form-card label { display: grid; gap: 7px; color: var(--navy); font-size: .77rem; font-weight: 600; }
.contact-form-card label > span { text-transform: uppercase; letter-spacing: .08em; }
.contact-form-card input, .contact-form-card textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(7, 44, 76, .17);
    border-radius: 11px;
    background: var(--sand-soft);
    color: var(--ink);
    outline: none;
    transition: border-color .25s, box-shadow .25s, background .25s;
}
.contact-form-card textarea { min-height: 145px; resize: vertical; }
.contact-form-card input:focus, .contact-form-card textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(194,155,78,.13); }
.form-privacy-note { margin: 0; color: var(--muted); font-size: .73rem; }
.form-privacy-note a { color: var(--navy); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.status-message { margin-bottom: 22px; padding: 14px 16px; border-radius: 11px; font-size: .88rem; }
.status-success { border: 1px solid rgba(40,120,90,.35); background: rgba(40,120,90,.09); color: var(--success); }
.status-error { border: 1px solid rgba(166,60,60,.35); background: rgba(166,60,60,.08); color: var(--error); }

/* Pied de page */
.site-footer { background: var(--navy-deep); color: #d5e0e7; }
.footer-main { width: min(1240px, calc(100% - 10vw)); margin-inline: auto; padding: 55px 0 40px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.footer-logo img { width: 125px; height: 76px; object-fit: contain; }
.footer-main p { margin: 0; text-align: center; font-family: 'Cinzel', Georgia, serif; font-size: .93rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 15px; }
.footer-links a, .footer-cookie-button { padding: 0; border: 0; background: transparent; color: #bdc9d1; text-decoration: none; font-size: .72rem; }
.footer-links a:hover, .footer-cookie-button:hover { color: var(--gold-light); }
.footer-bottom { padding: 20px 5vw; border-top: 1px solid rgba(255,255,255,.08); text-align: center; color: #8697a3; font-size: .72rem; }

/* Cookies */
.cookie-banner { position: fixed; z-index: 2000; right: 22px; bottom: 22px; left: 22px; max-width: 950px; margin-inline: auto; padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border: 1px solid rgba(194,155,78,.45); border-radius: 18px; background: var(--navy-deep); color: var(--white); box-shadow: 0 24px 70px rgba(0,0,0,.32); }
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin-bottom: 7px; color: var(--white); font-size: 1.15rem; }
.cookie-banner p { margin-bottom: 5px; color: #dbe4ea; font-size: .82rem; }
.cookie-banner a { color: var(--gold-light); font-size: .75rem; }
.cookie-banner__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-choice { min-height: 42px; padding: 10px 15px; border: 1px solid var(--gold); border-radius: 999px; background: var(--gold); color: var(--navy-deep); font-size: .74rem; font-weight: 600; }
.cookie-choice--secondary { background: transparent; color: var(--white); }

/* Pages légales */
.legal-page { background: var(--sand-soft); }
.legal-header { position: relative; background: var(--white); border-bottom: 1px solid var(--line); }
.legal-header .nav-container { min-height: 96px; }
.legal-header__back { color: var(--navy); text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: .69rem; font-weight: 600; }
.legal-content { width: min(900px, calc(100% - 10vw)); margin: 55px auto 90px; padding: clamp(30px, 6vw, 65px); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.legal-content h1 { margin-bottom: 14px; font-size: clamp(2.3rem, 5vw, 4.2rem); }
.legal-content h2 { margin-top: 38px; margin-bottom: 12px; font-size: 1.35rem; }
.legal-content a { color: var(--gold-dark); }
.legal-intro { color: var(--muted); }
.legal-warning { padding: 15px; border-left: 3px solid var(--gold); background: var(--sand); }
.legal-page footer { background: var(--navy-deep); color: var(--white); padding: 30px 5vw; text-align: center; }
.legal-page footer p { margin-bottom: 12px; }
.legal-page .footer-links { justify-content: center; }

/* Apparition progressive */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
    .nav-container { width: min(100% - 5vw, 1380px); }
    .nav-menu { gap: 17px; }
    .nav-menu a { font-size: .63rem; }
    .hero-inner { grid-template-columns: 1fr 1fr; gap: 50px; }
    .hero-image-frame, .hero-image-frame img { min-height: 570px; height: 570px; }
    .service-card { grid-column: span 3; }
    .service-card--wide { grid-column: span 3; }
}

@media (max-width: 900px) {
    html { scroll-padding-top: 88px; }
    section { padding: 90px 0; }
    .section-shell { width: min(100% - 10vw, 1240px); }
    .nav-container { min-height: 86px; gap: 14px; }
    .logo-img { width: 122px; height: 68px; }
    .nav-tools { display: flex; margin-left: auto; gap: 8px; }
    .menu-toggle { display: block; z-index: 1202; }
    .nav-menu {
        position: fixed;
        z-index: 1201;
        top: 86px;
        right: 0;
        left: 0;
        height: calc(100dvh - 86px);
        min-height: calc(100dvh - 86px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        padding: 26px 22px 34px;
        background: linear-gradient(180deg, rgba(255, 253, 248, .985), rgba(244, 238, 227, .985));
        box-shadow: 0 28px 60px rgba(3, 22, 38, .22);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
    }
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-menu li { width: 100%; }
    .nav-menu a {
        display: flex;
        align-items: center;
        min-height: 54px;
        width: 100%;
        padding: 0;
        font-size: .98rem;
        line-height: 1.2;
        letter-spacing: .12em;
    }
    .nav-menu a:not(.nav-contact)::after { display: none; }
    .nav-menu li + li {
        border-top: 1px solid rgba(7, 44, 76, .08);
    }
    .nav-contact {
        display: inline-flex;
        justify-content: center;
        margin-top: 16px;
        padding: 16px 22px;
    }
    .hero { min-height: auto; padding-top: 130px; }
    .hero-inner, .rates-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; }
    .hero-copy { max-width: 750px; }
    .hero-visual { max-width: 690px; margin-inline: auto; width: 100%; }
    .hero-image-frame, .hero-image-frame img { min-height: 560px; height: 560px; }
    .rates-layout { gap: 55px; }
    .rate-figure { min-height: 360px; max-width: 620px; width: 100%; margin-inline: auto; }
    .properties-grid { grid-auto-rows: 370px; }
    .property-card--featured { grid-row: auto; }
    .about-visual { max-width: 680px; margin-inline: auto; }
    .about-visual img { height: 560px; }
    .footer-main { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin-inline: auto; }
    .footer-links { justify-content: center; }
}

@media (max-width: 680px) {
    .section-shell, .hero-inner, .footer-main, .legal-content { width: min(100% - 34px, 1240px); }
    .hero { padding-top: 115px; }
    .hero h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
    .hero-image-frame { min-height: 440px; height: 440px; border-radius: 130px 130px 22px 22px; }
    .hero-image-frame img { min-height: 440px; height: 440px; }
    .hero-seal { top: 55px; width: 72px; height: 72px; }
    .hero-note { right: 6px; max-width: 210px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card, .service-card--wide { grid-column: auto; min-height: auto; }
    .properties-grid { grid-template-columns: 1fr; grid-auto-rows: 430px; }
    .about-visual { padding-left: 13px; }
    .about-visual img { height: 480px; border-radius: 24px 125px 24px 24px; }
    .about-badge { right: -5px; width: 122px; height: 122px; }
    .field-row { grid-template-columns: 1fr; }
    .testimonial-slides { min-height: 390px; }
    .cookie-banner { flex-direction: column; align-items: stretch; }
    .cookie-banner__actions { flex-direction: column-reverse; }
}

@media (max-width: 430px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-visual { padding-right: 12px; padding-left: 0; }
    .hero-image-frame, .hero-image-frame img { min-height: 390px; height: 390px; }
    .hero-note { position: relative; right: auto; bottom: auto; margin: -28px 15px 0 auto; }
    .rate-figure { min-height: 320px; border-radius: 26px 100px 26px 26px; }
    .rate-figure strong { font-size: 6.5rem; }
    .properties-grid { grid-auto-rows: 380px; }
}


/* ========================================================================== 
   V1.3 — MIX : ACCUEIL PLEIN ÉCRAN DE LA V1 + UNIVERS MÉDITERRANÉEN
   ========================================================================== */

/* En-tête posé sur la photographie, puis clair au défilement */
.site-header {
    background: linear-gradient(180deg, rgba(3, 22, 38, .72), rgba(3, 22, 38, .28));
    border-bottom-color: rgba(255, 255, 255, .13);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.site-header:not(.is-scrolled) .nav-menu a { color: var(--white); }
.site-header:not(.is-scrolled) .nav-menu a:not(.nav-contact)::after { background: var(--gold-light); }
.site-header:not(.is-scrolled) .nav-contact {
    border-color: rgba(226, 201, 135, .72);
    color: var(--white);
    background: rgba(4, 28, 49, .18);
}
.site-header:not(.is-scrolled) .nav-contact:hover {
    background: var(--gold);
    color: var(--navy-deep);
}
.site-header:not(.is-scrolled) .burger-bar { background: var(--white); }
.site-header.is-scrolled {
    background: rgba(255, 255, 255, .97);
    border-bottom-color: rgba(7, 44, 76, .08);
    box-shadow: 0 10px 35px rgba(7, 44, 76, .10);
}

/* Accueil immersif */
.hero.hero--full {
    position: relative;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--navy-deep);
    isolation: isolate;
}
.hero-background,
.hero-shade {
    position: absolute;
    inset: 0;
}
.hero-background { z-index: -3; overflow: hidden; }
.hero-background img {
    width: 100%;
    height: 100%;
    min-height: 100svh;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
    animation: hero-mix-zoom 24s ease-in-out infinite alternate;
    will-change: transform;
}
.hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 22, 38, .91) 0%, rgba(3, 22, 38, .72) 42%, rgba(3, 22, 38, .25) 72%, rgba(3, 22, 38, .38) 100%),
        linear-gradient(180deg, rgba(3, 22, 38, .18) 0%, rgba(3, 22, 38, .06) 55%, rgba(3, 22, 38, .72) 100%);
}
.hero.hero--full::after {
    content: '';
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .82;
}
.hero.hero--full .hero-inner {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 10vw));
    min-height: 100svh;
    margin-inline: auto;
    padding: 155px 0 105px;
    display: flex;
    align-items: center;
}
.hero.hero--full .hero-copy {
    max-width: 850px;
    padding-top: 34px;
}
.hero.hero--full h1 {
    margin: 0 0 28px;
    color: var(--white);
    font-size: clamp(3.35rem, 6.7vw, 7.35rem);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1.08;
    text-shadow: 0 12px 38px rgba(0, 0, 0, .36);
}
.hero.hero--full .hero-copy > p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .90);
    font-size: clamp(1.02rem, 1.45vw, 1.25rem);
    font-weight: 300;
    letter-spacing: .01em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .45);
}
.hero.hero--full .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}
.btn-hero-primary {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy-deep);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
}
.btn-hero-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .32);
}
.btn-hero-secondary {
    border-color: rgba(255, 255, 255, .58);
    background: rgba(3, 22, 38, .20);
    color: var(--white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .13);
}
.hero-scroll {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .58rem;
    font-weight: 600;
    transform: translateX(-50%);
}
.hero-scroll span {
    position: relative;
    width: 1px;
    height: 42px;
    overflow: hidden;
    background: rgba(255, 255, 255, .30);
}
.hero-scroll span::after {
    content: '';
    position: absolute;
    inset: -100% 0 auto;
    height: 70%;
    background: var(--gold-light);
    animation: hero-scroll-line 2.2s ease-in-out infinite;
}

@keyframes hero-mix-zoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.13); }
}
@keyframes hero-scroll-line {
    0% { transform: translateY(0); }
    65%, 100% { transform: translateY(285%); }
}

@media (max-width: 900px) {
    .site-header:not(.is-scrolled) .nav-menu.active a { color: var(--navy); }
    .site-header:not(.is-scrolled) .nav-menu.active .nav-contact {
        color: var(--navy);
        border-color: rgba(7, 44, 76, .22);
        background: transparent;
    }
    .site-header:not(.is-scrolled) .menu-toggle.open .burger-bar { background: var(--navy); }
    .hero.hero--full .hero-inner {
        width: min(100% - 10vw, 1380px);
        padding-top: 135px;
        padding-bottom: 105px;
    }
    .hero.hero--full .hero-copy { max-width: 720px; padding-top: 0; }
    .hero-shade {
        background:
            linear-gradient(90deg, rgba(3, 22, 38, .88) 0%, rgba(3, 22, 38, .60) 64%, rgba(3, 22, 38, .35) 100%),
            linear-gradient(180deg, rgba(3, 22, 38, .14), rgba(3, 22, 38, .70));
    }
}

@media (max-width: 680px) {
    .hero.hero--full { min-height: 760px; }
    .hero-background img { min-height: 760px; object-position: 58% center; }
    .hero.hero--full .hero-inner {
        width: min(100% - 34px, 1240px);
        min-height: 760px;
        padding-top: 125px;
        padding-bottom: 105px;
        align-items: flex-end;
    }
    .hero.hero--full h1 {
        font-size: clamp(2.7rem, 13vw, 4.45rem);
        line-height: 1.08;
    }
    .hero.hero--full .hero-copy > p { font-size: 1rem; }
    .hero.hero--full .hero-actions { flex-direction: column; align-items: stretch; }
    .hero.hero--full .hero-actions .btn { width: 100%; }
    .hero-scroll { bottom: 16px; }
    .hero-scroll span { height: 30px; }
}

@media (max-width: 430px) {
    .hero.hero--full { min-height: 710px; }
    .hero-background img { min-height: 710px; object-position: 61% center; }
    .hero.hero--full .hero-inner { min-height: 710px; }
}


/* ==========================================================================
   V1.4 — SÉLECTEUR DE LANGUE FR / EN / ES
   ========================================================================== */
.nav-language-item {
    display: flex;
    align-items: center;
}

.language-switcher--header {
    display: none;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(7, 44, 76, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
}

.language-switcher a {
    display: grid;
    place-items: center;
    min-width: 31px;
    min-height: 29px;
    padding: 0 6px;
    border-radius: 999px;
    color: var(--navy);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.language-switcher a::after {
    display: none !important;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
    background: rgba(194, 155, 78, .16);
    color: var(--navy-deep);
    outline: none;
}

.language-switcher a[aria-current="page"] {
    background: var(--gold);
    color: var(--navy-deep);
    box-shadow: 0 4px 12px rgba(3, 22, 38, .16);
}

.site-header:not(.is-scrolled) .language-switcher {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(3, 22, 38, .25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.site-header:not(.is-scrolled) .language-switcher a {
    color: rgba(255, 255, 255, .88);
}

.site-header:not(.is-scrolled) .language-switcher a[aria-current="page"] {
    color: var(--navy-deep);
    background: var(--gold-light);
}

.legal-header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher--legal {
    background: var(--sand-soft);
}

.legal-translation-note {
    margin: 0 0 26px;
    padding: 12px 15px;
    border-left: 3px solid var(--gold);
    background: var(--sand);
    color: var(--muted);
    font-size: .82rem;
}

@media (max-width: 1180px) and (min-width: 901px) {
    .nav-menu { gap: 13px; }
    .nav-menu a { font-size: .60rem; }
    .nav-contact { padding: 10px 13px; }
    .language-switcher a { min-width: 28px; padding-inline: 4px; }
}

@media (max-width: 900px) {
    .language-switcher--header {
        display: inline-flex;
    }

    .nav-language-item--menu {
        display: none;
    }

    .nav-tools .language-switcher {
        padding: 3px;
        border-color: rgba(255, 255, 255, .28);
        background: rgba(3, 22, 38, .20);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .site-header.is-scrolled .nav-tools .language-switcher {
        border-color: rgba(7, 44, 76, .14);
        background: rgba(255, 255, 255, .72);
    }

    .nav-tools .language-switcher a {
        min-width: 32px;
        min-height: 32px;
        padding-inline: 6px;
        font-size: .58rem;
        color: rgba(255, 255, 255, .92);
    }

    .site-header.is-scrolled .nav-tools .language-switcher a {
        color: var(--navy);
    }

    .nav-tools .language-switcher a[aria-current="page"] {
        color: var(--navy-deep);
        background: var(--gold-light);
    }

    .site-header.is-scrolled .nav-tools .language-switcher a[aria-current="page"] {
        background: var(--gold);
    }

    .nav-menu .language-switcher {
        padding: 4px;
        border-color: rgba(7, 44, 76, .18);
        background: var(--sand-soft);
    }

    .nav-menu .language-switcher a,
    .site-header:not(.is-scrolled) .nav-menu.active .language-switcher a {
        min-width: 45px;
        min-height: 38px;
        color: var(--navy);
        font-size: .68rem;
    }

    .nav-menu .language-switcher a[aria-current="page"],
    .site-header:not(.is-scrolled) .nav-menu.active .language-switcher a[aria-current="page"] {
        color: var(--navy-deep);
        background: var(--gold);
    }
}

@media (max-width: 560px) {
    .nav-tools { gap: 6px; }
    .nav-tools .language-switcher a { min-width: 29px; min-height: 30px; font-size: .54rem; }
    .nav-menu { padding-left: 18px; padding-right: 18px; }

    .legal-header .nav-container {
        min-height: 86px;
        gap: 12px;
    }

    .legal-header__actions {
        gap: 10px;
    }

    .legal-header__back {
        display: none;
    }

    .language-switcher--legal a {
        min-width: 34px;
    }
}
