/* ─── Tokens ──────────────────────────────────────────────── */
:root {
    --blue:        #3F6081;
    --navy:        #003B4A;
    --green:       #75AE8A;
    --green-dark:  #374F24;
    --text:        #353535;
    --text-muted:  #878787;
    --border:      #DEE2E6;
    --cream:       #F5EDD8;

    --font-display: 'Rufina', Georgia, serif;
    --font-ui:      'Overpass', system-ui, sans-serif;
    --font-body:    'Nunito Sans', system-ui, sans-serif;

    --px: 81px;
    --max: 1760px;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text); background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font-family: inherit; }

/* ═══════════════════════════════════════════════════════════
    NAVIGATION
═══════════════════════════════════════════════════════════ */
header {
    position: relative;
    z-index: 100;
}
header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
@keyframes navSlideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}
header.is-fixed .nav {
    animation: navSlideDown 0.28s ease;
}

.nav {
    position: relative;
    z-index: 100;
    background: #fff;
    height: 92px;
    display: flex;
    align-items: center;
    padding: 0 0 0 var(--px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    justify-content: space-between;
}

.nav__logo {
    flex: 0 0 auto;
    text-decoration: none;
}
.nav__logo img {
    height: 56px;
    width: auto;
    margin-bottom: 14px;
}

.nav__links {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 56px;
    list-style: none;
}
.nav__links a {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--blue);
    text-decoration: none;
    padding-bottom: 6px;
    position: relative;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
}
.nav__links a.active::after,
.nav__links a.is-hovered::after {
    transform: scaleX(1);
}

.nav__cta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--blue);
    height: 92px;
    padding: 0 28px 0 20px;
    min-width: 250px;
    text-decoration: none;
    border-radius: 0 0 0 0;
}
.nav__cta-icon {
    flex: 0 0 auto;
    font-size: 28px;
    color: #fff;
}
.nav__cta-text { display: flex; flex-direction: column; }
.nav__cta-number {
    font-family: var(--font-ui);
    font-weight: 800;
    font-size: 20px;
    line-height: 26px;
    color: #fff;
}
.nav__cta-label {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════
    HERO
═══════════════════════════════════════════════════════════ */
.hero {
    display: flex;
    min-height: 760px;
    overflow: hidden;
}

/* Left — cream column */
.hero__left {
    flex: 0 0 44%;
    background-color: var(--cream);
    background-image: url("brand_assets/assets/bg.jpg");
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 var(--px);
}

/* Right — photo column */
.hero__right {
    flex: 1;
    position: relative;
}

.hero__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Decorative watermark */
.hero__watermark, .hero__watermark2 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}
.hero__watermark span {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: clamp(440px, 30vw, 520px);
    color: rgba(217, 165, 98, 0.09);
    letter-spacing: -0.02em;
    line-height: 1;
    position: absolute;
    left: 20px;
    bottom: -60px;
    user-select: none;
}
.hero__watermark2 span {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: clamp(400px, 30vw, 480px);
    color: rgba(217, 165, 98, 0.09);
    letter-spacing: -0.02em;
    line-height: 1;
    position: absolute;
    top: -180px;
    left: -120px;
    user-select: none;
}

/* Wrapper interne — bride le texte à 780px et centre au-delà de 1920px */
.hero__left-inner {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}

/* Content block */
.hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

/* Logo — centré sur le bord gauche de la colonne droite */
.hero__residence-logo {
    position: absolute;
    left: 0;
    top: 15%;
    width: 200px;
    height: auto;
    transform: translateX(-50%);
    z-index: 3;
}

.hero__eyebrow {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(40px, 4vw, 61px);
    line-height: 1.28;
    color: var(--blue);
}

.hero__title-location {
    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 45px);
    line-height: 1.33;
    color: var(--blue);
    margin-bottom: 8px;
}
.hero__title-location .highlight {
    font-weight: 700;
    color: var(--green);
}

.hero__tagline {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 20px;
    color: var(--blue);
    line-height: 28px;
    margin-bottom: 48px;
}

/* Stats grid */
.hero__stats {
    display: grid;
    grid-template-columns: 250px 250px;
    row-gap: 40px;
    column-gap: 40px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-label {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 17px;
    text-transform: uppercase;
    color: var(--blue);
    line-height: 36px;
}
.hero__stat-label.v2 {
    line-height: 1;
}

.hero__stat-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 50px;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 2px;
}
.hero__stat-value .sep {
    font-size: 26px;
    font-weight: 400;
}

.hero__stat-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 48px;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 2px;
}
.hero__stat-price .unit {
    font-size: 17px;
    font-weight: 400;
}

.hero__form-card {
    background: #fff;
    box-shadow: 0 0 16px rgba(2, 22, 28, 0.10);
    padding: 28px 24px 20px;
    position: sticky;
    top: var(--card-sticky-top, 112px);
}

.form__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: var(--blue);
    text-align: center;
    margin-bottom: 24px;
}

.form__group {
    margin-bottom: 14px;
}

.form__label {
    display: block;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 14px;
    color: var(--blue);
    margin-bottom: 4px;
    line-height: 24px;
}

