
:root {
    --bg: #f6f5f0;
    --surface: #ffffff;
    --surface-2: #efede5;
    --ink: #0F1C7D;
    --ink-2: #2a3673;
    --muted: #6e7894;
    --line: #e5e2d6;
    --brand: #0F1C7D;
    --accent: #FFC823;
    --accent-ink: #0F1C7D;
    --good: #1f8a5b;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 0 rgba(12, 24, 48, .04), 0 1px 2px rgba(12, 24, 48, .06);
    --shadow: 0 1px 2px rgba(12, 24, 48, .05), 0 8px 24px rgba(12, 24, 48, .06);
    --shadow-lg: 0 24px 60px -20px rgba(12, 24, 48, .18);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.wrap {
    max-width: 1240px;
    margin: 0 auto !important;
    padding: 0 32px;
}


.title_centre h1 {
    display: none;
}

@media (max-width: 720px) {
    .wrap {
        padding: 0 20px;
    }
}

/* ── HEADER ── */
.content .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in oklab, var(--bg) 92%, transparent);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--line);
}

.nav__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 72px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.logo__mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.06em;
    box-shadow: inset 0 0 0 3px var(--accent);
}

.nav__links {
    display: flex;
    gap: 24px;
    margin-left: 12px;
}

.nav__links a {
    font-size: 14px;
    color: var(--ink-2);
    font-weight: 500;
    padding: 8px 0;
}

.nav__links a:hover {
    color: var(--ink);
}

.nav__links a.active {
    color: var(--ink);
    background: linear-gradient(180deg, transparent 78%, var(--accent) 78%, var(--accent) 100%, transparent 100%);
}

.nav__cta {
    margin-left: auto;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    border: 0;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08), inset 0 -2px 0 rgba(0, 0, 0, .08);
}

.btn--primary:hover {
    transform: translateY(-1px);
}

.btn--brand {
    background: var(--brand);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--line);
}

.btn--ghost:hover {
    background: var(--surface);
}

.btn--lg {
    padding: 16px 28px;
    font-size: 15px;
    border-radius: 12px;
}

/* ── ADVANTAGES BAR ── */
.advbar {
    background: var(--ink);
    color: #fff;
    border-bottom: 1px solid var(--ink);
}

.advbar__track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 14px 0;
}

.advbar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    font-size: 13px;
    line-height: 1.3;
    color: rgba(255, 255, 255, .92);
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.advbar__item:last-child {
    border-right: 0;
}

.advbar__item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.advbar__item b {
    color: #fff;
    font-weight: 600;
}

.advbar__item small {
    display: block;
    color: rgba(255, 255, 255, .6);
    font-size: 11.5px;
}

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

    .advbar__item:nth-child(2) {
        border-right: 0;
    }

    .advbar__item:nth-child(5) {
        grid-column: 1/-1;
        border-top: 1px solid rgba(255, 255, 255, .12);
        padding-top: 12px;
        margin-top: 4px;
        justify-content: center;
    }
}

/* ── HERO ── */
.hero {
    padding: 36px 0 22px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: start;
}

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

    .hero {
        padding: 40px 0 48px;
    }
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 600;
    background: color-mix(in oklab, var(--brand) 8%, transparent);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero__eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--good);
    box-shadow: 0 0 0 4px color-mix(in oklab, var(--good) 25%, transparent);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    font-weight: 800;
    color: var(--ink);
    text-wrap: balance;
}

.hero h1 .hl {
    background: linear-gradient(180deg, transparent 62%, var(--accent) 62%, var(--accent) 92%, transparent 92%);
    padding: 0 4px;
}

.hero p.lede {
    font-size: 18px;
    color: var(--ink-2);
    margin: 0 0 24px;
    max-width: 56ch;
    line-height: 1.55;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13.5px;
}

.hero__trust b {
    color: var(--ink);
    font-weight: 600;
}

.hero__trust .div {
    width: 1px;
    height: 16px;
    background: var(--line);
}

/* Quick facts grid (V2 specific) */
.hero__quickfacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.qf {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
}

.qf > svg {
    color: var(--brand);
    flex-shrink: 0;
}

.qf b {
    display: block;
    color: var(--ink);
    font-weight: 600;
}

.qf small {
    color: var(--muted);
    font-size: 12px;
}

.wp-block-separator {
    border: none;
    border-top: 1px solid;
}

/* Quote form card (V2 specific) */
.quote {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--brand));
}

.quote__head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
}

.quote__pre {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.quote__head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
    max-width: 18ch;
}

.quote__steps {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
}

.qs {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--muted);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    transition: all .2s;
}

.qs--on {
    background: var(--brand);
    color: var(--accent);
}

