
/* =========================================================
   VOOICE ASSEMBLY
   ABOUT PAGE — FINAL FIXED CSS
   Unique Prefix: va-about-
========================================================= */


/* =========================================================
   VARIABLES / ROOT
========================================================= */

#vaAboutPage {

    --va-about-navy: #050914;
    --va-about-navy-2: #080e1d;
    --va-about-navy-3: #0c1024;

    --va-about-gold: #d6ad43;
    --va-about-gold-light: #f1d77a;

    --va-about-purple: #8b4dff;
    --va-about-purple-light: #b47cff;
    --va-about-purple-bright: #c084ff;

    --va-about-blue: #4169e1;
    --va-about-blue-light: #647cff;

    --va-about-white: #ffffff;
    --va-about-muted: rgba(255,255,255,.70);

    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;

    color: var(--va-about-white);

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(139,77,255,.10),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 60%,
            rgba(65,105,225,.08),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            var(--va-about-navy),
            var(--va-about-navy-2)
        );
}


/* =========================================================
   GLOBAL RESET
========================================================= */

#vaAboutPage *,
#vaAboutPage *::before,
#vaAboutPage *::after {
    box-sizing: border-box;
}

#vaAboutPage img,
#vaAboutPage video {
    max-width: 100%;
}

#vaAboutPage h1,
#vaAboutPage h2,
#vaAboutPage h3,
#vaAboutPage p {
    margin-top: 0;
}

#vaAboutPage p {
    margin-bottom: 0;
}

.va-about-container {
    width: min(1240px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HERO
========================================================= */

.va-about-hero {

    position: relative;

    width: 100%;
    min-height: 590px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(139,77,255,.14),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #03050e,
            #090b1d 55%,
            #080516
        );
}

.va-about-hero-grid {

    position: absolute;
    inset: 0;

    opacity: .20;

    background-image:
        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

.va-about-hero-glow {

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}

.va-about-hero-glow-one {

    left: -180px;
    top: 100px;

    background: rgba(139,77,255,.14);
}

.va-about-hero-glow-two {

    right: -200px;
    bottom: -150px;

    background: rgba(65,105,225,.12);
}


/* =========================================================
   HERO CONTENT — CENTER FIX
========================================================= */

.va-about-hero-content {

    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 950px;

    margin-left: auto;
    margin-right: auto;

    padding: 100px 20px 115px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.va-about-eyebrow {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    color: var(--va-about-gold-light);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.va-about-eyebrow::before {

    content: "";

    width: 28px;
    height: 1px;

    flex: 0 0 28px;

    background:
        linear-gradient(
            90deg,
            var(--va-about-gold),
            var(--va-about-purple)
        );
}

.va-about-hero h1 {

    margin: 24px 0 22px;

    font-size: clamp(64px, 10vw, 145px);

    line-height: .88;

    font-weight: 950;

    letter-spacing: -6px;

    color: #fff;

    text-align: center;

    text-shadow:
        0 20px 70px rgba(0,0,0,.55);
}

.va-about-hero h1 span {

    display: block;

    color: transparent;

    background:
        linear-gradient(
            110deg,
            var(--va-about-gold-light),
            #fff,
            var(--va-about-purple-light),
            var(--va-about-gold)
        );

    background-size: 250% 100%;

    -webkit-background-clip: text;
    background-clip: text;

    animation:
        vaAboutTextGradient 5s linear infinite;
}

.va-about-gold-line {

    width: 180px;
    height: 3px;

    margin: 0 auto 28px;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            var(--va-about-gold),
            var(--va-about-purple),
            transparent
        );

    box-shadow:
        0 0 20px rgba(214,173,67,.25);
}

.va-about-hero-content > p {

    width: 100%;
    max-width: 760px;

    margin: 0 auto;

    color: rgba(255,255,255,.76);

    font-size: clamp(18px, 2vw, 24px);

    line-height: 1.75;

    text-align: center;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.va-about-scroll-indicator {

    position: absolute;

    left: 50%;
    bottom: 24px;

    transform: translateX(-50%);

    z-index: 4;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.45);

    font-size: 10px;

    letter-spacing: 2px;

    white-space: nowrap;
}

.va-about-scroll-indicator i {

    display: block;

    width: 1px;
    height: 38px;

    background:
        linear-gradient(
            var(--va-about-gold),
            transparent
        );

    animation:
        vaAboutScroll 1.7s ease-in-out infinite;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.va-about-section {

    position: relative;

    width: 100%;

    padding: 105px 0;
}

.va-about-two-column {

    display: grid;

    grid-template-columns:
        minmax(280px, .75fr)
        minmax(0, 1.25fr);

    gap: 75px;

    align-items: start;
}


/*
   IMPORTANT:
   Removed sticky behavior.
   Sticky headings were contributing to
   visual overlap / strange positioning.
*/

.va-about-section-heading {

    position: relative;

    top: auto;
}

.va-about-centered {

    position: relative;

    width: 100%;
    max-width: 850px;

    margin: 0 auto 58px;

    text-align: center;
}

.va-about-centered .va-about-eyebrow {

    justify-content: center;
}

.va-about-section-heading h2 {

    margin: 18px 0 22px;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.04;

    letter-spacing: -2px;

    font-weight: 900;
}

.va-about-section-heading h2 span {

    display: block;

    color: var(--va-about-gold-light);
}

.va-about-heading-line {

    width: 85px;
    height: 3px;

    margin: 0;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            var(--va-about-gold),
            var(--va-about-purple)
        );

    box-shadow:
        0 0 18px rgba(214,173,67,.18);
}

.va-about-centered .va-about-heading-line {
    margin-left: auto;
    margin-right: auto;
}

.va-about-centered > p {

    width: 100%;
    max-width: 690px;

    margin: 25px auto 0;

    color: var(--va-about-muted);

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   WHO WE ARE
========================================================= */

.va-about-who {

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.015),
            transparent
        );
}

.va-about-main-copy {

    color: var(--va-about-muted);

    font-size: 17px;

    line-height: 1.9;
}

.va-about-main-copy p {

    margin-bottom: 25px;
}

.va-about-main-copy .va-about-lead {

    color: #fff;

    font-size: 21px;

    line-height: 1.7;
}

.va-about-highlight-box {

    position: relative;

    display: grid;

    grid-template-columns: auto minmax(0,1fr);

    gap: 22px;

    width: 100%;

    margin-top: 42px;

    padding: 28px;

    overflow: hidden;

    border: 1px solid rgba(214,173,67,.28);

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(139,77,255,.09),
            rgba(214,173,67,.035)
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,.20);
}

.va-about-highlight-box::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background:
        linear-gradient(
            var(--va-about-gold),
            var(--va-about-purple)
        );
}

