/* ==========================================
   0. TOKENS
   ========================================== */
:root {
    --ink: #1B231D;        /* pin foncé — texte, fonds sombres */
    --pine: #33473A;       /* vert moyen — accents, liens */
    --paper: #F1EFE4;      /* pierre claire — fond général */
    --stone: #E6E2D2;      /* pierre — cartes / rayures */
    --blaze: #D6480A;      /* orange balise de sentier — CTA */
    --blaze-dark: #B03C08;
    --teal: #1F6F6F;       /* teal récupération — accents secondaires */
    --white: #FFFFFF;
    --ink-soft: #3A423C;

    --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-body: 'Work Sans', 'Segoe UI', sans-serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

/* ==========================================
   1. BASE
   ========================================== */

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background-color: var(--ink);
    color: var(--white);
    padding: 12px 20px;
    z-index: 1000;
    font-weight: 600;
    border-radius: 0 0 6px 0;
}

.skip-link:focus {
    left: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    line-height: 1.65;
    background-color: var(--paper);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-display);
    letter-spacing: 0.3px;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blaze);
    margin-bottom: 14px;
}

.eyebrow-dark {
    color: var(--teal);
}

/* ==========================================
   2. NAVIGATION
   ========================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 18px 50px;
    box-shadow: 0 2px 12px rgba(27, 35, 29, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    background-color: var(--ink);
    color: var(--white);
    padding: 5px 9px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.2px;
}

.logo .prenom {
    color: var(--pine);
    font-weight: 500;
}

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

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

.nav-links li {
    margin-left: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.25s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--blaze);
    transition: width 0.25s;
}

.nav-links a:hover {
    color: var(--blaze-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ==========================================
   3. HERO
   ========================================== */
.hero-section {
    position: relative;
    background-color: var(--ink);
    padding: 80px 50px 0;
    color: var(--white);
    overflow: hidden;
}

