: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 {
    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;
}
