* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --orange: #E8712A;
    --orange-l: #F5923C;
    --orange-d: #C25516;
    --yellow: #FFF3C4;
    --yellow-d: #F0D44A;
    --pink: #D4318A;
    --green: #3DAA6B;
    --blue: #3A7DC9;
    --purple: #7B4FC9;
    --cream: #FFFBF2;
    --text: #2C1508;
    --text-light: #7a5030;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(194, 85, 22, 0.97);
    backdrop-filter: blur(12px);
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s;
    box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav-logo {
    font-family: 'Caveat', cursive;
    font-size: 1.55rem;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1.4rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--yellow-d); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px; height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

/* ── HERO ── */
#hero {
    background: linear-gradient(140deg, #D45E18 0%, var(--orange) 40%, var(--orange-l) 75%, #F5A352 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 980px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.photo-frame { flex-shrink: 0; }

.photo-inner {
    width: 210px;
    height: 250px;
    border-radius: 14px;
    border: 5px solid var(--yellow-d);
    box-shadow: 7px 7px 0 var(--orange-d), 0 24px 60px rgba(0,0,0,0.22);
    overflow: hidden;
}

.photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.hero-name {
    font-family: 'Caveat', cursive;
    font-size: 4.8rem;
    color: white;
    line-height: 1;
    text-shadow: 3px 3px 0 var(--orange-d);
    margin-bottom: 0.25rem;
}

h1.hero-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1.85rem;
    color: var(--yellow-d);
    margin-bottom: 0.9rem;
    font-weight: 700;
}

.hero-pitch {
    background: rgba(255,255,255,0.15);
    border-left: 4px solid var(--yellow-d);
    border-radius: 0 12px 12px 0;
    padding: 0.9rem 1.2rem;
    color: white;
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 520px;
    font-style: italic;
}

.hero-contacts { display: flex; flex-direction: column; gap: 0.75rem; }

.clink {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
    padding: 0.65rem 1.3rem;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.22s, transform 0.22s;
    width: fit-content;
}

.clink:hover { background: rgba(255,255,255,0.32); transform: translateX(6px); }
.clink-icon { font-size: 1.15rem; }

/* ── SHARED ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.sec-title {
    font-family: 'Caveat', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--orange-d);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sec-title .star { color: var(--pink); }

.sec-title::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(to right, var(--orange), transparent);
    margin-left: 0.8rem;
    border-radius: 2px;
}

.sec-intro {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.2rem;
    max-width: 680px;
}

/* ── TOOLTIP ── */
.tip {
    position: relative;
    border-bottom: 2px dotted var(--orange);
    cursor: help;
}

.tip::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #2C1508;
    color: white;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 600;
    padding: 0.45rem 0.8rem;
    border-radius: 8px;
    max-width: 260px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.tip::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #2C1508;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 99;
}

.tip:hover::after, .tip:hover::before { opacity: 1; }

/* ── À PROPOS ── */
#apropos {
    background: white;
    padding: 4.5rem 2rem;
}

.apropos-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.apropos-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.apropos-quisuisje p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.apropos-quisuisje p strong { color: var(--orange-d); }

.apropos-quisuisje .apropos-subtitle {
    font-size: 1.9rem;
    color: var(--orange-d);
    line-height: 1;
}

.apropos-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--orange-d);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* valeurs horizontales */
.valeurs-grid-h {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.valeur-h {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: var(--yellow);
    border: 2px solid var(--yellow-d);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.valeur-h:hover {
    border-color: var(--orange);
    box-shadow: 3px 3px 0 var(--orange);
}

.valeur-h .vi { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }

.valeur-h-body { flex: 1; }

.valeur-h-body strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--orange-d);
    margin-bottom: 0.3rem;
}

.valeur-h-body p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* ── PARCOURS ÉTAPES ── */
#demarche {
    background: var(--cream);
}

.steps-row {
    display: flex;
    gap: 0;
    position: relative;
    align-items: flex-start;
    flex-wrap: nowrap;
    overflow: visible;
    padding: 0.8rem 0 1rem;
    justify-content: center;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: calc(0.8rem + 50px);
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, var(--orange), var(--pink));
    z-index: 0;
}

/* ── STEP PHOTO CARD ── */
.step-card {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.8rem;
    position: relative;
    z-index: 1;
}

