/* ========================================
   LANDING PAGE
========================================= */

:root {
    --forest: #0d2b20;
    --forest-dark: #081f17;
    --forest-soft: #17372c;

    --cream: #f4f0e7;
    --cream-light: #faf8f2;

    --text: #17251f;
    --text-light: #f7f3eb;

    --muted: #69736d;

    --max-width: 92rem;

    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
}


/* ========================================
   SHARED LANDING ELEMENTS
========================================= */

.eyebrow {
    margin: 0 0 1.1rem;
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: rgba(255,255,255,.7);
}

.heading-line {
    display: block;
    width: 2.8rem;
    height: 1px;
    margin: 1.5rem 0;
    background: var(--forest);
}

.heading-line--light {
    background: rgba(255,255,255,.7);
}

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

    min-height: 3rem;
    padding: .9rem 1.5rem;

    border: 1px solid transparent;

    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

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

.button--dark {
    background: var(--forest);
    color: white;
}

.button--dark:hover {
    background: var(--forest-soft);
}

.button--light {
    background: var(--cream-light);
    color: var(--forest);
}

.button--light:hover {
    background: white;
}

.text-link {
    display: inline-flex;
    gap: .7rem;
    align-items: center;

    color: var(--forest);

    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link--light {
    color: white;
}


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

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(24rem, 38%) 1fr;
    min-height: max(42rem, 100dvh);
    overflow: hidden;
    background: var(--cream);
}
.hero__image {
    position: absolute;
    inset: 0;
}
.hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 20, 15, 0.22);
    pointer-events: none;
}
.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 2;
    grid-column: 1;
    display: flex;
    align-items: center;
    width: 125%;
    height: 100%;
    background: var(--cream);
    border-bottom-right-radius: 55% 25%;
    border-top-right-radius: 50% 60%;
}

.hero__content-inner {
    width: min(28rem, 75%);
    margin-left: clamp(2rem, 7vw, 7rem);
}

.hero h1 {
    margin: 0;

    color: var(--forest);

    font-family: var(--serif);
    font-size: clamp(3.8rem, 5.8vw, 6.7rem);
    font-weight: 400;
    line-height: .97;
}

.hero__text {
    max-width: 20rem;

    color: #314039;

    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;

    margin-top: 2rem;
}

.text-link--play {
    gap: .8rem;
}

.hero .button {
    white-space: nowrap;
}

.play-icon {
    display: grid;
    place-items: center;

    width: 1.7rem;
    height: 1.7rem;

    border: 1px solid var(--forest);
    border-radius: 50%;

    font-size: .55rem;
}


/* ========================================
   STATS
========================================= */

.stats-background {
    background: var(--cream);
}
.stats {
    position: relative;
    z-index: 5;
    margin-top: -3rem;
    padding: 3.8rem 5% 3rem;
    color: white;
    background: var(--forest);
    border-top-left-radius: 48% 3rem;
    border-top-right-radius: 38% 4rem;
}
.stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--max-width);
    margin: auto;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 0 2rem;

    text-align: center;
}
.stat + .stat {
    border-left: 1px solid rgba(255,255,255,.25);
}
.stat__icon {
    display: grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: .8rem;
    color: rgba(255, 255, 255, .85);
}
.stat__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.stat strong {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3.3rem);
    font-weight: 400;
}
.stat span:last-child {
    margin-top: .35rem;

    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* ========================================
   SERVICES
========================================= */

.home-services {
    padding: 6rem 5% 7rem;
    background: var(--cream-light);
}

.home-services__inner {
    display: grid;
    grid-template-columns: minmax(14rem, .8fr) 3fr;
    gap: clamp(3rem, 6vw, 7rem);

    max-width: var(--max-width);
    margin: auto;
}

.section-intro h2 {
    margin: 0;

    color: var(--forest);

    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3.3rem);
    font-weight: 400;
    line-height: 1.06;
}

.section-intro > p:not(.eyebrow) {
    max-width: 20rem;
    margin-bottom: 2rem;

    color: #4f5b55;

    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}

.service-card {
    position: relative;
}

