/* ==========================================================================
   Français Expatriés Infos - Paraguay
   Design system : tricolore France (bleu/blanc/rouge) + Paraguay (rouge/blanc/bleu)
   ========================================================================== */

:root {
    --fr-blue: #0055a4;
    --fr-red: #ef4135;
    --py-red: #d52b1e;
    --py-blue: #0038a8;

    --color-primary: var(--fr-blue);
    --color-secondary: var(--py-red);
    --color-accent: var(--py-blue);

    --ink: #1f2933;
    --muted: #5a6674;
    --bg: #f5f7fa;
    --card-bg: #ffffff;
    --border: #e2e5ea;

    --radius: 12px;
    --shadow: 0 2px 10px rgba(15, 35, 60, 0.06);
    --shadow-hover: 0 8px 24px rgba(15, 35, 60, 0.12);

    --max-width: 1120px;
    --font-sans: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Bande tricolore décorative ------------------------------------------- */

.flag-stripe {
    height: 6px;
    display: flex;
    width: 100%;
}
.flag-stripe span {
    flex: 1;
}
.flag-stripe.flag-stripe--fr span:nth-child(1) { background: var(--fr-blue); }
.flag-stripe.flag-stripe--fr span:nth-child(2) { background: #ffffff; }
.flag-stripe.flag-stripe--fr span:nth-child(3) { background: var(--fr-red); }
.flag-stripe.flag-stripe--py span:nth-child(1) { background: var(--py-blue); }
.flag-stripe.flag-stripe--py span:nth-child(2) { background: #ffffff; }
.flag-stripe.flag-stripe--py span:nth-child(3) { background: var(--py-red); }

.flag-icon {
    display: inline-flex;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    flex: none;
}

/* Header / navigation ---------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.site-header__bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 0;
}

.nav-stripe {
    display: none;
    height: 3px;
}

.nav-stripe.is-open {
    display: flex;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    grid-column: 2;
    gap: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.brand:hover {
    text-decoration: none;
    color: var(--color-primary);
    letter-spacing: 0.015em;
}

.brand__flags {
    display: flex;
    gap: 4px;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand__text small {
    font-weight: 500;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 3;
    justify-self: end;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    position: relative;
    transition: transform 0.25s ease, top 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle.is-active span {
    background: transparent;
}
.nav-toggle.is-active span::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle.is-active span::after {
    top: 0;
    transform: rotate(-45deg);
}

.main-nav {
    width: 100%;
    display: grid;
    grid-template-rows: 0fr;
    background: var(--bg);
    transition: grid-template-rows 0.3s ease;
}

.main-nav.is-open {
    grid-template-rows: 1fr;
}

.main-nav > .container {
    overflow: hidden;
    min-height: 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.main-nav.is-open ul {
    padding: 10px 0 16px;
}

@media (min-width: 781px) {
    .main-nav ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 34px;
    }
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
}

.main-nav a:hover {
    background: #ffffff;
    text-decoration: none;
    color: var(--color-primary);
}

.main-nav a.is-active {
    background: rgba(0, 85, 164, 0.1);
    color: var(--color-primary);
    font-weight: 700;
}

.icon--health-offset {
    transform: translateY(2px);
}

.main-nav__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
}

.main-nav__icon .icon--health-offset {
    transform: translateY(1px);
}

/* Bannière photo (toutes les pages) ---------------------------------------- */

.page-hero {
    position: relative;
    width: 100%;
    height: 556px;
    overflow: hidden;
}

.page-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.page-hero__title {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding-bottom: 40px;
    text-align: center;
    pointer-events: none;
}

.page-hero__frame {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 22px 44px;
    background: transparent;
}

.page-hero__brand-serif {
    margin: 0;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 800;
    font-size: 2.875rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    clip-path: inset(0 100% 0 0);
    background-image: linear-gradient(100deg,
        #ffffff 0%, #ffffff 42%,
        var(--fr-blue) 47%,
        #ffffff 50%,
        var(--fr-red) 53%,
        #ffffff 58%, #ffffff 100%);
    background-size: 280% 100%;
    background-position: 180% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: page-hero-write 1.6s ease-out forwards,
        page-hero-shine 24s linear 2s infinite;
}

.page-hero__paraguay-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 2px 0 0;
    clip-path: inset(0 100% 0 0);
    animation: page-hero-write 1.6s ease-out forwards;
    animation-delay: 0.3s;
}

.page-hero__paraguay-script {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-weight: 700;
    font-size: 2.2rem;
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.page-hero__tricolor {
    display: inline-block;
    width: 90px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg,
        var(--fr-blue) 0%, var(--fr-blue) 33%,
        #ffffff 33%, #ffffff 66%,
        var(--fr-red) 66%, var(--fr-red) 100%);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@keyframes page-hero-write {
    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes page-hero-shine {
    0% {
        background-position: 180% 0;
    }
    100% {
        background-position: -180% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero__brand-serif,
    .page-hero__paraguay-row {
        animation: none;
        clip-path: none;
    }

    .page-hero__brand-serif {
        background: none;
        color: #ffffff;
        -webkit-text-fill-color: #ffffff;
    }
}

@media (max-width: 640px) {
    .page-hero {
        height: 286px;
    }

    .page-hero__title {
        padding-bottom: 20px;
    }

    .page-hero__frame {
        padding: 14px 22px;
    }

    .page-hero__brand-serif {
        font-size: 1.5rem;
    }

    .page-hero__paraguay-script {
        font-size: 1.3rem;
    }

    .page-hero__tricolor {
        width: 48px;
        height: 4px;
    }
}

/* Hero / présentation ----------------------------------------------------- */

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

.hero .container {
    max-width: 1360px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 440px 1fr 320px;
    gap: 48px;
    align-items: start;
}

.hero__photo-wrap {
    position: relative;
    width: 440px;
    height: 440px;
    flex: none;
}

.hero__photo {
    width: 440px;
    height: 440px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    flex: none;
    -webkit-mask-image: radial-gradient(circle, #000 58%, transparent 80%);
    mask-image: radial-gradient(circle, #000 58%, transparent 80%);
}

.hero__tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-weight: 600;
}

.hero__tagline-icon {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 85, 164, 0.1);
}

.hero__contact-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

.hero__contact-card h3 {
    margin: 0 0 14px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.hero__contact-card ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.hero__contact-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero__contact-card a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.hero__contact-card__icon {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 85, 164, 0.1);
    color: var(--color-primary);
    font-size: 0.9rem;
}

.hero__contact-card__icon--email {
    background: var(--fr-blue);
    color: #ffffff;
}

.hero__contact-card__icon--whatsapp {
    background: #25d366;
    color: #ffffff;
}

.hero__contact-card__icon--facebook {
    background: #1877f2;
    color: #ffffff;
}

.hero__contact-card__icon--instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #ffffff;
}

.hero__contact-card__addr {
    display: flex;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--muted);
}

.photo-placeholder {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px dashed #b9c2cf;
    background: repeating-linear-gradient(
        135deg,
        #eef1f5,
        #eef1f5 10px,
        #e6eaf0 10px,
        #e6eaf0 20px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
    padding: 16px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.hero h1 {
    margin: 0 0 6px;
    font-size: 1.9rem;
}

.hero__role {
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 16px;
}

.hero__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 18px;
    font-size: 0.92rem;
}

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

.hero__contact a:hover {
    color: var(--color-primary);
}

/* Sections ----------------------------------------------------------------- */

.section {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.section--alt {
    background: #ffffff;
}

.section__header {
    margin-bottom: 28px;
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.section__header h2 {
    margin: 6px 0 8px;
    font-size: 1.5rem;
}

.section__lead {
    color: var(--muted);
    max-width: 70ch;
}

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

.section__lead--center {
    max-width: 60ch;
}

.section__underline--center {
    margin-left: auto;
    margin-right: auto;
}

.container > h3 {
    font-size: 1.4rem;
    line-height: 1.3;
}

.section__underline {
    width: 64px;
    height: 4px;
    border-radius: 4px;
    margin-top: 10px;
    background: linear-gradient(
        90deg,
        var(--fr-blue) 0 33%,
        #ffffff 33% 66%,
        var(--fr-red) 66% 100%
    );
}

/* Cards / grids -------------------------------------------------------- */

.grid {
    display: grid;
    gap: 18px;
}

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

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

a.card,
a.card:hover {
    text-decoration: none;
    color: inherit;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.card p {
    margin: 4px 0;
    font-size: 0.92rem;
}

.card ul {
    margin: 8px 0 0;
    padding-left: 18px;
    font-size: 0.92rem;
}

.card__meta {
    color: var(--muted);
    font-size: 0.85rem;
}

.card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.card__logo {
    display: block;
    height: 48px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.bank-card {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    padding: 0;
    display: flex;
    align-items: flex-end;
}

.bank-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.35s ease;
}

.bank-card:hover {
    transform: none;
}

.bank-card:hover .bank-card__bg {
    transform: scale(1.15);
}

.bank-card__overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
}

.bank-card__overlay h3 {
    color: #fff;
}

.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    overflow: hidden;
}

.logo-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.logo-card:hover {
    transform: none;
}

.logo-card:hover img {
    transform: scale(1.15);
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 20px 12px;
    transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.service-card__icon {
    font-size: 2rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.service-card:hover {
    transform: none;
}

.service-card:hover .service-card__icon {
    transform: scale(1.15);
}

.health-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.health-badge--prive {
    background: rgba(0, 85, 164, 0.1);
    color: var(--color-primary);
}

.health-badge--public {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
}

.health-badge--urgence {
    background: rgba(239, 65, 53, 0.12);
    color: var(--fr-red);
}

.service-card p {
    font-size: 0.9rem;
    font-weight: 500;
}

.badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(0, 85, 164, 0.1);
    color: var(--color-primary);
    margin-bottom: 8px;
}

.badge--urgent {
    background: rgba(213, 43, 30, 0.12);
    color: var(--py-red);
}

/* Cartes "Informations pratiques" ---------------------------------------- */

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

.info-card:hover {
    text-decoration: none;
}

.info-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: #ffffff;
}

.info-card__icon--blue { background: var(--fr-blue); }
.info-card__icon--teal { background: #0d9488; }
.info-card__icon--purple { background: #7c3aed; }
.info-card__icon--orange { background: #f59e0b; }
.info-card__icon--green { background: #16a34a; }
.info-card__icon--red { background: var(--fr-red); }

.info-card h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    color: var(--ink);
}

.info-card p {
    color: var(--muted);
    font-size: 0.88rem;
}

.info-card__arrow {
    margin-top: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    color: var(--ink);
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.info-card:hover .info-card__arrow {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateX(3px);
}

/* Aperçu partenaires ------------------------------------------------------ */

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

.partner-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    color: inherit;
}

.partner-tile:hover {
    text-decoration: none;
}

.partner-tile__icon {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.partner-tile:hover .partner-tile__icon {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.partner-tile__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
}

.partner-credits {
    margin: 18px 0 0;
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
}

.partner-credits a {
    color: var(--muted);
    text-decoration: underline;
}

/* Bouton / bandeau CTA ----------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fr-blue);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 22px;
    border-radius: 8px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--py-blue);
    color: #ffffff;
    text-decoration: none;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 22px 26px;
    box-shadow: var(--shadow);
}

.cta-banner__text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.cta-banner__text p {
    max-width: 62ch;
}

.cta-banner__icon {
    flex: none;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--ink);
    color: var(--ink);
}

.cta-banner .btn {
    flex: none;
}

/* Listes de vérification ------------------------------------------------ */

.checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.92rem;
}

.checklist li::before {
    content: "✓";
    color: #1a8f5c;
    font-weight: 700;
}

.checklist li:has(a) {
    transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.checklist li:has(a):hover {
    padding: 14px 18px;
    background: color-mix(in srgb, var(--card-bg) 92%, var(--color-primary) 8%);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-hover);
}

.checklist a {
    color: inherit;
    text-decoration: none;
    flex: 1;
}

/* Tableaux ---------------------------------------------------------------- */

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card-bg);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

th, td {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
}

thead th {
    background: var(--bg);
    font-weight: 700;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Numéros d'urgence ------------------------------------------------------- */

.emergency-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.emergency-bar__item {
    background: #ffe0dd;
    border: 1px solid rgba(213, 43, 30, 0.35);
    color: var(--py-red);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.emergency-bar__item strong {
    display: block;
    font-size: 1.5rem;
}

.emergency-bar__item span {
    font-size: 0.82rem;
    color: var(--ink);
    opacity: 0.85;
}

.city-block {
    margin-top: 28px;
}

.city-block h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

/* Alerte / vigilance ------------------------------------------------------ */

.alert {
    border-left: 4px solid var(--fr-red);
    background: #fff5f4;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 18px;
    font-size: 0.92rem;
    color: #6b1f18;
}

.alert strong {
    display: block;
    margin-bottom: 4px;
    color: var(--py-red);
}

/* Dossiers "Mes actions et interventions" ---------------------------------- */

.status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.status-badge--pending {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}

.status-badge--done {
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
}

.status-badge--rejected {
    background: rgba(239, 65, 53, 0.12);
    color: #b91c1c;
}

.actions-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
    padding: 16px 18px;
    background: var(--bg);
    border-radius: var(--radius);
}

.actions-filters__statuses {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.filter-chip:hover {
    border-color: var(--color-primary);
}

.filter-chip.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.actions-filters__search input {
    width: 100%;
    min-width: 220px;
    font: inherit;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
}

.actions-filters__search input:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 1px;
}

.actions-empty {
    text-align: center;
    color: var(--muted);
    padding: 32px 16px;
}

.dossier-card {
    padding: 28px;
}

.dossier-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 4px;
}

.dossier-card__header h3 {
    margin: 0;
    font-size: 1.25rem;
    max-width: 60ch;
}

.dossier-card__objectif {
    color: var(--muted);
    font-size: 1rem;
    margin: 10px 0 20px;
}

.dossier-card__stats {
    float: right;
    clear: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 260px;
    margin: 0 0 20px 28px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius);
}

.stat-tile {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-radius: calc(var(--radius) - 6px);
    padding: 10px 12px;
    text-align: left;
}

.stat-tile strong {
    font-size: 1.15rem;
    color: var(--color-primary);
}

.stat-tile span {
    display: block;
    width: 100%;
    font-size: 0.78rem;
    color: var(--muted);
    text-align: left;
}

.dossier-card h4 {
    margin: 24px 0 8px;
    font-size: 1.05rem;
}

.dossier-card__steps {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.timeline li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.9rem;
}

.timeline__date {
    font-weight: 700;
    color: var(--ink);
}

.timeline__event {
    color: var(--muted);
    flex: 1;
}

/* Emplacements photo (page Actions) ----------------------------------------- */

.photo-slot {
    border-radius: var(--radius);
    border: 2px dashed #b9c2cf;
    background: repeating-linear-gradient(
        135deg,
        #eef1f5,
        #eef1f5 10px,
        #e6eaf0 10px,
        #e6eaf0 20px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    padding: 16px;
}

.photo-slot__hint {
    margin: 8px 0 0;
    font-size: 0.82rem;
    color: var(--muted);
    text-align: center;
}

.photo-slot--photo {
    border: none;
    background: none;
    padding: 0;
    overflow: hidden;
}

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

.section-banner {
    aspect-ratio: 21 / 6;
    font-size: 1.6rem;
}

.section-banner + .photo-slot__hint {
    margin-bottom: 32px;
}

.dossier-card__photo {
    float: right;
    clear: right;
    aspect-ratio: 4 / 3;
    width: 260px;
    margin: 4px 0 20px 28px;
    font-size: 1.4rem;
}

.dossier-card__photo + .photo-slot__hint {
    margin-bottom: 20px;
}

.dossier-card__content::after {
    content: '';
    display: table;
    clear: both;
}

@media (max-width: 780px) {
    .dossier-card__photo,
    .dossier-card__stats {
        float: none;
        width: 100%;
        margin: 0 0 20px;
    }
}

.action-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.action-gallery figure {
    margin: 0;
}

.action-gallery .photo-slot {
    aspect-ratio: 1 / 1;
}

.action-gallery .photo-slot__hint {
    margin-top: 6px;
    font-size: 0.78rem;
}

/* Contact / CTA card ------------------------------------------------------- */

.contact-card {
    background: linear-gradient(135deg, var(--fr-blue), var(--py-blue));
    color: #fff;
    border-radius: var(--radius);
    padding: 28px;
}

.contact-card h3 {
    margin-top: 0;
}

.contact-card a {
    color: #fff;
    font-weight: 600;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

/* Encadré publicité (home) --------------------------------------------------- */

.ad-slot {
    padding: 20px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    text-align: center;
}

.ad-slot__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 14px;
}

.ad-carousel {
    position: relative;
}

.ad-carousel__slide {
    display: none;
}

.ad-carousel__slide.is-active {
    display: block;
    animation: ad-carousel-fade 0.5s ease;
}

@keyframes ad-carousel-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.ad-carousel__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ad-carousel__dot:hover {
    background: rgba(0, 0, 0, 0.3);
}

.ad-carousel__dot.is-active {
    background: var(--color-primary);
    transform: scale(1.25);
}

.ad-slot .partner-card {
    text-align: left;
    box-shadow: none;
}

.ad-slot__card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 28px;
}

.ad-slot__col--icon {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ad-slot__col--icon .partner-card__avatar {
    margin-bottom: 0;
}

.ad-slot__col--main {
    flex: 2 1 260px;
    min-width: 0;
}

.ad-slot__col--main h3 {
    margin-bottom: 2px;
}

.ad-slot__col--main p {
    margin: 4px 0 0;
}

.ad-slot__col--contact {
    flex: 1 1 200px;
    min-width: 0;
}

.ad-slot__col--contact p {
    margin: 4px 0;
    font-size: 0.88rem;
}

.ad-slot__more {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.88rem;
    font-weight: 600;
}

/* Cartes avec photo d'illustration ------------------------------------------ */

.intro-photo-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.intro-photo-row__photo {
    width: 220px;
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.intro-photo-row > div {
    flex: 1;
    min-width: 240px;
}

/* Partenaires -------------------------------------------------------------- */

.partner-card__avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-radius: 50%;
    background: rgba(0, 85, 164, 0.1);
    margin-bottom: 12px;
    overflow: hidden;
}

.partner-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carte partenaire "spotlight" — fond violet animé, formes flottantes (à réserver à UNE seule carte, ex. partenaire mis en avant) */

.partner-card--spotlight {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #f1e9ff;
    border-color: rgba(224, 163, 255, 0.25);
    background:
        radial-gradient(circle at 15% 85%, rgba(75, 0, 130, 0.7), transparent 55%),
        radial-gradient(circle at 85% 15%, rgba(139, 37, 99, 0.8), transparent 55%),
        radial-gradient(circle at 45% 60%, rgba(128, 0, 128, 0.6), transparent 55%),
        linear-gradient(135deg, #120a1e, #2d1b3d, #0a0510);
    background-size: 200% 200%;
    animation: partnerSpotlightPulse 10s ease-in-out infinite;
}

.partner-card--spotlight > * {
    position: relative;
    z-index: 1;
}

.partner-card--spotlight h3,
.partner-card--spotlight p,
.partner-card--spotlight .card__meta {
    color: #f1e9ff;
}

.partner-card--spotlight a {
    color: #e0a3ff;
}

.partner-card--spotlight .badge {
    background: rgba(224, 163, 255, 0.18);
    color: #f1e9ff;
}

.partner-card--spotlight .partner-card__avatar {
    background: rgba(224, 163, 255, 0.2);
}

.partner-card__avatar--code {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.15rem;
    color: #e0a3ff;
    text-shadow: 0 0 10px #e0a3ff, 0 0 20px rgba(255, 105, 180, 0.6);
}

@keyframes partnerSpotlightPulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.partner-card__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.partner-card__shape {
    position: absolute;
    border: 1px solid rgba(255, 105, 180, 0.35);
    animation: partnerShapeFloat 14s linear infinite;
}

.partner-card__shape:nth-child(1) {
    width: 44px;
    height: 44px;
    left: 8%;
    animation-delay: 0s;
}

.partner-card__shape:nth-child(2) {
    width: 28px;
    height: 28px;
    left: 68%;
    border-radius: 50%;
    border-color: rgba(147, 112, 219, 0.4);
    animation-delay: -4s;
}

.partner-card__shape:nth-child(3) {
    width: 36px;
    height: 36px;
    left: 38%;
    transform: rotate(45deg);
    border-color: rgba(224, 163, 255, 0.4);
    animation-delay: -8s;
}

.partner-card__shape:nth-child(4) {
    width: 52px;
    height: 52px;
    left: 82%;
    border-color: rgba(255, 105, 180, 0.2);
    animation-delay: -11s;
}

@keyframes partnerShapeFloat {
    from {
        transform: translateY(130%) rotate(0deg);
        opacity: 0;
    }

    15%,
    85% {
        opacity: 0.8;
    }

    to {
        transform: translateY(-50%) rotate(360deg);
        opacity: 0;
    }
}

/* Carte partenaire "coiffure" — fond clair ivoire & or, mèches ondulantes et reflet lumineux, en écho au médaillon Socrate Coiffure */

.partner-card--coiffure {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #3a2f12;
    border-color: rgba(201, 162, 74, 0.4);
    background:
        radial-gradient(circle at 15% 85%, rgba(201, 162, 74, 0.22), transparent 55%),
        radial-gradient(circle at 85% 15%, rgba(0, 56, 168, 0.10), transparent 55%),
        linear-gradient(135deg, #fffaf0, #f8ecc9, #fdf6ea);
    background-size: 200% 200%;
    animation: partnerSpotlightPulse 14s ease-in-out infinite;
}

.partner-card--coiffure > * {
    position: relative;
    z-index: 1;
}

.partner-card--coiffure h3,
.partner-card--coiffure p,
.partner-card--coiffure .card__meta {
    color: #3a2f12;
}

.partner-card--coiffure h3 {
    position: relative;
    display: block;
    width: fit-content;
    padding-bottom: 3px;
}

.partner-card--coiffure h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #c9a24a, #0055a4);
    transition: width 0.6s ease;
}

.partner-card--coiffure:hover h3::after {
    width: 100%;
}

.partner-card--coiffure > .partner-card__scissors {
    position: absolute;
}

.partner-card__tools {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.partner-card__tool {
    position: absolute;
    top: -12%;
    font-size: 1.3rem;
    line-height: 1;
    opacity: 0;
    animation: coiffureToolFall 9s linear infinite;
}

.partner-card__tool:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.partner-card__tool:nth-child(2) {
    left: 38%;
    font-size: 1.05rem;
    animation-delay: -2.3s;
}

.partner-card__tool:nth-child(3) {
    left: 64%;
    animation-delay: -4.6s;
}

.partner-card__tool:nth-child(4) {
    left: 87%;
    font-size: 1.1rem;
    animation-delay: -6.9s;
}

@keyframes coiffureToolFall {
    0% {
        top: -12%;
        opacity: 0;
        transform: rotate(0deg);
    }

    15%,
    85% {
        opacity: 0.55;
    }

    100% {
        top: 112%;
        opacity: 0;
        transform: rotate(360deg);
    }
}

.partner-card__scissors {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 1.3rem;
    line-height: 1;
    opacity: 0;
    transform: rotate(0deg);
    transform-origin: 70% 30%;
    transition: opacity 0.3s ease;
}

.partner-card--coiffure:hover .partner-card__scissors {
    opacity: 0.9;
    animation: coiffureScissorsSnip 0.9s ease-in-out infinite;
}

@keyframes coiffureScissorsSnip {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-20deg); }
}

.partner-card--coiffure a {
    color: #0055a4;
}

.partner-card--coiffure .badge {
    background: rgba(201, 162, 74, 0.3);
    color: #3a2f12;
}

.partner-card--coiffure .partner-card__avatar {
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(201, 162, 74, 0.5);
}

@media (prefers-reduced-motion: reduce) {
    .partner-card--spotlight,
    .partner-card--coiffure,
    .partner-card--coiffure:hover .partner-card__scissors,
    .partner-card__shape,
    .partner-card__tool {
        animation: none;
    }
}

/* Vitrine photo (photo principale fixe + bande de vignettes) ------------ */

.photo-showcase {
    max-width: 720px;
    margin: 0 auto;
}

.photo-showcase__main {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.photo-showcase__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.photo-showcase__slide.is-active {
    opacity: 1;
}

.photo-showcase__slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(0.65) saturate(1.1);
    transform: scale(1.15);
}

.photo-showcase__slide img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.photo-showcase__placeholder {
    font-size: 2.2rem;
    opacity: 0.35;
}

.photo-showcase__thumbs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.photo-showcase__thumb {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    padding: 4px;
    border: none;
    background: var(--card-bg);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.photo-showcase__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.photo-showcase__thumb:hover {
    opacity: 0.9;
    transform: scale(1.08);
}

.photo-showcase__thumb.is-active {
    opacity: 1;
    background: var(--color-primary);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .photo-showcase__thumb {
        width: 48px;
        height: 48px;
        padding: 3px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .photo-showcase__slide {
        transition: none;
    }
}

.contact-links a {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
}

.contact-links a:hover {
    background: rgba(255, 255, 255, 0.28);
    text-decoration: none;
}

/* Footer -------------------------------------------------------------- */

.site-footer {
    background: #14213a;
    color: #cbd5e1;
    padding: 40px 0 24px;
    margin-top: 40px;
}

.site-footer a {
    color: #ffffff;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 24px;
}

.footer__legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    font-size: 0.82rem;
    color: #8a97ac;
}

.footer__legal p {
    margin: 0;
}

.footer__grid h4 {
    color: #fff;
    margin: 0 0 12px;
    font-size: 0.95rem;
}

.footer__grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    font-size: 0.9rem;
}

.footer__grid ul a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__icon {
    flex: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.footer__icon--email {
    background: var(--fr-blue);
}

.footer__icon--whatsapp {
    background: #25d366;
}

.footer__icon--facebook {
    background: #1877f2;
}

.footer__icon--instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer__bottom {
    margin-top: 14px;
    font-size: 0.82rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: #8a97ac;
}

/* Responsive ------------------------------------------------------------- */

@media (max-width: 1180px) {
    .hero__grid {
        grid-template-columns: 280px 1fr;
    }

    .hero__photo-wrap,
    .hero__photo {
        width: 280px;
        height: 280px;
    }

    .hero__contact-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 960px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--7 { grid-template-columns: repeat(4, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .section-banner { aspect-ratio: 16 / 9; }
}

@media (max-width: 780px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .hero__contact {
        justify-content: center;
    }

    .hero__tagline {
        justify-content: center;
    }

    .cta-banner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .cta-banner__text {
        flex-direction: column;
    }

    .cta-banner__text p {
        max-width: none;
    }

    .emergency-bar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .grid--2,
    .grid--3,
    .grid--4 { grid-template-columns: 1fr; }
    .grid--7 { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr; }
    .action-gallery { grid-template-columns: 1fr; }
}

/* Apparition au scroll ----------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* Pages légales (confidentialité, CGU, cookies) --------------------------- */

.legal-content {
    max-width: 76ch;
}

.legal-content h3 {
    margin: 28px 0 8px;
    font-size: 1.1rem;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content ul {
    font-size: 0.96rem;
    color: var(--ink);
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content .table-wrap {
    margin: 12px 0 20px;
}

/* Bandeau d'information sur les cookies ------------------------------------ */

.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 100;
    display: none;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

.cookie-consent.is-visible {
    display: block;
}

.cookie-consent__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent__inner p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    flex: 1;
    min-width: 220px;
}

.cookie-consent__btn {
    flex: none;
    padding: 10px 20px;
}

/* Pages d'erreur ------------------------------------------------------------ */

.error-page__card {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 32px;
}

.error-page__code {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.error-page__actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