.step-photo-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--yellow-d);
    box-shadow: 0 4px 16px rgba(232,113,42,0.3);
    transition: transform 0.25s, box-shadow 0.25s;
}

.step-card:hover .step-photo-wrap {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(232,113,42,0.4);
}

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

.step-photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    font-size: 1.8rem;
}

.step-photo-placeholder span {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--orange-d);
}

.step-icon-wrap {
    background: var(--yellow);
    border-color: var(--yellow-d);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.step-icon-wrap i {
    font-size: 2.2rem;
    color: var(--orange);
    transition: transform 0.25s;
}

.step-card:hover .step-icon-wrap {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(232,113,42,0.4);
}

.step-card:hover .step-icon-wrap i { transform: scale(1.15); color: var(--orange-d); }

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(232,113,42,0.3);
}

.step-card-body { display: contents; }

.step-card h4 {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--orange-d);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.step-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── PUBLIC ── */
#public { background: var(--orange); }
#public .sec-title { color: var(--yellow); }
#public .sec-title::after { background: linear-gradient(to right, var(--yellow-d), transparent); }
#public .sec-intro { color: rgba(255,255,255,0.85); }

.public-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    align-items: start;
}

.pub-card {
    background: var(--yellow);
    border: 3px solid var(--orange-d);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 5px 5px 0 var(--orange-d);
    transition: box-shadow 0.22s, border-color 0.22s;
}

.pub-accord.open { border-color: var(--orange); box-shadow: 7px 7px 0 var(--orange); }

.pub-accord-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    text-align: left;
}

.pub-card .icon { font-size: 2rem; flex-shrink: 0; }

.pub-title {
    flex: 1;
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    color: var(--text);
    font-weight: 700;
}

.pub-arrow {
    font-size: 0.9rem;
    color: var(--orange-d);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.pub-accord.open .pub-arrow { transform: rotate(180deg); }

.pub-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
}

.pub-accord.open .pub-body {
    max-height: 700px;
    padding: 0 1.5rem 1.4rem;
}

/* ── INTERVENTIONS ── */
#en-pratique { background: white; }

.tabs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.55rem 1.3rem;
    border: 2.5px solid var(--orange);
    background: transparent;
    color: var(--orange-d);
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--orange);
    color: white;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.interv-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.interv-box {
    background: var(--yellow);
    border: 3px solid var(--orange-d);
    border-radius: 18px;
    padding: 2rem 2.2rem;
    box-shadow: 6px 6px 0 var(--orange-d);
}

.interv-box h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.9rem;
    color: var(--orange-d);
    margin-bottom: 0.5rem;
}

.interv-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1.2rem;
    font-style: italic;
    border-left: 3px solid var(--orange);
    padding-left: 0.8rem;
}

.interv-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.interv-box li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.96rem;
    line-height: 1.5;
}

.interv-box li::before {
    content: '★';
    color: var(--pink);
    flex-shrink: 0;
    margin-top: 2px;
}

.interv-tip {
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    border: 2px solid var(--yellow-d);
}

.photo-placeholder {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: var(--yellow);
    border: 2px dashed var(--yellow-d);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 2rem 1rem;
    font-size: 2.5rem;
    color: var(--text-light);
}

.photo-placeholder span {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange-d);
}

.interv-photos-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.interv-photos-duo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.interv-tip h4 {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--pink);
    margin-bottom: 0.7rem;
}

.interv-tip p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ── FAQ ── */
#faq { background: white; }

.faq-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 780px; }

.faq-item {
    background: white;
    border-radius: 14px;
    border: 2px solid transparent;
    box-shadow: 0 2px 12px rgba(232,113,42,0.07);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--orange); }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Nunito', sans-serif;
    font-size: 0.96rem;
    font-weight: 800;
    color: var(--orange-d);
    gap: 1rem;
}

.faq-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--orange);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    padding: 0 1.4rem;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 1.4rem 1.2rem;
}

/* ── CONTACT ── */
#contact { background: var(--orange-d); text-align: center; color: white; }
#contact .sec-title { color: var(--yellow-d); justify-content: center; }
#contact .sec-title::after { display: none; }

.contact-intro { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 2.2rem; }
.contact-intro strong { color: rgba(255,255,255,0.9); }

.contact-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cbtn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 2rem;
    background: var(--yellow);
    color: var(--orange-d);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.22);
    transition: transform 0.22s, box-shadow 0.22s;
}

