/* About — page-specific styles (aw- namespace) */

/* --- Image-backed hero (mirrors the shared hero pattern) --- */
.aw-about-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(420px, 54vh, 580px);
    overflow: hidden;
    isolation: isolate;
}

.aw-about-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.aw-about-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 25, 32, 0.72), rgba(18, 78, 96, 0.42) 48%, rgba(18, 78, 96, 0.08)),
        linear-gradient(180deg, rgba(5, 25, 32, 0.14), rgba(5, 25, 32, 0.3));
    z-index: -1;
}

.aw-about-hero__content {
    padding-top: calc(var(--aw-header-height) + clamp(48px, 6vw, 76px));
    padding-bottom: clamp(56px, 8vw, 96px);
}

.aw-about-hero .aw-eyebrow { color: var(--aw-highlight); }
.aw-about-hero .aw-eyebrow::before { background: var(--aw-highlight); }

.aw-about-hero h1 {
    max-width: 820px;
    margin: 16px 0 18px;
    color: var(--aw-white);
    font-size: clamp(2.6rem, 6vw, 6rem);
    letter-spacing: 0;
}

.aw-about-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

/* --- Why AeroWest (two-column narrative) --- */
.aw-about-why {
    background:
        radial-gradient(circle at 10% 14%, rgba(184, 245, 255, 0.32), transparent 30%),
        linear-gradient(180deg, var(--aw-white), var(--aw-surface));
}

.aw-about-why__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: clamp(32px, 5vw, 72px);
}

.aw-about-why__title {
    margin-top: 6px;
    font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.aw-about-why__body p {
    color: var(--aw-body);
}

.aw-about-why__pullquote {
    margin: 26px 0;
    padding-left: 22px;
    border-left: 4px solid var(--aw-accent);
    color: var(--aw-heading);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
}

/* Intro collage — tourism imagery beside the narrative */
.aw-about-why__collage {
    position: relative;
    margin-top: 34px;
    padding: 0 clamp(28px, 4vw, 48px) clamp(30px, 4vw, 44px) 0;
}

.aw-about-why__photo {
    margin: 0;
    border-radius: var(--aw-radius-md);
    overflow: hidden;
    box-shadow: var(--aw-shadow-card);
}

.aw-about-why__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.aw-about-why__photo:hover img {
    transform: scale(1.05);
}

.aw-about-why__photo--main {
    aspect-ratio: 4 / 3;
}

.aw-about-why__photo--accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(140px, 15vw, 210px);
    aspect-ratio: 1 / 1;
    border: 5px solid var(--aw-white);
    box-shadow: var(--aw-shadow-soft);
}

/* --- Unlocking assets (stats + narrative) --- */
.aw-about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 40px 0;
}

.aw-about-stat {
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg);
    background: var(--aw-white);
    box-shadow: var(--aw-shadow-card);
    text-align: center;
}

.aw-about-stat__value {
    display: block;
    margin-bottom: 10px;
    color: var(--aw-primary);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
}

.aw-about-stat__label {
    display: block;
    color: var(--aw-muted);
    font-size: 0.98rem;
    line-height: 1.5;
}

.aw-about-assets__body {
    max-width: 920px;
    margin: 0 auto;
    text-align: left;
}

/* Region mosaic — breaks up the narrative with place imagery */
.aw-about-region {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 0.9fr);
    gap: 18px;
    margin: 0 0 40px;
}

.aw-about-region__tile {
    position: relative;
    margin: 0;
    height: clamp(220px, 26vw, 300px);
    border-radius: var(--aw-radius-md);
    overflow: hidden;
    background: var(--aw-primary);
    box-shadow: var(--aw-shadow-card);
}

.aw-about-region__tile--wide {
    grid-column: span 1;
}

.aw-about-region__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.aw-about-region__tile:hover img {
    transform: scale(1.05);
}

.aw-about-region__tile::after {
    content: "";
    position: absolute;
    inset: 55% 0 0 0;
    background: linear-gradient(180deg, rgba(9, 40, 50, 0) 0%, rgba(9, 40, 50, 0.6) 100%);
    pointer-events: none;
}

.aw-about-region__tile figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.aw-about-region__country {
    color: var(--aw-highlight);
    font-size: 0.7rem;
    font-weight: 760;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.aw-about-region__place {
    color: var(--aw-white);
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 12px rgba(9, 40, 50, 0.6);
}

.aw-about-assets__body p {
    color: var(--aw-body);
}

.aw-about-assets__closing {
    margin-top: 24px;
    color: var(--aw-heading);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 600;
}

.aw-about-assets__actions {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

/* --- Become an Exhibitor (value cards + CTA) --- */
.aw-about-exhibit__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.aw-about-exhibit__card {
    overflow: hidden;
    padding: clamp(28px, 4vw, 38px);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg);
    background: var(--aw-white);
    box-shadow: var(--aw-shadow-card);
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.aw-about-exhibit__card:hover {
    box-shadow: var(--aw-shadow-soft);
}

.aw-about-exhibit__image {
    display: block;
    width: calc(100% + clamp(56px, 8vw, 76px));
    max-width: none;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin: calc(clamp(28px, 4vw, 38px) * -1) calc(clamp(28px, 4vw, 38px) * -1) 26px;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.aw-about-exhibit__card:hover .aw-about-exhibit__image {
    transform: scale(1.05);
}

.aw-about-exhibit__card h3 {
    margin-bottom: 12px;
    font-size: 1.22rem;
}

.aw-about-exhibit__card p {
    margin-bottom: 0;
    color: var(--aw-muted);
}

/* --- Closing CTA corner decoration (scoped, see GUIDE 3.5) --- */
.aw-about-exhibit__cta {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}

.aw-about-exhibit__cta::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: clamp(200px, 26vw, 320px);
    height: clamp(200px, 26vw, 320px);
    background: url("../images/decor/aviation-swirl.png") no-repeat center / contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.aw-about-exhibit__cta > div {
    position: relative;
    z-index: 1;
}

/* --- Responsive --- */
@media (max-width: 1080px) {
    .aw-about-exhibit__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .aw-about-why__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .aw-about-stats {
        grid-template-columns: minmax(0, 1fr);
    }

    .aw-about-region {
        grid-template-columns: minmax(0, 1fr);
    }

    .aw-about-region__tile {
        height: clamp(200px, 44vw, 260px);
    }

    .aw-about-exhibit__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

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

    .aw-about-exhibit__image {
        transition: none;
    }

    .aw-about-exhibit__card:hover {
        transform: none;
    }

    .aw-about-exhibit__card:hover .aw-about-exhibit__image {
        transform: none;
    }

    .aw-about-why__photo img,
    .aw-about-why__photo:hover img,
    .aw-about-region__tile img,
    .aw-about-region__tile:hover img {
        transform: none;
        transition: none;
    }
}
