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

:root {
    --blue: #0012A9;
    --blue-d: #000D85;
    --blue-pale: #EEF0FB;
    --blue-pale2: #D8DBEF;
    --yellow: #FFD314;
    --yellow-d: #E5BC00;
    --yellow-pale: #FFFBE6;
    --white: #fff;
    --cream: #FAFAF7;
    --warm: #F4F3EF;
    --border: #E2E1DC;
    --text: #12122A;
    --text-mid: #4A4A6A;
    --text-soft: #8A8AAA;
    --green: #1A7A5A;
    --green-pale: #EAF7F1;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
}

html {
    scroll-behavior: smooth
}
/*
body {
    font-family: "Raleway", sans-serif;
    background: var(--white);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 72px
}
*/

.title_centre{
    display:none;
}

.container-fluid{
    padding: 0;
}
/* NAV */
/*nav {
    background: var(--blue);
    height: 64px;
    padding: 0 clamp(16px, 4%, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 2px 16px rgba(0, 18, 169, .28)
}

.nbrand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none
}

.nlogo {
    height: 40px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 3px 7px;
    border-radius: 5px
}
*/

.wp-block-button__link {
    background: transparent;
    color: var(--bleu);
    font-size: 14px;
    min-width: 130px;
    box-shadow: none;
    border: 0;
    margin-bottom: 0;
    font-weight: 900;
    padding: 0 15px;
}

.nsep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, .18)
}

.ncity {
    font-size: .7rem;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: .07em;
    text-transform: uppercase
}

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

.ntel {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .2s
}

.ntel:hover {
    color: var(--yellow)
}

.ncta {
    background: var(--yellow);
    color: var(--blue);
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .03em;
    text-decoration: none;
    transition: background .2s
}

.ncta:hover {
    background: var(--yellow-d)
}

@media (max-width: 600px) {
    .ntel, .ncity, .nsep {
        display: none
    }
}

/* STICKY BAR */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: var(--blue);
    border-top: 3px solid var(--yellow);
    padding: 11px clamp(16px, 4%, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 18, 169, .25);
    transform: translateY(0);
    transition: transform .3s ease
}

.sticky-bar-inner  {
    width: 100%;
}

.sticky-bar .wp-block-group__inner-container {
    width: 100%;
}


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

.sticky-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.sticky-bar-logo img{
    height: 30px;
    width: auto;
    background: white;
    padding: 2px 6px;
    border-radius: 4px;
    object-fit: contain
}

.sticky-bar-sep {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, .18)
}

.sticky-bar-text {
    display: flex;
    flex-direction: column
}

.sticky-bar-title {
    font-size: .73rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2
}

.sticky-bar-sub {
    font-size: .62rem;
    color: rgba(255, 255, 255, .5)
}

.sticky-bar-actions {
    display: block;
    text-align: right;
}

.sticky-btn-call a{
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: var(--white);
    padding: 9px 16px;
    border-radius: 8px;
   /* font-family: "Raleway", sans-serif;*/
    font-weight: 900;
    font-size: .8rem;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap
}

.sticky-btn-call a:hover {
    background: rgba(255, 255, 255, .18)
}

.sticky-btn-devis a{
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--yellow);
    color: var(--blue);
    padding: 9px 20px;
    border-radius: 8px;
    font-family: "Raleway", sans-serif;
    font-weight: 900;
    font-size: .82rem;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
    cursor: pointer;
    border: none
}

.sticky-btn-devis a:hover {
    background: var(--yellow-d)
}

@media (max-width: 700px) {
    .sticky-bar-left {
        display: none
    }

    .sticky-bar-actions {
        width: 100%;
        gap: 8px
    }

    .sticky-btn-call a, .sticky-btn-devis a {
        flex: 1;
        justify-content: center
    }
}

