/* ==========================================================
   RUNTHELIMIT — HOME V2
   ========================================================== */

:root {
    --rtl-orange: #f36a12;
    --rtl-orange-dark: #d95508;

    --rtl-black: #111111;
    --rtl-black-soft: #1b1b1b;

    --rtl-cream: #f2eee6;
    --rtl-paper: #faf8f3;
    --rtl-grey-light: #d9d4cb;

    --rtl-text: #141414;
    --rtl-text-soft: #67635d;

    --rtl-width: 1320px;
}


/* ==========================================================
   GLOBAL
   ========================================================== */

.rtl-public-home {
    width: 100%;
    overflow: hidden;
    background: var(--rtl-cream);
    color: var(--rtl-text);
}

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

.rtl-public-container {
    position: relative;

    width: calc(100% - 80px);
    max-width: var(--rtl-width);

    margin: 0 auto;
}

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

.rtl-public-home a {
    text-decoration: none;
}

.rtl-public-home img {
    max-width: 100%;
}


/* ==========================================================
   BUTTONS
   ========================================================== */

.rtl-public-btn {
    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: .12em;
    text-transform: uppercase;

    transition:
        transform .2s ease,
        background .2s ease;
}

.rtl-public-btn:hover {
    background: var(--rtl-orange-dark);
    color: white;

    transform: translateY(-2px);
}

.rtl-public-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    color: white;

    font-weight: 700;
}

.rtl-public-link span {
    transition: transform .2s ease;
}

.rtl-public-link:hover {
    color: var(--rtl-orange);
}

.rtl-public-link:hover span {
    transform: translateX(5px);
}

.rtl-dark-link {
    color: var(--rtl-black);
}

.rtl-dark-link:hover {
    color: var(--rtl-orange);
}

.rtl-light-btn {
    background: white;
    color: var(--rtl-black);
}

.rtl-light-btn:hover {
    background: var(--rtl-orange);
    color: white;
}


/* ==========================================================
   HANDWRITTEN ELEMENTS
   ========================================================== */

.rtl-hand-note,
.rtl-feature-hand,
.rtl-principle-handwritten,
.rtl-about-hand {
    font-family:
        "Segoe Print",
        "Bradley Hand",
        "Comic Sans MS",
        cursive;

    font-weight: 500;
    letter-spacing: -.03em;
}


/* ==========================================================
   HERO
   ========================================================== */

.rtl-home-hero {
    position: relative;

    min-height: 920px;

    display: flex;
    align-items: center;

    background: #111;

    color: white;
}

.rtl-home-hero-bg {
    position: absolute;
    inset: 0;
}

.rtl-home-hero-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.rtl-home-hero-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.60) 42%,
            rgba(0,0,0,.18) 75%,
            rgba(0,0,0,.30) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.48) 0%,
            transparent 45%
        );
}

.rtl-home-hero-content {
    z-index: 2;

    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;

    align-items: center;

    padding-top: 100px;
}

.rtl-home-hero-copy {
    max-width: 820px;
}

.rtl-home-mini-title {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    margin-bottom: 32px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

.rtl-home-mini-title > span {
    color: rgba(255,255,255,.55);
}

.rtl-home-hero h1 {
    margin-bottom: 28px;

    font-size: clamp(58px, 7vw, 105px);
    line-height: .93;

    letter-spacing: -.06em;

    font-weight: 900;
}

.rtl-home-hero h1 em {
    position: relative;

    display: inline-block;

    color: white;

    font-family:
        "Segoe Print",
        "Bradley Hand",
        cursive;

    font-size: .77em;
    font-weight: 500;
    letter-spacing: -.05em;
}

.rtl-home-hero h1 em::after {
    content: "";

    position: absolute;

    left: 4%;
    right: 1%;
    bottom: -7px;

    height: 7px;

    background: var(--rtl-orange);

    transform: rotate(-1.5deg);
}

.rtl-home-hero-copy > p {
    max-width: 620px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.72);

    font-size: 19px;
    line-height: 1.7;
}