.qs__line {
    width: 28px;
    height: 2px;
    background: var(--line);
}

.quote__body {
    display: flex;
    flex-direction: column;
}

.quote__lbl {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 8px;
}

.quote__input {
    background: var(--surface-2);
    border: 1.5px solid transparent;
    padding: 12px 14px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 10px;
    width: 100%;
    transition: all .15s;
}

.quote__input:focus {
    outline: none;
    border-color: var(--brand);
    background: var(--surface);
}

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

.qr {
    background: var(--surface-2);
    border: 1.5px solid transparent;
    padding: 10px 8px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    cursor: pointer;
    text-align: center;
    transition: all .15s;
}

.qr:hover {
    background: color-mix(in oklab, var(--surface-2) 70%, var(--brand));
}

.qr--on {
    background: var(--brand);
    color: var(--accent);
    border-color: var(--brand);
}

.quote__recap {
    background: color-mix(in oklab, var(--accent) 22%, transparent);
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quote__recap span {
    font-size: 11px;
    color: var(--ink-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.quote__recap b {
    font-size: 14px;
    color: var(--brand);
    font-weight: 700;
}

.quote__foot {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--muted);
}

.quote__foot svg {
    color: var(--good);
}

.quote__success {
    text-align: center;
    padding: 24px 8px;
}

.quote__check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--good);
    color: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
}

.quote__success h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--brand);
}

.quote__success p {
    color: var(--ink-2);
    font-size: 14px;
    max-width: 38ch;
    margin: 0 auto 18px;
    line-height: 1.55;
}

/* Shared size selector styles (used inside quote form) */
.sizes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-bottom: 18px;
}

.size {
    background: var(--surface-2);
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all .15s ease;
    font-family: var(--font-sans);
}

.size:hover {
    background: color-mix(in oklab, var(--surface-2) 70%, var(--brand));
}

.size--active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.size--active .size__name {
    color: var(--accent);
}

.size__name {
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.01em;
    display: block;
}

.size__sqm {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
    font-family: var(--font-mono);
    font-weight: 500;
}

.size--active .size__sqm {
    color: rgba(255, 255, 255, .7);
}

.size-detail {
    background: var(--surface-2);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
}

.size-detail__title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
}

.size-detail__desc {
    color: var(--ink-2);
    font-size: 13.5px;
    margin: 0;
}

.size-detail__price {
    text-align: right;
}

.size-detail__price img{
    max-width: 150px;
}
.size-detail__price .from {
    font-size: 11px;
    color: var(--muted);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.size-detail__price .amount {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
}

.size-detail__price .per {
    font-size: 12px;
    color: var(--muted);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 999px;
    background: color-mix(in oklab, var(--good) 12%, transparent);
    color: var(--good);
    font-size: 11.5px;
    font-weight: 600;
}


h2 {
    margin: 0.5rem 0 0.5rem !important;
}

/* ── SECTIONS ── */
.sec {
    padding: 30px 0;
}

.sec--tight {
    padding: 25px 0;
}

.sec--alt {
    background: var(--surface);
}

.sec__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.sec__head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.sec__title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    font-weight: 700;
    text-wrap: balance;
}

.sec__sub {
    color: var(--muted);
    margin: 12px 0 0;
    font-size: 16px;
    max-width: 52ch;
}

/* ── BOX GRID ── */
.boxgrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

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

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


/* HUMAN — section about condensée, sans redondance */
.human {
    background: var(--surface);
    padding: clamp(30px, 5vw, 36px) 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: 10;
}

.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(--bleu);
    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(--bleu);
    margin-bottom: 2px
}

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

.boxcard {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .15s ease, box-shadow .2s ease, border-color .15s ease;
}

.boxcard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: color-mix(in oklab, var(--brand) 30%, var(--line));
}

.boxcard__visual {
    aspect-ratio: 4/5;
    background: var(--surface-2);
    position: relative;
    overflow: hidden;
}

.boxcard__visual .ph {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, color-mix(in oklab, var(--ink) 4%, transparent) 0 8px, transparent 8px 16px);
}

.boxcard__visual .scale {
    position: absolute;
    inset: auto 12px 12px 12px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 10px;
}

.boxcard__visual .draw {
    position: absolute;
    inset: 18% 14% 24% 14%;
    border: 1.5px solid var(--ink);
    background: var(--surface);
    border-radius: 4px;
    box-shadow: 8px 10px 0 -2px color-mix(in oklab, var(--brand) 25%, transparent);
}

.boxcard__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 6px;
}

.boxcard__pop {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
}

.boxcard__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.boxcard__title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.boxcard__dim {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 10px;
}