.service-card__image {
    height: clamp(15rem, 25vw, 24rem);

    overflow: hidden;

    border-top-left-radius: 45% 2rem;
    border-top-right-radius: 45% 2rem;
    border-bottom-left-radius: 35% 2.5rem;
}

.service-card__image--two {
    border-top-left-radius: 50% 3rem;
}

.service-card__image--three {
    border-top-right-radius: 15%;
}

.service-card__image--four {
    border-top-left-radius: 30%;
}

.service-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.service-card:hover img {
    transform: scale(1.04);
}

.service-card__icon {
    position: relative;

    display: grid;
    place-items: center;

    width: 2.7rem;
    height: 2.7rem;

    margin: -1.3rem 0 .9rem .5rem;

    color: white;
    background: var(--forest);

    border: 4px solid var(--cream-light);
    border-radius: 50%;
}

.service-card h3 {
    margin: 0 0 .65rem;

    color: var(--forest);

    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
}

.service-card p {
    margin: 0;

    color: #59635e;

    font-size: .85rem;
    line-height: 1.6;
}


/* ========================================
   PORTFOLIO
========================================= */

.portfolio {
    position: relative;

    padding: 5rem 5% 6rem;

    color: white;
    background: var(--forest);
}

.portfolio::before {
    content: "";

    position: absolute;
    top: -2rem;
    left: 0;

    width: 100%;
    height: 4rem;

    background: var(--forest);

    border-top-left-radius: 55% 100%;
    border-top-right-radius: 45% 100%;
}

.portfolio__inner {
    position: relative;
    z-index: 2;

    max-width: var(--max-width);
    margin: auto;
}

.portfolio__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;

    margin-bottom: 2.5rem;
}

.portfolio h2 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3.7rem);
    font-weight: 400;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.project-card a {
    color: inherit;
    text-decoration: none;
}

.project-card__image {
    aspect-ratio: .85;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.project-card__button {
    display: block;

    width: 100%;
    padding: 0;

    color: inherit;
    background: transparent;

    border: 0;

    text-align: left;

    cursor: pointer;
}

.project-card:hover img {
    transform: scale(1.04);
}

.project-card h3 {
    margin: 1rem 0 .25rem;

    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
}

.project-card p {
    margin: 0;

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

    font-size: .7rem;
}


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

.about {
    padding: 7rem 5%;
    background: var(--cream-light);
}

.about__inner {
    display: grid;
    grid-template-columns: 1.25fr .85fr .65fr;
    align-items: center;
    gap: clamp(3rem, 5vw, 6rem);

    max-width: var(--max-width);
    margin: auto;
}

.about__image-wrap {
    position: relative;

    aspect-ratio: 1.15;

    overflow: hidden;

    border-radius:
        55% 35% 45% 30% /
        45% 55% 40% 55%;
}

.about__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about__content h2 {
    margin: 0;

    color: var(--forest);

    font-family: var(--serif);
    font-size: clamp(2.4rem, 3.7vw, 4rem);
    font-weight: 400;
    line-height: 1;
}

.about__content > p:not(.eyebrow):not(.signature) {
    max-width: 26rem;

    color: #56615b;

    line-height: 1.7;
}
.signature {
    margin-top: 2rem;
    color: var(--forest);
    font-family: "Allura", cursive;
    font-size: 3rem;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.01em;
    transform: rotate(-4deg);
}
.about__values {
    padding-left: 2rem;
    border-left: 1px solid #c9c8c2;
}
.value {
    display: grid;
    grid-template-columns: 2.25rem 1fr;
    gap: 1rem;
    align-items: center;
    margin: 1.5rem 0;
}
.value__icon {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    color: var(--forest);
}
.value__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.value p {
    margin: 0;
    color: #48544e;
    font-size: .8rem;
    line-height: 1.5;
}


/* ========================================
   TESTIMONIAL
========================================= */

.testimonial {
    position: relative;
    padding: 5rem 5% 6rem;
    overflow: hidden;
    background: #f1eee6;
}
.testimonial::before,
.testimonial::after {
    content: "";
    position: absolute;
    width: 25rem;
    height: 25rem;
    opacity: .08;
    filter: blur(25px);
    background:
        radial-gradient(
            ellipse at center,
            var(--forest),
            transparent 65%
        );
}
.testimonial::before {
    top: -10rem;
    left: -4rem;
}
.testimonial::after {
    right: -4rem;
    bottom: -12rem;
}
.testimonial__inner {
    position: relative;
    z-index: 2;

    max-width: 55rem;
    margin: auto;

    text-align: center;
}

.testimonial__quote {
    display: block;

    height: 3rem;

    color: var(--forest);

    font-family: var(--serif);
    font-size: 5rem;
    line-height: .8;
}

.testimonial__slides {
    position: relative;

    max-width: 55rem;
    min-height: 14rem;

    margin: 0 auto;
}

.testimonial__slide {
    position: absolute;
    inset: 0;

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

    visibility: hidden;

    opacity: 0;
    pointer-events: none;
}

.testimonial__slide.is-active {
    position: relative;

    visibility: visible;

    opacity: 1;
    pointer-events: auto;
}

.testimonial blockquote {
    margin: 2rem 0;

    color: var(--forest);

    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.4vw, 2.4rem);
    line-height: 1.35;
}

