/* ============================================================
   LET HIM COOK™
   Dedicated Our Story / About Page Styles
   ============================================================ */


/* ============================================================
   1. INTERIOR HEADER
   ============================================================ */

.about-page .site-header {
    position: relative;

    color: var(--white-bright);
    background: var(--black);

    border-bottom: 1px solid var(--line-dark);
}

.about-page .primary-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}


/* ============================================================
   2. ABOUT HERO
   ============================================================ */

.about-hero {
    position: relative;

    min-height: calc(100svh - var(--header-height));

    color: var(--white-bright);
    background: var(--black);

    overflow: hidden;
}

.about-hero__image {
    position: absolute;
    inset: 0;
}

.about-hero__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(0.82)
        contrast(1.12);
}

.about-hero__shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.76) 0%,
            rgba(0, 0, 0, 0.28) 54%,
            rgba(0, 0, 0, 0.12) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.72) 0%,
            transparent 55%
        );
}

.about-hero__copy {
    position: relative;
    z-index: 3;

    display: flex;
    min-height: calc(100svh - var(--header-height));
    justify-content: center;
    flex-direction: column;

    width: min(980px, 68vw);

    padding:
        clamp(80px, 10vw, 145px)
        var(--content-inset)
        clamp(150px, 15vw, 220px);
}

.about-hero__copy > p {
    margin-bottom: 28px;

    color: var(--green);

    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.about-hero h1 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(6rem, 10.5vw, 11.5rem);
    font-weight: 400;
    line-height: 0.73;
    letter-spacing: -0.045em;
}

.about-hero h1 span {
    display: block;

    color: var(--green);
}

.about-hero__note {
    position: absolute;
    z-index: 4;

    right: var(--content-inset);
    bottom: 45px;
    left: var(--content-inset);

    display: grid;
    grid-template-columns: 1fr minmax(280px, 410px);
    gap: 50px;
    align-items: end;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.about-hero__note > span {
    color: rgba(255, 255, 255, 0.6);

    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.about-hero__note > p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.9rem;
    line-height: 1.65;
}


/* ============================================================
   3. ORIGIN
   ============================================================ */

.about-origin {
    display: grid;
    grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
    gap: clamp(45px, 9vw, 150px);

    padding:
        clamp(100px, 13vw, 180px)
        var(--content-inset);

    color: var(--black);
    background: var(--white-bright);
}

.about-origin__index {
    padding-top: 8px;
}

.about-origin__index > span {
    display: block;

    margin-bottom: 8px;

    color: var(--orange);

    font-family: var(--display);
    font-size: 4rem;
    line-height: 1;
}

.about-origin__index > p {
    margin: 0;

    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.about-origin__copy {
    max-width: 1150px;
}

.about-origin__copy h2 {
    max-width: 1050px;

    margin-bottom: clamp(55px, 7vw, 90px);

    font-family: var(--display);
    font-size: clamp(5.3rem, 8.7vw, 9.5rem);
    font-weight: 400;
    line-height: 0.72;
    letter-spacing: -0.045em;
}

.about-origin__copy h2 span {
    display: block;

    color: var(--orange);
}

.about-origin__text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(35px, 7vw, 100px);

    max-width: 890px;

    margin-left: auto;
}

.about-origin__text p {
    margin: 0;

    color: #47453f;

    font-size: clamp(1rem, 1.3vw, 1.17rem);
    line-height: 1.78;
}


/* ============================================================
   4. FULL-BLEED BURGER MOMENT
   ============================================================ */

.about-burger {
    position: relative;

    min-height: 92svh;

    color: var(--white);
    background: var(--black);

    overflow: hidden;
}

.about-burger > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 1200ms var(--ease);
}

.about-burger:hover > img {
    transform: scale(1.02);
}

.about-burger::after {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.05) 65%
        );

    content: "";
}

