:root {
    --rtl-black: #0b0b0c;
    --rtl-black-soft: #151516;
    --rtl-white: #f5f3ef;
    --rtl-paper: #eae7e1;
    --rtl-text: #151515;
    --rtl-grey: #858585;
    --rtl-border: rgba(255,255,255,.14);

    /* à ajuster exactement sur ton logo */
    --rtl-orange: #f36100;

    --rtl-gradient:
        linear-gradient(
            120deg,
            #f36100 0%,
            #ff8b2c 100%
        );

    --rtl-width: 1320px;
}


/* RESET LOCAL */

.rtl-home,
.rtl-home * {
    box-sizing: border-box;
}

.rtl-home {
    background: var(--rtl-white);
    color: var(--rtl-text);
    overflow: hidden;
}

.rtl-shell {
    width: calc(100% - 80px);
    max-width: var(--rtl-width);
    margin: 0 auto;
}


/* TYPO */

.rtl-home h1,
.rtl-home h2,
.rtl-home h3,
.rtl-home p {
    margin-top: 0;
}

.rtl-home h1,
.rtl-home h2 {
    letter-spacing: -.045em;
}

.rtl-home h1 span,
.rtl-home h2 span {
    color: var(--rtl-orange);
}


/* HERO */

.rtl-hero {
    position: relative;
    min-height: 100vh;
    padding-top: 165px;
    background: var(--rtl-black);
    color: white;
}

.rtl-hero::before {
    content: "RTL";
    position: absolute;
    right: -2vw;
    top: 10vh;

    font-size: min(30vw, 430px);
    line-height: .8;
    font-weight: 900;
    letter-spacing: -.1em;

    color: rgba(255,255,255,.018);
    pointer-events: none;
}

.rtl-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(300px, .7fr);
    gap: 100px;
    align-items: end;
}

.rtl-eyebrow,
.rtl-section-number {
    display: block;
    margin-bottom: 30px;

    color: var(--rtl-orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
}

.rtl-hero h1 {
    max-width: 900px;
    margin-bottom: 38px;

    font-size: clamp(58px, 7vw, 110px);
    line-height: .89;
    font-weight: 900;
}

.rtl-hero-lead {
    max-width: 680px;

    color: #aaa;
    font-size: 19px;
    line-height: 1.7;
}

.rtl-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}


/* BUTTON */

.rtl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;
    padding: 0 30px;

    background: var(--rtl-orange);
    color: white;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;

    transition: .2s ease;
}

.rtl-button:hover {
    transform: translateY(-2px);
    color: white;
}

.rtl-text-link,
.rtl-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    color: inherit;
    font-weight: 700;
}

.rtl-text-link:hover,
.rtl-arrow-link:hover {
    color: var(--rtl-orange);
}


/* HERO METHOD */

.rtl-hero-method {
    border-top: 1px solid var(--rtl-border);
}

.rtl-method-heading {
    padding: 18px 0;

    color: #777;
    font-size: 10px;
    letter-spacing: .18em;
}

.rtl-method-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;

    padding: 18px 0;

    border-top: 1px solid var(--rtl-border);
}

.rtl-method-step > span {
    color: var(--rtl-orange);
    font-size: 11px;
}

.rtl-method-step strong {
    display: block;
    margin-bottom: 5px;

    font-size: 16px;
}

.rtl-method-step p {
    margin: 0;

    color: #777;
    font-size: 13px;
    line-height: 1.5;
}


/* HERO BOTTOM */

.rtl-hero-bottom {
    margin-top: 95px;
    border-top: 1px solid var(--rtl-border);
}

.rtl-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 150px) 1fr;
}

.rtl-hero-stats > div {
    padding: 25px 25px 25px 0;
    border-right: 1px solid var(--rtl-border);
}

.rtl-hero-stats strong,
.rtl-hero-stats span {
    display: block;
}

.rtl-hero-stats strong {
    font-size: 24px;
}

.rtl-hero-stats span {
    margin-top: 4px;

    color: #666;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.rtl-hero-stats .rtl-stat-last {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding-right: 0;
    border-right: 0;
}