.form__input {
    display: block;
    width: 100%;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 12px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}
.form__input::placeholder { color: rgba(33,37,41,0.55); }
.form__input:focus { border-color: var(--blue); }

.form__section-title {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 20px;
    color: var(--blue);
    line-height: 24px;
    margin-bottom: 10px;
}

.form__radio-group {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.form__radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form__radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form__radio-box {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--blue);
    border-radius: 50%;
    position: relative;
    transition: background 0.15s;
}

.form__radio-label input[type="radio"]:checked + .form__radio-box::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--blue);
    border-radius: 50%;
}

.form__radio-text {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 16px;
    color: var(--blue);
    line-height: 24px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s;
}
.btn--primary {
    background: var(--blue);
    color: #fff;
}
.btn--primary:hover { background: var(--navy); }

.form__disclaimer {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 16px;
    margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════
    LABELS BAND
═══════════════════════════════════════════════════════════ */
.labels-band {
    background: var(--green);
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0 var(--px);
    gap: 0;
}

.labels-band__pill {
    background: var(--blue);
    border-radius: 0;
    padding: 0 18px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
    flex: 0 0 auto;
    margin-right: 20px;
    line-height: 52px;
    font-weight: bold;
}

.labels-band__divider {
    width: 1px;
    height: 18px;
    background: rgba(0, 0, 0, 0.18);
    flex: 0 0 1px;
    margin: 0 20px;
}

.labels-band__text {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.labels-band__link {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.labels-band__link:hover { text-decoration: underline; }

.labels-band__badges {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.labels-band__badge {
    height: 40px;
    width: auto;
    flex: 0 0 auto;
}

/* Labels band — allow children from below to overlap it */
.labels-band {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
    DESCRIPTION PROGRAMME
═══════════════════════════════════════════════════════════ */
.programme {
    max-width: calc(var(--max) + var(--px) * 2);
    margin: 0 auto;
    padding: 48px var(--px) 80px;
    display: grid;
    grid-template-columns: 1fr 402px;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.programme__main {
    display: grid;
    grid-template-columns: 3fr auto;
    column-gap: 60px;
    row-gap: 40px;
}

.programme__prix-block {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 8px;
}

.programme__logos-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-end;
}

/* Left */
.programme__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
    color: var(--blue);
}

.programme__subtitle {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 32px;
}

.programme__body {
    font-family: var(--font-ui);
    font-size: 17px;
    line-height: 30px;
    color: var(--text);
    margin-bottom: 40px;
}
.programme__body p + p { margin-top: 16px; }
.programme__body strong { font-weight: 700; color: var(--text); }

.programme__features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.programme__feature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.programme__feature-dot {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    background: var(--green);
}
.programme__feature-label {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 400;
    color: var(--blue);
    text-transform: uppercase;
}

/* Colonne 2 — prix, badges, logo */
.programme__col-prix {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
    align-items: end;
}

/* Colonne 3 — formulaire, remonte sur la bande verte */
.programme__sidebar {
    margin-top: -137px;
    position: relative;
    z-index: 10;
}

.programme__prix {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.programme__prix-intro {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 20px;
    color: var(--blue);
    line-height: 1.4;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.programme__prix-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.programme__prix-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.programme__prix-amount {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 28px;
    color: var(--blue);
    line-height: 1.2;
}
.programme__prix-suffix {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 13px;
    color: var(--blue);
    opacity: 0.75;
}

.programme__badges {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}
.programme__badge {
    height: 82px;
    width: auto;
    flex-shrink: 0;
}
.programme__badge:after {
    height: 90px;
    width: auto;
    flex-shrink: 0;
}

.programme__logo-urbaxim {
    max-width: 240px;
    width: 100%;
    height: auto;
}

/* ═══════════════════════════════════════════════════════════
    LOCALISATIONS
═══════════════════════════════════════════════════════════ */
.loc {
    position: relative;
    overflow: hidden;
    background-color: var(--cream);
    background-image: url("brand_assets/assets/bg.jpg");
    background-size: auto;
    background-position: center;
    margin-top: 90px;
}

.loc__watermark, .loc__watermark2 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}
.loc__watermark span {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: clamp(440px, 30vw, 520px);
    color: rgba(217, 165, 98, 0.09);
    letter-spacing: -0.02em;
    line-height: 1;
    position: absolute;
    left: 20px;
    bottom: -80px;
    user-select: none;
}
.loc__watermark2 span {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: clamp(400px, 30vw, 480px);
    color: rgba(217, 165, 98, 0.09);
    letter-spacing: -0.02em;
    line-height: 1;
    position: absolute;
    top: -120px;
    right: -60px;
    user-select: none;
}

.loc__inner {
    position: relative;
    z-index: 1;
    max-width: calc(var(--max) + var(--px) * 2);
    margin: 0 auto;
    padding: 80px var(--px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* ─── Colonne gauche ──────────────────────────────────────── */
.loc__left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ─── Colonne droite ──────────────────────────────────────── */
.loc__right {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* ─── Typographie commune ─────────────────────────────────── */
.loc__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    color: var(--blue);
    margin-bottom: 4px;
}

.loc__subtitle {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 20px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.loc__body {
    font-family: var(--font-ui);
    font-size: 17px;
    line-height: 30px;
    color: var(--text);
}
.loc__body strong { font-weight: 700; color: var(--text); }

/* ─── Carte réseau ────────────────────────────────────────── */
.loc__map-network {
    width: 100%;
    display: flex;
    justify-content: center;
}
.loc__map-network img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* ─── Tableau de distances ────────────────────────────────── */
.loc__distances {
    border-top: 1px solid rgba(63, 96, 129, 0.18);
}

.loc__distance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(63, 96, 129, 0.18);
    gap: 16px;
}

.loc__distance-city {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.loc__distance-time {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.loc__time-value {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 28px;
    color: var(--text);
    line-height: 1.1;
}

.loc__time-mode {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ─── Plan aérien quartier ────────────────────────────────── */
.loc__plan {
    width: 100%;
    overflow: hidden;
}
.loc__plan img {
    width: auto;
    height: auto;
    object-position: center;
    display: block;
}

/* ─── Grille transports 2×2 ───────────────────────────────── */
.loc__transport-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.loc__transport-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.loc__transport-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.loc__transport-icon .material-symbols-outlined {
    font-size: 24px;
}

.loc__transport-title {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 13px;
    color: var(--blue);
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 3px;
}

.loc__transport-desc {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 14px;
    color: var(--blue);
    line-height: 1.5;
}

/* ─── Responsive localisations ────────────────────────────── */
@media (max-width: 1000px) {
    .loc__inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 60px var(--px);
    }
    .loc__plan img { height: 320px; }
    .loc__map-network { max-width: 100%; }
}

@media (max-width: 650px) {
    .loc__inner { padding: 48px var(--px); gap: 40px; }
    .loc__title { font-size: 28px; }
    .loc__subtitle { font-size: 16px; }
    .loc__body { font-size: 15px; line-height: 26px; }
    .loc__distance-city { font-size: 14px; }
    .loc__time-value { font-size: 22px; }
    .loc__plan img { height: 240px; }
    .loc__transport-grid { grid-template-columns: 1fr; gap: 16px; }
    .loc__watermark span  { font-size: 220px; }
    .loc__watermark2 span { font-size: 200px; }
}

/* ═══════════════════════════════════════════════════════════
    CTA VERT
═══════════════════════════════════════════════════════════ */
.cta-band {
    display: flex;
    background: var(--green);
    overflow: hidden;
    position: relative;
}

.cta-band__photo {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}
.cta-band__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-band__content {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px var(--px);
    overflow: hidden;
}

.cta-band__watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    white-space: nowrap;
}
.cta-band__watermark span {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: clamp(300px, 22vw, 520px);
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: -0.02em;
    line-height: 1;
    position: absolute;
    left: -450px;
    bottom: -60px;
    user-select: none;
}

.cta-band__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 34px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cta-band__body {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.cta-band__actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-band__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    border-radius: 8px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s, border-color 0.18s;
    -webkit-tap-highlight-color: transparent;
}
.cta-band__btn--call {
    background: var(--blue);
    color: #fff;
    border: none;
}
.cta-band__btn--call:hover { background: var(--navy); }

.cta-band__btn--brochure {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
}
.cta-band__btn--brochure:hover { background: rgba(255, 255, 255, 0.12); }

/* ── Responsive CTA ───────────────────────────────────────── */
@media (max-width: 1300px) {
    .cta-band__photo { flex: 0 0 38%; }
}
@media (max-width: 1000px) {
    .cta-band { height: auto; min-height: 280px; }
    .cta-band__content { padding: 60px var(--px); }
    .cta-band__title { font-size: 28px; }
    .cta-band__body { font-size: 15px; margin-bottom: 20px; }
}

@media (max-width: 650px) {
    .cta-band__photo { display: none; }
    .cta-band { height: auto; }
    .cta-band__title { font-size: 30px; }
    .cta-band__body { font-size: 15px; line-height: 26px; max-width: none; }
    .cta-band__actions { flex-direction: column; align-items: stretch; gap: 12px; }
    .cta-band__btn { justify-content: center; }
}

/* ─── CTA variante ───────────────────── */
.cta-band--cream {
    margin-top: 120px;
}
.cta-band--cream .cta-band__content {
    background: var(--cream) url("brand_assets/assets/bg.jpg") center / cover no-repeat;
}
.cta-band--cream .cta-band__watermark { display: none; }
.cta-band--cream .cta-band__title,
.cta-band--cream .cta-band__body { color: var(--blue); }
.cta-band--cream .cta-band__body { opacity: 1; }
.cta-band--cream .cta-band__btn--call {
    background: var(--blue);
    color: #fff;
    border: none;
}
.cta-band--cream .cta-band__btn--call:hover { background: var(--navy); }
.cta-band--cream .cta-band__btn--brochure {
    color: var(--blue);
    border-color: rgba(63, 96, 129, 0.55);
}
.cta-band--cream .cta-band__btn--brochure:hover {
    background: rgba(63, 96, 129, 0.07);
}

@media (max-width: 1000px) {
    .cta-band--cream { margin-top: 0 }
}

/* ═══════════════════════════════════════════════════════════
    FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--blue);
}

.footer__top {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 var(--px) 26px var(--px);
}

.footer__logo {
    flex: 0 0 auto;
    text-decoration: none;
}
.footer__logo img {
    height: 90px;
    width: auto;
    display: block;
}

.footer__info {
    flex: 1;
    min-width: 0;
    padding-top: 10px;
}
.footer__company {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.35;
    color: #fff;
    margin-bottom: 4px;
}
.footer__address {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.footer__divider {
    height: 1px;
    background: rgba(226, 236, 239, 0.23);
    margin: 0 var(--px);
}

.footer__legal-area {
    padding: 20px var(--px) 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer__disclaimer {
    font-family: var(--font-body);
    font-size: 10px;
    line-height: 1.65;
    color: #8aa1b7;
}
.footer__credits {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    text-align: right;
}

/* ── Responsive footer ≤ 650px ────────────────────────────── */
@media (max-width: 650px) {
    .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    }
    .footer__logo img { height: 56px; }
    .footer__company  { font-size: 18px; }
    .footer__address  { font-size: 13px; }
    .footer__credits  { text-align: left; }
}

/* ═══════════════════════════════════════════════════════════
    MOT DE L'ARCHITECTE
═══════════════════════════════════════════════════════════ */
.archi {
    background: #fff;
}

.archi__inner {
    max-width: 1650px;
    margin: 0 auto;
    padding: 80px var(--px);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

/* ─── Colonne photo ───────────────────────────────────────── */
.archi__photo-col {
    flex: 0 0 300px;
}
.archi__photo {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── Colonne contenu ─────────────────────────────────────── */
.archi__content {
    flex: 1;
    min-width: 0;
    margin-top: 80px;
}

.archi__header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.archi__guillemet {
    flex-shrink: 0;
    width: 86px;
    height: auto;
    margin-top: 10px;
}

.archi__title-block {
    flex: 1;
    min-width: 0;
}

.archi__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    color: var(--blue);
    margin-bottom: 4px;
}

.archi__subtitle {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 20px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.archi__logo {
    flex-shrink: 0;
    width: 110px;
    height: auto;
    margin-top: 6px;
}
/* Le logo mobile est caché par défaut */
.archi__logo--mobile { display: none; }

.archi__quote {
    font-family: var(--font-ui);
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    color: var(--text);
}
.archi__quote p + p { margin-top: 18px; }

/* ── Responsive architecte ────────────────────────────────── */
@media (max-width: 1000px) {
    .archi__photo-col { flex: 0 0 220px; }
    .archi__inner { gap: 10px; padding: 60px var(--px); }
    .archi__title { font-size: 28px; }
    .archi__subtitle { font-size: 17px; }
    .archi__guillemet { width: 64px; }
    .archi__logo { width: 90px; }
}

@media (max-width: 650px) {
    /* Layout colonne — photo pleine largeur en haut */
    .archi__inner {
    flex-direction: column;
    gap: 40px;
    padding: 0;
    padding: 60px 0;
    }

    /* Photo pleine largeur avec logo en overlay */
    .archi__photo-col {
    flex: 0 0 auto;
    width: 100%;
    position: relative;
    }
    .archi__photo {
    width: 75%;
    height: auto;
    display: block;
    padding-left: 15px;
    }

    /* Logo overlaid sur la photo — bas droite */
    .archi__logo--mobile {
    display: block;
    position: absolute;
    bottom: -50px;
    right: 5px;
    width: 186px;
    height: auto;
    }
    /* Logo desktop masqué */
    .archi__logo--desktop { display: none; }

    /* Contenu en dessous de la photo */
    .archi__content {
    padding: 28px var(--px) 48px;
    margin-top: -30px;
    }

    /* Header : guillemet seul, puis titre en dessous */
    .archi__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    }
    .archi__guillemet { width: 98px; padding: 0 0 0 var(--px); }

    .archi__title { font-size: 32px; line-height: 1.2; }
    .archi__subtitle { font-size: 20px; }
    .archi__quote { font-size: 17px; line-height: 30px; }
}

/* ═══════════════════════════════════════════════════════════
    APPARTEMENTS
═══════════════════════════════════════════════════════════ */
.appt {
    display: flex;
    min-height: 630px;
    overflow: hidden;
    position: relative;
    background: #fff;
    background-color: var(--cream);
    background-image: url("brand_assets/assets/bg.jpg");
    background-size: auto;
}

/* ─── Photo colonne gauche ────────────────────────────────── */
.appt__photo-col {
    flex: 0 0 52%;
    position: relative;
}

.appt__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ─── Filigranes décoratifs ───────────────────────────────── */
.appt__watermark,
.appt__watermark2 {
    position: absolute;
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
    z-index: 0;
}
.appt__watermark {
    bottom: 0;
    right: 0;
    left: 48%;
    height: 60%;
    display: flex;
    align-items: flex-end;
}
.appt__watermark span {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: clamp(440px, 30vw, 520px);
    color: rgba(217, 165, 98, 0.09);
    letter-spacing: -0.02em;
    line-height: 1;
    user-select: none;
    flex-shrink: 0;
    margin-left: -60px;
    margin-bottom: -80px;
}
.appt__watermark2 {
    top: 0;
    right: 0;
    left: 48%;
    height: 55%;
    display: flex;
    align-items: flex-start;
}
.appt__watermark2 span {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: clamp(400px, 28vw, 480px);
    color: rgba(217, 165, 98, 0.09);
    letter-spacing: -0.02em;
    line-height: 1;
    user-select: none;
    flex-shrink: 0;
    margin-left: -20px;
    margin-top: -120px;
}

/* ─── Contenu colonne droite ──────────────────────────────── */
.appt__content {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 80px var(--px) 80px 68px;
}

/* ─── Titre ───────────────────────────────────────────────── */
.appt__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    color: var(--blue);
    margin-bottom: 6px;
}

.appt__subtitle {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 20px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ─── Pictos caractéristiques ─────────────────────────────── */
.appt__features {
    display: flex;
    list-style: none;
    gap: 36px;
    flex-wrap: wrap;
    margin: 20px 0;
    justify-content: space-around;
}

.appt__feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.appt__feature-icon {
    font-size: 38px;
    color: var(--blue);
    flex-shrink: 0;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 40;
}

.appt__feature-label {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 20px;
    color: var(--blue);
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

/* ─── Corps textuel ───────────────────────────────────────── */
.appt__body {
    font-family: var(--font-ui);
    font-size: 17px;
    line-height: 30px;
    color: var(--text);
}
.appt__body strong { font-weight: 700; }
.appt__body p { margin-bottom: 12px; }

.appt__list {
    margin: 0;
    padding-left: 22px;
}
.appt__list li { line-height: 30px; margin-bottom: 2px; }
.appt__list li:last-child { margin-bottom: 0; }

/* ── Responsive appartements ──────────────────────────────── */
@media (max-width: 1300px) {
    .appt__content { padding-left: 48px; }
}

@media (max-width: 1000px) {
    .appt {
    flex-direction: column;
    min-height: unset;
    }
    .appt__photo-col {
    flex: 0 0 auto;
    height: 50vw;
    }
    .appt__content {
    padding: 48px var(--px);
    gap: 24px;
    }
    .appt__watermark  { left: 0; }
    .appt__watermark2 { left: 0; }
    .appt__watermark span  { font-size: 300px; }
    .appt__watermark2 span { font-size: 280px; margin-top: -80px; }
    .appt__title { font-size: 28px; }
    .appt__subtitle { font-size: 17px; }
    .appt__feature-label { font-size: 17px; }
}

@media (max-width: 650px) {
    .appt__photo-col { height: 60vw; }
    .appt__content   { gap: 20px; padding: 40px var(--px); }
    .appt__title     { font-size: 26px; }
    .appt__subtitle  { font-size: 15px; }
    .appt__features  { flex-direction: column; gap: 14px; }
    .appt__feature-icon  { font-size: 32px; }
    .appt__feature-label { font-size: 15px; }
    .appt__feature-label br { display: none;}
    .appt__body      { font-size: 15px; line-height: 26px; }
    .appt__watermark span  { font-size: 220px; margin-bottom: -60px; }
    .appt__watermark2 span { font-size: 200px; }
}

/* ═══════════════════════════════════════════════════════════
    PLANS APPARTEMENTS
═══════════════════════════════════════════════════════════ */
.plans {
    display: flex;
    position: relative;
    background: #fff;
    padding-top: 14vw;
    justify-content: end;
}

/* ─── Zone visuels — 1/3 gauche, défilement ───────────────── */
.plans__images-wrap {
    overflow-x: clip;
    overflow-y: visible;
    z-index: 2;
    position: absolute;
    width: 60%;
    height: 50vw;
    max-height: 760px;
    left: 0;
    top: 0;
    -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
    );
    mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
    );
}

.plans__images-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    top: 10vw;
}

.plans__img-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.plans__plan-img {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    height: calc(100% + 120px);
    width: auto;
    max-width: 140%;
    object-fit: contain;
    object-position: bottom center;
    pointer-events: none;
    display: block;
}
.pimg1 {
    width: 25.6vw;
    height: auto;
    max-width: 508px;
}
.pimg2 {
    width: 43.5vw;
    height: auto;
    max-width: 864px;
}
.pimg3 {
    width: 44vw;
    height: auto;
    max-width: 874px;
}

/* ─── Panneau vert fixe — 2/3 droite ─────────────────────── */
.plans__panel {
    flex: 0 0 70%;
    background: var(--green);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 60px var(--px) 100px 30%;
    min-height: 520px;
}

/* ─── Filigrane ───────────────────────────────────────────── */
.plans__watermark {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    white-space: nowrap;
}
.plans__watermark span {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: clamp(240px, 25vw, 460px);
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: -0.02em;
    line-height: 1;
    user-select: none;
    position: absolute;
    right: -30px;
    bottom: -60px;
}

/* ─── Contenu avec animation fade ────────────────────────── */
.plans__info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 520px;
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.plans__info.is-leaving {
    opacity: 0;
    transform: translateY(16px);
}
.plans__info.is-entering {
    opacity: 0;
    transform: translateY(-10px);
    transition: none;
}

.plans__type {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    color: #fff;
}

.plans__desc {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}

/* ─── Navigation ──────────────────────────────────────────── */
.plans__nav {
    bottom: 48px;
    display: flex;
    gap: 20px;
    z-index: 3;
    position: absolute;
    bottom: 60px;
}

.plans__nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.plans__nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}
.plans__nav-btn .material-symbols-outlined {
    font-size: 28px;
}

@media (max-width: 1400px) {
    .plans__images-track {
    top: 13vw;
    }
    .plans__images-wrap {
    height: 55vw;
    }
    .pimg1 {
    width: 32vw;
    }
    .pimg2 {
    width: 50vw;
    }
    .pimg3 {
    width: 50vw;
    }
}
@media (max-width: 1200px) {
    .plans__images-track {
    top: 24vw;
    }
    .plans__images-wrap {
    height: 65vw;
    }
    .plans__watermark span {
    bottom: -30px;
    }
}

/* ── Responsive plans ≤ 1000px ───────────────────────────── */
@media (max-width: 1000px) {
    .plans {
    flex-direction: column;
    padding-top: 60px;
    overflow: hidden;
    }
    .plans__images-wrap {
    position: relative;
    flex: 0 0 auto;
    height: 50vw;
    width: 80%;
    align-self: auto;
    overflow: visible;
    }
    .plans__images-track {
    height: 100%;
    top:0;
    }
    .plans__plan-img {
    top: 0;
    width: 400px;
    height: auto;
    max-width: 100%;
    position: relative;
    }
    .plans__panel {
    flex: 0 0 auto;
    width: 100%;
    min-height: 410px;
    padding: 130px var(--px) 80px;
    justify-content: flex-start;
    margin-top: -125px;
    }
    .plans__info {
    max-width: 80%;
    }
    .plans__nav {
    top: 36px;
    right: 36px;
    }
    .pimg1 {
    width: 36vw;
    }
    .pimg2 {
    width: 60vw;
    }
    .pimg3 {
    width: 60vw;
    }
    .plans__img-slide {
    display: flex;
    }
}

/* ── Responsive plans ≤ 650px ────────────────────────────── */
@media (max-width: 650px) {
    .plans__images-wrap {
    width: 100%;
    height: 60vw;
    -webkit-mask-image: none;
    mask-image: none;
    }
    .plans__info {
    max-width: 100%;
    }
    .plans__type {
    font-size: 30px;
    margin-bottom: 15px;
    }
    .plans__nav { top: 130px;}
    .pimg1 { width: 48vw; }
    .pimg2 { width: 80vw; }
    .pimg3 { width: 80vw; }
}

/* ─── Burger ─────────────────────────────────────────────── */
.nav__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    margin-right: 12px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}
.right-part {
    display: flex;
}
.nav__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
}
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(2) {
    opacity: 0;
}
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Nav drawer (mobile) ─────────────────────────────────── */
.nav__drawer {
    display: none;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 8px 32px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    z-index: 99;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
}
.nav__drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.nav__drawer ul { list-style: none; }
.nav__drawer li a {
    display: block;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 18px;
    color: var(--blue);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.nav__drawer li:last-child a { border-bottom: none; }

/* ─── Form popin (mobile) ─────────────────────────────────── */
.form-popin {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.form-popin.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.form-popin__inner {
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 92dvh;
    overflow-y: auto;
    padding: 36px 24px 28px;
    position: relative;
    transform: translateY(48px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.form-popin.is-open .form-popin__inner {
    transform: translateY(0);
}
.form-popin__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* ─── Fixed footer (mobile) ───────────────────────────────── */
.fixed-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: #fff;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.10);
    padding: 10px 16px;
    gap: 10px;
}
.fixed-footer__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.fixed-footer__btn--tel {
    background: #fff;
    border: 2px solid var(--blue);
    color: var(--blue);
}
.fixed-footer__btn--brochure {
    background: var(--blue);
    color: #fff;
}

/* ─── Références légales ─────────────────────────────────── */
.ref {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 400;
    vertical-align: super;
    line-height: 1;
    color: var(--blue);
    opacity: 0.7;
}

.programme__badges-ref {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 400;
    color: var(--blue);
    opacity: 0.7;
    align-self: flex-end;
    margin-bottom: 4px;
}

.programme__co-realisation {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 20px;
    color: var(--blue);
    letter-spacing: 0.05em;
    text-align: right;
    margin-bottom: 20px;
    margin-top: 40px;
}

.programme__logo-demathieu {
    max-width: 240px;
    width: 100%;
    height: auto;
    margin-top: 30px;
}

/* ─── Utils ───────────────────────────────────────────────── */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
    RÉSIDENCE DE STANDING
═══════════════════════════════════════════════════════════ */
.res {
    position: relative;
    overflow: hidden;
    background: #fff;
    margin-top: 40px;
}

/* Bande verte — pleine largeur */
.res::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 210px;
    background: var(--green);
    z-index: 0;
}

/* Wrapper bridé — même contrainte que .programme */
.res__inner {
    display: flex;
    max-width: calc(var(--max) + var(--px) * 2);
    margin: 0 auto;
    min-height: 560px;
    padding: 0 var(--px);
    position: relative;
    z-index: 1;
}

/* Filigrane décoratif */
.res__watermark {
    position: absolute;
    top: 0; left: auto; right: 0;
    height: 210px;
    display: flex;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}
.res__watermark span {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: clamp(390px, 20vw, 490px);
    color: rgba(255, 255, 255, 0.10);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-left: -20px;
    user-select: none;
}

/* Colonne gauche — plan de masse */
.res__left {
    flex: 0 0 46%;
    position: relative;
    overflow: hidden;
}
.res__plan {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 58px);
    object-fit: cover;
    object-position: center;
    display: block;
    max-height: 450px;
}

/* Colonne droite — contenu */
.res__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* En-tête (sur la bande verte) */
.res__header {
    height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 68px;
}
.res__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 6px;
}
.res__tagline {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Corps (fond blanc) */
.res__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 0 40px 68px;
    gap: 28px;
}

/* Pictos équipements */
.res__amenities {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    list-style: none;
    gap: 8px;
}
.res__amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.res__amenity-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--green);
}
.res__amenity-icon .material-symbols-outlined {
    font-size: 30px;
}
.res__amenity-label {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 400;
    color: var(--blue);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

/* Texte complémentaire */
.res__text {
    font-family: var(--font-ui);
    font-size: 17px;
    line-height: 30px;
    color: var(--text);
}

/* Pied de section : conclusion + CTA */
.res__footer {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: auto;
}
.res__conclusion {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.6;
    color: var(--blue);
}
.res__cta {
    flex-shrink: 0;
    width: 260px;
    height: 50px;
    border-radius: 8px;
}

/* ── Responsive résidence ─────────────────────────────────── */
@media (max-width: 1600px) {
    .res__amenities { flex-wrap: wrap; gap: 20px 0; }
    .res__amenity   { flex: 0 0 calc(100% / 3); }
}
@media (max-width: 1300px) {
    .res__header { padding-left: 48px; }
    .res__body   { padding-left: 48px; }
}
@media (max-width: 1050px) {
    .res__watermark { top: 50vw; height: 200px; z-index: 2; }
    .res__inner {
    flex-direction: column;
    min-height: unset;
    padding: 0;
    }
    .res__left {
    flex: 0 0 auto;
    height: 50vw;
    }
    .res__plan {
    top: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    }
    .res__header {
    height: 200px;
    padding: 0 var(--px);
    background-color: var(--green);
    }
    .res__body {
    padding: 32px var(--px);
    gap: 24px;
    }
    .res__amenity-label { font-size: 15px; }
    .res__amenity-icon  { width: 48px; height: 48px; }
    .res__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    }
    .res__cta { width: 100%; }
}
@media (max-width: 600px) {
    .res__amenities { flex-wrap: wrap; justify-content: space-around; gap: 20px 24px; }
    .res__amenity   { flex: 0 0 calc(33% - 16px); }
}

/* ═══════════════════════════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1920px) {
    .hero {
    min-height: unset;
    max-height: 700px;
    }
}
@media (max-width: 1800px) {
    .hero__left {
    flex: 0 0 50%;
    }
}

@media (max-width: 1600px) {
    .hero__residence-logo {
    width: 160px;
    }
}

@media (max-width: 1500px) {
    .programme {
    grid-template-columns: 1fr 320px;
    }
    .form__title {
    font-size: 26px;
    line-height: 32px;
    }
}

@media (max-width: 1400px) {
    .hero {
    max-height: 660px;
    }
    .hero__stats {
    column-gap: 0;
    }
    .programme__main {
    grid-template-columns: 1fr;
    }
    .programme__subtitle {
    margin-bottom: 0;
    }
    .programme__prix-block {
    justify-content: flex-start;
    padding-top:0;
    margin-top: -16px;
    }
    .programme__logos-block {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    }
    
}

@media (max-width: 1200px) {
    :root { --px: 50px; }
    .hero__content { max-width: 390px; }
    .hero__eyebrow, .hero__tagline {
    font-size: 18px;
    }
    .hero__title {
    font-size:clamp(30px, 3.6vw, 61px);
    }
    .hero__title-location {
    font-size:clamp(26px, 2.8vw, 45px)
    }
    .nav__logo img {
    height: 50px;
    }
    .nav__links {
    gap: 40px;
    }
    .nav__links a {
    font-size: 16px;
    }
    .hero__stats {
    grid-template-columns: 20vw 20vw;
    }
}

@media (max-width: 1000px) {
    :root { --px: 40px; }

    .hero__content { max-width: 390px; }
    .hero__stat { padding-left: 10vw; }

    /* Logo réduit */
    .nav__logo img { height: 45px; margin-bottom: 8px; }

    /* CTA réduit */
    .nav__cta { min-width: 0; max-width: 240px; padding: 0 16px; }
    .nav__cta-label { display: none; }

    /* Menu → burger */
    .nav__links { display: none; }
    .nav__burger { display: flex; }

    /* Drawer visible */
    .nav__drawer { display: block; }

    /* Sidebar cachée → popin */
    .programme__sidebar { display: none; }
    .programme { grid-template-columns: 1fr; }

    /* Footer fixe visible */
    .fixed-footer { display: flex; }
    body { padding-bottom: 70px; }

    /* ── Hero — layout empilé (photo en haut, contenu en bas) ── */
    .hero {
    flex-direction: column;
    max-height: none;
    min-height: unset;
    }

    /* Photo remonte en tête de section */
    .hero__right {
    order: -1;
    flex: 0 0 46vw;
    height: 46vw;
    cursor: default;
    }
    .hero__residence-logo { display: none; }

    /* Colonne contenu — pleine largeur */
    .hero__left {
    flex: 1;
    padding: 0 var(--px);
    align-items: flex-start;
    }
    .hero__left-inner { max-width: none; }
    .hero__content { padding: 50px 0 65px; max-width: none;}

    /* Tailles intermédiaires — tablette ~768–1050px */
    .hero__eyebrow { font-size: 17px; letter-spacing: 0.04em; margin-bottom: 4px; }
    .hero__title { font-size: 50px; line-height: 1.15; }
    .hero__title-location { font-size: 38px; line-height: 1.25; margin-bottom: 8px; }
    .hero__tagline { font-size: 16px; line-height: 26px; margin-bottom: 36px; }

    .hero__stats {
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    row-gap: 28px;
    }
    .hero__stat-value { font-size: 46px; }
    .hero__stat-price { font-size: 44px; }
    .hero__stat-label { font-size: 16px; line-height: 2.2; }

    /* Filigranes ajustés */
    .hero__watermark span  { font-size: 300px; bottom: -20px; left: 0; }
    .hero__watermark2 span { font-size: 280px; top: -80px; left: -60px; }
}