.va-about-highlight-number {

    color: var(--va-about-gold-light);

    font-size: 15px;

    font-weight: 900;

    letter-spacing: 1px;
}

.va-about-highlight-box strong {

    display: block;

    margin-bottom: 10px;

    color: #fff;

    font-size: 19px;
}

.va-about-highlight-box p {

    margin: 0;

    color: var(--va-about-muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   VIDEO SECTION — SPACE FIX
========================================================= */

.va-about-video-section {

    position: relative;

    width: 100%;

    /*
       Small top gap and controlled bottom gap.
       No huge empty area.
    */
    padding: 5px 0 65px;

    background:
        radial-gradient(
            circle at center,
            rgba(139,77,255,.08),
            transparent 45%
        );
}

.va-about-video-container {

    width: min(1400px, calc(100% - 40px));

    margin-left: auto;
    margin-right: auto;
}

.va-about-video-frame {

    position: relative;

    width: 100%;

    /*
       Desktop cinematic ratio.
       NO min-height here.
       This prevents artificial empty space.
    */
    aspect-ratio: 16 / 8.5;

    min-height: 0;

    overflow: hidden;

    border-radius: 30px;

    background: #000;

    box-shadow:
        0 40px 100px rgba(0,0,0,.60),
        0 0 80px rgba(139,77,255,.10);

    isolation: isolate;
}


/* =========================================================
   VIDEO
========================================================= */

.va-about-video {

    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    opacity: 1 !important;

    filter: none !important;

    object-fit: cover;

    object-position: center center;

    background: #000;

    z-index: 1;
}


/* =========================================================
   VIDEO READABILITY LAYER
========================================================= */

.va-about-video-text-layer {

    position: absolute;

    z-index: 2;

    left: 0;
    top: 0;
    bottom: 0;

    width: 62%;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(2,4,13,.78) 0%,
            rgba(2,4,13,.48) 40%,
            rgba(2,4,13,.10) 76%,
            transparent 100%
        );
}


/* =========================================================
   VIDEO CONTENT
========================================================= */

.va-about-video-content {

    position: absolute;

    z-index: 4;

    left: 7%;

    top: 50%;

    width: min(650px, 52%);

    transform: translateY(-50%);

    pointer-events: none;
}

.va-about-video-content h2 {

    margin: 20px 0;

    color: #fff;

    font-size: clamp(42px, 5vw, 76px);

    line-height: 1.02;

    font-weight: 950;

    letter-spacing: -3px;

    text-shadow:
        0 6px 35px rgba(0,0,0,.75);
}

.va-about-video-content h2 span {

    display: block;

    color: var(--va-about-gold-light);
}

.va-about-video-content p {

    max-width: 580px;

    margin: 0;

    color: rgba(255,255,255,.90);

    font-size: 18px;

    line-height: 1.75;

    text-shadow:
        0 3px 20px rgba(0,0,0,.80);
}


/* =========================================================
   VIDEO BORDER
========================================================= */

.va-about-video-frame::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 8;

    pointer-events: none;

    padding: 2px;

    border-radius: inherit;

    background:
        conic-gradient(
            from 0deg,

            transparent 0deg,
            transparent 45deg,

            var(--va-about-gold) 85deg,
            var(--va-about-gold-light) 105deg,

            transparent 145deg,
            transparent 205deg,

            var(--va-about-purple) 245deg,
            var(--va-about-purple-light) 265deg,

            transparent 310deg,
            transparent 360deg
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    animation:
        vaAboutBorderSpin 4s linear infinite;
}


/* =========================================================
   VIDEO CORNERS
========================================================= */

.va-about-video-corner {

    position: absolute;

    z-index: 9;

    width: 85px;
    height: 85px;

    pointer-events: none;
}

.va-video-corner-tl {

    top: 25px;
    left: 25px;

    border-top: 2px solid var(--va-about-gold-light);
    border-left: 2px solid var(--va-about-gold-light);
}

.va-video-corner-tr {

    top: 25px;
    right: 25px;

    border-top: 2px solid var(--va-about-purple-light);
    border-right: 2px solid var(--va-about-purple-light);
}

.va-video-corner-bl {

    bottom: 25px;
    left: 25px;

    border-bottom: 2px solid var(--va-about-purple-light);
    border-left: 2px solid var(--va-about-purple-light);
}

.va-video-corner-br {

    bottom: 25px;
    right: 25px;

    border-bottom: 2px solid var(--va-about-gold-light);
    border-right: 2px solid var(--va-about-gold-light);
}


/* =========================================================
   SPECIALIZED MODELS
========================================================= */

.va-about-models {

    background:
        linear-gradient(
            180deg,
            rgba(139,77,255,.025),
            rgba(0,0,0,.12)
        );
}

.va-about-model-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 28px;
}