/* HERO — MOBILE FIRST: form on top on mobile */
.hero {
    background: var(--blue);
    display: grid;
    grid-template-columns:1fr   ;
   /* min-height: calc(100vh - 64px);*/
    position: relative;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(255, 255, 255, .01) 80px, rgba(255, 255, 255, .01) 81px);
    pointer-events: none
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 70px solid rgba(255, 211, 20, .05);
    pointer-events: none
}

/* On mobile: form comes FIRST (order:-1), pitch comes SECOND */
.hero-form {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 5vh, 56px) clamp(22px, 4%, 52px);
    position: relative;
    z-index: 1;
    box-shadow: -6px 0 36px rgba(0, 18, 169, .14);
    order: 2
}

.hero-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow)
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 6vh, 80px) clamp(24px, 4%, 56px);
    position: relative;
    z-index: 1;
    order: 1
}

.hero-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 4px;
    background: var(--yellow);
    border-radius: 0 3px 3px 0
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns:1fr;
        min-height: auto
    }

    /* CRITICAL: form first on mobile */
    .hero-form {
        order: 1;
        box-shadow: none;
        border-top: 4px solid var(--yellow);
        padding: clamp(24px, 5vw, 40px) clamp(18px, 5%, 36px)
    }

    .hero-form::before {
        display: none
    }

    .hero-left {
        order: 2;
        padding: clamp(28px, 5vw, 48px) clamp(18px, 5%, 36px)
    }

    .hero-left::before {
        display: none
    }
}

/* EYEBROW */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px
}

.eyebrow p::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulse 2.5s ease-in-out infinite;
    content: '';
    display: inline flow-root;
    margin-right: 5px;
}


@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .35;
        transform: scale(1.4)
    }
}

.eyebrow-txt {
    font-size: .68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .1em;
    text-transform: uppercase
}

/* H1 SEO renforcé */
.hero h1 {
    font-size: clamp(1.8rem, 3.6vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.02;
    letter-spacing: -.04em;
    margin-bottom: 8px;
}

.h1-pre {
    font-family: "Lora", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.5em;
    color: rgba(255, 255, 255, .45);
    display: block;
    letter-spacing: -.01em;
    margin-bottom: 4px;
}

.h1-city {
    color: var(--yellow)
}

/* Pascale card */
.gcard {
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--r-md);
    padding: 14px 16px;
    margin: 22px 0 24px;
    display: flex;
    align-items: center;
    gap: 13px;
    /*max-width: 440px*/
}

.gcard figure, .ihead figure {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--yellow)
}

.gcard figure img, .ihead figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center
}

.gname {
    font-size: .88rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px
}

.grole {
    font-size: .73rem;
    color: rgba(255, 255, 255, .48);
    font-weight: 300;
    line-height: 1.4
}

.gquote {
    font-size: .72rem;
    font-style: italic;
    font-family: "Lora", serif;
    color: rgba(255, 255, 255, .48);
    margin-top: 7px;
    padding-left: 8px;
    border-left: 2px solid var(--yellow);
    line-height: 1.5
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px
}

.chip {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 100px;
    font-size: .73rem;
    font-weight: 600;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .8)
}

.chip p {
    margin: 0;
}

.chip-y {
    background: rgba(255, 211, 20, .18);
    border-color: rgba(255, 211, 20, .5);
    color: #7A6000;
    font-weight: 700
}

.hero-rating {
    display: flex;
    align-items: start;
    gap: 8px
}

.stars {
    color: var(--yellow);
    font-size: 15px;
    letter-spacing: 1px
}

.rat-txt {
    font-size: .76rem;
    color: rgba(255, 255, 255, .5)
}

.rat-txt strong {
    color: rgba(255, 255, 255, .85)
}

/* FORM — épuré, champ textarea supprimé */
.form-urgency {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--yellow-pale);
    border: 1px solid rgba(255, 211, 20, .5);
    color: var(--blue);
    font-size: .7rem;
    font-weight: 800;
    padding: 7px 12px;
    border-radius: 6px;
    margin-bottom: 13px;
    letter-spacing: .02em;
    text-transform: uppercase;
    width: fit-content
}

