/* ── Reset & base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.evry {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1f2e;
    background: #fff;
}

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

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

/* ── Tokens ── */
:root {
    --navy: #0d1b3e;
    --navy-mid: #1a3260;
    --navy-light: #e8edf5;
    --gold: #c9a227;
    --gold-light: #f5e9c4;
    --gold-dark: #9a7a1a;
    --text: #1a1f2e;
    --text-muted: #5a6278;
    --border: #dde2ee;
    --bg-subtle: #f6f8fc;
    --radius: 8px;
    --radius-lg: 12px;
}

/* ── Container ── */
.evry .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navbar placeholder ── */
.evry .navbar {
    background: var(--navy);
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.evry .navbar__logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.navbar__logo span {
    color: var(--gold);
}

.navbar__cta {
    background: var(--gold);
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius);
    white-space: nowrap;
}

.navbar__cta:hover {
    background: var(--gold-dark);
    color: #fff;
}

/* ── Breadcrumb ── */
.evry .breadcrumb-every {
    background: var(--navy-light);
    padding: 10px 24px;
    font-size: 13px;
    color: var(--text-muted);
}

.evry .breadcrumb-every a {
    color: var(--navy-mid);
}

.evry .breadcrumb-every a:hover {
    text-decoration: underline;
}

.evry .breadcrumb-every span {
    margin: 0 6px;
    color: var(--text-muted);
}

/* ── Hero ── */
.evry .hero-every {
    background: var(--navy);
    color: #fff;
    padding: 72px 24px 80px;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.evry .hero-every::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.07);
    pointer-events: none;
}

.evry .hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.evry .hero__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.evry  .hero__title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    max-width: 760px;
}

.evry .hero__title em {
    font-style: normal;
    color: var(--gold);
}

.evry .hero__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.6;
}

.evry .hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.evry .btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: background 0.2s;
    white-space: nowrap;
}

.evry .btn-primary:hover {
    background: #b8911f;
}

.evry .btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.evry .btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.evry .hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.evry .hero__badges li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 14px;
    border-radius: 100px;
}

/* ── Sections génériques ── */
.evry .section {
    padding: 72px 24px;
}

.evry .section--alt {
    background: var(--bg-subtle);
}

.evry .section--dark {
    background: var(--navy);
    color: #fff;
}

.evry .section__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.evry .section__title {
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--navy);
}

.evry .section--dark .section__title {
    color: #fff;
}

.evry .section__lead {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.evry .section--dark .section__lead {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Intro prose ── */
.evry .prose h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 12px;
    letter-spacing: -0.3px;
}

.evry .prose p {
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.75;
}

.evry .prose p:last-child {
    margin-bottom: 0;
}

/* ── Expertises grid ── */
.evry .expertises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.evry .expertise-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    transition: box-shadow 0.2s, border-color 0.2s;
    position: relative;
}

.evry .expertise-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(13, 27, 62, 0.07);
}

.evry .expertise-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.evry .expertise-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.evry .expertise-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.evry .expertise-card a {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-mid);
    border-bottom: 1px solid var(--border);
    padding-bottom: 1px;
    transition: border-color 0.2s, color 0.2s;
}

.evry .expertise-card a:hover {
    color: var(--gold-dark);
    border-color: var(--gold);
}

/* ── Contexte local ── */
.evry .context-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.evry .context-card {
    border-left: 3px solid var(--gold);
    padding: 20px 20px 20px 22px;
    background: #fff;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.evry .context-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.evry .context-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Zone ── */
.evry .zone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.evry .zone-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.evry .zone-col ul {
    list-style: none;
}

.evry .zone-col li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 4px 0;
    border-bottom: 1px solid var(--bg-subtle);
}

.evry .zone-col li::before {
    content: '→ ';
    color: var(--gold);
    font-weight: 700;
}

/* ── FAQ ── */
.evry .faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.evry details.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.evry details.faq-item[open] {
    border-color: var(--navy-mid);
}

.evry details.faq-item summary {
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.evry details.faq-item summary::-webkit-details-marker {
    display: none;
}

.evry details.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.evry details.faq-item[open] summary::after {
    content: '−';
}

.evry details.faq-item>p,
.evry details.faq-item>div {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

.evry details.faq-item>ul {
    margin: 0 22px 18px;
    padding-left: 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
}

.evry .faq-answer {
    padding: 0 22px 18px;
    border-top: 1px solid var(--border);
}

.evry .faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.evry .faq-answer ul {
    margin-left: 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
}

/* ── CTA final ── */
.evry .cta-block {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    color: #fff;
}

.evry .cta-block h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: -0.5px;
}

.evry .cta-block p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    margin-bottom: 32px;
}

.evry .cta-block__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.evry .cta-block__badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.evry .cta-block__badges span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 14px;
    border-radius: 100px;
}

/* ── Contact grid ── */
.evry .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.evry .contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
}

.evry .contact-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.evry .contact-card__value {
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
}

.evry .contact-card a {
    color: var(--gold-light);
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ── Related pages ── */
.evry .related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.evry .related-link {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    font-size: 13px;
    color: var(--text-muted);
    transition: border-color 0.2s, background 0.2s;
    line-height: 1.5;
}

.evry .related-link strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-top: 4px;
    font-size: 13px;
}

.evry .related-link:hover {
    border-color: var(--gold);
    background: var(--gold-light);
}

/* ── Recrutement ── */
.evry .recruitment {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    color: #fff;
}

.evry .recruitment__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.evry .recruitment h2 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}

.evry .recruitment p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    margin-bottom: 28px;
}

.evry .recruitment__benefits {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.evry .recruitment__benefits li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.evry .recruitment__benefits li::before {
    content: '✓ ';
    color: var(--gold);
    font-weight: 700;
}

.evry .recruitment__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.evry .btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: border-color 0.2s;
}

.evry .btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.evry .recruitment__note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}


/* ── Responsive ── */
@media (max-width: 640px) {
    .evry .hero-every {
        padding: 48px 20px 56px;
    }

    .evry .hero__title {
        font-size: 28px;
    }

    .evry .section {
        padding: 48px 20px;
    }

    .evry .cta-block,
    .evry .recruitment {
        padding: 36px 24px;
    }

    .evry .expertises-grid,
    .evry  .context-grid {
        grid-template-columns: 1fr;
    }

    .evry .video-grid {
        grid-template-columns: 1fr !important;
    }
}