.va-about-model-card {

    position: relative;

    min-height: 365px;

    padding: 36px;

    overflow: hidden;

    border: 1px solid rgba(214,173,67,.22);

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(139,77,255,.045)
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,.20);

    transform-style: preserve-3d;

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

.va-about-model-card::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            125deg,
            transparent 20%,
            rgba(214,173,67,.14),
            transparent 50%
        );

    transform: translateX(-120%);

    transition:
        transform .8s ease;
}

.va-about-model-card > * {
    position: relative;
    z-index: 1;
}

.va-about-model-card:hover::before {

    transform: translateX(120%);
}

.va-about-model-card:hover {

    border-color: rgba(214,173,67,.75);

    transform:
        perspective(900px)
        rotateX(3deg)
        rotateY(-3deg)
        translateY(-10px);

    box-shadow:
        0 35px 80px rgba(0,0,0,.40),
        0 0 35px rgba(139,77,255,.14);
}

.va-about-card-number {

    position: absolute !important;

    top: 25px;
    right: 28px;

    color: rgba(255,255,255,.15);

    font-size: 14px;

    font-weight: 900;
}

.va-about-model-icon {

    position: relative;

    width: 76px;
    height: 76px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 18px;

    color: var(--va-about-gold-light);

    font-size: 15px;

    font-weight: 950;

    letter-spacing: 1px;

    background:
        linear-gradient(
            145deg,
            rgba(214,173,67,.14),
            rgba(139,77,255,.15)
        );

    border: 1px solid rgba(214,173,67,.35);

    box-shadow:
        0 0 30px rgba(139,77,255,.10);
}

