/* === Base === */
:root{
    --bg: #f1f3f5;
    --text: #0e0f11;
    --muted: #6b7280;
    --brand: #2b7597;
    --brand-2: #2b7597;
    --glass: rgba(255,255,255,0.62);
    --shadow: 0 30px 120px rgba(0,0,0,.28);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    color:var(--text);
    background: #dfe3ea;
    overflow-x:hidden;
}

.bg-layer{
    position:fixed;
    inset:0;
    background:
            radial-gradient(1200px 600px at 50% 20%, rgba(255,255,255,.35), rgba(255,255,255,0) 70%),
            url('https://images.unsplash.com/photo-1523419409543-1fb4b6f7f7d4?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat,
            linear-gradient(180deg, #d7dbe3 0%, #cdd3db 100%);
    filter:saturate(.7) contrast(.95);
    z-index:-2;
}
.vignette{
    position:fixed;
    inset:0;
    pointer-events:none;
    background: radial-gradient(65% 65% at 50% 40%, rgba(0,0,0,0) 60%, rgba(0,0,0,.22) 100%);
    z-index:-1;
}

/* Évite la barre blanche en bas sur mobile (viewport dynamique) */
html{ background:#dfe3ea; }            /* même couleur que le body */
.bg-layer, .vignette{
    top:0; left:0; width:100vw; height:100vh;  /* fallback */
}
@supports (height: 100dvh){
    .bg-layer, .vignette{ height:100dvh; }     /* suit la barre d’URL */
}

.page{min-height:100%; display:flex; flex-direction:column;}

/* === Shell === */
.shell{
    max-width: 980px;
    margin: 38px auto 0;
    padding: 40px 32px 48px; /* no extra bottom pad now */
    background: var(--glass);
    border-radius: 22px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    position: relative;
}

/* Logo image + libellé en colonne */
.header{ display:flex; justify-content:center; align-items:center; margin-bottom: 40px;   /* augmente l'espace – tu peux mettre 50 / 60 si tu veux plus */
}
.brand{ display:flex; flex-direction:column; align-items:center; gap:6px; text-decoration:none; color:inherit; }
.brand-logo{ width:68px; height:auto; display:block; }
.brand-text{ line-height:1; text-align:center; }
.brand-sub{ font-weight:800; font-size:11px; letter-spacing:.22em; color:var(--muted); }

/* Hero */
.hero{ text-align:center; padding: 8px 0 18px;}
.hero h1{
    font-size: clamp(28px, 4vw, 36px);
    margin: 8px 0 6px;
    letter-spacing:.2px;
}
.hero h2{
    font-size: clamp(20px, 3vw, 26px);
    margin:0;
    font-weight:700;
    color:#3f4754;
}
.accent{ color:var(--brand); }

/* Cards */
.cards{
    margin: 14px auto 6px;
    display:grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 22px;
    max-width: 760px;
}
.card{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    height: 180px;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
    isolation:isolate;
}
.card-img{
    position:absolute; inset:0;
    width:100%; height:100%; object-fit:cover;
    transform: scale(1.06);
    filter: contrast(1.05) saturate(0.95) brightness(0.9);
}
.card-overlay{
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.45) 70%);
}
.card-badges{
    position:absolute;
    left:12px;
    bottom: 50px;                 /* distance au-dessus du titre */
    display:flex;
    gap:8px;
    z-index:2;
}

.badge{
    font-size:11px; font-weight:800; letter-spacing:.06em;
    padding:6px 10px; border-radius:8px;
    text-transform:uppercase;
}
.badge-contrast{ background: rgba(255,255,255,.85); color:#111; }
.card-content{
    position:absolute; left:16px; right:16px; bottom:14px; z-index:2; color:#fff;
    display:flex; justify-content:space-between; align-items:end; gap:10px;
}
.card h3{ margin:0; font-size:22px; text-shadow:0 2px 12px rgba(0,0,0,.35); }
.pill{
    display:inline-block; background:#fff; color:#111; text-decoration:none;
    border-radius:999px; padding:8px 12px; font-weight:600; font-size:12px;
    box-shadow:0 4px 20px rgba(0,0,0,.25);
    transition: transform .15s ease, box-shadow .15s ease;
    white-space:nowrap;
}
.card:hover .pill{ transform: translateY(-1px); box-shadow:0 8px 26px rgba(0,0,0,.3);}

/* Pitch */
.pitch{
    text-align:center; max-width:740px; margin: 14px auto 10px; color:#363c46;
    font-size:15px;
}
.pitch strong{ color:#111; }

/* Building — simple block under cards */
.building{
    margin: 18px auto 0;
    max-width: 680px;
    width: 66%;
}
.building img{
    width:100%; height:auto;
    display:block;
    border-radius:10px;
}

/* === Footer === */
.site-footer{
    margin-top: 60px; /* reduced since building is in normal flow */
    background: linear-gradient(180deg, rgba(20,26,36,.86) 0%, rgba(20,26,36,.94) 100%);
    color:#e4e8ee;
    position:relative;
}
.footer-inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 32px 48px;
    display:grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 24px;
}
.footer-col h4, .footer-col h5{ margin:0 0 10px; }
.footer-col h4{ font-size:14px; letter-spacing:.2em; font-weight:800; }
.footer-col h5{ font-size:13px; letter-spacing:.14em; text-transform:uppercase; color:#9fb3d1; }
.footer-col p, .footer-col li, .footer-col a{ font-size:14px; }
.footer-col .muted{ color:#a8b1bf; }
.footer-col ul{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.footer-col a{ color:#dfe7ff; text-decoration:none; }
.footer-col a:hover{ text-decoration:underline; }
.icon-link{
    display:inline-grid; place-items:center; width:28px; height:28px; border-radius:50%;
    background:#dfe7ff; color:#0b1c3a; font-weight:800;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding: 14px 16px 18px;
    color:#a3b0c5;
}

/* === Responsive === */
@media (max-width: 900px){
    .footer-inner{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
    .cards{ grid-template-columns: 1fr; }
    .building{ max-width: 520px; }
}
@media (max-width: 520px){
    .shell{ margin: 20px 12px 0; padding: 28px 16px 40px; }
    .hero h1{ font-size: 26px; }
    .hero h2{ font-size: 20px; }
}


/* === Particuliers page additions === */
.topbar{
    position: absolute;
    top: 22px;              /* ajuste la hauteur selon ton header */
    left: 32px;
    z-index: 30;
}
.back-link{
    display:inline-block;
    padding:6px 10px;
    border-radius:10px;
    background:#fff;
    box-shadow:0 6px 14px rgba(0,0,0,.12);
    text-decoration:none;
    color:#1f2937;
    font-weight:600;
    font-size:13px;
}
.back-link:hover{ transform: translateY(-1px); }

/* Banner (image + titre + léger dégradé sous le texte) */
.banner{
    position: relative;
    overflow: hidden;
    border-radius: 14px;           /* facultatif pour lisser */
}

/* Image */
.banner img{
    display: block;
    width: 100%;
    height: 380px;                 /* tu peux agrandir ici si besoin */
    object-fit: cover;
}

/* Dégradé sous le texte */
.banner::after{
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 45%;
    background: linear-gradient(
            to top,
            rgba(0,0,0,0.6),             /* foncé à la base */
            rgba(0,0,0,0.0)              /* transparent vers le haut */
    );
    pointer-events: none;
}

/* Titre du banner */
.banner-title{
    position: absolute;
    left: 0; right: 0;
    bottom: 18px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 28px;              /* avant ~20px => maintenant plus visible */
    font-weight: 800;
    color: #fff;
    text-align: center;
    z-index: 2;                   /* passe au dessus du dégradé */
}

/* ===== Section Title améliorée ===== */
.section-title{
    margin: 26px 0 18px;               /* plus d’espace */
    font-size: 22px;                   /* plus lisible */
    font-weight: 800;
    color: #1f2937;
}

/* ===== Grille des tuiles (prestations) ===== */
.tiles{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;                         /* plus d’air entre les items */
    margin-bottom: 22px;
}

/* ===== Tuile + image ===== */
.tile{
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0,0,0,.22);
    height: 220px;                     /* agrandi pour être visuel */
}
.tile img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Dégradé noir sous le texte pour la lisibilité ===== */
.tile::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 58%;                        /* couvre la zone en bas */
    background: linear-gradient(
            to top,
            rgba(0,0,0,0.7),
            rgba(0,0,0,0.0)
    );
    pointer-events: none;
}

/* ===== Caption lisible et plus grand ===== */
.tile-caption{
    position: absolute;
    bottom: 14px;
    left: 0; right: 0;
    padding: 0 16px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;                    /* plus lisible qu'avant */
    line-height: 1.4;
    z-index: 2;                         /* au-dessus du dégradé */
}


/* Info panel */
.info-panel{
    background:#fff; border:1px solid #e6e9ef;
    border-radius:12px; box-shadow:0 16px 40px rgba(0,0,0,.12);
    padding:16px; display:grid; grid-template-columns:1fr 1fr; gap:16px;
}
.info-panel .info-col h4{ margin:0 0 6px; }
.small{ font-size:13px; }

.btn{
    display:inline-block; text-decoration:none; border-radius:10px;
    padding:10px 14px; font-weight:700; box-shadow:0 10px 20px rgba(0,0,0,.16);
}
.btn.primary{ background: #2b7597; color:#fff; }

.btn.primary:hover{
    background: #224c60;
    transform:translateY(-1px);
    box-shadow:0 12px 24px rgba(2,6,23,.16);
}

.field{
    display:block; background:#fff; border:1px solid #e6e9ef; border-radius:10px;
    padding:10px 12px; margin-top:8px; text-decoration:none; color:#1f2937;
}

@media (max-width: 800px){
    .banner img{ height:240px; }
    .tiles{ grid-template-columns:1fr; }
    .info-panel{ grid-template-columns:1fr; }
}


/* ===== Mini Cards — version élargie, alignée avec .section-title ===== */

/* Grille des mini-cards */
.mini-cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;                     /* + d’air entre éléments */
    max-width: 960px;              /* comme .tiles élargies */
    margin: 26px auto 0;           /* même marge que .section-title */
}

/* Chaque carte */
.mini-card{
    position: relative;
    display: block;
    height: 220px;                 /* avant 160px => + grand et plus équilibré */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 22px 56px rgba(0,0,0,.24);
    text-decoration: none;
    color: #fff;
}

/* Image de fond */
.mini-card img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay (dégradé pour lisibilité du texte) */
.mini-card .mini-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(0,0,0,0.7),          /* plus foncé au bas pour texte contrasté */
            rgba(0,0,0,0.15) 55%,     /* transition douce */
            rgba(0,0,0,0.02)          /* quasi transparent vers le haut */
    );
    pointer-events: none;
}

/* Contenu (texte + bouton Voir) */
.mini-card .mini-content{
    position: absolute;
    left: 16px; right: 16px; bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

/* Titre de mini-card (même taille que section-title) */
.mini-card h4{
    margin: 0;
    font-size: 22px;              /* adapté depuis section-title */
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.pill-ghost{
    background: rgba(255,255,255,.9);
    color:#0b1322;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    box-shadow:0 6px 18px rgba(0,0,0,.25);
}

/* Reveal/ Spoiler */
.reveal{
    max-width: 920px;
    margin: 4px auto 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
}
.reveal.open{
    opacity: 1;
    transform: translateY(0);
}
.reveal-inner{
    padding: 14px 0 0;
}
.reveal-card{
    background:#fff;
    border:1px solid #e6e9ef;
    border-radius:12px;
    box-shadow:0 16px 40px rgba(0,0,0,.12);
    padding:16px;
}
.reveal-card h4{ margin:0 0 10px; }
.checklist{ padding-left: 18px; margin: 0 0 10px; }
.checklist li{ margin:6px 0; }
.reveal .actions{ display:flex; gap:10px; }

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

/* Quand un reveal est inséré sous une carte dans la grille */
.mini-cards .reveal{
    margin-top: 12px;
}

/* Quand les cartes sont empilées (mobile), le spoiler doit prendre 100% */
@media (max-width: 991px){
    /* 1 colonne pour la grille */
    .mini-cards{ grid-template-columns: 1fr; }

    /* Le panneau inséré sous la carte prend toute la largeur de la colonne */
    .mini-cards > .reveal{
        grid-column: 1 / -1;
        width: 100%;
        max-width: none;
        margin: 12px 0 0;          /* petit espace sous la carte cliquée */
    }

    /* Annule le centrage/contrainte de largeur du panneau interne */
    .mini-cards > .reveal .reveal-inner,
    .mini-cards > .reveal .reveal-card{
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
}

/* Small size for nested mini-cards */
.mini-card.small{ height: 130px; }

/* Nested reveals styling */
.reveal.nested{
    margin-top: 10px;
}


/* Active parent visual treatment */
.mini-card.active{
    transform: translateY(-2px);
    outline: 2px solid var(--accent, #2F73FF);
    box-shadow: 0 18px 52px rgba(0,0,0,.28), 0 0 0 4px color-mix(in srgb, var(--accent, #2F73FF), transparent 85%);
}
.mini-card.active .mini-overlay{
    background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.45) 80%);
}
.mini-card.active h4{
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.mini-card .pill-ghost{ transition: background .2s ease, color .2s ease; }
.mini-card.active .pill-ghost{
    background: var(--accent, #2F73FF);
    color: #fff;
}

/* Link reveal to parent accent color */
.reveal.open .reveal-card{
    position: relative;
    border-color: color-mix(in srgb, var(--accent, #2F73FF), #ffffff 70%);
    box-shadow: 0 16px 40px rgba(0,0,0,.12), 0 0 0 2px color-mix(in srgb, var(--accent, #2F73FF), transparent 80%);
}
.reveal.open .reveal-card::before{
    content:"";
    position:absolute; left:0; top:0; right:0; height:3px;
    background: var(--accent, #2F73FF);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}



/* ==== Fix: rounded corners + refine accent on reveal panels ==== */
/* Ensure the card itself clips its contents and any inner accent */
.reveal-card{
    border-radius:12px;
    overflow:hidden;
}

/* Remove the top colored bar for a cleaner look */
.reveal.open .reveal-card::before{ display:none !important; }

/* Replace external blue ring with a subtle inset outline that respects rounding */
.reveal.open .reveal-card{
    /* keep drop shadow */
    box-shadow: 0 16px 40px rgba(0,0,0,.12), inset 0 0 0 2px color-mix(in srgb, var(--accent, #2F73FF), transparent 70%) !important;
    border-color: color-mix(in srgb, var(--accent, #2F73FF), #ffffff 75%) !important;
}

/* Optional: soften corner clipping artefacts on the container itself */
.reveal{
    border-radius: 12px;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 0.7;
    cursor: pointer;
}

/* Pills contact */
.contact-pill{
    display:flex; align-items:center; gap:10px;
    padding:12px 14px; margin-top:6px;
    border-radius:12px;
    background:#f8fafc;
    border:1px solid rgba(0,0,0,.06);
    color:var(--brand);
    font-weight:700; text-decoration:none;
    box-shadow:0 4px 10px rgba(2,6,23,.05) inset;
}
.contact-pill:hover{ background:#eef2f7; }
.contact-pill svg{ width:18px; height:18px; color:#111827; }

/* ======= Version plus grande + espaces adaptés (Desktop ≥ 1200px) ======= */
@media (min-width: 1200px){
    /* Carte en verre plus large et plus haute */
    .shell{
        max-width: 1160px;         /* avant ~980px */
        padding: 56px 48px 60px;   /* plus d’air partout */
        border-radius: 24px;
    }

    /* Titres plus imposants */
    .hero h1{ font-size: 44px; line-height: 1.15; }
    .hero h2{ font-size: 28px; margin-top: 6px; }

    /* Grille des 2 cartes : plus large et plus haute */
    .cards{
        max-width: 920px;          /* avant ~760px */
        gap: 26px;
        margin-top: 18px;
    }
    .card{
        height: 220px;             /* avant ~180px */
        border-radius: 18px;
        box-shadow: 0 14px 48px rgba(0,0,0,.22);
    }
    .card h3{ font-size: 24px; }
    .pill{ padding: 10px 14px; font-size: 13px; }

    /* Phrase d’accroche + espace */
    .pitch{
        margin-top: 16px;
        font-size: 16px;
        max-width: 860px;
    }

    /* Image "building" plus grande et mieux espacée */
    .building{
        margin-top: 14px;
        max-width: 880px;          /* avant ~680px */
        width: 66%;
    }
    .building img{
        border-radius: 12px;
    }

    /* Footer un peu plus bas pour respirer */
    .site-footer{ margin-top: 80px; }
    .footer-inner{ max-width: 1200px; }

    /* Légère retouche du fond pour centrer l’attention */
    .bg-layer{
        background:
                radial-gradient(1400px 700px at 50% 22%, rgba(255,255,255,.36), rgba(255,255,255,0) 70%),
                url('https://images.unsplash.com/photo-1523419409543-1fb4b6f7f7d4?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat,
                linear-gradient(180deg, #d7dbe3 0%, #cdd3db 100%);
    }
}

/* ======= Palier “grande tablette / laptop” (992–1199px) : un cran au-dessus ======= */
@media (min-width: 992px) and (max-width: 1199.98px){
    .shell{ max-width: 1040px; padding: 48px 40px 56px; }
    .hero h1{ font-size: 38px; }
    .hero h2{ font-size: 24px; }
    .cards{ max-width: 860px; }
    .card{ height: 200px; }
    .building{ max-width: 800px; }
}

/* ====== Phrase d’accroche agrandie et mise en valeur ====== */
.pitch{
    margin-top: 42px;         /* avant ~16/20px */
    margin-bottom: 48px;      /* crée un vrai espace avant l'image */
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;          /* avant ~15/16px */
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
    max-width: 700px;         /* pour éviter les lignes trop longues */
    color: #2a2e35;           /* plus lisible sur fond clair */
}

/* Version très large (≥ 1200px) : un peu plus grande */
@media (min-width: 1200px){
    .pitch{
        font-size: 28px;
        margin-top: 52px;
        max-width: 700px;
    }
}

/* ===== Mise en forme spéciale quand il n'y a qu'une seule tuile ===== */
.tiles.single-tile{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.tiles.single-tile .tile{
    width: 100%;
    max-width: 780px;          /* largeur optimale sur desktop */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0,0,0,.20);
}

/* Image plus grande pour occuper l’espace */
.tiles.single-tile .tile img{
    width: 100%;
    height: 280px;             /* agrandie pour équilibre visuel */
    object-fit: cover;
    display: block;
}

/* Caption plus lisible */
.tiles.single-tile .tile-caption{
    font-size: 15px;
    padding: 0 16px;
    bottom: 14px;
}

/* Responsive */
@media (max-width: 991px){
    .tiles.single-tile .tile{
        max-width: 100%;
    }
    .tiles.single-tile .tile img{
        height: 220px;           /* un peu plus petit sur mobile */
    }
}


/* 1) Couvrir 100% en continu, même au scroll mobile */
html { background: #dfe3ea; }                 /* couleur de secours homogène */
body { background: transparent; }             /* pas de fond qui "coupe" */

.bg-layer,
.vignette{
    position: fixed;
    inset: 0;                                   /* top:0;right:0;bottom:0;left:0 */
    width: 100%;
    height: 100vh;                              /* fallback */
    pointer-events: none;
    z-index: 0;                                 /* pas de z-index négatif */
}

/* Viewport mobile dynamique : évite les bandes en bas lors du scroll */
@supports (height: 100dvh){
    .bg-layer, .vignette{ height: 100dvh; }
}

/* 2) Le contenu et le footer passent au-dessus des fonds fixés */
.page{ position: relative; z-index: 2; background: transparent; }
.site-footer{ position: relative; z-index: 3; }

/* 3) Évite les micro-joints entre calques (GPU banding sur certains devices) */
.bg-layer, .vignette{
    will-change: transform;
    transform: translateZ(0);                   /* force le composite dans un même plan */
    backface-visibility: hidden;
}

/* 4) Si tu chevauches le footer avec la "carte" centrale, pas d'espace parasite */
.shell{ margin-bottom: 0; }                   /* évite la coupure claire juste avant le footer */