.rtl-home-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 28px;
}


/* HERO NOTE */

.rtl-home-hero-note {
    display: flex;
    justify-content: flex-end;

    padding-top: 120px;
}

.rtl-paper-note {
    width: 300px;
    min-height: 250px;

    padding: 48px 35px 30px;

    background: #f6f2e9;
    color: #1b1b1b;

    box-shadow: 0 25px 60px rgba(0,0,0,.30);

    transform: rotate(3deg);

    position: relative;
}

.rtl-paper-note::before {
    content: "";

    position: absolute;

    top: -12px;
    left: 90px;

    width: 110px;
    height: 28px;

    background: rgba(224,214,195,.75);

    transform: rotate(-4deg);
}

.rtl-paper-note p {
    margin: 0 0 30px;

    font-family:
        "Segoe Print",
        "Bradley Hand",
        cursive;

    font-size: 23px;
    line-height: 1.45;
}

.rtl-paper-note span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.rtl-home-scroll {
    position: absolute;

    right: 50px;
    bottom: 38px;

    z-index: 3;

    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,.7);

    font-size: 12px;
}

.rtl-home-scroll > span {
    text-transform: uppercase;
    letter-spacing: .15em;
}


/* ==========================================================
   LIVING / PHILOSOPHY
   ========================================================== */

.rtl-home-living {
    position: relative;

    padding: 150px 0 180px;

    background: var(--rtl-paper);
}

.rtl-living-title {
    position: relative;

    margin-bottom: 70px;
}

.rtl-living-title h2 {
    max-width: 900px;

    margin: 0;

    font-size: clamp(58px, 7vw, 110px);
    line-height: .92;
    letter-spacing: -.06em;

    font-weight: 900;
}

.rtl-living-title h2 strong {
    color: var(--rtl-orange);
}

.rtl-living-title .rtl-hand-note {
    position: absolute;

    right: 8%;
    top: 20px;

    color: var(--rtl-orange);

    font-size: 23px;

    transform: rotate(-4deg);
}


/* COLLAGE */

.rtl-living-collage {
    position: relative;

    min-height: 720px;
}

.rtl-photo {
    margin: 0;
}

.rtl-photo img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.rtl-photo-main {
    width: 60%;
    height: 610px;

    box-shadow: 0 22px 55px rgba(0,0,0,.13);
}

.rtl-photo-main img {
    filter: saturate(.8) contrast(1.05);
}

.rtl-living-text {
    position: absolute;

    width: 500px;

    top: 120px;
    right: 4%;

    padding: 50px;

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

    z-index: 2;
}

.rtl-living-lead {
    font-size: 25px;
    line-height: 1.45;

    color: white !important;
}

.rtl-living-text p {
    color: rgba(255,255,255,.63);
    line-height: 1.75;
}

.rtl-living-text .rtl-dark-link {
    color: white;
}

.rtl-living-text .rtl-dark-link:hover {
    color: var(--rtl-orange);
}

.rtl-photo-small {
    position: absolute;

    width: 300px;
    height: 220px;

    right: 17%;
    bottom: -20px;

    padding: 10px 10px 50px;

    background: #fff;

    box-shadow: 0 18px 40px rgba(0,0,0,.18);

    transform: rotate(-4deg);

    z-index: 3;
}

.rtl-photo-small figcaption {
    padding: 15px 5px 0;

    font-family:
        "Segoe Print",
        "Bradley Hand",
        cursive;

    font-size: 16px;
}

.rtl-orange-note {
    position: absolute;

    left: 8%;
    bottom: 25px;

    padding: 22px 28px;

    background: var(--rtl-orange);

    color: white;

    font-size: 20px;
    font-weight: 900;

    transform: rotate(2deg);
}

