*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --orange:       #E8730A;
            --orange-light: #F59332;
            --orange-dark:  #C45E00;
            --green:        #4A7C3F;
            --green-light:  #5E9E51;
            --green-dark:   #376030;
            --white:        #FFFFFF;
            --off-white:    #F7F5F2;
            --grey-light:   #E8E4DF;
            --grey:         #888888;
            --text:         #2B2B2B;
        }

        html, body {
            height: 100%;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background-color: var(--off-white);
            color: var(--text);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* ── TOP BAND ── */
        .top-band {
            background: var(--green);
            color: var(--white);
            text-align: center;
            padding: 9px 20px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* ── HEADER ── */
        header {
            background: var(--white);
            border-bottom: 4px solid var(--orange);
            padding: 28px 60px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-zone {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .logo-badge {
            width: 80px;
            height: 80px;
            overflow: hidden;          /* ✅ coupe ce qui dépasse */
            border-radius: 50%;        /* ✅ forme circulaire propre */
            border: 2px solid #E8730A;
            flex-shrink: 0;
        }

        .logo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;         /* ✅ remplit sans déformer */
            object-position: center top; /* ✅ centre sur la partie haute du logo */
        }

        .logo-badge span {
            color: var(--white);
            font-size: 1.55rem;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .logo-text h1 {
            font-size: 1.55rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.1;
            letter-spacing: 0.5px;
        }

        .logo-text h1 em {
            color: var(--orange);
            font-style: normal;
        }

        .logo-text p {
            font-size: 0.66rem;
            color: var(--grey);
            font-weight: 500;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-top: 5px;
        }

        /* ── MAIN ── */
        main {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 70px 30px;
            text-align: center;
        }

        /* WIP Label */
        .wip-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(74,124,63,0.10);
            border: 1.5px solid var(--green);
            border-radius: 50px;
            padding: 8px 22px;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--green);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 36px;
        }

        .wip-label i {
            font-size: 0.8rem;
        }

        /* Title */
        .main-title {
            font-size: clamp(2rem, 5vw, 3.4rem);
            font-weight: 800;
            line-height: 1.2;
            color: var(--text);
            margin-bottom: 20px;
            max-width: 680px;
        }

        .main-title span {
            color: var(--orange);
        }

        /* Divider */
        .divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), var(--orange-light));
            border-radius: 4px;
            margin: 0 auto 28px;
        }

        /* Subtitle */
        .main-sub {
            font-size: 1rem;
            color: var(--grey);
            font-weight: 300;
            max-width: 540px;
            line-height: 1.85;
            margin-bottom: 64px;
        }

        .main-sub strong {
            color: var(--text);
            font-weight: 600;
        }

        /* ── CONTACT CARDS ── */
        .contact-title {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--grey);
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .contact-grid {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 64px;
        }

        .contact-card {
            background: var(--white);
            border: 1.5px solid var(--grey-light);
            border-radius: 16px;
            padding: 26px 30px;
            display: flex;
            align-items: center;
            gap: 18px;
            text-decoration: none;
            color: var(--text);
            min-width: 230px;
            transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
        }

        .contact-card:hover {
            border-color: var(--orange);
            box-shadow: 0 8px 28px rgba(232,115,10,0.12);
            transform: translateY(-4px);
        }

        .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            color: var(--white);
            flex-shrink: 0;
        }

        .card-info small {
            display: block;
            font-size: 0.63rem;
            color: var(--grey);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 5px;
        }

        .card-info strong {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text);
        }

        /* Hours card – green accent */
        .contact-card.green-card {
            border-color: rgba(74,124,63,0.2);
        }

        .contact-card.green-card:hover {
            border-color: var(--green);
            box-shadow: 0 8px 28px rgba(74,124,63,0.12);
        }

        .contact-card.green-card .card-icon {
            background: linear-gradient(135deg, var(--green), var(--green-light));
        }

        /* ── REASSURANCE STRIP ── */
        .reassurance {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .re-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            border: 1.5px solid var(--grey-light);
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 0.76rem;
            font-weight: 600;
            color: var(--text);
        }

        .re-chip i {
            color: var(--green);
            font-size: 0.85rem;
        }

        /* ── FOOTER ── */
        footer {
            background: var(--text);
            color: rgba(255,255,255,0.5);
            padding: 22px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 0.72rem;
            font-weight: 400;
        }

        footer strong {
            color: var(--orange);
            font-weight: 700;
        }

        .footer-right {
            display: flex;
            gap: 20px;
        }

        .footer-right a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-right a:hover {
            color: var(--orange);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 680px) {
            header { padding: 22px 20px; }
            .main-title { font-size: 1.9rem; }
            .contact-card { min-width: 100%; }
            footer { padding: 18px 20px; flex-direction: column; text-align: center; }
            .footer-right { justify-content: center; }
        }