/* =====================================================================
   INSTITUT APARA — Landing Page (éditorial premium)
   Couleurs & polices = charte officielle Apara.
   Tout est piloté par les variables CSS de :root.
   ===================================================================== */

/* ---------- IvyJournal (titres — charte Apara officielle) ---------- */
@font-face {
    font-family: 'Ivy Journal';
    src: url('assets/fonts/IvyJournal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Ivy Journal';
    src: url('assets/fonts/IvyJournal-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Ivy Journal';
    src: url('assets/fonts/IvyJournal-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Ivy Journal';
    src: url('assets/fonts/IvyJournal-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---------- Lexend Mega (texte capitales — charte Apara) ---------- */
@font-face {
    font-family: 'Lexend Mega';
    src: url('assets/fonts/LexendMega-VariableFont_wght.ttf') format('truetype-variations'),
         url('assets/fonts/LexendMega-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* ===== Couleurs (charte officielle Apara) ===== */
    --c-accent:      #470b0b;
    --c-accent-h:    #6b1414;
    --c-bg:          #f6ede3;
    --c-accent-soft: #f3e8dc;
    --c-white:       #ffffff;
    --c-text:        #211a17;
    --c-text-2:      #5c4f47;
    --c-line:        #C9B9A8;
    --c-placeholder: #D4CBC0;
    --c-whatsapp:    #25D366;
    --c-bg-rgb: 246, 237, 227;

    /* ===== Polices (charte officielle Apara) =====
       --font-display : Ivy Journal (titres & mots importants, auto-hébergée).
       --font-text    : Lexend (corps de texte, Google Fonts).
       --font-label   : Lexend Mega (labels/boutons capitales, auto-hébergée). */
    --font-display: 'Ivy Journal', 'Playfair Display', Georgia, serif;
    --font-text:    'Lexend', system-ui, sans-serif;
    --font-label:   'Lexend Mega', 'Lexend', system-ui, sans-serif;

    /* Layout */
    --max-width: 1240px;
    --pad-x: 24px;
    --header-h: 64px;
    --section-pad: 72px;
}

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

/* Focus : pas d'outline bleu navigateur, focus bordeaux uniquement au clavier */
button, a, input, textarea, select { outline: none; }
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--c-accent);
    outline-offset: 2px;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
sup { font-size: 0.55em; vertical-align: super; line-height: 0; }

/* ===================== LAYOUT ===================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.container--narrow { max-width: 700px; }

/* ===================== TYPOGRAPHIE COMMUNE ===================== */
.label {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-accent);
    margin-bottom: 16px;
}
.label--center { text-align: center; margin-bottom: 14px; }

.section__head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.section__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.12;
    color: var(--c-accent);
    letter-spacing: -0.01em;
    text-wrap: balance;
}
.section__title--center { text-align: center; }

.section__lede {
    font-size: 15px;
    color: var(--c-text-2);
    line-height: 1.65;
    margin-top: 14px;
    text-wrap: balance;
}

/* Diamants déco */
.diamond {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--c-accent);
    transform: rotate(45deg);
    margin: 0 auto 22px;
}

/* ===================== BOUTONS ===================== */
.btn {
    --pad-y: 14px;
    --pad-x: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--pad-y) var(--pad-x);
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    white-space: nowrap;
}
.btn svg { transition: transform 0.25s ease; flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
}
.btn--primary:hover { background: var(--c-accent-h); border-color: var(--c-accent-h); }

.btn--outline {
    background: transparent;
    color: var(--c-accent);
    border-color: var(--c-accent);
}
.btn--outline:hover { background: var(--c-accent); color: #fff; }

.btn--light {
    background: #fff;
    color: var(--c-accent);
    border-color: #fff;
}
.btn--light:hover { background: var(--c-bg); border-color: var(--c-bg); }

.btn--pill {
    border-radius: 100px;
    padding: 10px 18px;
    font-size: 11.5px;
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
}
.btn--pill:hover { background: var(--c-accent-h); border-color: var(--c-accent-h); }

.btn--xl { --pad-y: 17px; --pad-x: 32px; font-size: 13px; }

/* ===================== BANDEAU OFFRE LANCEMENT ===================== */
.launch-banner {
    background: var(--c-accent);
    color: #fff;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1002;
    border-bottom: 1px solid rgba(255, 235, 220, 0.15);
    --launch-h: 38px;
    min-height: var(--launch-h);
}
.launch-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px var(--pad-x);
    font-size: 12px;
    flex-wrap: nowrap;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    height: var(--launch-h);
}
.launch-banner__tag--desk,
.launch-banner__sep--desk,
.launch-banner__detail--desk { display: none; }
@media (min-width: 768px) {
    .launch-banner__tag--desk,
    .launch-banner__sep--desk,
    .launch-banner__detail--desk { display: inline; }
}
.launch-banner__tag {
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 235, 220, 0.16);
    padding: 4px 9px;
    color: var(--c-bg);
}
.launch-banner__text {
    font-size: 12.5px;
    color: rgba(255, 235, 220, 0.95);
    line-height: 1.4;
}
.launch-banner__text strong { color: #fff; font-weight: 700; }
.launch-banner__cta {
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}
.launch-banner__cta:hover { opacity: 0.75; }

/* ===================== SCROLL PROGRESS ===================== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: transparent;
    z-index: 1003;
    pointer-events: none;
}
.scroll-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--c-accent);
    transition: width 0.1s linear;
}

/* ===================== HEADER ===================== */
.header {
    position: fixed;
    top: 38px; /* sous le bandeau Offre de lancement */
    left: 0; right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(var(--c-bg-rgb), 0);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
    will-change: transform;
}
.header.is-scrolled {
    background: rgba(var(--c-bg-rgb), 0.92);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    border-bottom: 1px solid var(--c-line);
}
/* Au-dessus du hero (full-bleed), le header est lumineux sur fond sombre */
.header.is-over-hero {
    background: transparent;
    border-bottom-color: transparent;
}
.header.is-over-hero .header__logo,
.header.is-over-hero .header__nav a,
.header.is-over-hero .header__logo-word { color: #fff; }
.header.is-over-hero .header__logo-icon { filter: brightness(0) invert(1); }
.header.is-over-hero .header__nav a::after { background: #fff; }
.header.is-over-hero .btn--pill {
    background: rgba(255,255,255,0.95);
    color: var(--c-accent);
    border-color: rgba(255,255,255,0.95);
}
.header.is-over-hero .btn--pill:hover { background: #fff; border-color: #fff; }

.header.is-hidden { transform: translateY(-100%); }

.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text);
    text-decoration: none;
    transition: color 0.2s ease;
}
.header__logo-icon { height: 30px; width: auto; display: block; }
.header__logo-word {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 19px;
    letter-spacing: 0.05em;
    color: var(--c-text);
    line-height: 1;
    transition: color 0.2s ease;
}

.header__nav {
    display: none;
    gap: 28px;
    margin-left: auto;
    margin-right: 24px;
}
.header__nav a {
    font-family: var(--font-text);
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.2s ease;
}
.header__nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}
.header__nav a:hover { color: var(--c-accent); }
.header__nav a:hover::after { transform: scaleX(1); }

/* =====================================================================
   1. HERO — full-bleed
   ===================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    padding-top: calc(var(--header-h) + 86px); /* header + bandeau lancement (38) + marge (48) */
    padding-bottom: 120px; /* laisse de l'air pour le scroll cue */
}
/* Bloc texte hero centré horizontalement + verticalement */
.hero > .container {
    max-width: none;
    padding-left: clamp(24px, 6vw, 96px);
    padding-right: clamp(24px, 6vw, 96px);
    display: flex;
    justify-content: center;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}