/* GENERIC SECTIONS */

.rtl-manifesto,
.rtl-system,
.rtl-coaching,
.rtl-live,
.rtl-about {
    padding: 130px 0;
}

.rtl-manifesto-grid,
.rtl-live-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 110px;
}

.rtl-manifesto h2,
.rtl-section-head h2,
.rtl-coaching-intro h2,
.rtl-live h2,
.rtl-about h2 {
    font-size: clamp(45px, 5.5vw, 82px);
    line-height: .96;
    font-weight: 900;
}

.rtl-big-copy {
    color: #111 !important;
    font-size: 24px !important;
    line-height: 1.45 !important;
}

.rtl-manifesto-copy p {
    color: #666;
    line-height: 1.8;
}


/* SYSTEM */

.rtl-system {
    background: var(--rtl-paper);
}

.rtl-system-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 70px;

    border-top: 1px solid #c9c5bd;
    border-bottom: 1px solid #c9c5bd;
}

.rtl-system-card {
    min-height: 310px;
    padding: 30px;

    border-right: 1px solid #c9c5bd;
}

.rtl-system-card:last-child {
    border-right: 0;
}

.rtl-card-number {
    color: var(--rtl-orange);
    font-size: 11px;
}

.rtl-system-card h3 {
    margin: 100px 0 15px;

    font-size: 30px;
}

.rtl-system-card p {
    color: #666;
    line-height: 1.7;
}


/* EDITORIAL */

.rtl-editorial {
    padding: 130px 0;

    background: var(--rtl-black);
    color: white;
}

.rtl-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.rtl-section-head h2 {
    margin-bottom: 70px;
}

.rtl-feature {
    display: grid;
    grid-template-columns: 150px 1fr 70px;
    gap: 40px;

    padding: 55px 0;

    border-top: 1px solid var(--rtl-border);
    border-bottom: 1px solid var(--rtl-border);

    color: white;
}

.rtl-feature:hover {
    color: white;
}

.rtl-feature-index,
.rtl-feature-meta {
    color: #666;
    font-size: 10px;
    letter-spacing: .15em;
}

.rtl-feature h3 {
    max-width: 900px;
    margin: 18px 0;

    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.04;
}

.rtl-feature p {
    max-width: 760px;

    color: #888;
    line-height: 1.7;
}

.rtl-feature-arrow {
    font-size: 38px;
    text-align: right;
}

.rtl-article-row {
    display: grid;
    grid-template-columns: 150px 1fr 50px;
    align-items: center;

    padding: 30px 0;

    border-bottom: 1px solid var(--rtl-border);

    color: white;
}

.rtl-article-row:hover {
    color: white;
}

.rtl-article-index,
.rtl-article-date {
    color: #666;
    font-size: 11px;
}

.rtl-article-row h3 {
    margin: 7px 0 0;
    font-size: 24px;
}

.rtl-article-arrow {
    font-size: 22px;
}


/* COACHING */

.rtl-coaching {
    background: var(--rtl-white);
}

.rtl-coaching-intro {
    display: grid;
    grid-template-columns: 1fr .45fr;
    gap: 100px;
    align-items: end;
}

.rtl-coaching-intro p {
    color: #666;
    line-height: 1.8;
}

.rtl-coaching-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 80px;

    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.rtl-coaching-card {
    min-height: 450px;
    padding: 30px;

    border-right: 1px solid #ccc;

    color: #111;

    transition: .25s ease;
}

.rtl-coaching-card:last-child {
    border-right: 0;
}

.rtl-coaching-card:hover {
    background: #111;
    color: white;
}

.rtl-coaching-highlight {
    background: var(--rtl-orange);
    color: white;
}

.rtl-coaching-top {
    display: flex;
    justify-content: space-between;

    font-size: 10px;
    letter-spacing: .15em;
}

.rtl-coaching-card h3 {
    margin: 100px 0 25px;

    font-size: 40px;
    line-height: 1.05;
}