.about-burger__copy {
    position: absolute;
    z-index: 3;

    right: var(--content-inset);
    bottom: clamp(45px, 7vw, 95px);
    left: var(--content-inset);

    display: grid;
    grid-template-columns: 0.35fr minmax(0, 1fr);
    gap: clamp(35px, 8vw, 130px);
    align-items: end;
}

.about-burger__copy > span {
    color: var(--green);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.about-burger__copy > p {
    max-width: 960px;
    margin: 0;

    font-family: var(--display);
    font-size: clamp(4.2rem, 8vw, 9rem);
    font-weight: 400;
    line-height: 0.8;
    letter-spacing: -0.035em;
}


/* ============================================================
   5. PHILOSOPHY
   ============================================================ */

.about-philosophy {
    padding:
        clamp(100px, 12vw, 175px)
        var(--content-inset);

    color: var(--black);
    background: var(--green);
}

.about-philosophy__heading {
    display: grid;
    grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
    gap: clamp(45px, 8vw, 125px);
    align-items: end;

    margin-bottom: clamp(70px, 10vw, 135px);
}

.about-philosophy__heading > div {
    padding-bottom: 12px;
}

.about-philosophy__heading > div > span {
    display: block;

    margin-bottom: 8px;

    font-family: var(--display);
    font-size: 4rem;
    line-height: 1;
}

.about-philosophy__heading > div > p {
    margin: 0;

    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.about-philosophy__heading h2 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(6rem, 10.5vw, 11.5rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.045em;
}

.about-philosophy__heading h2 span {
    display: block;

    color: var(--white-bright);
}

.about-principles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    border-top: 1px solid var(--black);
    border-left: 1px solid var(--black);
}

.about-principles article {
    position: relative;

    min-height: 330px;

    padding:
        clamp(28px, 4vw, 55px);

    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);

    transition:
        color 260ms ease,
        background 260ms ease;
}

.about-principles article:hover {
    color: var(--white);
    background: var(--black);
}

.about-principles article > span {
    display: block;

    margin-bottom: clamp(50px, 7vw, 95px);

    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.about-principles h3 {
    margin-bottom: 18px;

    font-family: var(--display);
    font-size: clamp(3.8rem, 6vw, 6.5rem);
    font-weight: 400;
    line-height: 0.85;
}

.about-principles p {
    max-width: 420px;
    margin: 0;

    font-size: 0.9rem;
    line-height: 1.7;

    opacity: 0.72;
}


/* ============================================================
   6. KITCHEN SECTION
   ============================================================ */

.about-kitchen {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;

    min-height: 800px;

    color: var(--white);
    background: var(--black);
}

.about-kitchen__image {
    position: relative;

    min-height: 760px;

    overflow: hidden;
}

.about-kitchen__image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(0.9)
        contrast(1.07);
}

.about-kitchen__copy {
    display: flex;
    justify-content: center;
    flex-direction: column;

    padding:
        clamp(60px, 8vw, 120px)
        clamp(35px, 6vw, 90px);
}