.va-about-card-label {

    display: block;

    color: var(--va-about-purple-light);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}

.va-about-model-card h3 {

    margin: 12px 0 15px;

    color: #fff;

    font-size: 27px;

    line-height: 1.2;
}

.va-about-model-card p {

    color: var(--va-about-muted);

    font-size: 16px;

    line-height: 1.75;

    margin-bottom: 0;
}

.va-about-model-card strong {

    color: var(--va-about-gold-light);
}

.va-about-card-line {

    width: 65px;
    height: 2px;

    margin: 25px 0 13px;

    background:
        linear-gradient(
            90deg,
            var(--va-about-gold),
            var(--va-about-purple)
        );
}

.va-about-model-card small {

    color: rgba(255,255,255,.45);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   WHAT DISTINGUISHES US
========================================================= */

.va-about-distinction {

    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(139,77,255,.07),
            transparent 30%
        );
}

.va-about-distinction-content {

    color: var(--va-about-muted);

    font-size: 17px;

    line-height: 1.8;
}

.va-about-distinction-content .va-about-lead {

    color: #fff;

    font-size: 22px;

    line-height: 1.65;

    margin-bottom: 25px;
}

.va-about-feature-list {

    display: grid;

    gap: 18px;

    margin-top: 38px;
}

.va-about-feature {

    display: grid;

    grid-template-columns: 48px minmax(0,1fr);

    gap: 18px;

    padding: 20px;

    border-left: 1px solid rgba(214,173,67,.30);

    background:
        linear-gradient(
            90deg,
            rgba(139,77,255,.06),
            transparent
        );

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.va-about-feature:hover {

    transform: translateX(8px);

    border-left-color:
        var(--va-about-gold);
}

.va-about-feature > span {

    color: var(--va-about-gold-light);

    font-size: 13px;

    font-weight: 900;
}

.va-about-feature h3 {

    margin: 0 0 7px;

    color: #fff;

    font-size: 18px;
}

.va-about-feature p {

    margin: 0;

    color: rgba(255,255,255,.58);

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   GLOBAL FOOTPRINT
   FIXED CARD STRUCTURE
========================================================= */

.va-about-footprint {

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.015),
            transparent
        );
}

.va-about-location-grid {

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0,1fr));

    gap: 18px;

    align-items: stretch;
}

.va-about-location-card {

    position: relative;

    width: 100%;
    min-width: 0;
    min-height: 235px;

    display: flex;

    flex-direction: column;

    /*
       Do NOT use justify-content:flex-end.
       It was causing the location content to
       visually collide with absolute elements.
    */
    justify-content: flex-start;

    padding: 25px;

    padding-top: 105px;

    overflow: hidden;

    border-radius: 22px;

    border: 1px solid rgba(214,173,67,.25);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(139,77,255,.045)
        );

    box-shadow:
        0 25px 60px rgba(0,0,0,.20);

    transform-style: preserve-3d;

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}


/*
   Background glow only.
   It is behind all card content.
*/

.va-about-location-card::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 20% 15%,
            rgba(214,173,67,.12),
            transparent 30%
        );
}

.va-about-location-card:hover {

    border-color:
        rgba(214,173,67,.75);

    transform:
        perspective(900px)
        rotateX(3deg)
        rotateY(-4deg)
        translateY(-9px);

    box-shadow:
        0 30px 65px rgba(0,0,0,.35),
        0 0 30px rgba(139,77,255,.13);
}


/* =========================================================
   FLAG
========================================================= */

.va-about-flag-wrap {

    position: absolute;

    z-index: 3;

    top: 25px;
    left: 25px;

    width: 78px;
    height: 53px;

    padding: 4px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 8px;

    border: 1px solid rgba(214,173,67,.45);

    background:
        rgba(255,255,255,.08);

    box-shadow:
        0 8px 25px rgba(0,0,0,.35);
}

.va-about-country-flag {

    display: block;

    width: 100%;
    height: 100%;

    max-width: none !important;

    object-fit: cover;

    object-position: center;

    border-radius: 4px;
}


