/* About page — load after assets/css/main.css */

.about-page h2 {
    max-width: 14ch;
    margin-bottom: 0;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 6.4rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 0.91;
    text-transform: uppercase;
}

.about-page h2 span,
.about-hero h1 span {
    display: block;
    color: var(--color-muted);
}

.about-hero {
    position: relative;
    min-height: min(880px, 94svh);
    overflow: hidden;
    background: #070708;
}

.about-hero__portrait,
.about-hero__overlay {
    position: absolute;
    inset: 0;
}

.about-hero__portrait {
    background-image: url("/assets/images/about/gunnar-nopens.webp");
    background-position: 85% 15%;
    background-repeat: no-repeat;
    background-size: auto 115%;
}

.about-hero__overlay {
    background:
        linear-gradient(90deg, rgba(7, 7, 8, 1) 0%, rgba(7, 7, 8, 0.96) 35%, rgba(7, 7, 8, 0.5) 62%, rgba(7, 7, 8, 0.7) 100%),
        linear-gradient(0deg, #070708 0%, transparent 30%);
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: min(880px, 94svh);
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 4rem;
}

.about-hero__copy {
    width: min(100%, 58rem);
}

.about-hero h1 {
    max-width: 10ch;
    margin-bottom: 1.75rem;
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 0.86;
    text-transform: uppercase;
}

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

.about-hero__introduction {
    max-width: 45rem;
    margin-bottom: 2rem;
    color: #d1cdc6;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.about-story {
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
}

.about-story__grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1fr);
    gap: clamp(3rem, 9vw, 9rem);
}

.about-story__copy {
    align-self: end;
    color: var(--color-muted);
}

.about-story__lead,
.about-now__lead {
    color: var(--color-text);
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
}

.about-mindset {
    background: #09090a;
}

.mindset-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.mindset-grid article {
    min-height: 20rem;
    padding: 2rem;
}

.mindset-grid article + article {
    border-left: 1px solid var(--color-border);
}

.mindset-grid article > span {
    color: var(--color-orange);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.mindset-grid h3,
.about-side h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 0.96;
    text-transform: uppercase;
}

.mindset-grid h3 {
    margin-top: 4.5rem;
    font-size: clamp(1.7rem, 2.8vw, 2.7rem);
}

.mindset-grid p {
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.about-two-sides {
    padding-top: clamp(6rem, 11vw, 11rem);
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
}

.about-two-sides__heading {
    margin-bottom: clamp(3rem, 7vw, 6rem);
}

.about-two-sides__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-side {
    display: flex;
    min-height: 37rem;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(2.5rem, 5vw, 5rem);
    border-top: 1px solid var(--color-border);
    background: linear-gradient(150deg, rgba(232, 111, 37, 0.05), transparent 54%);
}

.about-side + .about-side {
    border-left: 1px solid var(--color-border);
}

.about-side--creative {
    background:
        radial-gradient(circle at 78% 18%, rgba(232, 111, 37, 0.12), transparent 27%),
        #0b0b0c;
}

.about-side h3 {
    max-width: 12ch;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 4.8vw, 4.8rem);
}

.about-side > p:not(.eyebrow) {
    max-width: 38rem;
    color: var(--color-muted);
}

.about-side .arrow-link {
    margin-top: 1rem;
}

.about-now {
    background: #09090a;
}

.about-now__grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(3rem, 10vw, 10rem);
}

.about-now__visual {
    position: relative;
    display: flex;
    min-height: 35rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: radial-gradient(circle at center, rgba(232, 111, 37, 0.17), transparent 29%), #101011;
}

.about-now__visual::before,
.about-now__visual::after {
    position: absolute;
    background: var(--color-border);
    content: "";
}

.about-now__visual::before {
    width: 1px;
    height: 100%;
}

.about-now__visual::after {
    width: 100%;
    height: 1px;
}