.about-kitchen__copy > p:first-child {
    margin-bottom: 24px;

    color: var(--green);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.about-kitchen__copy h2 {
    margin-bottom: 35px;

    font-family: var(--display);
    font-size: clamp(5.5rem, 9vw, 10rem);
    font-weight: 400;
    line-height: 0.72;
    letter-spacing: -0.04em;
}

.about-kitchen__copy h2 span {
    display: block;

    color: var(--orange);
}

.about-kitchen__lead {
    max-width: 500px;

    margin-bottom: 22px;

    color: var(--white-bright);

    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
    font-weight: 600;
    line-height: 1.55;
}

.about-kitchen__copy > p:last-child {
    max-width: 500px;
    margin: 0;

    color: #99978f;

    line-height: 1.75;
}


/* ============================================================
   7. THINGS WE DON'T DO
   ============================================================ */

.about-not {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(50px, 9vw, 145px);

    padding:
        clamp(100px, 13vw, 180px)
        var(--content-inset);

    color: var(--black);
    background: var(--white-bright);
}

.about-not__heading {
    align-self: start;

    position: sticky;
    top: 40px;
}

.about-not__heading > span {
    display: block;

    margin-bottom: 18px;

    color: var(--orange);

    font-family: var(--display);
    font-size: 4rem;
    line-height: 1;
}

.about-not__heading h2 {
    max-width: 540px;
    margin: 0;

    font-family: var(--display);
    font-size: clamp(5rem, 8vw, 8.5rem);
    font-weight: 400;
    line-height: 0.75;
    letter-spacing: -0.04em;
}

.about-not__list {
    border-top: 1px solid var(--black);
}

.about-not__list > div {
    display: grid;
    grid-template-columns: 65px minmax(0, 1fr);
    gap: 30px;
    align-items: center;

    min-height: 150px;

    padding-block: 28px;

    border-bottom: 1px solid var(--black);
}

.about-not__list span {
    color: var(--orange);

    font-size: 0.66rem;
    font-weight: 800;
}

.about-not__list p {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    line-height: 0.9;
}


/* ============================================================
   8. GROUP SPREAD / MISSION
   ============================================================ */

.about-spread {
    position: relative;

    min-height: 100svh;

    color: var(--white);
    background: var(--black);

    overflow: hidden;
}

.about-spread > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.about-spread__shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.74) 0%,
            rgba(0, 0, 0, 0.2) 62%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.65),
            transparent 48%
        );
}

.about-spread__copy {
    position: absolute;
    z-index: 3;

    left: var(--content-inset);
    bottom: clamp(60px, 10vw, 130px);

    max-width: 1050px;
}