/* ── Hero — petit mobile ≤ 650px ─────────────────────────── */
@media (max-width: 650px) {
    :root { --px: 24px; }

    .nav { height:80px; }
    .nav__drawer {top: 80px;}
    /* Nav — icône seule, numéro masqué */
    .nav__cta-text { display: none; }
    .nav__cta { min-width: 0; padding: 0 25px; gap: 0; height: 80px;}
    .nav__cta-icon { font-size: 26px; }

    .hero__right { flex: 0 0 54vw; height: 54vw; }
    .hero__content { padding: 45px 0 55px; }
    
    .hero__eyebrow { font-size: 13px; letter-spacing: 0.05em; margin-bottom: 2px; }
    .hero__title { font-size: 42px; line-height: 1.2; }
    .hero__title-location { font-size: 33px; line-height: 1.3; margin-bottom: 6px; }
    .hero__tagline { font-size: 13px; line-height: 24px; margin-bottom: 28px; }

    .hero__stats { column-gap: 16px; row-gap: 20px;}
    .hero__stat { padding: 0;}
    .hero__stat-value { font-size: 40px; }
    .hero__stat-price { font-size: 40px; }
    .hero__stat-label { font-size: 14px; }

    .hero__watermark span  { font-size: 280px; bottom: -30px; left: -50px; }
    .hero__watermark2 span { font-size: 280px; top: -80px; left: -50px; }
    .labels-band {padding: 0;}
    .labels-band__link, .labels-band__divider { display: none;}
    .labels-band__text {font-size:13px}
    .labels-.labels-band__pill {font-size:12px}
    .programme__logos-block { align-items: center; flex-direction: column; gap: 20px;}
    .programme__co-realisation { text-align: center;}
    .programme__title { font-size: 34px; }

    .res__amenity-label{ font-size: 13px;}
}