.fh {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -.03em;
    line-height: 1.2;
    margin: 3px 0 !important;
}

.fsub {
    font-size: .77rem;
    color: var(--text-soft);
    margin-bottom: 16px
}

.fsub strong {
    color: var(--green);
    font-weight: 700
}

form label {
    display: block;
    font-size: .64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-mid);
    margin-bottom: 4px
}

input, select {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    font-family: "Raleway", sans-serif;
    font-size: .88rem;
    color: var(--text);
    background: var(--cream);
    outline: none;
    -webkit-appearance: none;
    transition: border-color .2s, background .2s, box-shadow .2s
}

input:checked {
    background: var(--bleu) !important;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 18, 169, .07)
}

.fg {
    margin-bottom: 10px
}

.frow {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px
}


.grecaptcha-badge {
    opacity: 0;
}

@media (max-width: 400px) {
    .frow {
        grid-template-columns:1fr
    }
}

.btn-submit {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 9px;
    font-family: "Raleway", sans-serif;
    font-weight: 900;
    font-size: .93rem;
    cursor: pointer;
    margin-top: 6px;
    transition: background .2s, transform .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.btn-submit:hover {
    background: var(--blue-d);
    transform: translateY(-1px)
}

.ftrustline {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 9px;
    font-size: .69rem;
    color: var(--text-soft)
}

.form-ok {
    display: none;
    text-align: center;
    padding: 20px 0
}

.ok-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-pale);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

/* STRIP */


.strip-cta:hover {
    background: var(--yellow-d);
    transform: translateY(-1px)
}

.strip-close:hover {
    color: rgba(255, 255, 255, .7)
}

.strip.dismissed {
    display: none
}

/* STATS */
.stats {
    background: var(--blue-d);
    padding: 44px clamp(16px, 4%, 60px)
}

.sgrid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .08)
}

@media (max-width: 700px) {
    .sgrid {
        grid-template-columns:repeat(2, 1fr)
    }
}

.sc {
    background: var(--blue-d);
    padding: 26px 18px;
    text-align: center
}

.sc-n {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 6px
}

.sc-l {
    font-size: .74rem;
    color: rgba(255, 255, 255, .45);
    font-weight: 400;
    line-height: 1.4
}

/* HELPERS */
.kicker {
    font-size: .67rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px
}

.kicker::before {
    content: "";
    width: 20px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px
}

h2.sh {
    font-size: clamp(1.8rem, 2.7vw, 2.8rem);
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -.04em;
    line-height: 1.05;
    margin: 10px 0 15px !important;
}

h2.sh em{
    font-weight: 500;
}
.lead-p {
    font-size: .91rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 560px
}

/* GALLERY */
.gallery {
    background: var(--white);
    padding: clamp(48px, 6vw, 76px) clamp(16px, 4%, 60px)
}

.gallery-inner {
    max-width: 1100px;
    margin: 0 auto
}

.gal-grid {
    display: grid;
    grid-template-columns:1.6fr 1fr 1fr;
    grid-template-rows:260px 200px;
    gap: 10px;
    margin-top: 28px
}

.gal-main {
    grid-row: 1/3
}

@media (max-width: 800px) {
    .gal-grid {
        grid-template-columns:1fr 1fr;
        grid-template-rows:200px 160px 160px
    }

    .gal-main {
        grid-row: auto;
        grid-column: 1/3
    }
}

@media (max-width: 500px) {
    .gal-grid {
        grid-template-columns:1fr;
        grid-template-rows:auto
    }

    .gal-main {
        grid-column: auto
    }

    .photo-slot {
        height: 220px
    }
}

.photo-slot {
    border-radius: var(--r-md);
    overflow: hidden;
    display: block;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    position: relative
}

.photo-slot:hover {
    transform: scale(1.015);
    box-shadow: 0 8px 28px rgba(0, 18, 169, .12)
}

.photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s
}

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

.ph-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 18, 169, .72) 0%, transparent 100%);
    padding: 18px 14px 12px;
    opacity: 0;
    transition: opacity .3s
}

.photo-slot:hover .ph-cap {
    opacity: 1
}

.ph-label {
    font-size: .73rem;
    font-weight: 700;
    color: var(--white)
}

/* LIGHTBOX */
#lb {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

#lb img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: var(--r-md);
    object-fit: contain
}

.lb-cap {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .7);
    font-size: .8rem;
    font-weight: 500;
    background: rgba(0, 0, 0, .4);
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap
}

.lb-x {
    position: absolute;
    top: 18px;
    right: 22px;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: .65;
    transition: opacity .2s;
    line-height: 1
}

.lb-x:hover {
    opacity: 1
}

/* HUMAN — section about condensée, sans redondance */
.human {
    background: var(--cream);
    padding: clamp(56px, 7vw, 84px) clamp(16px, 4%, 60px)
}

.human-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    align-items: center;
    margin: auto !important;
}

@media (max-width: 960px) {
    .human-inner {
        grid-template-columns:1fr;
        gap: 36px
    }
}

.mgr-photo {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 480px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.mgr-photo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.38);
    z-index: 0;
}

.mgr-photo img {
    width: 85%;
    height: 90%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mgr-photo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(0, 18, 169, .7) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
}

.mgr-photo-badge {
    z-index: 3
}

/* Pascale badge overlaid on photo */
.mgr-photo-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(0, 18, 169, .88);
    backdrop-filter: blur(8px);
    border-radius: var(--r-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 11px
}

.mgr-badge-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--yellow);
    flex-shrink: 0
}

.mgr-badge-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center
}

.mgr-badge-name {
    font-size: .85rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1px
}

.mgr-badge-role {
    font-size: .7rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 300
}

/* Rating stars on badge */
.mgr-badge-stars {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px
}

.mgr-badge-stars-row {
    color: var(--yellow);
    font-size: 12px;
    letter-spacing: 1px
}

.mgr-badge-stars-txt {
    font-size: .65rem;
    color: rgba(255, 255, 255, .5);
    white-space: nowrap
}

.human-right .kicker {
    margin-bottom: 12px
}

.human-right p.lead-p {
    margin-bottom: 20px
}

.story-pts {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.spt {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.spt-ic {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.spt-ic svg {
    width: 18px;
    height: 18px;
    color: var(--yellow)
}

.spt-body h4 {
    font-size: .86rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 2px
}

.spt-body p {
    font-size: .78rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.6
}

/* SIZES */
.sizes {
    background: var(--blue);
    padding: clamp(56px, 6vw, 76px) clamp(16px, 4%, 60px)
}

.sizes-inner {
    max-width: 1100px;
    margin: 0 auto
}

.sizes .kicker {
    color: rgba(255, 211, 20, .8)
}

.sizes .kicker::before {
    background: var(--yellow)
}

.sizes h2.sh {
    color: var(--white);
    margin-bottom: 8px
}

.sizes-sub {
    color: rgba(255, 255, 255, .42);
    font-size: .88rem;
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 32px
}

.szgrid {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 9px
}

@media (max-width: 900px) {
    .szgrid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 500px) {
    .szgrid {
        grid-template-columns:repeat(2, 1fr)
    }
}

.szcard {
    background: rgba(255, 255, 255, .055);
    border: 1.5px solid rgba(255, 255, 255, .09);
    border-radius: var(--r-md);
    padding: 14px 12px;
    text-align: center;
    cursor: pointer;
    transition: all .22s;
    position: relative;
    overflow: hidden
}

.szcard::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform .22s
}

.szcard:hover, .szcard.sel {
    background: rgba(255, 211, 20, .1);
    border-color: rgba(255, 211, 20, .4)
}

.szcard:hover::after, .szcard.sel::after {
    transform: scaleX(1)
}

.sz-t {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 1px
}

.sz-m {
    font-size: .68rem;
    color: rgba(255, 255, 255, .33);
    margin-bottom: 6px
}

.sz-illus {
    width: 100%;
    height: 88px;
    margin-bottom: 6px
}

.sz-bar {
    width: 18px;
    height: 2px;
    background: var(--yellow);
    margin: 5px auto 7px;
    border-radius: 2px
}

.sz-ex {
    font-size: .67rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.45;
    font-weight: 300;
    margin-bottom: 10px
}

.sz-btn.wp-block-button {
    display: block;
    margin:auto;
}
.sz-btn a{
    display: block;
    background: var(--yellow);
    color: var(--blue);
    font-weight: 800;
    font-size: .69rem;
    padding: 7px 8px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: .02em;
    transition: background .2s;

}

.sz-btn a:hover {
    background: var(--yellow-d)
}

/* PROCESS */
.process {
    background: var(--white);
    padding: clamp(56px, 6vw, 76px) clamp(16px, 4%, 60px)
}

.process-inner {
    max-width: 960px;
    margin: 0 auto
}

.steps {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 36px
}

.steps::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border)
}