.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05) translate3d(0,0,0); }
    to   { transform: scale(1.15) translate3d(-1%, -1%, 0); }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        /* Voile global pour la lisibilité du texte blanc — renforcé pour la photo intérieur clair */
        linear-gradient(180deg, rgba(33,26,23,0.70) 0%, rgba(33,26,23,0.55) 35%, rgba(33,26,23,0.55) 65%, rgba(33,26,23,0.85) 100%),
        /* Vignette radiale qui assombrit le centre derrière le bloc texte */
        radial-gradient(ellipse at center, rgba(33,26,23,0.30) 0%, rgba(33,26,23,0.50) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero__eyebrow {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 18px;
}
.hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 40px;
    line-height: 1.12;
    color: #fff;
    letter-spacing: -0.015em;
    margin-bottom: 18px;
    text-wrap: balance;
    overflow-wrap: break-word;
}
/* Petits écrans : le mot « dermopigmentation » ne tient pas à 40px */
@media (max-width: 480px) {
    .hero__title { font-size: 27px; line-height: 1.18; }
    /* Les CTA longs ("Réserver mon diagnostic gratuit") peuvent passer sur 2 lignes
       au lieu de déborder l'écran. Le pill du header reste court. */
    .btn--primary, .btn--light, .btn--outline { white-space: normal; }
}
.hero__lead {
    font-size: 15px;
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
    margin: 0 auto 28px;
    max-width: 540px;
    text-wrap: balance;
}
.hero__ctas { margin-bottom: 16px; display: flex; justify-content: center; }
.hero__diag-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    max-width: 460px;
    margin: 0 auto;
    text-wrap: balance;
}
.hero__ctas .btn--primary {
    background: #fff;
    color: var(--c-accent);
    border-color: #fff;
}
.hero__ctas .btn--primary:hover { background: var(--c-bg); border-color: var(--c-bg); }

