.about-page {
    --about-media-height: clamp(34rem, 52vw, 46rem);
    --about-background:
        radial-gradient(circle at 16% 12%, rgba(255, 210, 31, 0.12), transparent 26%),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.06), transparent 22%),
        linear-gradient(180deg, #121316 0%, #0a0b0d 50%, #111317 100%);
    background: var(--about-background);
    background-color: #101114;
}

.about-page .page-noise {
    opacity: 0.06;
}

.about-atmosphere {
    position: fixed;
    inset: auto;
    z-index: 0;
    pointer-events: none;
    width: min(36rem, 48vw);
    height: min(36rem, 48vw);
    border-radius: 999px;
    filter: blur(44px);
    opacity: 0.34;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: transform, opacity;
    animation: about-atmosphere-drift 24s ease-in-out infinite alternate;
}

.about-atmosphere--left {
    top: 6rem;
    left: -10rem;
    background: radial-gradient(circle, rgba(255, 210, 31, 0.16), transparent 68%);
    animation-delay: -8s;
}

.about-atmosphere--right {
    right: -8rem;
    bottom: 10rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    animation-name: about-atmosphere-drift-reverse;
    animation-duration: 28s;
    animation-delay: -13s;
}

.about-main,
.about-drive,
.about-story,
.about-process {
    position: relative;
    z-index: 2;
}

.about-hero {
    padding-top: clamp(8rem, 12vw, 10rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.about-hero .section-shell {
    display: grid;
    justify-items: center;
    text-align: center;
}

.about-hero__label {
    justify-content: center;
    margin-bottom: 1.25rem;
}

.about-hero__title {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.5rem, 8vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.about-hero__text {
    margin: 1.4rem auto 0;
    max-width: 42rem;
    color: rgba(246, 243, 235, 0.78);
    font-size: 1rem;
}

.about-story {
    padding-top: clamp(2rem, 4vw, 3.5rem);
}

.about-story__layout,
.about-process__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 0.88fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

.about-story__copy,
.about-process__copy {
    display: grid;
    align-content: center;
    gap: 1rem;
}

.about-story__copy .section-title,
.about-process__copy .section-title {
    max-width: 42rem;
}

.about-story__copy .section-text,
.about-process__copy .section-text,
.about-story__copy .section-note {
    margin: 0;
}

.about-story__visual,
.about-process__media,
.about-drive__frame {
    position: relative;
    overflow: hidden;
}

.about-story__visual,
.about-process__media {
    height: var(--about-media-height);
    border-radius: 2rem;
    align-self: center;
}

.about-story__visual {
    width: 100%;
    justify-self: end;
}

.about-story__visual img {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    object-fit: cover;
}

.about-process {
    padding-top: clamp(2rem, 5vw, 4.5rem);
}

.about-process__layout {
    grid-template-columns: minmax(18rem, 0.88fr) minmax(0, 1.02fr);
}

.about-process__media {
    width: 100%;
}

.about-process__media video {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    object-fit: cover;
}

.about-drive {
    padding-top: clamp(2.6rem, 6vw, 5.2rem);
}

.about-drive__shell {
    display: grid;
    gap: 2.2rem;
}

.about-drive .section-intro {
    margin-bottom: 0;
}

.about-drive__frame {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 0.95rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(12, 14, 18, 0.94);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-drive__frame video {
    aspect-ratio: 16 / 9;
    border-radius: 1.45rem;
    background: #000;
}

@keyframes about-atmosphere-drift {
    0% {
        transform: translate3d(0, 0, 0) scale(0.98);
        opacity: 0.28;
    }

    50% {
        transform: translate3d(2rem, -1rem, 0) scale(1.03);
        opacity: 0.37;
    }

    100% {
        transform: translate3d(0.8rem, 1.1rem, 0) scale(1.01);
        opacity: 0.31;
    }
}

@keyframes about-atmosphere-drift-reverse {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.22;
    }

    50% {
        transform: translate3d(-1.5rem, 1rem, 0) scale(1.05);
        opacity: 0.32;
    }

    100% {
        transform: translate3d(-0.7rem, -1.2rem, 0) scale(0.99);
        opacity: 0.25;
    }
}

@media (max-width: 980px) {
    .about-story__layout,
    .about-process__layout {
        grid-template-columns: 1fr;
    }

    .about-story__visual,
    .about-process__media {
        width: min(100%, 28rem);
        justify-self: start;
        height: auto;
    }
}

@media (max-width: 720px) {
    .about-hero {
        padding-top: 6.9rem;
    }

    .about-story__visual,
    .about-process__media {
        border-radius: 1.45rem;
    }

    .about-story__visual img,
    .about-process__media video {
        border-radius: 1.45rem;
    }

    .about-drive__frame {
        padding: 0.65rem;
        border-radius: 1.45rem;
    }

    .about-drive__frame video {
        border-radius: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-atmosphere {
        animation: none;
        transform: none;
    }
}
