/* ============================
   About Page — Hero
   ============================ */
.about-hero {
    position: relative;
    height: clamp(320px, 40vw, 582px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-dark);
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-hero__title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.14em;
    color: var(--color-text-light);
}

/* ============================
   About Page — Text Section (The House)
   Centered text on dark background
   ============================ */
.about-text-section {
    background-color: var(--color-bg-dark);
    text-align: center;
}

.about-text-section .section-title {
    margin-bottom: var(--space-lg);
}

.about-text-section__body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 300;
    line-height: 1.85;
    color: var(--color-text-muted);
    max-width: 680px;
    margin-inline: auto;
}

/* ============================
   About Page — Image + Text Sections
   (Inspiration, Archetypes, Philosophy)
   Full-width bg image with text overlay
   ============================ */
.about-image-section {
    position: relative;
    min-height: clamp(400px, 46vw, 661px);
    display: flex;
    align-items: center;
    background-color: var(--color-bg-dark);
    overflow: hidden;
}

.about-image-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.55;
}

.about-image-section__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

.about-image-section__content {
    max-width: 560px;
}

.about-image-section__content .section-title {
    margin-bottom: var(--space-md);
}

.about-image-section__text {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 300;
    line-height: 1.85;
    color: var(--color-beige);
}

/* LEFT-aligned text overlay */
.about-image-section--left .about-image-section__content {
    margin-right: auto;
}

/* RIGHT-aligned text overlay */
.about-image-section--right .about-image-section__content {
    margin-left: auto;
}

/* ============================
   About Page — Collection
   ============================ */
.about-collection {
    background-color: var(--color-bg-dark);
    text-align: center;
}

.about-collection .section-title {
    margin-bottom: var(--space-xl);
}

/* Override product card colors for dark bg */
.about-collection .product-card__name {
    color: var(--color-text-light);
}

.about-collection .product-card__name a {
    color: var(--color-text-light);
}

.about-collection .product-card__price {
    color: var(--color-text-muted);
}

/* ============================
   About Page — Promo Banner
   ============================ */
.about-promo {
    position: relative;
    min-height: clamp(320px, 31vw, 451px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--color-bg-dark);
    overflow: hidden;
}

.about-promo__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.about-promo__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
    display: flex;
    justify-content: flex-end;
}

.about-promo__content {
    text-align: center;
    max-width: 540px;
}

.about-promo__eyebrow {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 2.25rem); /* 20px → 36px */
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
}

.about-promo__heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.3vw, var(--text-3xl)); /* 28px → 48px */
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.about-promo__heading em {
    font-style: italic;
}

.about-promo__text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 2.25rem); /* 20px → 36px */
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--color-text-light);
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1023px) {
    .about-image-section__content {
        max-width: 480px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        height: clamp(240px, 50vw, 400px);
    }

    .about-hero__title {
        font-size: var(--text-2xl);
        letter-spacing: 0.08em;
    }

    .about-text-section__body {
        font-size: var(--text-xs);
    }

    .about-image-section {
        min-height: 420px;
        padding-block: var(--space-xl);
    }

    .about-image-section__content {
        max-width: 100%;
    }

    .about-image-section--right .about-image-section__content {
        margin-left: 0;
    }

    .about-image-section__text {
        font-size: var(--text-xs);
    }

    .about-promo {
        min-height: 280px;
    }

    .about-promo__bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
    }

    .about-promo__inner {
        justify-content: center;
    }

    .about-promo__content {
        max-width: 100%;
    }

    .about-promo__eyebrow {
        font-size: var(--text-base);
    }

    .about-promo__heading {
        font-size: var(--text-xl);
        line-height: 1.35;
    }

    .about-promo__text {
        font-size: var(--text-base);
    }
}