/* ── Hero — petit mobile ≤ 450px ─────────────────────────── */
@media (max-width: 420px) {
    .nav__logo img {
        height: 36px;
        margin-bottom: 6px;
    }
}

/* ═══════════════════════════════════════════════════════════
    PHOTO MODAL
═══════════════════════════════════════════════════════════ */
.hero__right,
.res__plan,
.appt__photo,
.loc__plan,
.plans__plan-img {
    cursor: zoom-in;
}

.plans__zoom-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 237, 216, 0.92);
    border: 1.5px solid rgba(63, 96, 129, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    -webkit-tap-highlight-color: transparent;
}
.plans__images-wrap:hover .plans__zoom-btn {
    opacity: 1;
    pointer-events: auto;
}

.photo-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.photo-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.photo-modal__img {
    max-width: 100%;
    max-height: calc(100dvh - 80px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    display: block;
    transform: scale(0.88);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.photo-modal.is-open .photo-modal__img {
    transform: scale(1);
    opacity: 1;
}
@media (max-width: 600px) {
    .photo-modal { padding: 12px; }
    .photo-modal__img { max-height: calc(100dvh - 72px); }
}
.photo-modal__close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.photo-modal__close:hover,
.photo-modal__close:focus-visible {
    background: rgba(255, 255, 255, 0.28);
    outline: none;
}