.cbtn:hover { transform: translate(-4px,-4px); box-shadow: 9px 9px 0 rgba(0,0,0,0.22); }
.cbtn .ci { font-size: 1.4rem; }

/* ── FOOTER ── */
footer {
    background: #1a0c04;
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 1.4rem 2rem;
    font-size: 0.82rem;
}
footer a, footer p { color: rgba(255,255,255,0.45); }

/* ── FADE-IN ── */
.fi { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fi.v { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .apropos-top { grid-template-columns: 1fr; }
    .valeurs-grid-h { grid-template-columns: 1fr 1fr; }
    .interv-layout { grid-template-columns: 1fr; }
    .steps-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .steps-row::before { display: none; }
    .step-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 0;
    }
    #zone .container > div { grid-template-columns: 1fr !important; }
    #zone-map { height: 280px !important; }
}

@media (max-width: 820px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--orange-d);
        padding: 1rem 2rem 1.5rem;
        gap: 1rem;
    }
    .hamburger { display: flex; }
    .hero-content { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
    .hero-text h1 { font-size: 3.2rem; }
    .hero-contacts { align-items: center; }
    .hero-pitch { text-align: left; }
}

@media (max-width: 560px) {
    .hero-text h1 { font-size: 2.6rem; }
    .sec-title { font-size: 2.2rem; }
    .valeurs-grid-h { grid-template-columns: 1fr; }
    .step-card { flex: 0 0 100%; }
}

/* ── FRISE ZIGZAG ── */
.parcours-frise {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 0;
}

.parcours-frise::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: linear-gradient(to bottom, var(--orange), var(--pink));
    border-radius: 2px;
    z-index: 0;
}

.frise-item {
    display: grid;
    grid-template-columns: 1fr 28px 1fr;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    position: relative;
    z-index: 1;
}

.frise-item:nth-child(odd) .frise-year {
    text-align: right;
    grid-column: 1;
}

.frise-item:nth-child(odd) .frise-label {
    grid-column: 3;
    text-align: left;
}

.frise-item:nth-child(even) .frise-year {
    grid-column: 3;
    text-align: left;
    order: 3;
}

.frise-item:nth-child(even) .frise-label {
    grid-column: 1;
    text-align: right;
    order: 1;
}

.frise-item:nth-child(even) .frise-dot { order: 2; }

.frise-year {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-d);
    line-height: 1;
}

.frise-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid white;
    box-shadow: 0 0 0 2.5px var(--orange);
    flex-shrink: 0;
    justify-self: center;
}

.frise-item:last-child .frise-dot {
    background: var(--pink);
    box-shadow: 0 0 0 2.5px var(--pink);
}

.frise-item:last-child .frise-year { color: var(--pink); }

.frise-label {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.45;
    background: white;
    border: 2px solid var(--yellow-d);
    border-radius: 10px;
    padding: 0.5rem 0.9rem;
    box-shadow: 2px 2px 0 var(--yellow-d);
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.frise-label strong {
    font-size: 0.88rem;
    color: var(--orange-d);
    font-weight: 800;
}

.frise-detail {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.frise-item:hover .frise-label {
    border-color: var(--orange);
    box-shadow: 3px 3px 0 var(--orange);
}

.frise-item:last-child .frise-label {
    border-color: var(--pink);
    box-shadow: 2px 2px 0 var(--pink);
}

.frise-item:last-child .frise-label strong { color: var(--pink); }

/* ── CARTE ZONE ── */
.zone-tooltip {
    background: white;
    border: 2px solid var(--orange);
    border-radius: 8px;
    padding: 0.3rem 0.7rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
}
.zone-tooltip::before { display: none; }
.leaflet-attribution-flag { display: none !important; }

/* ── MENTIONS LÉGALES ── */

.nav-back {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-back:hover { color: var(--yellow-d); }

main {
    max-width: 780px;
    margin: 4rem auto;
    padding: 0 2rem 4rem;
}

h1 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: var(--orange-d);
    margin-bottom: 2rem;
}

h2 {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    color: var(--orange-d);
    margin: 2rem 0 0.8rem;
}

p, li {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

strong { color: var(--text); }
a { color: var(--orange-d); }

.bloc {
    background: white;
    border-radius: 14px;
    border-left: 5px solid var(--orange);
    padding: 1.5rem 1.8rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px rgba(232,113,42,0.07);
}