.hero__scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 1;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-label);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: color 0.2s ease;
    animation: scrollCue 2.4s ease-in-out infinite;
}
.hero__scroll-cue:hover { color: #fff; }
.hero__scroll-cue svg { width: 14px; height: 14px; }
@keyframes scrollCue {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.85; }
    50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* =====================================================================
   2. MARQUEE
   ===================================================================== */
.proof {
    background: var(--c-bg);
    padding: 48px 0;
    border-bottom: 1px solid var(--c-line);
}
.proof__grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
}
.proof__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.proof__icon { color: var(--c-text); line-height: 0; }
.proof__icon svg { width: 40px; height: 40px; }
.proof__title {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-text);
}
.proof__text {
    font-family: var(--font-text);
    font-size: 12px;
    color: var(--c-text-2);
    line-height: 1.5;
    max-width: 24ch;
}
@media (min-width: 768px) {
    .proof { padding: 56px 0; }
    .proof__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* =====================================================================
   SECTIONS GÉNÉRIQUES
   ===================================================================== */
.section { padding: var(--section-pad) 0; }
.section--white { background: var(--c-white); }
.section--beige { background: var(--c-bg); }
/* Section compacte (ex. tarifs en fin de page) */
.section--tight { padding-top: 44px; padding-bottom: 48px; }
.section--tight .section__head { margin-bottom: 24px; }
.section__cta { text-align: center; margin-top: 48px; }

/* =====================================================================
   3. PROTOCOLE — étapes
   ===================================================================== */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    counter-reset: step;
    position: relative;
}
.step {
    position: relative;
    padding: 28px 0;
    border-bottom: 1px solid var(--c-line);
    transition: transform 0.3s ease;
}
.steps .step:last-child { border-bottom: none; }
.step__num {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.step__title {
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--c-text);
    margin-bottom: 8px;
}
.step__desc {
    font-size: 14px;
    color: var(--c-text-2);
    line-height: 1.55;
}

/* =====================================================================
   4. RÉSULTATS — galerie avant/après
   ===================================================================== */
.gallery {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scroll-padding: 0 var(--pad-x);
    margin-left: calc(var(--pad-x) * -1);
    margin-right: calc(var(--pad-x) * -1);
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
}
.ba-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
    background: var(--c-white);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ba-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -20px rgba(33,26,23,0.18); }
.ba-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--c-accent-soft);
}
.ba-card__media img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.6s ease;
}
.ba-card:hover .ba-card__media img { transform: scale(1.04); }
.ba-card__caption {
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ba-card__type {
    font-family: var(--font-label);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-accent);
}
.ba-card__meta {
    font-size: 13.5px;
    color: var(--c-text-2);
}

/* =====================================================================
   ANATOMIE & ÉCRIN — sections vidéo split (2 colonnes)
   ===================================================================== */
.feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}
.feature__text { max-width: 540px; }
.feature__text .label { margin-bottom: 14px; }
.feature__text .section__title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 18px;
}
.feature__text .section__lede {
    text-align: left;
    margin-top: 0;
    margin-bottom: 24px;
}
.feature__media {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.feature__frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 9 / 16;
    max-height: 620px;
    overflow: hidden;
    background: var(--c-text);
    padding: 0;
    transition: transform 0.5s cubic-bezier(.2,.6,.2,1), box-shadow 0.5s ease;
    /* Cadre éditorial : fine ligne bordeaux en outline + ombre douce */
    outline: 1px solid var(--c-accent);
    outline-offset: 8px;
    box-shadow:
        0 30px 60px -28px rgba(33, 26, 23, 0.45),
        0 18px 36px -22px rgba(33, 26, 23, 0.22);
}
.feature__media:hover .feature__frame {
    transform: translateY(-6px);
    box-shadow:
        0 40px 70px -28px rgba(33, 26, 23, 0.55),
        0 24px 42px -22px rgba(33, 26, 23, 0.28);
}
.feature__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.feature__number {
    position: absolute;
    top: 0; right: 0;
    z-index: 2;
    background: var(--c-accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    padding: 9px 11px;
    letter-spacing: 0.04em;
}
/* Bouton son (overlay sur la vidéo) */
.feature__sound {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(33, 26, 23, 0.75);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease;
}
.feature__sound:hover { background: var(--c-accent); transform: scale(1.06); }
.feature__sound-off { display: none; }
.feature__sound.is-on .feature__sound-on { display: none; }
.feature__sound.is-on .feature__sound-off { display: block; }
.feature__caption {
    font-family: var(--font-label);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-text-2);
    text-align: center;
    margin-top: 22px;
    position: relative;
    padding-top: 14px;
}
.feature__caption::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 1px;
    background: var(--c-line);
}

/* Bullets (Anatomie) */
.feature__bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    margin-bottom: 8px;
}
.feature__bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--c-text);
    font-weight: 500;
}
.feature__bullets .dot {
    width: 6px; height: 6px;
    background: var(--c-accent);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* Details (Écrin) */
.feature__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    padding: 20px 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.feature__details li {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-size: 14px;
    color: var(--c-text);
}
.feature__details-label {
    font-family: var(--font-label);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-accent);
    min-width: 70px;
    flex-shrink: 0;
}

/* =====================================================================
   5. VIDÉOS — méthode + lieu (remplace les chiffres clés)
   ===================================================================== */
.videos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.video-card {
    background: var(--c-bg);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -28px rgba(33,26,23,0.25); }
.video-card__media {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: var(--c-text);
}
.video-card__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-card__caption {
    padding: 22px 22px 26px;
}
.video-card__eyebrow {
    display: block;
    font-family: var(--font-label);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-accent);
    margin-bottom: 10px;
}
.video-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    color: var(--c-accent);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.video-card__desc {
    font-size: 14px;
    color: var(--c-text-2);
    line-height: 1.55;
}

/* =====================================================================
   TARIFS — comparatif transparent
   ===================================================================== */
.pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
}
.pricing__card {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    padding: 28px 24px;
    position: relative;
}
.pricing__card--apara {
    border: 2px solid var(--c-accent);
    background: var(--c-accent-soft);
}
.pricing__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-line);
}
.pricing__brand {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    color: var(--c-accent);
    letter-spacing: -0.01em;
}
.pricing__brand--muted { color: var(--c-text-2); }
.pricing__label {
    font-family: var(--font-label);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text-2);
}
.pricing__amount {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    color: var(--c-accent);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.pricing__amount--muted { color: var(--c-text-2); }
.pricing__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing__list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--c-text);
    line-height: 1.5;
}
.pricing__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 6px; height: 6px;
    background: var(--c-accent);
    transform: rotate(45deg);
}
.pricing__list--muted li { color: var(--c-text-2); }
.pricing__list--muted li::before { background: var(--c-text-2); }
.pricing__note {
    font-size: 13px;
    color: var(--c-text-2);
    text-align: center;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* Bloc tarif unique simplifié */
.pricing-single {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    background: var(--c-accent-soft);
    border: 1px solid var(--c-line);
    padding: 36px 28px;
}
.pricing-single__amount {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.1;
    color: var(--c-accent);
    letter-spacing: -0.01em;
}
.pricing-single__sub {
    font-family: var(--font-label);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text-2);
    margin-bottom: 8px;
}
.pricing-single__desc {
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.6;
    margin-top: 18px;
}
.pricing-single__compare {
    font-size: 13px;
    font-style: italic;
    color: var(--c-text-2);
    line-height: 1.5;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--c-line);
}
.pricing-single__cta { margin-top: 24px; }
@media (min-width: 768px) {
    .pricing-single__amount { font-size: 36px; }
}

/* =====================================================================
   NOTRE APPROCHE — honnêteté + engagement
   ===================================================================== */