.rtl-coaching-card p {
    max-width: 330px;

    opacity: .65;
    line-height: 1.7;
}

.rtl-card-link {
    margin-top: 35px;
    font-weight: 700;
}


/* TRAINING LOG */

.rtl-live {
    background: #181818;
    color: white;
}

.rtl-live p {
    max-width: 500px;

    color: #888;
    line-height: 1.8;
}

.rtl-training-log {
    border: 1px solid #333;
}

.rtl-log-head,
.rtl-log-row {
    display: grid;
    grid-template-columns: 70px 1fr;

    padding: 18px 22px;

    border-bottom: 1px solid #333;
}

.rtl-log-head {
    grid-template-columns: 1fr 1fr;

    color: #666;

    font-size: 9px;
    letter-spacing: .15em;
}

.rtl-log-head span:last-child {
    text-align: right;
}

.rtl-log-row > span {
    color: #555;
    font-size: 11px;
}

.rtl-log-row strong,
.rtl-log-row small {
    display: block;
}

.rtl-log-row small {
    margin-top: 5px;
    color: #666;
}

.rtl-log-alert {
    background: rgba(243,97,0,.10);
    border-left: 3px solid var(--rtl-orange);
}

.rtl-log-alert strong {
    margin-top: 7px;
    color: var(--rtl-orange);
}


/* ABOUT */

.rtl-about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: center;
}

.rtl-about-photo {
    position: relative;
}

.rtl-about-photo::before {
    content: "";
    position: absolute;

    left: -20px;
    bottom: -20px;

    width: 70%;
    height: 70%;

    background: var(--rtl-orange);

    z-index: 0;
}

.rtl-about-photo img {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    filter: grayscale(100%);
}

.rtl-about-stats {
    display: flex;
    gap: 55px;

    margin: 40px 0;
    padding: 25px 0;

    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.rtl-about-stats strong,
.rtl-about-stats span {
    display: block;
}

.rtl-about-stats strong {
    font-size: 34px;
}

.rtl-about-stats span {
    color: #888;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.rtl-about-content p {
    max-width: 650px;

    color: #666;
    line-height: 1.8;
}


/* FINAL */

.rtl-final {
    padding: 150px 0;

    background: var(--rtl-orange);
    color: white;
}

.rtl-final > .rtl-shell > span {
    font-size: 11px;
    letter-spacing: .2em;
}

.rtl-final h2 {
    margin: 35px 0 70px;

    color: white;

    font-size: clamp(55px, 8vw, 120px);
    line-height: .87;
    font-weight: 900;
}

.rtl-final h2 strong {
    color: #111;
}

.rtl-final-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 0;

    border-top: 1px solid rgba(255,255,255,.45);
    border-bottom: 1px solid rgba(255,255,255,.45);

    color: white;

    font-size: 24px;
    font-weight: 700;
}

.rtl-final-link:hover {
    color: #111;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .rtl-shell {
        width: calc(100% - 40px);
    }

    .rtl-hero-grid,
    .rtl-manifesto-grid,
    .rtl-live-grid,
    .rtl-about-grid,
    .rtl-coaching-intro {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .rtl-system-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rtl-coaching-grid {
        grid-template-columns: 1fr;
    }

    .rtl-coaching-card {
        border-right: 0;
        border-bottom: 1px solid #ccc;
    }

    .rtl-hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .rtl-stat-last {
        display: none !important;
    }
}


@media (max-width: 650px) {

    .rtl-hero {
        min-height: auto;
        padding-top: 130px;
    }

    .rtl-hero-grid {
        gap: 70px;
    }

    .rtl-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .rtl-system-grid {
        grid-template-columns: 1fr;
    }

    .rtl-system-card {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid #ccc;
    }

    .rtl-system-card h3 {
        margin-top: 50px;
    }

    .rtl-feature {
        grid-template-columns: 1fr;
    }

    .rtl-feature-arrow {
        text-align: left;
    }

    .rtl-article-row {
        grid-template-columns: 40px 1fr 25px;
        gap: 10px;
    }

    .rtl-about-stats {
        gap: 25px;
    }

}