.testimonial__author {
    color: var(--forest);

    font-size: .67rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.testimonial__author span {
    display: block;

    margin-top: .35rem;
}

/* Testimonial navigation */

.testimonial__dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 1rem;

    margin-top: 2rem;
}

.testimonial__dot {
    position: relative;

    display: grid;
    place-items: center;

    flex: 0 0 3rem;

    width: 3rem;
    min-width: 3rem;

    height: 3rem;
    min-height: 3rem;

    margin: 0;
    padding: 0;

    appearance: none;
    -webkit-appearance: none;

    background: transparent;

    border: 0;
    border-radius: 0;

    cursor: pointer;
}

.testimonial__dot::before {
    content: "";

    display: block;

    width: .55rem;
    height: .55rem;

    background: #aeb7b1;

    border-radius: 50%;

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

.testimonial__dot:hover::before {
    transform: scale(1.15);
}

.testimonial__dot.is-active::before {
    background: var(--forest);

    transform: scale(1.15);
}

/* ========================================
   CONTACT CTA
========================================= */

.contact-cta {
    position: relative;
    min-height: 34rem;
    margin-top: -2.5rem;
    padding-top: 2.5rem;
    overflow: hidden;
    color: white;
    background: var(--forest);
    border-radius: 50% 50% 0 0 / 2.5rem 2.5rem 0 0;
}
.contact-cta__background,
.contact-cta__overlay {
    position: absolute;
    inset: 0;
}
.contact-cta__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-cta__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5, 29, 21, .96),
            rgba(5, 29, 21, .88) 45%,
            rgba(5, 29, 21, .82)
        );
}

.contact-cta__inner {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(4rem, 8vw, 9rem);
    align-items: center;

    max-width: var(--max-width);
    min-height: 34rem;

    margin: auto;
    padding: 6rem 5%;
}

.contact-cta__content h2 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(2.3rem, 4vw, 4.3rem);
    font-weight: 400;
    line-height: 1.05;
}

.contact-cta__content p {
    margin-bottom: 2rem;

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

    line-height: 1.7;
}


/* ========================================
   FORM
========================================= */

.home-form {
    display: grid;
    gap: 1.5rem;
}

.home-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.form-field label {
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.form-field input,
.form-field textarea {
    width: 100%;

    padding: .7rem .2rem;

    color: white;
    background: transparent;

    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.4);

    outline: none;
}

.form-field textarea {
    padding: .8rem;

    border: 1px solid rgba(255,255,255,.4);

    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: white;
}

.home-form .button {
    justify-self: start;
}


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

