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

.about-page {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 18% 10%,
            rgba(201, 170, 106, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 82% 34%,
            rgba(107, 123, 162, 0.09),
            transparent 34%
        ),
        #090a0d;
    color: #f4f2ec;
}


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

.about-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 9rem 8vw 6rem;
    background:
        radial-gradient(
            circle at 22% 44%,
            rgba(201, 170, 106, 0.10),
            transparent 35%
        ),
        #090a0d;
}

.about-hero-content {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.about-hero .eyebrow {
    margin: 0 0 1.2rem;
}

.about-hero h1 {
    margin: 0;
    color: #f4f2ec;
    font-size: clamp(3.8rem, 8vw, 7.2rem);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.about-intro {
    max-width: 760px;
    margin: 2rem 0 0;
    color: #c4c1ba;
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
    line-height: 1.85;
}


/* =========================================================
   SHARED SECTIONS
========================================================= */

.about-section {
    width: min(1180px, calc(100% - 4rem));
    margin: 0 auto;
    padding: 7rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.eyebrow {
    color: #c9aa6a;
    font-size: 0.76rem;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}


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

.artist-statement-label {
    margin: 0 0 1.25rem 2.5rem;
}

.artist-statement-title {
    max-width: 900px;
    margin: 0 0 3rem 2.5rem;
    color: #f4f2ec;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.artist-statement-text {
    max-width: 920px;
    margin-left: 2.5rem;
    color: #c4c1ba;
    font-size: clamp(1.04rem, 1.45vw, 1.18rem);
    line-height: 1.95;
}

.artist-statement-text p {
    margin: 0 0 1.6rem;
}

.artist-statement-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CREATIVE PHILOSOPHY
========================================================= */

.about-philosophy {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.about-philosophy-heading {
    min-width: 0;
}

.about-philosophy-heading .eyebrow {
    margin: 0 0 1.25rem;
}

.about-philosophy-heading h2 {
    max-width: 470px;
    margin: 0;
    color: #f4f2ec;
    font-size: clamp(2.6rem, 3.7vw, 3.9rem);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.about-columns {
    min-width: 0;
    max-width: 680px;
    display: grid;
    gap: 2rem;
}

.about-columns p {
    margin: 0;
    color: #c4c1ba;
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.9;
}


/* =========================================================
   FEATURED PROJECT
========================================================= */

.featured-project {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(230px, 320px);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.featured-project-text {
    min-width: 0;
    padding-left: 2.5rem;
}

.featured-project-text .eyebrow {
    margin: 0 0 1.5rem;
}

.featured-project-text h2 {
    margin: 0 0 2rem;
    color: #f4f2ec;
    font-size: clamp(2.8rem, 4.2vw, 4.5rem);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.featured-project-text > p:not(.eyebrow) {
    max-width: 600px;
    margin: 0 0 2rem;
    color: #c4c1ba;
    font-size: clamp(1.02rem, 1.35vw, 1.16rem);
    line-height: 1.9;
}

.featured-project-art {
    width: 100%;
    max-width: 320px;
    justify-self: end;
}

.featured-project-cover {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.text-link {
    color: #c9aa6a;
    text-decoration: none;
    transition:
        color 220ms ease,
        letter-spacing 220ms ease;
}

.text-link:hover {
    color: #dfc487;
    letter-spacing: 0.02em;
}


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

@media (max-width: 950px) {
    .about-section {
        width: calc(100% - 3rem);
        padding: 5.5rem 1.75rem;
    }
}

    .about-section {
        width: calc(100% - 3rem);
        padding: 5.5rem 2rem;
        box-sizing: border-box;
    }

    .about-philosophy,
    .featured-project {
        grid-template-columns: 1fr;
    }

    .featured-project-art {
        justify-self: start;
        margin-left: 2.5rem;
    }



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

@media (max-width: 600px) {
    .about-section {
        width: calc(100% - 2rem);
        padding: 4.5rem 1.25rem;
    }
}

    .artist-statement-label,
    .artist-statement-title,
    .artist-statement-text,
    .about-philosophy-heading .eyebrow,
    .about-philosophy-heading h2 {
        margin-left: 1.25rem;
    }

    .artist-statement-title {
        max-width: calc(100% - 1.25rem);
        margin-bottom: 2.5rem;
        font-size: clamp(2.35rem, 10vw, 3.4rem);
    }

    .artist-statement-text {
        max-width: calc(100% - 2.5rem);
    }

    .about-philosophy-heading h2 {
        max-width: calc(100% - 2.5rem);
        font-size: clamp(2.3rem, 9vw, 3.2rem);
    }

    .about-columns {
        padding: 0 1.25rem;
    }

    .themes-section > .eyebrow {
        margin-left: 1.25rem;
    }

    .theme-grid {
        grid-template-columns: 1fr;
        margin: 0 1.25rem;
    }

    .theme-card {
        min-height: auto;
    }

    .featured-project-text {
        padding: 0 1.25rem;
    }

    .featured-project-text h2 {
        font-size: clamp(2.5rem, 10vw, 3.6rem);
    }

    .featured-project-art {
        width: calc(100% - 2.5rem);
        max-width: 340px;
        margin-left: 1.25rem;
    }



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

@media (prefers-reduced-motion: reduce) {
    .theme-card,
    .text-link {
        transition: none;
    }

    .theme-card:hover {
        transform: none;
    }
}

/* =========================================================
   REMOVE OLD FEATURED-PROJECT PLACEHOLDER / ORB
========================================================= */

.about-page .featured-project-art,
.about-page .featured-project-cover {
    position: relative;
    isolation: isolate;
}

.about-page .featured-project-art::before,
.about-page .featured-project-art::after,
.about-page .featured-project-cover::before,
.about-page .featured-project-cover::after {
    content: none !important;
    display: none !important;
    background: none !important;
    box-shadow: none !important;
}

.about-page .featured-project-art > span,
.about-page .featured-project-art > .orb,
.about-page .featured-project-art > .circle,
.about-page .featured-project-art > .placeholder {
    display: none !important;
}

.about-page .featured-project-cover {
    position: relative;
    z-index: 2;
}