:root {
    --oa-green: #48d597;
    --oa-blue: #2878ff;
    --oa-purple: #8c52ff;

    --oa-black: #111111;
    --oa-white: #ffffff;
    --oa-soft: #f5f5f3;

    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--oa-black);
    background: var(--oa-white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

.site-header {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -.02em;
}

.main-nav {
    display: flex;
    gap: 24px;
    margin-left: auto;
}

.main-nav a,
.languages a {
    text-decoration: none;
}

.languages {
    display: flex;
    gap: 10px;
    font-size: .85rem;
}

.hero {
    min-height: 68vh;
    display: flex;
    align-items: center;
    padding: 80px 28px;
}

.hero-home {
    background:
        linear-gradient(
            115deg,
            var(--oa-green) 0%,
            var(--oa-blue) 55%,
            var(--oa-purple) 100%
        );
}

.hero-coaching {
    background: var(--oa-blue);
    color: var(--oa-white);
}

.hero-about {
    background: var(--oa-purple);
    color: var(--oa-white);
}

.hero-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 22px;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: .93;
    letter-spacing: -.055em;
}

.lead {
    max-width: 700px;
    margin: 30px 0 0;
    font-size: clamp(1.15rem, 2vw, 1.7rem);
}

.content-section {
    padding: 90px 28px;
}

.narrow {
    max-width: 780px;
    margin: 0 auto;
}

.price-range {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
}

.site-footer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 28px;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 760px) {
    .site-header {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    .languages {
        margin-left: auto;
    }

    .hero {
        min-height: 60vh;
    }
}

/* ==========================================================
   HOMEPAGE
   ========================================================== */

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    gap: 70px;
    align-items: center;
}

.hero-media {
    min-height: 430px;
    display: flex;
}

.hero-media-placeholder {
    width: 100%;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    padding: 26px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.3);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.home-section {
    padding: 110px 28px;
}

.section-grid {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(220px, .75fr) minmax(0, 1.25fr);
    gap: 80px;
}

.section-heading {
    max-width: var(--max-width);
    margin: 0 auto 50px;
}

.section-number {
    margin: 0 0 18px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.home-section h2,
.home-contact h2 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    line-height: .95;
    letter-spacing: -.05em;
}

.section-copy {
    max-width: 720px;
    font-size: 1.15rem;
}

.section-copy p:first-child {
    margin-top: 0;
}

.big-copy {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.035em;
}

.section-light {
    background: var(--oa-soft);
}

.section-purple {
    background: var(--oa-purple);
    color: var(--oa-white);
}

.section-blue {
    background: var(--oa-blue);
    color: var(--oa-white);
}

.section-results {
    background: var(--oa-white);
}

.results-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.result-card {
    min-height: 310px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.result-card strong {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: .9;
    letter-spacing: -.06em;
}

.result-card p {
    margin: 40px 0 0;
    font-size: 1.05rem;
}

.result-green {
    background: var(--oa-green);
}

.result-blue {
    background: var(--oa-blue);
    color: var(--oa-white);
}

.result-purple {
    background: var(--oa-purple);
    color: var(--oa-white);
}

.price-home {
    margin: 50px 0 16px;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.045em;
}

.section-reading {
    background: var(--oa-green);
}

.reading-list {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid rgba(0,0,0,.35);
}

.reading-list span,
.reading-list .reading-link {
    display: block;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0,0,0,.35);
    font-size: clamp(1.3rem, 3vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -.025em;
}

.home-contact {
    padding: 130px 28px;
    background: var(--oa-black);
    color: var(--oa-white);
}

.home-contact > div {
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-link {
    display: inline-block;
    margin-top: 45px;
    padding-bottom: 4px;
    border-bottom: 2px solid currentColor;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 800px) {
    .hero-grid,
    .section-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .section-grid {
        gap: 42px;
    }

    .hero-media {
        min-height: 280px;
    }

    .hero-media-placeholder {
        min-height: 280px;
    }

    .home-section {
        padding: 75px 24px;
    }

    .result-card {
        min-height: 230px;
    }
}

.result-name {
    display: block;
    margin-top: 24px;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.result-card p {
    margin-top: 12px;
}

/* Photo hero Oregano */
.hero-photo {
    width: 100%;
    height: 100%;
    min-height: 430px;
    max-height: 620px;
    display: block;
    object-fit: cover;
    object-position: center 45%;
}

@media (max-width: 800px) {
    .hero-photo {
        min-height: 360px;
        max-height: 520px;
    }
}

.training-list p {
    padding: 18px 0;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,.35);
}

.training-list p:first-child {
    border-top: 1px solid rgba(255,255,255,.35);
}

.training-contact {
    padding: 120px 28px;
    background: var(--oa-black);
    color: var(--oa-white);
}

.training-contact-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.training-contact-inner > p:not(.section-number) {
    max-width: 650px;
    margin-top: 30px;
    font-size: 1.2rem;
}

.contact-form-placeholder {
    margin-top: 55px;
    max-width: 760px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,.35);
    font-size: 1rem;
}

.contact-reassurance {
    font-weight: 700;
}

.contact-form {
    position: relative;
    max-width: 760px;
    margin-top: 55px;
}

.form-field {
    margin-bottom: 28px;
}

.form-field label {
    display: block;
    margin-bottom: 9px;
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.5);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--oa-white);
    font: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--oa-green);
}