.hero-container {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 70px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h1 {
    font-size: 62px;
    line-height: 1.02;
    margin-bottom: 22px;
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 18px;
    max-width: 480px;
    margin-bottom: 32px;
    color: #D9DED9;
}

.btn-hero {
    display: inline-block;
    background: var(--blaze);
    color: var(--white);
    padding: 15px 34px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 12px rgba(214, 72, 10, 0.25);
}

.btn-hero:hover {
    transform: translateY(-2px);
    background-color: var(--blaze-dark);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 420px;
}

.hero-image-frame {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    border-radius: 6px;
    object-fit: cover;
}

/* ==========================================
   4. PARCOURS
   ========================================== */
.parcours-section {
    background-color: var(--white);
    padding: 80px 20px 90px;
    border-bottom: 1px solid var(--stone);
}

.container-small {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.parcours-section h2 {
    color: var(--ink);
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 34px;
}

.parcours-list {
    list-style: none;
    text-align: left;
}

.parcours-list li {
    position: relative;
    font-size: 17px;
    color: var(--ink-soft);
    padding: 16px 0 16px 26px;
    border-top: 1px solid var(--stone);
}

.parcours-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 16px;
    color: var(--blaze);
    font-weight: bold;
}

.parcours-list li:last-child {
    border-bottom: 1px solid var(--stone);
}

.parcours-list li strong {
    color: var(--ink);
}

/* ==========================================
   5. ÉTAPES
   ========================================== */
.steps-section {
    position: relative;
    background-color: var(--ink);
    background-image: repeating-radial-gradient(circle at 15% 20%, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 46px),
                       repeating-radial-gradient(circle at 85% 80%, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 60px);
    padding: 95px 20px;
}

.container-steps {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.container-steps .eyebrow {
    color: var(--white);
    opacity: 0.7;
}

.steps-section h2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.steps-intro {
    font-size: 18px;
    color: #C7CDC8;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-card {
    background: var(--paper);
    padding: 38px 26px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    width: 290px;
    text-align: left;
}

.step-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    color: var(--blaze);
    line-height: 1;
    display: block;
    margin-bottom: 14px;
}

.step-card h3 {
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.step-card p {
    font-size: 15px;
    color: var(--ink-soft);
}

/* ==========================================
   6. ACCOMPAGNEMENT & SERVICES
   ========================================== */
.content-section {
    max-width: 1120px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.content-section h2 {
    color: var(--ink);
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.intro {
    font-size: 18px;
    color: var(--ink-soft);
    margin-bottom: 55px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: var(--white);
    padding: 26px 24px;
    border-radius: 8px;
    border-top: 3px solid var(--pine);
    box-shadow: 0 4px 14px rgba(27, 35, 29, 0.06);
    width: 320px;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 28px rgba(27, 35, 29, 0.14);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: var(--paper);
    color: var(--pine);
    margin-bottom: 16px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

.card p {
    font-size: 15px;
    color: var(--ink-soft);
}

/* ==========================================
   7. TARIF + PHOTO
   ========================================== */
.tarif-section-container {
    max-width: 820px;
    margin: 70px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.tarif-box {
    background-color: var(--white);
    border: 1.5px dashed var(--pine);
    flex: 1;
    max-width: 420px;
    padding: 38px 32px;
    border-radius: 10px;
    text-align: left;
}

.tarif-label {
    display: inline-block;
    font-family: var(--font-mono);
    background-color: var(--pine);
    color: var(--white);
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 14px;
}

.tarif-box .price {
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 400;
    color: var(--ink);
}

.tarif-box .price span {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--ink-soft);
    font-weight: 500;
}

.tarif-details {
    margin-top: 12px;
    margin-bottom: 26px;
    font-size: 15px;
    color: var(--ink-soft);
}

.btn-google-form {
    display: inline-block;
    background-color: var(--blaze);
    color: var(--white);
    padding: 14px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(214, 72, 10, 0.22);
}

.btn-google-form:hover {
    background-color: var(--blaze-dark);
    transform: translateY(-2px);
}

.tarif-image {
    flex: 1;
    max-width: 320px;
    display: flex;
    justify-content: center;
}

.tarif-image .hero-image-frame {
    border-color: var(--stone);
}

.tarif-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 6px;
    object-fit: cover;
}

/* ==========================================
   8. CONTACT
   ========================================== */
.contact-section {
    background-color: var(--stone);
    padding: 90px 20px;
    text-align: center;
}

.contact-section h2 {
    color: var(--ink);
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-intro {
    font-size: 18px;
    color: var(--ink-soft);
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    display: flex;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.contact-box {
    background: var(--white);
    padding: 42px 34px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(27, 35, 29, 0.07);
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.contact-box h3 {
    color: var(--ink);
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
}

.contact-box p {
    color: var(--ink-soft);
    margin-bottom: 22px;
    font-size: 15px;
}

.contact-details {
    margin: 20px 0;
    border-top: 1px solid var(--stone);
    padding-top: 20px;
    font-size: 15px;
    color: var(--ink-soft);
}

.contact-details p {
    margin-bottom: 8px;
}

.detail-label {
    font-weight: 700;
    color: var(--ink);
    display: inline-block;
    min-width: 70px;
}

.detail-sub {
    font-size: 14px;
    color: #6B7469;
    margin-left: 70px;
}

.contact-form {
    margin-top: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1.5px solid #C7C2AE;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    background-color: var(--paper);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pine);
    background-color: var(--white);
}

.btn-submit {
    display: block;
    width: 100%;
    background-color: var(--pine);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: var(--ink);
}

.btn-contact {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.2s;
}

.btn-doctolib {
    background-color: var(--teal);
    color: var(--white);
}

.btn-doctolib:hover {
    background-color: #164F4F;
}

footer {
    background-color: var(--ink);
    color: var(--white);
    text-align: center;
    padding: 32px;
    font-size: 14px;
}

/* ==========================================
   9. RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 20px;
        flex-direction: column;
        gap: 14px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 14px;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-section {
        padding: 50px 20px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 34px;
        padding-bottom: 45px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-image {
        max-width: 320px;
    }

    .parcours-section,
    .steps-section,
    .contact-section {
        padding: 55px 18px;
    }

    .parcours-section h2,
    .steps-section h2,
    .content-section h2,
    .contact-section h2 {
        font-size: 30px;
    }

    .parcours-list li {
        flex-direction: column;
        gap: 8px;
    }

    .content-section {
        margin: 55px auto;
        padding: 0 18px;
    }

    .card {
        width: 100%;
        max-width: 340px;
    }

    .tarif-section-container {
        flex-direction: column;
        gap: 26px;
        margin-top: 45px;
    }

    .tarif-box {
        width: 100%;
        max-width: 340px;
        padding: 30px 24px;
    }

    .tarif-image {
        width: 100%;
        max-width: 320px;
    }

    .contact-box {
        width: 100%;
        max-width: 340px;
        padding: 32px 24px;
    }
}