@media (min-width: 701px) and (max-width: 1000px) {

    .hero {
        display: block;

        min-height: 0;
        height: auto;

        background: var(--cream);
        overflow: hidden;
    }

    .hero__image {
        position: relative;
        inset: auto;
        width: 100%;
        height: 52vh;
        min-height: 26rem;
        overflow: hidden;
    }

    .hero__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 45%;
    }

    .hero__content {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-start;
        padding: 2rem 4rem 4rem;

        background: var(--cream);

        border-radius: 0;
    }

    .hero__content-inner {
        width: 100%;
        max-width: 44rem;
        margin: 0 auto;
    }

    .hero__curve {
        position: absolute;
        z-index: 3;
        top: -4.9rem;
        left: 0;
        display: block;
        width: 100%;
        height: 5rem;
        pointer-events: none;
    }
    .hero__curve svg {
        display: block;
        width: 100%;
        height: 100%;
    }
    .hero__curve path {
        fill: var(--cream);
    }
    .hero__content::before,
    .hero__content::after {
        display: none;
    }
    .hero h1 {
        font-size: clamp(3.7rem, 7vw, 5rem);
        line-height: 1;
    }
    .hero__text {
        max-width: 32rem;

        font-size: 1rem;
        line-height: 1.7;
    }
    .hero__actions {
        margin-top: 1.75rem;
    }
    .home-services__inner {
        grid-template-columns: 1fr;
    }
    #stats {
        margin-top: 0;
    }
    .section-intro {
        max-width: 40rem;
    }

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

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

    .about__inner {
        grid-template-columns: 1fr 1fr;
    }

    .about__values {
        grid-column: 1 / -1;

        display: grid;
        grid-template-columns: repeat(4, 1fr);

        padding: 2rem 0 0;

        border-top: 1px solid #c9c8c2;
        border-left: 0;
    }

}


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

@media (max-width: 700px) {

    .hero {
        display: block;
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
        background: var(--cream);
    }
    .hero__image {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: 55%;
    }
    .hero__image::after {
        content: "";
        position: absolute;
        inset: 0;

        background: linear-gradient(
            to bottom,
            rgba(5, 20, 15, 0.62) 0%,
            rgba(5, 20, 15, 0.42) 18%,
            rgba(5, 20, 15, 0.22) 38%,
            rgba(5, 20, 15, 0.08) 60%,
            transparent 72%
        );

        pointer-events: none;
    }
    .hero__content {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-start;
        padding: .75rem 1.5rem 2.5rem;
        background: var(--cream);
        border-radius: 0;
    }
    .hero__curve {
        position: absolute;
        z-index: 3;
        top: -4rem;
        left: 0;
        width: 100%;
        height: 4.1rem;
        pointer-events: none;
    }
    .hero__curve svg {
        display: block;
        width: 100%;
        height: 100%;
    }
    .hero__curve path {
        fill: var(--cream);
    }
    .hero__content-inner {
        width: 100%;
        margin: 0;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 13vw, 4.25rem);
        line-height: 1.02;
    }

    .hero .heading-line {
        width: 2.2rem;
        margin: 1.4rem 0 1.6rem;
    }
    .hero__text {
        max-width: 20rem;

        font-size: .95rem;
        line-height: 1.65;
    }
    .hero__actions {
        margin-top: 1.6rem;
    }
    .hero .button {
        min-height: 3rem;
        padding: .85rem 1.35rem;
    }

    /* Stats */

    .stats {
        margin-top: -1px;
        padding: 3rem 1rem;
        border-radius: 0;
    }

    .stats__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 0;
    }

    .stat {
        padding: 0 .75rem;
    }

    .stat:nth-child(3) {
        border-left: 0;
    }

    /* Services */

    .home-services {
        padding: 4.5rem 1.4rem;
    }

    .home-services__inner {
        grid-template-columns: 1fr;
        gap: 3rem;

        width: 100%;
    }

    .section-intro {
        width: 100%;
        max-width: none;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 3rem;

        width: 100%;
        min-width: 0;
    }

    .service-card {
        width: 100%;
        min-width: 0;
    }

    .service-card__image {
        width: 100%;
        height: 25rem;
    }


    /* Portfolio */

    .portfolio {
        padding: 4.5rem 1.4rem;
    }

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

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .project-card__image {
        aspect-ratio: 1.25;
    }


    /* About */

    .about {
        padding: 5rem 1.4rem;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__image-wrap {
        aspect-ratio: 1;
    }

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


    /* Testimonial */

    .testimonial {
        padding: 4.5rem 1.4rem;
    }

    .testimonial blockquote br {
        display: none;
    }
    
    /* Contact */

    .contact-cta__inner {
        grid-template-columns: 1fr;

        padding: 6rem 1.4rem 5rem;
    }

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

}
@media (max-width: 700px) and (min-height: 800px) {
    .hero__content {
        padding-bottom: 1.25rem;
    }
    .hero__image {
        height: 58%;
    }
}