.boxcard__desc {
    font-size: 13px;
    color: var(--ink-2);
    margin: 0 0 14px;
    flex: 1;
    line-height: 1.5;
}

.boxcard__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.boxcard__price {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.boxcard__price small {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.boxcard__cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .15s;
}

.boxcard__cta:hover {
    gap: 8px;
}

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

.faq {
    background: var(--white);
    padding: 0 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 #e2e1dc;
    border-radius: 9px;
    margin-bottom: 6px;
    overflow: hidden;
    transition: border-color .2s;
    width: 100%;
}

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

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

details p {
    font-size: 14px;
}

.wp-block-details summary::after{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eef0fb;
    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: #eef0fb;
    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
}


/* ── FAQ STRIP ── */
.faqstrip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}

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

@media (max-width: 540px) {
    .faqstrip {
        grid-template-columns: 1fr;
    }
}

.faqcell {
    background: var(--surface);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faqcell__q {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faqcell__q::before {
    content: "Q";
    font-family: var(--font-mono);
    font-size: 11px;
    background: var(--ink);
    color: var(--accent);
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-grid;
    place-items: center;
    font-weight: 700;
}

.faqcell__a {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin: 0;
}

.faqcell__detail {
    font-size: 13px;
    color: var(--ink-2);
    margin: 4px 0 0;
}

/* ── CAROUSEL ── */
.carousel {
    position: relative;
    margin-top: 32px;
}

.carousel__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 4px 24px;
    margin: -4px -4px 0;
    scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.product {
    flex: 0 0 calc((100% - 40px) / 3);
    scroll-snap-align: start;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 360px;
}

@media (max-width: 1024px) {
    .product {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (max-width: 720px) {
    .product {
        flex: 0 0 86%;
    }
}

.carousel__nav {
    display: flex;
    gap: 8px;
}

.carousel__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--ink);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 18px;
    transition: all .15s;
}

.carousel__btn:hover {
    background: var(--ink);
    color: var(--accent);
    border-color: var(--ink);
}

.carousel__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}


.wp-block-cb-carousel-v2 .cb-pagination.swiper-pagination-horizontal {
    bottom: -3px;

}

.carousel__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    border: 0;
    cursor: pointer;
    padding: 0;
    transition: all .2s;
}

.carousel__dot--active {
    background: var(--brand);
    width: 24px;
    border-radius: 4px;
}

.product__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product__tag .badge24 {
    background: var(--ink);
    color: var(--accent);
    font-family: var(--font-mono);
    padding: 2px 7px;
    border-radius: 4px;
}

.product__tag .badge-h {
    background: color-mix(in oklab, var(--brand) 14%, transparent);
    color: var(--brand);
    padding: 2px 8px;
    border-radius: 4px;
}

.product__title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.1;
}

.product__desc {
    color: var(--ink-2);
    font-size: 14.5px;
    margin: 0;
    line-height: 1.55;
}

.product__specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 14px;
    margin-top: 4px;
    border-top: 1px dashed var(--line);
}

.product__spec {
    font-size: 12.5px;
    color: var(--muted);
    display: flex;
    flex-direction: column;
}

.product__spec b {
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
}

/* ── TRUST ── */
.trust {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

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

.trust__photo {
    aspect-ratio: 4/5;
    background: linear-gradient(180deg, transparent 40%, var(--brand) 100%), repeating-linear-gradient(135deg, var(--surface-2) 0 12px, color-mix(in oklab, var(--surface-2) 70%, var(--brand)) 12px 13px);
    border-radius: 14px;
    position: relative;
    max-width: 380px;
}

/*.trust__photo::after {
    content: "Photo · Pascal · Gérant";
    position: absolute;
    left: 14px;
    bottom: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, .85);
    background: rgba(0, 0, 0, .3);
    padding: 4px 8px;
    border-radius: 4px;
}

.trust__caption {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13.5px;
    max-width: 380px;
}*/

.trust__title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    font-weight: 800;
    color: var(--ink);
    text-wrap: balance;
}

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

.trust__lede {
    color: var(--ink-2);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.trust__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.trust__item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
}

.trust__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--brand);
    color: var(--accent);
    display: grid;
    place-items: center;
}

.trust__t {
    font-weight: 700;
    font-size: 15px;
    color: var(--brand);
    margin: 0 0 2px;
}

.trust__d {
    font-size: 13.5px;
    color: var(--ink-2);
    margin: 0;
    line-height: 1.5;
}

/* ── STEPS ── */
.steps {
    position: relative;
    margin-top: 48px;
}

.steps__line {
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--line);
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

@media (max-width: 720px) {
    .steps__grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps__line {
        display: none;
    }
}