@media (max-width: 700px) {
    .steps {
        grid-template-columns:1fr 1fr;
        gap: 24px
    }

    .steps::before {
        display: none
    }
}

@media (max-width: 380px) {
    .steps {
        grid-template-columns:1fr
    }
}

.step {
    text-align: center;
    padding: 0 8px;
    position: relative;
    z-index: 1
}

.step-n {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--yellow);
    margin: 0 auto 14px;
    border: 4px solid var(--white);
    outline: 2px solid var(--blue)
}

.step h3 {
    font-size: .83rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 5px
}

.step p {
    font-size: .75rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.6
}

/* REVIEWS */
.reviews {
    background: var(--warm);
    padding: clamp(56px, 6vw, 76px) clamp(16px, 4%, 60px)
}
.reviews-inner {
    max-width: 1100px;
    margin: 0 auto
}

.rev-meta {
    font-size: .84rem;
    color: var(--text-soft);
    margin-bottom: 28px
}

.rev-meta strong {
    color: var(--text-mid)
}

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

@media (max-width: 800px) {
    .rg {
        grid-template-columns:1fr
    }
}

.rcard {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 20px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column
}

.rstars {
    color: var(--yellow);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px
}

.rtxt {
    font-family: "Lora", serif;
    font-style: italic;
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 13px;
}

.rfoot {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 11px;
    border-top: 1px solid var(--border)
}

.rav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .64rem;
    font-weight: 800;
    color: var(--blue);
    flex-shrink: 0
}

.rname {
    font-size: .79rem;
    font-weight: 800;
    color: var(--blue)
}

.rmeta {
    font-size: .69rem;
    color: var(--text-soft)
}

/* communes section removed */
.commune-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0
}

.commune-name {
    font-size: .82rem;
    font-weight: 800;
    color: var(--blue)
}

.commune-info {
    font-size: .7rem;
    color: var(--text-soft)
}

/* SEO */
.seo {
    background: var(--white);
    padding: clamp(56px, 6vw, 76px) clamp(16px, 4%, 60px)
}

.seo-inner {
    max-width: 880px;
    margin: 0 auto
}

.seo .wp-block-group__inner-container.is-layout-flow.wp-block-group-is-layout-flow {
    max-width: 1060px;
    margin: auto;
}


.seo-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 32px;
    margin-top: 32px
}

@media (max-width: 700px) {
    .seo-grid {
        grid-template-columns:1fr
    }
}

.seo-block h3 {
    font-size: .98rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
    letter-spacing: -.02em
}

.seo-block p {
    font-size: .83rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 8px
}

.seo-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.seo-block li {
    font-size: .8rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.6;
    padding-left: 14px;
    position: relative
}

.seo-block li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 700;
    font-size: .8rem
}