.approach {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.approach--single {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.approach__col {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    padding: 28px 24px;
}
.approach__eyebrow {
    font-family: var(--font-label);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-accent);
    margin-bottom: 8px;
}
.approach__lede {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    color: var(--c-text-2);
    line-height: 1.5;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--c-line);
}
.approach__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.approach__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-text);
}
.approach__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    flex-shrink: 0;
    border: 1px solid var(--c-line);
    font-family: var(--font-display);
    font-size: 14px;
    line-height: 1;
    color: var(--c-accent);
    margin-top: 1px;
}
.approach__list--no .approach__icon { color: var(--c-text-2); }
.approach__list--yes .approach__icon {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
    font-size: 8px;
}

/* =====================================================================
   TÉMOIGNAGES — carrousel style Google Reviews
   ===================================================================== */
.testimonials {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 4px 0 12px;
    margin: 0 calc(var(--pad-x) * -1);
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testimonials::-webkit-scrollbar { display: none; }

.testimonial {
    flex: 0 0 86%;
    scroll-snap-align: start;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px -22px rgba(33,26,23,0.18);
    border-color: rgba(71, 11, 11, 0.3);
}

.testimonial__header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial__id { flex: 1; min-width: 0; }
.testimonial__name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 16px;
    color: var(--c-text);
    line-height: 1.2;
    margin: 0 0 2px;
}
.testimonial__meta {
    font-family: var(--font-label);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--c-text-2);
    margin: 0;
}
.testimonial__stars {
    color: #f0a30a;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}
.testimonial__quote {
    font-family: var(--font-text);
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--c-text);
    margin: 0;
    flex: 1;
}
.testimonial__aside {
    font-family: var(--font-text);
    font-size: 12.5px;
    font-style: italic;
    line-height: 1.5;
    color: var(--c-text-2);
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--c-line);
}
.testimonial__date {
    font-family: var(--font-label);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text-2);
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid var(--c-line);
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
}
.testimonials__arrow {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--c-line);
    color: var(--c-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.testimonials__arrow:hover {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
}
.testimonials__arrow:focus { outline: none; }
.testimonials__arrow:focus-visible {
    outline: 2px solid var(--c-accent);
    outline-offset: 2px;
}
.testimonials__arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.testimonials__dots {
    display: flex;
    gap: 8px;
}
.testimonials__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-line);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.testimonials__dot.is-active {
    background: var(--c-accent);
    transform: scale(1.3);
}

/* =====================================================================
   6. POURQUOI APARA — cartes background image
   ===================================================================== */
.why {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.why__card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    color: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.why__card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -28px rgba(33,26,23,0.35); }
.why__bg {
    position: absolute; inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s ease;
}
.why__card:hover .why__bg { transform: scale(1.06); }
.why__shade {
    position: absolute; inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(33,26,23,0.15) 0%, rgba(33,26,23,0.05) 30%, rgba(33,26,23,0.85) 100%);
    transition: opacity 0.35s ease;
}
.why__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 22px 26px;
}
.why__eyebrow {
    font-family: var(--font-label);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}
.why__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.why__desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.88);
    line-height: 1.5;
}

/* =====================================================================
   7. DIAGNOSTIC EN LIGNE — banner
   ===================================================================== */