.form-field textarea {
    resize: vertical;
}

.form-submit {
    margin-top: 20px;
    padding: 15px 26px;
    border: 0;
    background: var(--oa-green);
    color: var(--oa-black);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.form-submit:hover {
    transform: translateY(-1px);
}

.form-error {
    display: block;
    margin-top: 8px;
    font-size: .9rem;
    font-weight: 700;
}

.form-error-global {
    max-width: 760px;
    margin-top: 30px;
}

.form-success {
    max-width: 760px;
    margin-top: 35px;
    padding: 18px 20px;
    background: var(--oa-green);
    color: var(--oa-black);
    font-weight: 800;
}

.form-privacy {
    max-width: 620px;
    font-size: .85rem !important;
    opacity: .7;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* ==========================================================
   ARTICLES
   ========================================================== */

.article-page {
    background: var(--oa-white);
}

.article-header {
    padding: 90px 28px 70px;
    background: var(--oa-green);
}

.article-inner {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.article-header h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: .95;
    letter-spacing: -.05em;
}

.article-header .eyebrow {
    margin-bottom: 24px;
}

.article-intro {
    margin-top: 30px;
    max-width: 720px;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.5;
}

.article-content {
    padding: 75px 28px 110px;
    font-size: 1.08rem;
    line-height: 1.75;
}

.article-content h2 {
    margin: 70px 0 22px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.article-content h3 {
    margin: 45px 0 16px;
    font-size: 1.55rem;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.article-content p {
    margin: 0 0 24px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 28px;
    padding-left: 1.4em;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-content blockquote {
    margin: 45px 0;
    padding: 28px 30px;
    border-left: 6px solid var(--oa-purple);
    background: var(--oa-soft);
    font-size: 1.15rem;
}

.article-content strong {
    font-weight: 800;
}

.article-content figure {
    margin: 50px 0;
}

.article-content img {
    display: block;
    width: 100%;
    height: auto;
}

.article-content figcaption {
    margin-top: 10px;
    font-size: .85rem;
    opacity: .7;
}

.article-note {
    margin: 45px 0;
    padding: 28px 30px;
    background: var(--oa-blue);
    color: var(--oa-white);
}

.article-note h2,
.article-note h3 {
    margin-top: 0;
}

.article-references {
    margin-top: 80px;
    padding-top: 35px;
    border-top: 1px solid rgba(0,0,0,.2);
    font-size: .92rem;
}

.article-references li {
    margin-bottom: 12px;
}

@media (max-width: 760px) {
    .article-header {
        padding: 65px 22px 50px;
    }

    .article-content {
        padding: 55px 22px 80px;
        font-size: 1rem;
    }

    .article-content h2 {
        margin-top: 55px;
    }
}

/* About — portraits */
.about-portrait {
    margin: 0 0 1.75rem;
    max-width: 360px;
}

.about-portrait img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
}

@media (max-width: 720px) {
    .about-portrait {
        max-width: 300px;
    }
}

/* =========================================================
   404 — sortie de piste
   ========================================================= */

.error-body {
    margin: 0;
    min-height: 100vh;
}

.error-page {
    position: relative;
    min-height: calc(100vh - 150px);
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: clamp(3rem, 8vw, 8rem) clamp(1.5rem, 7vw, 7rem);
    background: var(--oa-purple);
}

.error-track {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    pointer-events: none;
}

.error-track::before {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    top: 55%;
    border-top: 3px dashed rgba(255, 255, 255, .35);
    transform: rotate(-5deg);
}

.error-track span {
    font-size: clamp(12rem, 37vw, 36rem);
    line-height: .75;
    font-weight: 900;
    letter-spacing: -.09em;
    opacity: .10;
    transform: translateX(4%);
}

.error-panel {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.error-panel .eyebrow {
    margin-bottom: 1rem;
}

.error-panel h1 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: .95;
    letter-spacing: -.05em;
}

.error-lead {
    max-width: 620px;
    margin: 2rem 0 0;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.5;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 2.5rem;
}

.error-primary,
.error-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.25rem;
    border: 2px solid #111;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.error-primary {
    background: #111;
    color: #fff;
}

.error-secondary {
    color: #111;
    background: transparent;
}

@media (max-width: 640px) {
    .error-page {
        min-height: calc(100vh - 120px);
    }

    .error-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .error-primary,
    .error-secondary {
        width: 100%;
    }
}

/* =========================================================
   404 — sortie de piste
   ========================================================= */

.error-body {
    margin: 0;
    min-height: 100vh;
}

.error-page {
    position: relative;
    min-height: calc(100vh - 150px);
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: clamp(3rem, 8vw, 8rem) clamp(1.5rem, 7vw, 7rem);
    background: var(--oa-purple);
}

.error-track {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    pointer-events: none;
}

.error-track::before {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    top: 55%;
    border-top: 3px dashed rgba(255, 255, 255, .35);
    transform: rotate(-5deg);
}

.error-track span {
    font-size: clamp(12rem, 37vw, 36rem);
    line-height: .75;
    font-weight: 900;
    letter-spacing: -.09em;
    opacity: .10;
    transform: translateX(4%);
}

.error-panel {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.error-panel h1 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: .95;
    letter-spacing: -.05em;
}

.error-lead {
    max-width: 620px;
    margin: 2rem 0 0;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.5;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 2.5rem;
}

.error-primary,
.error-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.25rem;
    border: 2px solid #111;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.error-primary {
    background: #111;
    color: #fff;
}

.error-secondary {
    color: #111;
    background: transparent;
}

@media (max-width: 640px) {
    .error-actions {
        flex-direction: column;
    }

    .error-primary,
    .error-secondary {
        width: 100%;
    }
}

/* Legal pages */
.legal-page {
    padding: clamp(3rem, 7vw, 7rem) clamp(1.5rem, 7vw, 7rem);
    background: #fff;
}

.legal-content {
    max-width: 820px;
}

.legal-content h2 {
    margin-top: 2.75rem;
}

.legal-content p {
    line-height: 1.75;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: .2em;
}

/* Article — auteur et date */
.article-byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
}


/* =========================================================
   Articles historiques — transition vers la nouvelle livrée
   ========================================================= */

.legacy-article-shell {
    background: #fff;
    padding: clamp(1.5rem, 4vw, 4rem) 0;
}

.legacy-notice {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 0 20px;
}

.legacy-notice p {
    margin: 0;
    padding: .8rem 1rem;
    border-left: 4px solid var(--oa-green);
    background: var(--oa-soft, #f5f5f3);
    font-size: .9rem;
    line-height: 1.5;
}

.legacy-article-shell .btn {
    display: inline-block;
    padding: .75rem 1rem;
    border: 2px solid #111;
    border-radius: 999px;
    color: #111;
    text-decoration: none;
    font-weight: 700;
}

.legacy-article-shell .plan-card {
    margin: 2rem 0;
    padding: 1.25rem;
    border-radius: 16px;
    background: #f5f5f3;
}


/* Home — articles */
.reading-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.reading-link:hover {
    opacity: .65;
}