/* LOCAL */
.local {
    background: var(--cream);
    padding: clamp(56px, 6vw, 76px) clamp(16px, 4%, 60px)
}

.local-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 380px;
    gap: 52px;
    align-items: start;
    padding-bottom:50px;
}

@media (max-width: 900px) {
    .local-inner {
        grid-template-columns:1fr;
        gap: 32px
    }
}

.local-lead {
    font-size: .89rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 22px;
}

.perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width:100%;
}

.perk {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 11px 13px;
    background: var(--blue-pale);
    border-radius: 9px;
    border-left: 3px solid var(--blue);
    width: 100%;
}

.perk-ic {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--blue);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center
}

.perk-ic svg {
    width: 14px;
    height: 14px;
    color: var(--yellow)
}

.perk-body h4 {
    font-size: .8rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 1px
}

.perk-body p {
    font-size: .72rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.5
}

.icard {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden
}

.ihead {
    background: var(--blue);
    padding: 15px 16px;
    display: flex;
    align-items: center;
    gap: 11px
}

.i-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--yellow);
    flex-shrink: 0
}

.i-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center
}

.i-nm {
    font-size: .84rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1px
}

.i-rl {
    font-size: .7rem;
    color: rgba(255, 255, 255, .42);
    font-weight: 300
}

.ibody {
    padding: 15px 16px
}

.irow {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 10px;
    font-size: .79rem;
    color: var(--text-mid);
    line-height: 1.45
}

.irow svg {
    width: 14px;
    height: 14px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 1px
}

.irow strong {
    color: var(--text);
    font-weight: 700;
    display: block
}

.irow a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none
}

.irow a:hover {
    text-decoration: underline
}

.htab {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 4px 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border)
}

.hrow {
    font-size: .74rem
}

.hd {
    color: var(--text-soft)
}

.ht {
    font-weight: 700;
    color: var(--text)
}

.opill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--green-pale);
    color: var(--green);
    font-size: .64rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    margin-top: 9px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.opill::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%
}

.mapbtn {
    display: block;
    margin-top: 9px;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 7px;
    padding: 9px;
    text-align: center;
    font-size: .76rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    transition: all .2s
}

.mapbtn:hover {
    background: var(--blue-pale);
    border-color: var(--blue)
}

/* FAQ */
.faq {
    background: var(--white);
    padding: clamp(56px, 6vw, 76px) clamp(16px, 4%, 60px)
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
    align-items: center !important;
}

.faq-inner .wp-block-group {
    width: 100%;
}

.faq-head {
    text-align: center;
    margin-bottom: 28px
}

.faq-head .kicker {
    justify-content: center
}

.faq-head p {
    font-size: .85rem;
    color: var(--text-soft);
    font-weight: 300;
    margin-top: 6px
}

.fi {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 9px;
    margin-bottom: 6px;
    overflow: hidden;
    transition: border-color .2s;
    width: 100%;
}

.fi.open {
    border-color: var(--blue)
}

.fi summary {
    padding: 14px 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    font-size: .86rem;
    font-weight: 700;
    color: var(--blue);
    transition: background .2s;
    width: 100%;
}


.wp-block-details summary::after{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    transition: background .2s, transform .25s, color .2s;
    top: calc(50% - 11px);
    content:'+';
}

.fi p{
    padding: 0 15px;
}

.ftog {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    transition: background .2s, transform .25s, color .2s
}

.fi.open .ftog {
    background: var(--blue);
    color: var(--yellow);
    transform: rotate(45deg)
}

.fa {
    max-height: 0;
    overflow: hidden;
    padding: 0 17px;
    font-size: .82rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.8;
    transition: max-height .35s ease, padding .2s
}

.fi.open .fa {
    max-height: 300px;
    padding: 0 17px 15px
}

/* FINAL CTA */
.fcta {
    background: var(--blue);
    padding: clamp(60px, 8vw, 90px) clamp(16px, 4%, 60px);
    text-align: center;
    position: relative;
    overflow: hidden
}