.diag-banner {
    background: var(--c-accent);
    color: #fff;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.diag-banner::before {
    content: '';
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(ellipse at top right, rgba(255, 235, 220, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(255, 235, 220, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.diag-banner__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.diag-banner .label {
    color: rgba(255, 235, 220, 0.8);
    margin-bottom: 14px;
}
.diag-banner__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    text-wrap: balance;
}
.diag-banner__lede {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 235, 220, 0.92);
    margin-bottom: 26px;
    max-width: 540px;
}
.diag-banner__bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.diag-banner__bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(255, 235, 220, 0.92);
}
.diag-banner__bullets .dot {
    width: 6px;
    height: 6px;
    background: #fff;
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* =====================================================================
   8. FAQ
   ===================================================================== */
.faq {
    max-width: 800px;
    margin: 0 auto;
}
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__item:first-child { border-top: 1px solid var(--c-line); }
.faq__q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    text-align: left;
    font-family: var(--font-text);
    font-weight: 500;
    font-size: 15px;
    color: var(--c-text);
    transition: color 0.2s ease;
}
.faq__q:hover { color: var(--c-accent); }
.faq__icon {
    position: relative;
    width: 18px; height: 18px;
    flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--c-accent);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq__icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after  { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq__item--open .faq__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq__a p {
    font-size: 14px;
    color: var(--c-text-2);
    line-height: 1.65;
    padding-bottom: 22px;
}
.faq__a a {
    color: var(--c-accent);
    border-bottom: 1px solid currentColor;
    font-weight: 500;
}

/* =====================================================================
   9. BLOG
   ===================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.blog-card {
    position: relative;
    display: block;
    background: var(--c-white);
    color: var(--c-text);
    overflow: hidden;
    border: 1px solid var(--c-line);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}
.blog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--c-accent);
    transition: width 0.4s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 22px 38px -22px rgba(33,26,23,0.18); border-color: var(--c-accent); }
.blog-card:hover::before { width: 100%; }
.blog-card__body { padding: 28px 22px 26px; }
.blog-card__tag {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-accent);
    border: 1px solid var(--c-line);
    padding: 4px 10px;
    margin-bottom: 14px;
}
.blog-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 19px;
    line-height: 1.2;
    color: var(--c-accent);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.blog-card__excerpt {
    font-size: 13.5px;
    color: var(--c-text-2);
    line-height: 1.55;
    margin-bottom: 14px;
}
.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-label);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-accent);
    transition: color 0.2s ease;
}
.blog-card:hover .blog-card__link { color: var(--c-accent-h); }
.blog-card__link svg { transition: transform 0.25s ease; }
.blog-card:hover .blog-card__link svg { transform: translateX(4px); }

/* =====================================================================
   10. CONTACT — bordeaux
   ===================================================================== */
.contact {
    background: var(--c-accent);
    color: #fff;
    text-align: center;
    padding: 84px 0 64px;
}
.contact__label { color: rgba(255, 235, 220, 0.8); }
.contact__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 36px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.contact__subtitle {
    font-size: 15px;
    color: rgba(255, 235, 220, 0.9);
    margin-bottom: 28px;
}
.contact .btn--light { margin-bottom: 40px; }
.contact__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 235, 220, 0.18);
}
.contact__info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 235, 220, 0.9);
}
.contact__info .icon {
    width: 16px; height: 16px;
    stroke: rgba(255, 235, 220, 0.9);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
}
.contact__info a { color: inherit; transition: color 0.2s; }
.contact__info a:hover { color: #fff; }

/* =====================================================================
   WHATSAPP STICKY + STICKY CTA
   ===================================================================== */
.whatsapp {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 999;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--c-whatsapp);
    box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2.4s ease-in-out infinite;
    transition: transform 0.2s ease, bottom 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp svg { width: 28px; height: 28px; }
.whatsapp:hover { transform: scale(1.08); }
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 998;
    background: var(--c-accent);
    color: #fff;
    text-align: center;
    padding: 14px 24px;
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }

/* =====================================================================
   REVEAL & WORD-SPLIT
   ===================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.split-words .word {
    display: inline-block;
    overflow: hidden;
    /* Marge pour ne pas rogner les jambages (p, g) ni les accents (ô, é) */
    padding: 0.06em 0.04em 0.22em;
    margin: -0.06em -0.04em -0.22em;
}
.split-words .word > span {
    display: inline-block;
    transform: translateY(130%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}
.reveal.is-visible.split-words .word > span,
.reveal.is-visible .split-words .word > span,
.split-words.is-revealed .word > span {
    transform: translateY(0);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .whatsapp, .hero__bg-img, .hero__scroll-cue { animation: none; }
    html { scroll-behavior: auto; }
}

/* =====================================================================
   RESPONSIVE — TABLET ≥ 768px
   ===================================================================== */
@media (min-width: 768px) {
    :root { --pad-x: 40px; --section-pad: 96px; }

    .section__title { font-size: 38px; }
    .hero__title { font-size: 56px; }
    .hero__lead { font-size: 17px; }

    .header__nav { display: flex; }
    .header__logo-icon { height: 32px; }

    .videos { grid-template-columns: 1fr 1fr; gap: 32px; }
    .video-card__title { font-size: 26px; }

    /* Feature 2 colonnes (Anatomie + Écrin) */
    .feature {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    .feature--video-right .feature__text { order: 1; }
    .feature--video-right .feature__media { order: 2; }
    .feature--video-left .feature__media { order: 1; }
    .feature--video-left .feature__text { order: 2; }
    .feature__text .section__title { font-size: 42px; }
    .feature__bullets { grid-template-columns: 1fr; gap: 14px; }
    .feature__frame { max-width: 420px; }

    .why { grid-template-columns: repeat(3, 1fr); }

    /* Témoignages : 2 cards visibles tablet */
    .testimonial { flex: 0 0 calc(50% - 8px); }

    /* Tarifs + Approche 2 colonnes */
    .pricing { grid-template-columns: 1fr 1fr; gap: 24px; }
    .approach:not(.approach--single) { grid-template-columns: 1fr 1fr; gap: 32px; }
    .pricing__amount { font-size: 38px; }

    /* Bandeau lancement plus généreux desktop */
    .launch-banner__inner { font-size: 13px; padding: 11px var(--pad-x); }

    .gallery {
        overflow: visible;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin: 0;
        padding: 0;
    }
    .ba-card { flex: initial; }

    .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

    .diag-banner { padding: 88px 0; }
    .diag-banner__inner {
        grid-template-columns: 1.4fr 1fr;
        gap: 56px;
    }
    .diag-banner__title { font-size: 44px; }

    .contact__title { font-size: 48px; }
    .contact { padding: 110px 0 80px; }
}

/* =====================================================================
   RESPONSIVE — DESKTOP ≥ 1024px
   ===================================================================== */
@media (min-width: 1024px) {
    :root { --pad-x: 80px; --header-h: 76px; --section-pad: 120px; }
    body { font-size: 16px; }

    .header__logo-word { font-size: 21px; }
    .header__logo-icon { height: 34px; }

    .hero { padding-bottom: 140px; padding-top: calc(var(--header-h) + 80px); }
    .hero__title { font-size: 72px; line-height: 1.05; }
    .hero__lead { font-size: 18px; max-width: 560px; }
    .hero__content { max-width: 820px; }

    .section__title { font-size: 52px; }
    .section__lede { font-size: 17px; }

    .steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    .step {
        padding: 0 32px 0 0;
        border-bottom: none;
        border-right: 1px solid var(--c-line);
    }
    .step + .step { padding-left: 32px; }
    .steps .step:last-child { border-right: none; padding-right: 0; }

    .step__num { font-size: 44px; }
    .stat__num { font-size: 56px; }

    .feature__text .section__title { font-size: 56px; }
    .feature__frame { max-width: 460px; max-height: 720px; }

    /* Témoignages : 3 cards visibles desktop */
    .testimonial { flex: 0 0 calc(33.33% - 11px); }

    .why__card { aspect-ratio: 3 / 4.4; }
    .why__title { font-size: 28px; }

    .contact__title { font-size: 60px; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
    background: var(--c-text);
    color: rgba(255, 235, 220, 0.78);
    padding: 64px 0 28px;
    font-size: 13.5px;
}
.site-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 235, 220, 0.12);
}
.site-footer__brand .site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--c-bg);
    text-decoration: none;
    margin-bottom: 16px;
}
.site-footer__logo-icon {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.site-footer__logo-word {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    color: var(--c-bg);
    letter-spacing: 0.05em;
}
.site-footer__tagline {
    font-family: var(--font-label);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 235, 220, 0.55);
    margin-bottom: 16px;
}
.site-footer__address {
    color: rgba(255, 235, 220, 0.85);
    line-height: 1.6;
}

.site-footer__col-label {
    font-family: var(--font-label);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-bg);
    margin-bottom: 18px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a {
    color: rgba(255, 235, 220, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 13.5px;
}
.site-footer__col a:hover { color: var(--c-bg); }

.site-footer__blog-cta {
    display: inline-flex;
    align-items: center;
    background: var(--c-accent);
    color: var(--c-bg) !important;
    padding: 8px 14px;
    border-radius: 100px;
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    transition: background 0.2s ease;
}
.site-footer__blog-cta:hover { background: var(--c-accent-h); }

.site-footer__bottom {
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 235, 220, 0.5);
    font-size: 12px;
}
.site-footer__bottom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.site-footer__bottom a {
    color: rgba(255, 235, 220, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}
.site-footer__bottom a:hover { color: var(--c-bg); }

/* =====================================================================
   MOBILE UNIQUEMENT < 768px
   ===================================================================== */
@media (max-width: 767px) {
    .sticky-cta.is-armed { display: block; }
    body.has-sticky-cta .whatsapp { bottom: 80px; }
}

@media (min-width: 768px) {
    .site-footer__top {
        grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
        gap: 48px;
    }
    .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