.rtl-orange-note span {
    display: block;

    margin-top: 5px;

    font-size: 11px;
    font-weight: 500;
}


/* ==========================================================
   PRINCIPLES
   ========================================================== */

.rtl-home-principles {
    display: grid;
    grid-template-columns: 1.05fr .95fr;

    min-height: 900px;

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

.rtl-principles-photo {
    position: relative;

    min-height: 900px;
}

.rtl-principles-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.rtl-principles-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.72),
            transparent 50%
        );
}

.rtl-principles-photo-text {
    position: absolute;

    left: 70px;
    right: 70px;
    bottom: 65px;

    z-index: 2;

    color: white;
}

.rtl-principles-photo-text span {
    display: block;

    margin-bottom: 16px;

    color: var(--rtl-orange);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.rtl-principles-photo-text strong {
    display: block;

    max-width: 520px;

    font-size: 42px;
    line-height: 1.08;

    font-weight: 800;
}

.rtl-principles-content {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 100px 11%;

    color: white;
}

.rtl-principle-block {
    max-width: 520px;
}

.rtl-principle-block > span {
    display: block;

    color: var(--rtl-orange);

    margin-bottom: 20px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.rtl-principle-block h3 {
    margin-bottom: 22px;

    font-size: 42px;
    line-height: 1.05;

    letter-spacing: -.04em;
}

.rtl-principle-block p {
    color: rgba(255,255,255,.58);

    line-height: 1.75;
}

.rtl-principle-handwritten {
    align-self: flex-end;

    margin: 55px 0;

    color: var(--rtl-orange);

    font-size: 22px;
    line-height: 1.4;

    transform: rotate(-4deg);
}


/* ==========================================================
   FEATURE ARTICLE / MAURI
   ========================================================== */

.rtl-home-feature {
    padding: 150px 0;

    background: #dcd7cd;
}

.rtl-feature-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;

    align-items: center;
}

.rtl-feature-image {
    position: relative;

    height: 730px;
}

.rtl-feature-image::before {
    content: "";

    position: absolute;

    left: -25px;
    bottom: -25px;

    width: 65%;
    height: 65%;

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

.rtl-feature-image img {
    position: relative;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(.85);

    z-index: 2;
}

.rtl-feature-number {
    position: absolute;

    right: -40px;
    bottom: 35px;

    z-index: 3;

    color: white;

    font-size: clamp(80px, 8vw, 145px);
    line-height: .8;

    font-weight: 900;
    letter-spacing: -.08em;

    text-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.rtl-feature-copy {
    position: relative;
}

.rtl-feature-type {
    display: block;

    margin-bottom: 18px;

    color: var(--rtl-orange);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2em;
}

.rtl-feature-copy h2 {
    margin-bottom: 30px;

    font-size: clamp(70px, 7vw, 105px);
    line-height: .85;

    letter-spacing: -.07em;

    font-weight: 900;
}

.rtl-feature-copy h3 {
    max-width: 570px;

    margin: 30px 0 20px;

    font-size: 31px;
    line-height: 1.2;
}

.rtl-feature-copy > p {
    max-width: 580px;

    color: #625f58;

    line-height: 1.75;
}

.rtl-feature-hand {
    position: absolute;

    right: 0;
    top: 135px;

    color: var(--rtl-orange);

    font-size: 19px;
    line-height: 1.55;

    transform: rotate(6deg);
}


/* ==========================================================
   COACHING
   ========================================================== */

.rtl-home-coaching {
    padding: 150px 0 190px;

    background: var(--rtl-paper);
}

.rtl-coaching-heading {
    display: grid;
    grid-template-columns: 180px 1fr .6fr;

    gap: 40px;

    align-items: end;

    margin-bottom: 80px;
}

.rtl-coaching-heading > span {
    align-self: start;

    color: var(--rtl-orange);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2em;
}

.rtl-coaching-heading h2 {
    margin: 0;

    font-size: clamp(55px, 6vw, 90px);
    line-height: .92;

    letter-spacing: -.055em;

    font-weight: 900;
}

.rtl-coaching-heading p {
    margin: 0;

    color: var(--rtl-text-soft);

    line-height: 1.75;
}


/* COACHING SCENE */

.rtl-coaching-scene {
    position: relative;

    min-height: 820px;
}

.rtl-coaching-photo-large {
    width: 70%;
    height: 730px;

    margin-left: 10%;
}

.rtl-coaching-photo-large img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.rtl-coaching-floating {
    position: absolute;

    display: block;

    padding: 35px;

    color: white;

    box-shadow: 0 18px 50px rgba(0,0,0,.22);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.rtl-coaching-floating:hover {
    color: white;

    transform: translateY(-5px) rotate(0deg);

    box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.rtl-coaching-floating > span {
    display: block;

    margin-bottom: 30px;

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

.rtl-coaching-floating h3 {
    margin-bottom: 18px;

    font-size: 37px;
    line-height: 1.02;

    font-weight: 800;
}

.rtl-coaching-floating p {
    color: rgba(255,255,255,.65);

    font-size: 13px;
}

.rtl-coaching-floating strong {
    display: block;

    margin-top: 30px;

    font-size: 12px;
}

.rtl-coaching-objective {
    left: 0;
    top: 75px;

    width: 330px;

    background: var(--rtl-black);

    transform: rotate(-2deg);
}

.rtl-coaching-year {
    right: 0;
    top: 210px;

    width: 300px;

    background: #e9e4d9;
    color: var(--rtl-black);

    transform: rotate(3deg);
}

.rtl-coaching-year:hover {
    color: var(--rtl-black);
}

.rtl-coaching-year p {
    color: #555;
}

.rtl-coaching-performance {
    left: 48%;
    bottom: 0;

    width: 360px;

    background: var(--rtl-orange);

    transform: rotate(-1.2deg);
}


/* ==========================================================
   TRAINING JOURNAL
   ========================================================== */

.rtl-home-training {
    padding: 160px 0;

    background: #d8d2c6;
}

.rtl-training-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr .55fr;

    gap: 60px;

    align-items: center;
}

.rtl-training-title {
    align-self: start;
}

.rtl-training-title h2 {
    margin: 45px 0 0;

    font-size: clamp(45px, 5vw, 72px);
    line-height: .97;

    letter-spacing: -.05em;

    font-weight: 900;
}

.rtl-training-title .rtl-hand-note {
    display: block;

    color: var(--rtl-orange);

    font-size: 21px;

    transform: rotate(-4deg);
}


/* PAPER */

.rtl-training-paper {
    position: relative;

    padding: 50px 45px;

    background: #f8f5ed;

    box-shadow: 0 28px 65px rgba(0,0,0,.13);

    transform: rotate(-1deg);
}

.rtl-training-paper::before {
    content: "";

    position: absolute;

    top: -14px;
    left: 38%;

    width: 130px;
    height: 30px;

    background: rgba(222,210,188,.78);

    transform: rotate(4deg);
}

.rtl-training-date {
    margin-bottom: 40px;

    color: var(--rtl-orange);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
}

.rtl-training-day {
    display: grid;
    grid-template-columns: 90px 1fr;

    gap: 20px;

    padding: 22px 0;

    border-top: 1px solid #d7d2c9;
}

.rtl-training-day > span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
}

.rtl-training-day strong,
.rtl-training-day small {
    display: block;
}

.rtl-training-day p {
    margin: 5px 0;

    color: #6c675f;

    font-size: 13px;
}

.rtl-training-day small {
    margin-top: 6px;

    color: #989187;
}

.rtl-training-modified {
    padding-left: 18px;

    background: rgba(243,106,18,.08);

    border-left: 4px solid var(--rtl-orange);
}

.rtl-training-modified del {
    display: block;

    color: #9d958c;
}

.rtl-training-modified strong {
    margin-top: 10px;

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

.rtl-training-comment {
    width: 85%;

    margin: 35px 0 0 auto;

    font-family:
        "Segoe Print",
        "Bradley Hand",
        cursive;

    font-size: 17px;
    line-height: 1.55;

    transform: rotate(-2deg);
}

.rtl-training-side {
    align-self: end;

    padding-bottom: 45px;
}

.rtl-training-side p {
    color: var(--rtl-text-soft);

    line-height: 1.75;
}


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

.rtl-home-more-articles {
    padding: 140px 0;

    background: var(--rtl-paper);
}

.rtl-more-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 40px;

    margin-bottom: 70px;
}

.rtl-more-heading > div > span {
    display: block;

    margin-bottom: 18px;

    color: var(--rtl-orange);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
}

.rtl-more-heading h2 {
    margin: 0;

    font-size: clamp(55px, 6vw, 86px);
    line-height: .92;

    letter-spacing: -.055em;

    font-weight: 900;
}

.rtl-more-list {
    border-top: 1px solid #c6c0b6;
}

.rtl-more-article {
    position: relative;

    display: grid;
    grid-template-columns: 180px 1fr .85fr 40px;

    gap: 35px;
    align-items: center;

    padding: 35px 0;

    border-bottom: 1px solid #c6c0b6;

    color: var(--rtl-black);

    transition: padding .2s ease;
}

.rtl-more-article:hover {
    color: var(--rtl-black);

    padding-left: 12px;
}

.rtl-more-date {
    color: #817b71;

    font-size: 11px;
}

.rtl-more-article h3 {
    margin: 0;

    font-size: 25px;
    line-height: 1.25;
}

.rtl-more-article p {
    margin: 0;

    color: #777167;

    font-size: 14px;
    line-height: 1.6;
}

.rtl-more-arrow {
    font-size: 26px;

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


/* ==========================================================
   ABOUT
   ========================================================== */

.rtl-home-about {
    padding: 150px 0;

    background: #1a1a1a;
    color: white;
}

.rtl-about-layout {
    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: -28px;
    bottom: -28px;

    width: 55%;
    height: 55%;

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

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

    display: block;

    width: 100%;
    height: 700px;

    object-fit: cover;

    filter: grayscale(100%) contrast(1.05);

    z-index: 2;
}

.rtl-about-record {
    position: absolute;

    right: -45px;
    bottom: 40px;

    z-index: 4;

    padding: 25px 30px;

    background: var(--rtl-paper);
    color: var(--rtl-black);

    transform: rotate(-3deg);
}

.rtl-about-record strong {
    display: block;

    font-size: 42px;
    line-height: 1;
}

.rtl-about-record span {
    display: block;

    margin-top: 7px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.rtl-about-label {
    display: block;

    color: var(--rtl-orange);

    margin-bottom: 18px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2em;
}

.rtl-about-copy h2 {
    margin-bottom: 12px;

    font-size: clamp(65px, 7vw, 100px);
    line-height: .87;

    letter-spacing: -.065em;

    font-weight: 900;
}

.rtl-about-hand {
    margin: 25px 0 45px;

    color: var(--rtl-orange);

    font-size: 22px;

    transform: rotate(-3deg);
}

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

    color: rgba(255,255,255,.58);

    line-height: 1.8;
}

.rtl-about-lead {
    color: white !important;

    font-size: 22px;
}

.rtl-about-numbers {
    display: flex;
    gap: 50px;

    margin-top: 50px;
    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,.14);
}

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

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

.rtl-about-numbers span {
    margin-top: 6px;

    color: #777;

    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* ==========================================================
   FINAL CTA
   ========================================================== */

.rtl-home-final {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    color: white;
}

.rtl-home-final-image {
    position: absolute;
    inset: 0;
}

.rtl-home-final-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.rtl-home-final-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.38) 70%
        );
}

.rtl-home-final-content {
    z-index: 2;
}

.rtl-home-final-content > span {
    display: block;

    margin-bottom: 25px;

    color: var(--rtl-orange);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2em;
}

.rtl-home-final h2 {
    max-width: 850px;

    margin-bottom: 35px;

    font-size: clamp(65px, 8vw, 120px);
    line-height: .86;

    letter-spacing: -.07em;

    font-weight: 900;
}

.rtl-home-final p {
    max-width: 520px;

    color: rgba(255,255,255,.68);

    font-size: 18px;
    line-height: 1.7;

    margin-bottom: 35px;
}


/* ==========================================================
   DESKTOP MEDIUM
   ========================================================== */

@media (max-width: 1200px) {

    .rtl-home-hero {
        min-height: 820px;
    }

    .rtl-feature-layout {
        gap: 55px;
    }

    .rtl-feature-hand {
        display: none;
    }

    .rtl-coaching-heading {
        grid-template-columns: 130px 1fr .7fr;
    }

    .rtl-training-layout {
        grid-template-columns: .8fr 1.2fr;
    }

    .rtl-training-side {
        grid-column: 2;
    }

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 992px) {

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

    .rtl-home-hero {
        min-height: auto;
        padding: 180px 0 110px;
    }

    .rtl-home-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;

        padding-top: 0;
    }

    .rtl-home-hero-note {
        justify-content: flex-start;
        padding-top: 0;
    }

    .rtl-paper-note {
        width: 260px;
    }

    .rtl-home-scroll {
        display: none;
    }


    /* LIVING */

    .rtl-home-living {
        padding: 110px 0 150px;
    }

    .rtl-living-title .rtl-hand-note {
        position: static;

        display: block;

        margin-bottom: 30px;
    }

    .rtl-living-collage {
        min-height: auto;
    }

    .rtl-photo-main {
        width: 85%;
        height: 500px;
    }

    .rtl-living-text {
        position: relative;

        top: auto;
        right: auto;

        width: 75%;

        margin: -100px 0 0 auto;
    }

    .rtl-photo-small {
        position: relative;

        right: auto;
        bottom: auto;

        margin: -40px 0 0 10%;

        width: 270px;
    }

    .rtl-orange-note {
        left: auto;
        right: 0;
        bottom: 30px;
    }


    /* PRINCIPLES */

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

    .rtl-principles-photo {
        min-height: 600px;
    }

    .rtl-principles-content {
        padding: 100px 40px;
    }


    /* FEATURE */

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

    .rtl-feature-image {
        height: 620px;
    }

    .rtl-feature-copy {
        max-width: 750px;
    }

    .rtl-feature-number {
        right: 15px;
    }


    /* COACHING */

    .rtl-coaching-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rtl-coaching-scene {
        min-height: auto;
    }

    .rtl-coaching-photo-large {
        width: 100%;
        height: 600px;

        margin-left: 0;
    }

    .rtl-coaching-floating {
        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        width: 70%;

        margin-top: -30px;
    }

    .rtl-coaching-objective {
        margin-left: 5%;
    }

    .rtl-coaching-year {
        margin-left: auto;
        margin-right: 5%;
    }

    .rtl-coaching-performance {
        margin-left: 17%;
    }


    /* TRAINING */

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

    .rtl-training-side {
        grid-column: auto;
    }


    /* ARTICLES */

    .rtl-more-article {
        grid-template-columns: 130px 1fr 40px;
    }

    .rtl-more-article p {
        display: none;
    }


    /* ABOUT */

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

    .rtl-about-photo {
        max-width: 720px;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

    .rtl-public-container {
        width: calc(100% - 28px);
    }


    /* HERO */

    .rtl-home-hero {
        padding: 145px 0 80px;
    }

    .rtl-home-hero h1 {
        font-size: 49px;
    }

    .rtl-home-hero-copy > p {
        font-size: 16px;
    }

    .rtl-home-mini-title {
        flex-direction: column;
        gap: 7px;
    }

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

    .rtl-paper-note {
        width: 85%;
    }


    /* LIVING */

    .rtl-living-title h2 {
        font-size: 54px;
    }

    .rtl-photo-main {
        width: 100%;
        height: 390px;
    }

    .rtl-living-text {
        width: 94%;

        margin-top: -45px;

        padding: 32px;
    }

    .rtl-living-lead {
        font-size: 20px;
    }

    .rtl-photo-small {
        width: 220px;
        height: 190px;

        margin-left: 0;
    }

    .rtl-orange-note {
        position: relative;

        right: auto;
        bottom: auto;

        display: inline-block;

        margin: -10px 0 0 28%;
    }


    /* PRINCIPLES */

    .rtl-principles-photo {
        min-height: 470px;
    }

    .rtl-principles-photo-text {
        left: 25px;
        right: 25px;
        bottom: 30px;
    }

    .rtl-principles-photo-text strong {
        font-size: 30px;
    }

    .rtl-principles-content {
        padding: 80px 25px;
    }

    .rtl-principle-block h3 {
        font-size: 34px;
    }

    .rtl-principle-handwritten {
        align-self: flex-start;

        margin: 45px 0;
    }


    /* FEATURE */

    .rtl-home-feature {
        padding: 100px 0;
    }

    .rtl-feature-image {
        height: 460px;
    }

    .rtl-feature-image::before {
        left: -12px;
        bottom: -12px;
    }

    .rtl-feature-number {
        font-size: 80px;
    }

    .rtl-feature-copy h2 {
        font-size: 68px;
    }

    .rtl-feature-copy h3 {
        font-size: 25px;
    }


    /* COACHING */

    .rtl-home-coaching {
        padding: 100px 0;
    }

    .rtl-coaching-heading h2 {
        font-size: 53px;
    }

    .rtl-coaching-photo-large {
        height: 430px;
    }

    .rtl-coaching-floating {
        width: 92%;

        margin-left: auto;
        margin-right: auto;

        padding: 28px;
    }

    .rtl-coaching-year,
    .rtl-coaching-performance {
        margin-left: auto;
        margin-right: auto;
    }

    .rtl-coaching-floating h3 {
        margin-top: 0;

        font-size: 30px;
    }


    /* TRAINING */

    .rtl-home-training {
        padding: 100px 0;
    }

    .rtl-training-title h2 {
        font-size: 45px;
    }

    .rtl-training-paper {
        padding: 40px 24px;
    }

    .rtl-training-day {
        grid-template-columns: 65px 1fr;
    }


    /* ARTICLES */

    .rtl-home-more-articles {
        padding: 100px 0;
    }

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

    .rtl-more-heading h2 {
        font-size: 52px;
    }

    .rtl-more-article {
        grid-template-columns: 1fr 30px;

        gap: 15px;

        padding: 28px 0;
    }

    .rtl-more-date {
        grid-column: 1;
    }

    .rtl-more-article h3 {
        grid-column: 1;
    }

    .rtl-more-arrow {
        grid-column: 2;
        grid-row: 1 / span 2;
    }


    /* ABOUT */

    .rtl-home-about {
        padding: 100px 0;
    }

    .rtl-about-layout {
        gap: 70px;
    }

    .rtl-about-photo img {
        height: 500px;
    }

    .rtl-about-record {
        right: -5px;
    }

    .rtl-about-copy h2 {
        font-size: 64px;
    }

    .rtl-about-numbers {
        gap: 25px;
        flex-wrap: wrap;
    }


    /* FINAL */

    .rtl-home-final {
        min-height: 660px;
    }

    .rtl-home-final h2 {
        font-size: 62px;
    }

}