.fcta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow)
}

.fcta::after {
    content: "";
    position: absolute;
    bottom: -140px;
    right: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 68px solid rgba(255, 211, 20, .04);
    pointer-events: none
}

.fcta-inner {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.fcta h2 {
    font-size: clamp(1.7rem, 3.8vw, 2.9rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.04em;
    line-height: 1.05;
    margin-bottom: 11px
}

.fcta h2 em {
    font-style: italic;
    font-family: "Lora", serif;
    color: var(--yellow);
    font-weight: 600
}

.fcta p {
    font-size: .91rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 30px
}

.cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-y {
    background: var(--yellow);
    color: var(--blue);
    padding: 14px 27px;
    border-radius: 8px;
    font-weight: 900;
    font-size: .91rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s
}

.btn-y:hover {
    background: var(--yellow-d);
    transform: translateY(-2px)
}

.btn-ghost a{
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .28);
    padding: 14px 27px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .91rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color .2s
}

.btn-ghost a:hover {
    border-color: rgba(255, 255, 255, .6)
}

@media (max-width: 500px) {
    .cta-row {
        flex-direction: column;
        align-items: stretch
    }

    .btn-y, .btn-ghost {
        justify-content: center
    }
}

/* FOOTER */
/*footer {
    background: #00094A;
    padding: 30px clamp(16px, 4%, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px
}

.fbrand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none
}

.fbrand img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1)
}

.fcity {
    font-size: .67rem;
    font-weight: 800;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: .07em
}

.flinks {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.flinks a {
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    font-size: .71rem;
    transition: color .2s
}

.flinks a:hover {
    color: var(--yellow)
}
*/
/* ── PROMO BAR ── */
.promo-bar {
    background: #FFD314;
    padding: 10px clamp(16px, 4%, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-bottom: 3px solid #E5BC00;
    width: 100%;
    display: none;
}

.promo-bar .wp-block-group__inner-container {
    width: 100%;
}

.promo-bar.dismissed {
    display: none
}

.promo-bar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0
}

.promo-bar-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0012A9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promo-bar-icon svg {
    width: 18px;
    height: 18px
}

.promo-bar-copy {
    min-width: 0
}

.promo-bar-main {
    font-size: .86rem;
    font-weight: 900;
    color: #0012A9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01em;
}

.promo-bar-sub {
    font-size: .72rem;
    font-weight: 500;
    color: rgba(0, 18, 169, .55);
    margin-top: 1px;
    white-space: nowrap;
}

.promo-bar-right {
    display: initial;
    gap: 10px;
    flex-shrink: 0;
}

.promo-bar-cta {
    background: #0012A9;
    color: #FFD314;
    font-size: .78rem;
    font-weight: 900;
    padding: 9px 22px;
    border-radius: 7px;
    cursor: pointer;
    border: 2px solid #000D85;
    font-family: "Raleway", sans-serif;
    letter-spacing: .03em;
    white-space: nowrap;
    transition: background .15s, transform .15s;
    box-shadow: 0 3px 0 #000870;
}

.promo-bar-cta:hover {
    background: #000D85;
    transform: translateY(-1px)
}

.promo-bar-cta:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #000870
}

.promo-bar-close a {
    background: none;
    border: none;
    color: rgba(0, 18, 169, .3);
    font-size: 15px;
    cursor: pointer;
    padding: 5px 6px;
    line-height: 1;
    transition: color .2s;
    flex-shrink: 0;
    font-family: inherit;
    box-shadow: none;
}

.promo-bar-close a:hover {
    color: rgba(0, 18, 169, .65)
}

@media (max-width: 640px) {
    .promo-bar-sub {
        display: none
    }

    .promo-bar-cta {
        padding: 8px 16px;
        font-size: .74rem
    }
}

@media (max-width: 420px) {
    .promo-bar-icon {
        display: none
    }
}