.about-spread__copy > p {
    margin-bottom: 24px;

    color: var(--green);

    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.about-spread__copy h2 {
    margin-bottom: 45px;

    font-family: var(--display);
    font-size: clamp(5.3rem, 8.7vw, 9.5rem);
    font-weight: 400;
    line-height: 0.73;
    letter-spacing: -0.045em;
}

.about-spread__copy h2 span {
    display: block;

    color: var(--green);
}

.about-spread__link {
    display: flex;
    width: min(430px, 100%);
    align-items: center;
    justify-content: space-between;

    padding-block: 16px;

    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-spread__link > span {
    font-size: 1.15rem;

    transition: transform 180ms ease;
}

.about-spread__link:hover > span {
    transform: translate(5px, -5px);
}


/* ============================================================
   9. DEMO / FICTIONAL BRAND NOTE
   ============================================================ */

.about-demo-note {
    padding:
        clamp(80px, 9vw, 125px)
        var(--content-inset);

    color: var(--black);
    background: var(--orange);
}

.about-demo-note > p {
    margin-bottom: 28px;

    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.about-demo-note > h2 {
    max-width: 1100px;

    margin-bottom: clamp(38px, 5vw, 65px);

    font-family: var(--display);
    font-size: clamp(5.3rem, 8.7vw, 9.5rem);
    font-weight: 400;
    line-height: 0.73;
    letter-spacing: -0.045em;
}

.about-demo-note > h2 span {
    display: block;

    color: var(--white-bright);
}

.about-demo-note > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(35px, 7vw, 100px);

    max-width: 900px;

    margin-left: auto;
}

.about-demo-note > div p {
    margin: 0;

    color: rgba(13, 13, 11, 0.76);

    font-size: 0.94rem;
    line-height: 1.75;
}


/* ============================================================
   10. RESPONSIVE — 1100
   ============================================================ */

@media (max-width: 1100px) {

    .about-origin {
        gap: 65px;
    }

    .about-philosophy__heading {
        gap: 70px;
    }

    .about-kitchen {
        grid-template-columns: 1fr 1fr;
    }

    .about-not {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 70px;
    }

}


/* ============================================================
   11. RESPONSIVE — 900
   ============================================================ */

@media (max-width: 900px) {

    .about-page .site-header {
        position: relative;
    }

    .about-hero__copy {
        width: 100%;
    }

    .about-origin {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-origin__text {
        margin-left: 0;
    }

    .about-burger__copy {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .about-philosophy__heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-kitchen {
        grid-template-columns: 1fr;
    }

    .about-kitchen__image {
        min-height: 72svh;
    }

    .about-kitchen__copy {
        min-height: 620px;
    }

    .about-not {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .about-not__heading {
        position: static;
    }

}


/* ============================================================
   12. RESPONSIVE — 680
   ============================================================ */

@media (max-width: 680px) {

    .about-hero {
        min-height: 760px;
    }

    .about-hero__image img {
        object-position: 60% center;
    }

    .about-hero__copy {
        min-height: 760px;

        padding:
            90px
            20px
            180px;
    }

    .about-hero h1 {
        font-size: clamp(5.8rem, 27vw, 8.2rem);
    }

    .about-hero__note {
        right: 20px;
        bottom: 30px;
        left: 20px;

        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-hero__note > p {
        max-width: 340px;
    }

    .about-origin {
        padding:
            80px
            20px;
    }

    .about-origin__index > span {
        font-size: 3rem;
    }

    .about-origin__copy h2 {
        margin-bottom: 45px;

        font-size: clamp(5rem, 23vw, 7.5rem);
    }

    .about-origin__text {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-burger {
        min-height: 72svh;
    }

    .about-burger__copy {
        right: 20px;
        bottom: 45px;
        left: 20px;
    }

    .about-burger__copy > p {
        font-size: clamp(3.5rem, 16vw, 5.5rem);
    }

    .about-philosophy {
        padding:
            80px
            20px;
    }

    .about-philosophy__heading {
        margin-bottom: 55px;
    }

    .about-philosophy__heading > div > span {
        font-size: 3rem;
    }

    .about-philosophy__heading h2 {
        font-size: clamp(5.5rem, 25vw, 8rem);
    }

    .about-principles {
        grid-template-columns: 1fr;
    }

    .about-principles article {
        min-height: 280px;

        padding: 28px 22px;
    }

    .about-principles article > span {
        margin-bottom: 55px;
    }

    .about-principles h3 {
        font-size: clamp(3.5rem, 17vw, 5rem);
    }

    .about-kitchen__image {
        min-height: 60svh;
    }

    .about-kitchen__copy {
        min-height: auto;

        padding:
            75px
            20px;
    }

    .about-kitchen__copy h2 {
        font-size: clamp(5rem, 22vw, 7rem);
    }

    .about-not {
        padding:
            80px
            20px;
    }

    .about-not__heading > span {
        font-size: 3rem;
    }

    .about-not__heading h2 {
        font-size: clamp(4.8rem, 21vw, 7rem);
    }

    .about-not__list > div {
        grid-template-columns: 45px minmax(0, 1fr);

        min-height: 125px;
    }

    .about-not__list p {
        font-size: clamp(2.4rem, 11vw, 3.8rem);
    }

    .about-spread {
        min-height: 760px;
    }

    .about-spread__copy {
        right: 20px;
        bottom: 55px;
        left: 20px;
    }

    .about-spread__copy h2 {
        font-size: clamp(5rem, 23vw, 7.5rem);
    }

    .about-demo-note {
        padding:
            80px
            20px;
    }

    .about-demo-note > h2 {
        font-size: clamp(5rem, 23vw, 7rem);
    }

    .about-demo-note > div {
        grid-template-columns: 1fr;
        gap: 20px;

        margin-left: 0;
    }

}


/* ============================================================
   13. RESPONSIVE — 420
   ============================================================ */

@media (max-width: 420px) {

    .about-hero h1 {
        font-size: 5.7rem;
    }

    .about-origin__copy h2 {
        font-size: 5rem;
    }

    .about-philosophy__heading h2 {
        font-size: 5.3rem;
    }

    .about-kitchen__copy h2 {
        font-size: 4.8rem;
    }

    .about-spread__copy h2 {
        font-size: 5rem;
    }

    .about-demo-note > h2 {
        font-size: 4.8rem;
    }

}


