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

/* Mobile - 0rem+ */

.about-hero {
    position: relative;

    display: flex;
    align-items: flex-end;

    min-height: 42rem;
    padding: 9rem 0 8rem;

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

    overflow: hidden;
}

.about-hero__background {
    position: absolute;
    z-index: 0;

    inset: 0;
}

.about-hero__background img {
    width: 100%;
    height: 100%;

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

    filter:
        saturate(0.7)
        contrast(1.05);
}

.about-hero__overlay {
    position: absolute;
    z-index: 1;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 7, 6, 0.7) 0%,
            rgba(5, 7, 6, 0.42) 35%,
            rgba(5, 7, 6, 0.92) 100%
        ),
        linear-gradient(
            90deg,
            rgba(5, 7, 6, 0.72) 0%,
            transparent 85%
        );
}

.about-hero__inner {
    position: relative;
    z-index: 3;

    width: 100%;

    padding-inline: 1rem;
}

.about-hero__eyebrow {
    margin: 0 0 1rem;

    color: var(--yellow);

    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-hero h1 {
    max-width: 60rem;

    margin: 0;

    font-family: var(--font-display);
    font-size: clamp(3.8rem, 16vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.84;
    text-transform: uppercase;

    text-shadow:
        0 0.2rem 1rem rgba(0, 0, 0, 0.4);
}

.about-hero h1 span {
    color: var(--yellow);
}

.about-hero__text {
    max-width: 35rem;

    margin-top: 1.75rem;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.95rem;
    line-height: 1.8;
}

.about-hero__angle {
    position: absolute;
    z-index: 4;

    right: 0;
    bottom: -1px;
    left: 0;

    height: 3rem;

    background: #f3f1eb;

    clip-path: polygon(
        0 72%,
        100% 15%,
        100% 100%,
        0 100%
    );
}


/* Tablet - 48rem+ */

@media (min-width: 48rem) {

    .about-hero {
        min-height: 46rem;
        padding-bottom: 9rem;
    }

    .about-hero__inner {
        padding-inline: 1.5rem;
    }

    .about-hero h1 {
        font-size: 6.5rem;
    }

    .about-hero__text {
        font-size: 1rem;
    }

    .about-hero__angle {
        height: 4rem;
    }

}


/* Desktop - 64rem+ */

@media (min-width: 64rem) {

    .about-hero {
        min-height: 50rem;
        padding-bottom: 10rem;
    }

    .about-hero__inner {
        padding-inline: 2rem;
    }

    .about-hero h1 {
        font-size: clamp(6.5rem, 7vw, 8.5rem);
    }

    .about-hero__background img {
        transition: transform 8s ease;
    }

    .about-hero:hover .about-hero__background img {
        transform: scale(1.035);
    }

}


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

/* Mobile - 0rem+ */

.about-story {
    padding: 6rem 0 7rem;

    background: #f3f1eb;
}

.about-story__grid {
    display: grid;
    gap: 4rem;
}

.about-story__image {
    position: relative;

    max-width: 35rem;
}

.about-story__image-frame {
    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    clip-path: polygon(
        0 0,
        calc(100% - 1.5rem) 0,
        100% 1.5rem,
        100% 100%,
        1.5rem 100%,
        0 calc(100% - 1.5rem)
    );
}

.about-story__image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 700ms ease;
}

.about-story__badge {
    position: absolute;

    right: -0.5rem;
    bottom: -2rem;

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

    width: 7rem;
    height: 7rem;

    background: var(--yellow);
    color: var(--black);

    transform: rotate(-5deg);

    clip-path: polygon(
        12% 0,
        100% 8%,
        92% 100%,
        0 88%
    );
}

.about-story__badge span {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-story__badge strong {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 0.95;
}

.section-label {
    margin: 0 0 1rem;

    color: #76766e;

    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-story h2 {
    margin: 0 0 2rem;

    color: var(--black);

    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.9;
    text-transform: uppercase;
}

.about-story .section-label {
    color: #000;
}

.about-story h2 span {
    color: var(--yellow-text, #c99200);
}

.about-story__content {
    max-width: 40rem;
}

.about-story__content > p:not(.section-label) {
    color: #62645e;

    font-size: 0.95rem;
    line-height: 1.85;
}

.about-story__content > p + p {
    margin-top: 1.25rem;
}

.about-story__content .about-story__lead {
    color: var(--black);

    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.5;
}


/* Tablet - 48rem+ */

@media (min-width: 48rem) {

    .about-story {
        padding: 8rem 0;
    }

    .about-story__grid {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: center;
        gap: 5rem;
    }

    .about-story__badge {
        right: -1.5rem;

        width: 8rem;
        height: 8rem;
    }

}


/* Desktop - 64rem+ */

@media (min-width: 64rem) {

    .about-story {
        padding: 10rem 0;
    }

    .about-story__grid {
        gap: 8rem;
    }

    .about-story h2 {
        font-size: 5.25rem;
    }

    .about-story__image:hover img {
        transform: scale(1.045);
    }

}


/* =========================================
   VALUES
========================================= */

/* Mobile - 0rem+ */

.about-values {
    padding: 7rem 0;

    background: #111310;
    color: var(--white);
}

.about-values__heading {
    display: grid;
    gap: 2rem;

    margin-bottom: 4rem;
}

.about-values .section-label {
    color: rgba(255, 255, 255, 0.45);
}

.about-values__heading h2 {
    margin: 0;

    font-family: var(--font-display);
    font-size: clamp(3.2rem, 13vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.88;
    text-transform: uppercase;
}

.about-values__heading h2 span {
    color: var(--yellow);
}

.about-values__heading > p {
    max-width: 32rem;

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.95rem;
    line-height: 1.8;
}

.about-values__grid {
    display: grid;

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

.about-value {
    position: relative;

    padding: 3rem 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.13);

    overflow: hidden;
}

.about-value__number {
    position: absolute;

    top: 1rem;
    right: 0;

    color: rgba(255, 255, 255, 0.35);

    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
}

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

    width: 3.75rem;
    height: 3.75rem;

    margin-bottom: 2rem;

    background: var(--yellow);

    clip-path: polygon(
        0.5rem 0,
        100% 0,
        calc(100% - 0.5rem) 100%,
        0 100%
    );
}

.about-value__icon svg {
    width: 2rem;
    height: 2rem;

    fill: none;
    stroke: var(--black);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-value h3 {
    position: relative;

    margin: 0 0 1rem;

    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.about-value p {
    position: relative;

    max-width: 25rem;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.9rem;
    line-height: 1.75;
}


/* Tablet - 48rem+ */

@media (min-width: 48rem) {

    .about-values {
        padding: 8rem 0;
    }

    .about-values__heading {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: end;
        gap: 4rem;
    }

    .about-values__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-value {
        min-height: 24rem;
        padding: 3rem 2rem;

        border-right: 1px solid rgba(255, 255, 255, 0.13);
    }

    .about-value:last-child {
        border-right: 0;
    }

}


/* Desktop - 64rem+ */

@media (min-width: 64rem) {

    .about-values {
        padding: 9rem 0;
    }

    .about-values__heading h2 {
        font-size: 5.5rem;
    }

    .about-value {
        padding: 3.5rem;

        transition:
            background-color 250ms ease,
            transform 250ms ease;
    }

    .about-value:hover {
        background: rgba(255, 255, 255, 0.035);

        transform: translateY(-0.35rem);
    }

    .about-value__number {
        font-size: 9rem;

        transition:
            color 250ms ease,
            transform 250ms ease;
    }

    .about-value:hover .about-value__number {
        color: rgba(245, 184, 0, 0.08);

        transform: translate(-0.3rem, 0.3rem);
    }

}


/* =========================================
   STATEMENT
========================================= */

/* Mobile - 0rem+ */

.about-statement {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 34rem;
    padding: 7rem 0;

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

    overflow: hidden;
}

.about-statement__background {
    position: absolute;
    z-index: 0;

    inset: 0;
}

.about-statement__background img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        grayscale(0.25)
        saturate(0.65);
}

.about-statement__overlay {
    position: absolute;
    z-index: 1;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 7, 6, 0.95) 0%,
            rgba(5, 7, 6, 0.76) 55%,
            rgba(5, 7, 6, 0.55) 100%
        );
}

.about-statement__inner {
    position: relative;
    z-index: 2;
}

.about-statement p {
    max-width: 60rem;

    margin: 0;

    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

.about-statement p span {
    color: rgba(255, 255, 255, 0.45);
}

.about-statement strong {
    display: block;

    margin-top: 1.25rem;

    color: var(--yellow);

    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}


/* Tablet - 48rem+ */

@media (min-width: 48rem) {

    .about-statement {
        min-height: 38rem;
        padding: 8rem 0;
    }

}


/* Desktop - 64rem+ */

@media (min-width: 64rem) {

    .about-statement {
        min-height: 42rem;
    }

    .about-statement p,
    .about-statement strong {
        font-size: 5.5rem;
    }

    .about-statement__background img {
        transition: transform 8s ease;
    }

    .about-statement:hover .about-statement__background img {
        transform: scale(1.035);
    }

}


/* =========================================
   WHY RIDGELINE
========================================= */

/* Mobile - 0rem+ */

.about-why {
    padding: 7rem 0;

    background: #f3f1eb;
}

.about-why__grid {
    display: grid;
    gap: 4rem;
}

.about-why__heading {
    max-width: 38rem;
}

.about-why__heading .section-label {
    color:#000;
}

.about-why__heading h2 {
    margin: 0;

    color: var(--black);

    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.9;
    text-transform: uppercase;
}

.about-why__heading h2 span {
    color: var(--yellow-text, #c99200);
}

.about-why__heading > p:last-child {
    margin-top: 1.75rem;

    color: #62645e;

    font-size: 0.95rem;
    line-height: 1.8;
}

.about-why__list {
    border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.about-why__item {
    display: grid;
    grid-template-columns: 2.75rem 1fr;
    gap: 1rem;

    padding: 1.75rem 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.about-why__item > span {
    color: var(--yellow-text, #c99200);

    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.about-why__item h3 {
    margin: 0;

    color: var(--black);

    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
}

.about-why__item p {
    max-width: 32rem;

    margin-top: 0.6rem;

    color: #686a64;

    font-size: 0.88rem;
    line-height: 1.7;
}


/* Tablet - 48rem+ */

@media (min-width: 48rem) {

    .about-why {
        padding: 8rem 0;
    }

    .about-why__grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 5rem;
    }

    .about-why__heading {
        position: sticky;
        top: 8rem;

        align-self: start;
    }

    .about-why__item > span {
        font-size: 1.75rem;
    }

}


/* Desktop - 64rem+ */

@media (min-width: 64rem) {

    .about-why {
        padding: 10rem 0;
    }

    .about-why__grid {
        gap: 8rem;
    }

    .about-why__heading h2 {
        font-size: 5.25rem;
    }

    .about-why__item {
        grid-template-columns: 4rem 1fr;

        padding: 2.25rem 1rem;

        transition:
            background-color 200ms ease,
            padding-left 200ms ease;
    }

    .about-why__item > span {
        font-size: 2.25rem;
    }

    .about-why__item:hover {
        padding-left: 1.5rem;

        background: rgba(0, 0, 0, 0.025);
    }

}


/* =========================================
   LOCAL
========================================= */

/* Mobile - 0rem+ */

.about-local {
    position: relative;
    padding: 7rem 0;
    background: var(--yellow);
    color: var(--black);
    overflow: hidden;
}
.about-local__inner {
    display: grid;
    gap: 4rem;
}

/* Mobile - 0rem+ */
.about-local__graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20rem;
}
.about-local__map {
    display: block;
    width: min(100%, 30rem);
    height: auto;
    opacity: 0.9;
    filter:
        grayscale(1)
        contrast(2);
    mix-blend-mode: multiply;
}
.about-local__marker {
    position: absolute;
    right: -2%;
    bottom: 25%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.9rem;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: rotate(-2deg);
}
.about-local__marker span {
    width: 0.55rem;
    height: 0.55rem;
    background: var(--yellow);
    border: 0.12rem solid var(--white);
    border-radius: 50%;
}

/* Tablet - 48rem+ */
@media (min-width: 48rem) {
    .about-local__graphic {
        min-height: 25rem;
    }
    .about-local__marker {
        right: -10%;
        bottom: 29%;
    }
}

/* Desktop - 64rem+ */
@media (min-width: 64rem) {
    .about-local__map {
        width: min(100%, 34rem);
        transition:
            opacity 250ms ease,
            transform 400ms ease;
    }
    .about-local__marker {
        right: 2%;
        bottom: 31%;
    }
    .about-local__graphic:hover .about-local__map {
        opacity: 0.25;
        transform: scale(1.025);
    }
}
.about-local .section-label {
    color: rgba(0, 0, 0, 1);
}
.about-local h2 {
    margin: 0;

    font-family: var(--font-display);
    font-size: clamp(3.2rem, 13vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.88;
    text-transform: uppercase;
}
.about-local h2 span {
    color: #000000e7;
}
.about-local__content {
    max-width: 38rem;
}
.about-local__content > p:not(.section-label) {
    color: rgba(0, 0, 0, 0.85);

    font-size: 0.95rem;
    line-height: 1.8;
}

.about-local__content > p + p {
    margin-top: 1.1rem;
}

.about-local__link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;

    margin-top: 2rem;

    color: var(--black);

    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-local__link span {
    font-size: 1.2rem;

    transition: transform 200ms ease;
}


/* Tablet - 48rem+ */

@media (min-width: 48rem) {

    .about-local {
        padding: 8rem 0;
    }

    .about-local__inner {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: center;
        gap: 5rem;
    }

    .about-local__graphic {
        min-height: 25rem;
    }

}


/* Desktop - 64rem+ */

@media (min-width: 64rem) {

    .about-local {
        padding: 9rem 0;
    }

    .about-local__inner {
        gap: 8rem;
    }

    .about-local h2 {
        font-size: 5.5rem;
    }

    .about-local__link:hover span,
    .about-local__link:focus-visible span {
        transform: translateX(0.4rem);
    }

}


/* =========================================
   ACCESSIBILITY / REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .about-hero__background img,
    .about-story__image-frame img,
    .about-statement__background img,
    .about-value,
    .about-value__number,
    .about-why__item,
    .about-local__link span {
        transition: none;
    }

}