.step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand);
    border: 2px solid var(--brand);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 22px;
}

.step__t {
    font-weight: 700;
    color: var(--brand);
    margin: 6px 0 0;
    font-size: 15px;
}

.step__d {
    color: var(--ink-2);
    font-size: 13.5px;
    margin: 0;
    max-width: 24ch;
}

/* ── ZONE MAP ── */
.zonewrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 980px) {
    .zonewrap {
        grid-template-columns: 1fr;
    }
}

.zonelist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0 0;
}

.zoneitem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 14px;
    min-width: 240px;
}

.zoneitem b {
    font-weight: 600;
}

.zoneitem__time {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--brand);
    font-weight: 600;
}


.single #map0 {
    aspect-ratio: 6/6;
}


.map {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map svg {
    width: 100%;
    height: 100%;
    display: block;
}

.map__pin {
    position: absolute;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.map__pin--center {
    z-index: 3;
}

.map__pin .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand) 25%, transparent), 0 2px 6px rgba(0, 0, 0, .2);
}

.map__pin--center .dot {
    width: 18px;
    height: 18px;
    background: var(--accent);
    box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 35%, transparent), 0 2px 8px rgba(0, 0, 0, .25);
}

.map__pin .label {
    margin-top: 6px;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.map__pin--center .label {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

/* ── REVIEWS ── */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 880px) {
    .reviews {
        grid-template-columns: 1fr;
    }
}

.review {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review__stars {
    color: #f5b800;
    letter-spacing: 1px;
    font-size: 14px;
}

.review__text {
    margin: 0;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.55;
}

.review__who {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.review__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-2);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--ink-2);
}

.review__name {
    font-weight: 600;
    font-size: 13px;
}

.review__date {
    color: var(--muted);
    font-size: 12px;
}

/* ── ACCESS ── */
.access {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 880px) {
    .access {
        grid-template-columns: 1fr;
    }
}

.accesscard {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.accesscard h3 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14px;
}

.hour-row:last-child {
    border-bottom: 0;
}

.hour-row b {
    font-weight: 600;
}

.hour-row__time {
    font-family: var(--font-mono);
    color: var(--ink-2);
}

.hour-row--closed .hour-row__time {
    color: var(--muted);
}

.hour-row--today {
    background: color-mix(in oklab, var(--accent) 18%, transparent);
    margin: 0 -12px;
    padding: 10px 12px;
    border-radius: 6px;
    border-bottom: 0;
}

.accesslist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accesslist__item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 14px;
    align-items: start;
}

.accesslist__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: color-mix(in oklab, var(--brand) 12%, transparent);
    color: var(--brand);
    display: grid;
    place-items: center;
}

.accesslist__t {
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 2px;
}

.accesslist__d {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

/* ── FAQ ── */
.faq {
    max-width: 1100px;
    margin: 0 auto;
}

.faqitem {
    border-bottom: 1px solid var(--line);
    padding: 10px 0 0;
}

.faqitem summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 16.5px;
    color: var(--ink);
}

.faqitem summary::-webkit-details-marker {
    display: none;
}

.faqitem summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface-2);
    display: grid;
    place-items: center;
    font-size: 18px;
    color: var(--ink-2);
    flex-shrink: 0;
}

.wp-block-details summary::after {
    top: calc(50% - 10px);
}


.faqitem[open] summary::after {
    content: "−";
    background: var(--ink);
    color: var(--accent);
}

.faqitem__body {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 12px 0 0;
    padding-right: 44px;
}

/* ── CTA FINAL ── */
.ctafinal {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ctafinal::before {
    content: "";
    position: absolute;
    inset: -40% -10% auto auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
    opacity: 0.18;
}

.ctafinal h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    color: #fff;
    font-weight: 700;
}

.ctafinal p {
    color: rgba(255, 255, 255, .75);
    font-size: 17px;
    max-width: 50ch;
    margin: 0 auto 28px;
}

.ctafinal__btns {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── FOOTER ── */
.foot {
    padding: 56px 0 32px;
    border-top: 1px solid var(--line);
    margin-top: 80px;
}

.foot__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

@media (max-width: 880px) {
    .foot__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.foot h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin: 0 0 14px;
    font-weight: 600;
}

.foot ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.foot ul a {
    color: var(--ink-2);
}

.foot ul a:hover {
    color: var(--ink);
}

.foot__bottom {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 640px) {
    .hero-col-1 {
        order: 2;
    }

    .hero-col-2 {
        order: 1;
    }

    .hero__grid {
        margin: 0 !important;
        padding: 0;
    }

    .quote__steps {
        gap: 0;
        padding: 12px 0px;
    }

}