/* =========================================================
   LOCATION NUMBER
========================================================= */

.va-about-location-number {

    position: absolute;

    z-index: 3;

    top: 26px;
    right: 22px;

    color: rgba(255,255,255,.17);

    font-size: 13px;

    font-weight: 900;
}


/* =========================================================
   LOCATION TEXT
========================================================= */

.va-about-location-card strong {

    position: relative;

    z-index: 3;

    display: block;

    width: 100%;

    margin: 0;

    color: #fff;

    font-size: 22px;

    line-height: 1.25;

    font-weight: 900;

    letter-spacing: .5px;
}

.va-about-location-card small {

    position: relative;

    z-index: 3;

    display: block;

    width: 100%;

    margin-top: 8px;

    color: var(--va-about-gold-light);

    font-size: 10px;

    line-height: 1.4;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   FINAL CTA
========================================================= */

.va-about-final {

    position: relative;

    width: 100%;

    padding: 105px 0 125px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(139,77,255,.13),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #050611,
            #0a0716
        );
}

.va-about-final-glow {

    position: absolute;

    left: 50%;
    top: 50%;

    width: 500px;
    height: 500px;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        rgba(139,77,255,.08);

    filter: blur(100px);

    pointer-events: none;
}

.va-about-final-card {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1000px;

    margin-left: auto;
    margin-right: auto;

    padding: 65px 50px;

    text-align: center;

    border: 1px solid rgba(214,173,67,.35);

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(139,77,255,.06)
        );

    box-shadow:
        0 35px 90px rgba(0,0,0,.35);
}

.va-about-final-card .va-about-eyebrow {

    justify-content: center;
}