.about-now__circle {
    width: 15rem;
    height: 15rem;
    border: 1px solid var(--color-orange);
    border-radius: 50%;
    box-shadow: 0 0 5rem rgba(232, 111, 37, 0.18), inset 0 0 4rem rgba(232, 111, 37, 0.08);
}

.about-now__circle::before,
.about-now__circle::after {
    position: absolute;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--color-orange);
    box-shadow: 0 0 1rem var(--color-orange);
    content: "";
}

.about-now__circle::before {
    top: 22%;
    left: 28%;
}

.about-now__circle::after {
    right: 24%;
    bottom: 27%;
}

.about-now__visual > span {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    color: var(--color-muted);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-now__copy > p:not(.eyebrow):not(.about-now__lead) {
    color: var(--color-muted);
}

.about-facts {
    margin-block: 2rem;
    padding-block: 1.5rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.about-facts div {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1rem;
    padding-block: 0.45rem;
}

.about-facts dt {
    color: var(--color-muted);
    font-size: 0.75rem;
}

.about-facts dd {
    margin: 0;
    color: var(--color-text);
    font-size: 0.85rem;
}

.about-explore {
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
}

.about-explore__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-explore a {
    position: relative;
    display: flex;
    min-height: 17rem;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: var(--color-text);
    text-decoration: none;
    transition: background-color var(--transition);
}

.about-explore a + a {
    border-left: 1px solid var(--color-border);
}

.about-explore a:hover {
    background: linear-gradient(145deg, rgba(232, 111, 37, 0.1), transparent 65%);
}

.about-explore a > span {
    margin-bottom: 1rem;
    color: var(--color-orange);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-explore strong {
    max-width: 9ch;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 3.3rem);
    font-weight: 600;
    line-height: 0.95;
    text-transform: uppercase;
}

.about-explore i {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--color-orange);
    font-style: normal;
}

@media (max-width: 900px) {
    .about-hero__portrait {
        background-position: 78% 35%;
    }

    .about-story__grid,
    .about-now__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-story__copy,
    .about-now__copy {
        max-width: 44rem;
    }

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

    .mindset-grid article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--color-border);
    }

    .mindset-grid article:nth-child(4) {
        border-top: 1px solid var(--color-border);
    }

    .about-now__visual {
        min-height: 27rem;
    }
}

@media (max-width: 620px) {
    .about-hero {
        min-height: 49rem;
    }

    .about-hero__portrait {
        background-position: 62% top;
        background-size: auto 68%;
    }

    .about-hero__overlay {
        background: linear-gradient(180deg, rgba(7, 7, 8, 0.08) 0%, rgba(7, 7, 8, 0.45) 30%, rgba(7, 7, 8, 0.96) 58%, #070708 100%);
    }

    .about-hero__inner {
        min-height: 49rem;
        align-items: flex-end;
        padding-top: 8rem;
        padding-bottom: 4.5rem;
    }

    .about-hero h1 {
        max-width: 9ch;
        font-size: clamp(3.6rem, 16vw, 5.2rem);
    }

    .about-hero__introduction {
        font-size: 0.95rem;
    }

    .about-hero__actions {
        flex-direction: column;
    }

    .about-hero__actions .button {
        width: 100%;
    }

    .about-page h2 {
        font-size: clamp(2.8rem, 14vw, 4.1rem);
    }

    .mindset-grid,
    .about-two-sides__grid,
    .about-explore__grid {
        grid-template-columns: 1fr;
    }

    .mindset-grid article {
        min-height: 15rem;
    }

    .mindset-grid article + article,
    .about-side + .about-side,
    .about-explore a + a {
        border-left: 0;
        border-top: 1px solid var(--color-border);
    }

    .mindset-grid h3 {
        margin-top: 2.8rem;
    }

    .about-side {
        min-height: 30rem;
        padding: 2rem;
    }

    .about-now__visual {
        min-height: 22rem;
    }

    .about-now__circle {
        width: 11rem;
        height: 11rem;
    }

    .about-facts div {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-explore a {
        min-height: 13rem;
        padding: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-explore a {
        transition: none;
    }
}