@media (min-width: 0rem) {
    .portfolio-cursor {
        display: none;
    }
}

@media (min-width: 64rem) {

    /* HERO */
    .hero__content {
        position: relative;

        width: 42%;
        height: 100%;

        background: var(--cream);

        border-radius: 0;
        z-index: 2;
    }
    .hero__desktop-curve {
        position: absolute;
        z-index: -1;

        top: 0;
        left: 100%;

        width: 60rem;
        height: 100%;

        pointer-events: none;
    }

    .hero__desktop-curve svg {
        display: block;

        width: 100%;
        height: 100%;
    }

    .hero__desktop-curve path {
        fill: var(--cream);
    }
    .hero__image::after {
        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.62) 0%,
                rgba(0, 0, 0, 0.22) 20%,
                rgba(5, 20, 15, 0.12) 45%,
                rgba(5, 20, 15, 0.10) 100%
            );
    }

    /* stats */
    .stats {
        margin-top: -4.5rem;

        padding-top: 5rem;
    }

    /* ========================================
    PORTFOLIO CURSOR
    ========================================= */

    

    .portfolio-cursor {
        position: fixed;
        z-index: 200;

        top: 0;
        left: 0;

        display: grid;
        place-items: center;

        width: 5rem;
        height: 5rem;

        color: var(--forest);
        background: rgba(244, 240, 231, 0.94);

        border-radius: 50%;

        font-family: var(--sans);
        font-size: .62rem;
        font-weight: 600;
        letter-spacing: .12em;

        text-transform: uppercase;

        opacity: 0;
        pointer-events: none;

        transform:
            translate(-50%, -50%)
            scale(.75);

        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);

        box-shadow:
            0 8px 30px rgba(0, 0, 0, .12);

        transition:
            opacity .2s ease,
            transform .25s ease;
    }

    .portfolio-cursor.is-visible {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1);
    }
}


/* ========================================
   MOBILE LANDSCAPE
   Short phone screens
========================================= */

@media (max-width: 47.99rem) and (max-height: 31.25rem) {

    .hero {
        position: relative;

        min-height: 100dvh;
        height: 100dvh;

        overflow: hidden;
    }

    .hero__image {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;
    }

    .hero__image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .hero__content {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;

        width: 56%;
        height: 100%;

        padding: 5.5rem 2rem 1.5rem;

        background: var(--cream);

        display: flex;
        align-items: center;
    }

    .hero__curve {
        display: none;
    }

    .hero__content-inner {
        width: 100%;
        margin: 0;
    }

    .hero .eyebrow {
        margin-bottom: .65rem;

        font-size: .58rem;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 7vw, 3.3rem);
        line-height: .94;
    }

    .hero .heading-line {
        margin: .8rem 0 1rem;
    }

    .hero__text {
        max-width: 18rem;

        font-size: .78rem;
        line-height: 1.45;
    }

    .hero__actions {
        margin-top: 1rem;
    }

    .hero .button {
        min-height: 2.5rem;
        padding: .65rem 1rem;

        font-size: .6rem;
    }
    /* Green logo before scroll */
    .nav__logo .nav__logo-green {
        display: block;
    }

    .nav__logo .nav__logo-white {
        display: none;
    }

    /* White logo after scroll */
    .site-header.scrolled .nav__logo .nav__logo-green {
        display: none;
    }

    .site-header.scrolled .nav__logo .nav__logo-white {
        display: block;
    }
}