.va-about-final-card h2 {

    margin: 25px 0;

    font-size: clamp(42px, 6vw, 78px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 950;
}

.va-about-final-card h2 span {

    color: var(--va-about-gold-light);
}

.va-about-final-card p {

    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    color: var(--va-about-muted);

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes vaAboutBorderSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes vaAboutTextGradient {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 250% 50%;
    }
}

@keyframes vaAboutScroll {

    0%,
    100% {
        opacity: .3;
        transform: scaleY(.7);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1050px) {

    .va-about-location-grid {

        grid-template-columns:
            repeat(3, minmax(0,1fr));
    }

    .va-about-two-column {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .va-about-section-heading {

        position: relative;

        top: auto;
    }

    .va-about-section-heading h2 {

        max-width: 800px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .va-about-hero {

        min-height: 530px;
    }

    .va-about-hero-content {

        padding: 90px 20px 100px;
    }

    .va-about-section {

        padding: 85px 0;
    }

    .va-about-video-section {

        padding: 5px 0 55px;
    }

    .va-about-video-frame {

        aspect-ratio: 16 / 10;

        min-height: 0;

        border-radius: 25px;
    }

    .va-about-video-content {

        width: 62%;

        left: 6%;
    }

    .va-about-video-text-layer {

        width: 75%;
    }

    .va-about-model-grid {

        grid-template-columns: 1fr;
    }

    .va-about-location-grid {

        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .va-about-location-card {

        min-height: 220px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .va-about-container {

        width: calc(100% - 26px);
    }


    /* HERO */

    .va-about-hero {

        min-height: 555px;

        align-items: center;
    }

    .va-about-hero-content {

        width: 100%;

        padding: 85px 13px 100px;
    }

    .va-about-eyebrow {

        font-size: 10px;

        letter-spacing: 2px;

        gap: 7px;
    }

    .va-about-eyebrow::before {

        width: 18px;

        flex-basis: 18px;
    }

    .va-about-hero h1 {

        margin: 20px 0;

        font-size: clamp(58px, 18vw, 90px);

        letter-spacing: -4px;

        line-height: .90;
    }

    .va-about-gold-line {

        width: 130px;

        margin-bottom: 24px;
    }

    .va-about-hero-content > p {

        font-size: 17px;

        line-height: 1.65;
    }

    .va-about-scroll-indicator {

        bottom: 17px;
    }


    /* GENERAL */

    .va-about-section {

        padding: 72px 0;
    }

    .va-about-section-heading h2 {

        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .va-about-centered {

        margin-bottom: 45px;
    }

    .va-about-centered > p {

        font-size: 16px;

        line-height: 1.7;
    }


    /* WHO */

    .va-about-main-copy {

        font-size: 16px;

        line-height: 1.8;
    }

    .va-about-main-copy .va-about-lead {

        font-size: 19px;
    }

    .va-about-highlight-box {

        grid-template-columns: 1fr;

        gap: 12px;

        padding: 23px;

        margin-top: 35px;
    }


    /* VIDEO */

    .va-about-video-section {

        padding: 0 0 48px;
    }

    .va-about-video-container {

        width: calc(100% - 16px);
    }

    .va-about-video-frame {

        /*
           Mobile box is tall,
           but no artificial min-height.
        */
        aspect-ratio: 4 / 5;

        min-height: 0;

        border-radius: 20px;
    }

    .va-about-video {

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center center;

        opacity: 1 !important;

        filter: none !important;
    }

    .va-about-video-text-layer {

        top: auto;
        bottom: 0;

        width: 100%;
        height: 62%;

        background:
            linear-gradient(
                0deg,
                rgba(2,4,13,.82),
                rgba(2,4,13,.45) 55%,
                transparent
            );
    }

    .va-about-video-content {

        left: 24px;
        right: 24px;

        bottom: 48px;

        top: auto;

        width: auto;

        transform: none;
    }

    .va-about-video-content h2 {

        margin: 16px 0;

        font-size: 38px;

        line-height: 1.04;

        letter-spacing: -1.5px;
    }

    .va-about-video-content p {

        font-size: 15px;

        line-height: 1.65;
    }

    .va-about-video-corner {

        width: 52px;
        height: 52px;
    }

    .va-video-corner-tl {

        top: 14px;
        left: 14px;
    }

    .va-video-corner-tr {

        top: 14px;
        right: 14px;
    }

    .va-video-corner-bl {

        bottom: 14px;
        left: 14px;
    }

    .va-video-corner-br {

        bottom: 14px;
        right: 14px;
    }


    /* MODELS */

    .va-about-model-card {

        min-height: 0;

        padding: 28px;

        border-radius: 22px;
    }

    .va-about-model-card h3 {

        font-size: 24px;
    }


    /* DISTINCTION */

    .va-about-distinction-content {

        font-size: 16px;
    }

    .va-about-distinction-content .va-about-lead {

        font-size: 19px;
    }

    .va-about-feature {

        grid-template-columns:
            38px minmax(0,1fr);

        padding: 17px;

        gap: 14px;
    }


    /* LOCATIONS */

    .va-about-location-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .va-about-location-card {

        width: 100%;

        min-height: 180px;

        padding: 22px;

        padding-top: 92px;

        border-radius: 20px;
    }

    .va-about-flag-wrap {

        top: 20px;
        left: 20px;

        width: 70px;
        height: 47px;
    }

    .va-about-location-number {

        top: 22px;
        right: 20px;
    }

    .va-about-location-card strong {

        font-size: 20px;

        line-height: 1.2;
    }

    .va-about-location-card small {

        margin-top: 7px;

        font-size: 9px;

        letter-spacing: 1.3px;
    }


    /* FINAL */

    .va-about-final {

        padding: 72px 0 85px;
    }

    .va-about-final-card {

        padding: 45px 23px;

        border-radius: 23px;
    }

    .va-about-final-card h2 {

        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .va-about-final-card p {

        font-size: 16px;

        line-height: 1.7;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .va-about-hero {

        min-height: 530px;
    }

    .va-about-hero h1 {

        font-size: 55px;
    }

    .va-about-video-frame {

        aspect-ratio: 4 / 5;

        min-height: 0;
    }

    .va-about-video-content {

        left: 20px;
        right: 20px;

        bottom: 40px;
    }

    .va-about-video-content h2 {

        font-size: 33px;
    }

    .va-about-video-content p {

        font-size: 14px;
    }

    .va-about-section-heading h2 {

        font-size: 37px;
    }

    .va-about-final-card h2 {

        font-size: 37px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .va-about-video-frame::before,
    .va-about-hero h1 span,
    .va-about-scroll-indicator i {

        animation: none !important;
    }

    .va-about-model-card,
    .va-about-location-card,
    .va-about-feature {

        transition: none !important;
    }
}
