/* =========================================================
   SNMF INFRATECH
   ABOUT PAGE STYLESHEET
   Dark Luxury / Gold
   Reference-Based Compact Layout
   ========================================================= */


/* =========================================================
   01. ABOUT VARIABLES
   ========================================================= */

:root {
    --about-black: #070808;
    --about-black-soft: #0b0c0c;
    --about-card: #0e0f0f;

    --about-gold: #d8ae45;
    --about-gold-light: #edc967;
    --about-gold-dark: #a27b27;

    --about-white: #f5f2eb;
    --about-white-soft: #d8d5ce;
    --about-text: #aaa8a1;
    --about-muted: #77756f;

    --about-border: rgba(255, 255, 255, 0.13);
    --about-gold-border: rgba(216, 174, 69, 0.48);

    --about-container: 1304px;
    --about-side-space: 60px;

    --about-serif: "Playfair Display", Georgia, serif;
    --about-sans: "DM Sans", Arial, sans-serif;

    --about-transition: 0.28s ease;
}


/* =========================================================
   02. ABOUT RESET / BASE
   ========================================================= */

.about-container {
    width: calc(100% - (var(--about-side-space) * 2));
    max-width: var(--about-container);

    margin-left: auto;
    margin-right: auto;
}

.about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 32px;

    padding: 0 13px;

    border-radius: 4px;

    font-family: var(--about-sans);
    font-size: 10px;
    font-weight: 600;

    line-height: 1;

    white-space: nowrap;

    transition:
        background var(--about-transition),
        border-color var(--about-transition),
        color var(--about-transition),
        transform var(--about-transition);
}

.about-btn:hover {
    transform: translateY(-1px);
}

.about-btn-outline {
    background: rgba(0, 0, 0, 0.18);

    border: 1px solid var(--about-gold);

    color: var(--about-white);
}

.about-btn-outline:hover {
    background: var(--about-gold);

    color: #080808;
}

.about-btn-gold {
    background: var(--about-gold);

    border: 1px solid var(--about-gold);

    color: #080808;
}

.about-btn-gold:hover {
    background: var(--about-gold-light);

    border-color: var(--about-gold-light);
}

.about-btn-arrow {
    font-size: 11px;
    line-height: 1;
}


/* =========================================================
   03. SECTION LABELS
   ========================================================= */

.about-section-label {
    display: block;

    margin: 0 0 6px;

    color: var(--about-gold-light);

    font-family: var(--about-sans);

    font-size: 7px;
    font-weight: 600;

    line-height: 1.3;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   04. SECTION TITLES
   ========================================================= */

.about-section-title {
    margin: 0;

    color: var(--about-white);

    font-family: var(--about-serif);

    font-size: 25px;
    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -0.2px;
}


/* =========================================================
   05. ABOUT HERO
   ========================================================= */

.about-hero {
    position: relative;

    width: 100%;

    height: 400px;
    min-height: 400px;

    overflow: hidden;

    background: var(--about-black);
}


/* =========================================================
   06. ABOUT HERO IMAGE
   ========================================================= */

.about-hero-background {
    position: absolute;

    inset: 0;

    background-image: url("../images/about/hero-image-about.png");

    background-repeat: no-repeat;

    background-size: cover;

    /*
       Keep architectural building on right
       and dark usable space on left.
    */
    background-position: center center;
}


/* =========================================================
   07. ABOUT HERO OVERLAY
   ========================================================= */

.about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 5, 5, 0.99) 0%,
            rgba(4, 5, 5, 0.95) 20%,
            rgba(4, 5, 5, 0.82) 35%,
            rgba(4, 5, 5, 0.50) 55%,
            rgba(4, 5, 5, 0.18) 76%,
            rgba(4, 5, 5, 0.25) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.12) 48%,
            rgba(0, 0, 0, 0.62) 100%
        );
}


/* =========================================================
   08. ABOUT HERO CONTENT
   ========================================================= */

.about-hero-content {
    position: absolute;

    left: 60;
    top: 50%;

    width: 465px;

    transform: translateY(-47%);
}

.about-hero-label {
    display: block;

    margin: 0 0 8px;

    color: var(--about-gold-light);

    font-family: var(--about-sans);

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 2.8px;

    line-height: 1.3;

    text-transform: uppercase;
}

.about-hero-title {
    margin: 0 0 11px;

    color: var(--about-white);

    font-family: var(--about-serif);

    font-size: 39px;
    font-weight: 400;

    line-height: 1.04;

    letter-spacing: -0.55px;
}

.about-hero-title span {
    color: var(--about-gold-light);
}

.about-hero-description {
    width: 420px;
    max-width: 100%;

    margin: 0 0 13px;

    color: #d5d3cc;

    font-family: var(--about-sans);

    font-size: 10px;
    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   09. ABOUT HERO STATS
   ========================================================= */

.about-hero-stats {
    position: absolute;

    left: 60;
    bottom: 21px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    width: 405px;

    z-index: 3;
}

.about-hero-stat {
    min-width: 0;

    padding-right: 16px;

    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.about-hero-stat:not(:first-child) {
    padding-left: 15px;
}

.about-hero-stat:last-child {
    border-right: 0;
}

.about-hero-stat strong {
    display: block;

    margin: 0 0 4px;

    color: var(--about-gold-light);

    font-family: var(--about-serif);

    font-size: 23px;
    font-weight: 400;

    line-height: 1;
}

.about-hero-stat span {
    display: block;

    color: var(--about-white-soft);

    font-family: var(--about-sans);

    font-size: 7px;
    font-weight: 400;

    line-height: 1.4;
}


/* =========================================================
   10. HERO SIDE STATEMENT
   ========================================================= */

.about-hero-side {
    position: absolute;

    right: 0;
    bottom: 22px;

    z-index: 3;

    display: flex;

    flex-direction: column;

    gap: 3px;

    padding-left: 14px;

    border-left: 1px solid var(--about-gold);

    color: var(--about-gold-light);

    font-family: var(--about-sans);

    font-size: 7px;
    font-weight: 500;

    line-height: 1.55;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


/* =========================================================
   11. WHO WE ARE SECTION
   ========================================================= */

.about-who-section {
    position: relative;

    padding: 19px 0;

    background: var(--about-black);

    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    overflow: hidden;
}

.about-who-grid {
    display: grid;

    grid-template-columns:
        minmax(320px, 1fr)
        minmax(450px, 1.10fr)
        minmax(120px, 0.36fr);

    align-items: center;

    gap: 37px;
}


/* =========================================================
   12. WHO WE ARE IMAGE
   ========================================================= */

.about-who-image {
    width: 100%;

    height: 222px;

    overflow: hidden;

    background: #111;
}

.about-who-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;
}


/* =========================================================
   13. WHO WE ARE CONTENT
   ========================================================= */

.about-who-content {
    min-width: 0;
}

.about-who-content .about-section-title {
    margin-bottom: 11px;

    font-size: 27px;
}

.about-who-content p {
    max-width: 505px;

    margin: 0 0 7px;

    color: var(--about-text);

    font-family: var(--about-sans);

    font-size: 9px;
    font-weight: 400;

    line-height: 1.55;
}

.about-who-content .about-btn {
    margin-top: 5px;
}


/* =========================================================
   14. WHO WE ARE SIDE BRAND
   ========================================================= */

.about-who-side {
    min-height: 190px;

    padding-left: 25px;

    border-left: 1px solid var(--about-gold-border);

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.about-who-brand {
    color: var(--about-gold-light);

    font-family: var(--about-serif);

    font-size: 30px;
    font-weight: 400;

    line-height: 0.95;
}

.about-who-brand-sub {
    margin-top: 4px;

    color: var(--about-gold-light);

    font-family: var(--about-sans);

    font-size: 7px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 3px;
}

.about-who-line {
    display: block;

    width: 48px;
    height: 1px;

    margin: 18px 0;

    background: var(--about-gold);
}

.about-who-side p {
    margin: 0;

    color: var(--about-gold-light);

    font-family: var(--about-sans);

    font-size: 9px;
    font-weight: 500;

    line-height: 1.7;

    letter-spacing: 1.7px;
}


/* =========================================================
   15. EXPERTISE SECTION
   ========================================================= */

.about-expertise-section {
    padding: 13px 0 14px;

    background: var(--about-black-soft);

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.about-section-heading {
    margin-bottom: 9px;
}

.about-section-heading .about-section-title {
    font-size: 24px;
}


/* =========================================================
   16. EXPERTISE GRID
   ========================================================= */

.about-expertise-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 11px;
}

.about-expertise-card {
    min-height: 155px;

    padding: 15px 13px 13px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.028),
            rgba(255, 255, 255, 0.006)
        );

    border: 1px solid var(--about-gold-border);

    border-radius: 2px;

    transition:
        transform var(--about-transition),
        background var(--about-transition),
        border-color var(--about-transition);
}

.about-expertise-card:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            145deg,
            rgba(216, 174, 69, 0.065),
            rgba(255, 255, 255, 0.008)
        );

    border-color: var(--about-gold);
}


/* =========================================================
   17. EXPERTISE ICON
   ========================================================= */

.about-expertise-icon {
    width: 39px;
    height: 39px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.about-expertise-icon img {
    width: 34px;
    height: 34px;

    display: block;

    object-fit: contain;
}


/* =========================================================
   18. EXPERTISE CARD TEXT
   ========================================================= */

.about-expertise-card h3 {
    min-height: 26px;

    margin: 0 0 7px;

    color: var(--about-white);

    font-family: var(--about-sans);

    font-size: 10px;
    font-weight: 600;

    line-height: 1.25;
}

.about-expertise-card p {
    max-width: 175px;

    margin: 0;

    color: var(--about-text);

    font-family: var(--about-sans);

    font-size: 7.8px;
    font-weight: 400;

    line-height: 1.45;
}


/* =========================================================
   19. WHY CHOOSE SECTION
   ========================================================= */

.about-why-section {
    display: grid;

    grid-template-columns: 44% 56%;

    min-height: 240px;

    background: var(--about-black);

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/* =========================================================
   20. WHY IMAGE
   ========================================================= */

.about-why-image {
    position: relative;

    width: 100%;
    height: 240px;

    overflow: hidden;
}

.about-why-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;
}


/* =========================================================
   21. WHY CONTENT
   ========================================================= */

.about-why-content {
    padding: 17px 60px 15px 38px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.about-why-content .about-section-title {
    margin-bottom: 15px;

    font-size: 27px;
}


/* =========================================================
   22. WHY ITEMS GRID
   ========================================================= */

.about-why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    width: 100%;
}

.about-why-item {
    min-width: 0;

    padding: 0 14px;

    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-why-item:first-child {
    padding-left: 0;
}

.about-why-item:last-child {
    padding-right: 0;

    border-right: 0;
}


/* =========================================================
   23. WHY ICON
   ========================================================= */

.about-why-icon {
    width: 34px;
    height: 34px;

    margin-bottom: 7px;

    display: flex;

    align-items: center;
    justify-content: flex-start;
}

.about-why-icon img {
    width: 30px;
    height: 30px;

    display: block;

    object-fit: contain;
}


/* =========================================================
   24. WHY TEXT
   ========================================================= */

.about-why-item h3 {
    margin: 0 0 5px;

    color: var(--about-white);

    font-family: var(--about-sans);

    font-size: 9px;
    font-weight: 600;

    line-height: 1.28;
}

.about-why-item p {
    max-width: 105px;

    margin: 0;

    color: var(--about-text);

    font-family: var(--about-sans);

    font-size: 7px;
    font-weight: 400;

    line-height: 1.42;
}


/* =========================================================
   25. VISION SECTION
   ========================================================= */

.about-vision-section {
    position: relative;

    width: 100%;
    min-height: 225px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--about-black);
}


/* =========================================================
   26. VISION BACKGROUND IMAGE
   ========================================================= */

.about-vision-background {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-image: url("../images/about/vision.png");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center center;

    z-index: 0;
}


/* =========================================================
   27. VISION DARK OVERLAY
   ========================================================= */

.about-vision-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5, 6, 6, 0.97) 0%,
            rgba(5, 6, 6, 0.91) 20%,
            rgba(5, 6, 6, 0.72) 38%,
            rgba(5, 6, 6, 0.42) 55%,
            rgba(5, 6, 6, 0.16) 74%,
            rgba(5, 6, 6, 0.24) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.12) 45%,
            rgba(0, 0, 0, 0.52) 100%
        );
}


/* =========================================================
   28. VISION CONTAINER
   ========================================================= */

.about-vision-section .about-container {
    position: relative;

    z-index: 2;

    min-height: 225px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   29. VISION CONTENT
   ========================================================= */

.about-vision-content {
    width: 490px;
    max-width: 100%;

    padding: 20px 0;
}


/* =========================================================
   30. VISION LABEL
   ========================================================= */

.about-vision-content .about-section-label {
    margin-bottom: 6px;
}


/* =========================================================
   31. VISION TITLE
   ========================================================= */

.about-vision-content .about-section-title {
    margin: 0 0 9px;

    color: var(--about-white);

    font-family: var(--about-serif);

    font-size: 28px;
    font-weight: 400;

    line-height: 1.06;

    letter-spacing: -0.3px;
}


/* =========================================================
   32. VISION DESCRIPTION
   ========================================================= */

.about-vision-content p {
    max-width: 450px;

    margin: 0 0 5px;

    color: var(--about-white-soft);

    font-family: var(--about-sans);

    font-size: 8.5px;
    font-weight: 400;

    line-height: 1.48;
}


/* =========================================================
   33. VISION BUTTON
   ========================================================= */

.about-vision-content .about-btn {
    margin-top: 7px;

    min-height: 31px;

    padding: 0 14px;
}


/* =========================================================
   34. VISION QUOTE
   ========================================================= */

.about-vision-quote {
    align-self: flex-start;

    margin-top: 77px;

    padding-right: 0px;

    position: relative;
}


/* =========================================================
   35. VISION QUOTE TEXT
   ========================================================= */

.about-vision-quote p {
    margin: 0;

    color: var(--about-white-soft);

    font-family: var(--about-serif);

    font-size: 15px;
    font-style: italic;
    font-weight: 400;

    line-height: 1.35;

    text-align: right;

    white-space: nowrap;
}


/* =========================================================
   36. VISION SECTION BOTTOM LINE
   ========================================================= */

.about-vision-section::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: rgba(216, 174, 69, 0.28);

    z-index: 3;
}


/* =========================================================
   37. VISION - LARGE DESKTOP
   ========================================================= */

@media (min-width: 1201px) {

    .about-vision-section {
        min-height: 225px;
    }

    .about-vision-section .about-container {
        min-height: 225px;
    }

    .about-vision-background {
        background-position: center center;
    }

    .about-vision-content {
        width: 500px;
    }

}


/* =========================================================
   38. VISION - TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .about-vision-section {
        min-height: 220px;
    }

    .about-vision-section .about-container {
        min-height: 220px;
    }

    .about-vision-content {
        width: 460px;
    }

    .about-vision-content .about-section-title {
        font-size: 26px;
    }

    .about-vision-content p {
        max-width: 420px;

        font-size: 8px;
    }

    .about-vision-quote p {
        font-size: 14px;
    }

}


/* =========================================================
   39. VISION - MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .about-vision-section {
        min-height: 360px;
    }

    .about-vision-section .about-container {
        min-height: 360px;

        display: flex;

        align-items: flex-start;

        justify-content: center;

        flex-direction: column;

        gap: 0;
    }

    .about-vision-background {
        background-position: 62% center;
    }

    .about-vision-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 6, 6, 0.97) 0%,
                rgba(5, 6, 6, 0.88) 45%,
                rgba(5, 6, 6, 0.54) 75%,
                rgba(5, 6, 6, 0.35) 100%
            ),
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.25),
                rgba(0, 0, 0, 0.62)
            );
    }

    .about-vision-content {
        width: 100%;

        padding: 30px 0 20px;
    }

    .about-vision-content .about-section-title {
        font-size: 27px;
    }

    .about-vision-content p {
        max-width: 100%;

        font-size: 8.5px;
    }

    .about-vision-quote {
        display: none;
    }

}


/* =========================================================
   40. VISION - SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .about-vision-section {
        min-height: 390px;
    }

    .about-vision-section .about-container {
        min-height: 390px;
    }

    .about-vision-background {
        background-position: 64% center;
    }

    .about-vision-content {
        padding-top: 25px;
    }

    .about-vision-content .about-section-title {
        font-size: 25px;
    }

    .about-vision-content p {
        font-size: 8px;

        line-height: 1.5;
    }

}

/* =========================================================
   27. PROJECT CTA
   ========================================================= */

.about-project-cta {
    min-height: 105px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 9, 0.98),
            rgba(20, 19, 15, 0.92)
        );

    border-top: 1px solid rgba(216, 174, 69, 0.20);
    border-bottom: 1px solid rgba(216, 174, 69, 0.20);
}

.about-project-cta-inner {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 65px;

    text-align: center;
}

.about-project-cta-content {
    min-width: 0;
}

.about-project-cta-content .about-section-label {
    margin-bottom: 4px;
}

.about-project-cta-content h2 {
    margin: 0 0 4px;

    color: var(--about-white);

    font-family: var(--about-serif);

    font-size: 23px;
    font-weight: 400;

    line-height: 1.05;
}

.about-project-cta-content p {
    margin: 0;

    color: var(--about-text);

    font-family: var(--about-sans);

    font-size: 7.8px;

    line-height: 1.4;
}

.about-project-cta-inner .about-btn {
    flex-shrink: 0;
}


/* =========================================================
   28. DESKTOP 1200+
   ========================================================= */

@media (min-width: 1201px) {

    .about-container {
        width: calc(100% - 120px);
        max-width: 1304px;
    }

    .about-hero {
        height: 400px;
        min-height: 400px;
    }
}


/* =========================================================
   29. 1101px - 1200px
   ========================================================= */

@media (max-width: 1200px) and (min-width: 1101px) {

    .about-container {
        width: calc(100% - 100px);
    }

    .about-who-grid {
        gap: 25px;
    }

    .about-why-content {
        padding-right: 45px;
        padding-left: 30px;
    }
}


/* =========================================================
   30. 901px - 1100px
   ========================================================= */

@media (max-width: 1100px) and (min-width: 901px) {

    /*
       1024px:
       1024 - 120 = 904px
    */

    .about-container {
        width: calc(100% - 120px);
        max-width: none;
    }


    /* HERO */

    .about-hero {
        height: 400px;
        min-height: 400px;
    }

    .about-hero-content {
        width: 420px;
    }

    .about-hero-title {
        font-size: 37px;
    }

    .about-hero-description {
        width: 390px;
    }

    .about-hero-stats {
        width: 380px;
    }

    .about-hero-side {
        right: 0;
    }


    /* WHO */

    .about-who-grid {
        grid-template-columns:
            minmax(285px, 1fr)
            minmax(420px, 1.15fr)
            minmax(95px, 0.34fr);

        gap: 20px;
    }

    .about-who-image {
        height: 205px;
    }

    .about-who-content .about-section-title {
        font-size: 25px;
    }

    .about-who-content p {
        font-size: 8px;
    }

    .about-who-side {
        padding-left: 15px;
    }


    /* EXPERTISE */

    .about-expertise-grid {
        gap: 8px;
    }

    .about-expertise-card {
        min-height: 145px;

        padding-left: 9px;
        padding-right: 9px;
    }


    /* WHY */

    .about-why-section {
        grid-template-columns: 43% 57%;
    }

    .about-why-image {
        height: 225px;
    }

    .about-why-content {
        padding:
            15px
            25px
            14px
            25px;
    }

    .about-why-content .about-section-title {
        font-size: 24px;
    }

    .about-why-item {
        padding-left: 9px;
        padding-right: 9px;
    }


    /* VISION */

    .about-vision-section {
        min-height: 215px;
    }

    .about-vision-content {
        width: 440px;
    }
}


/* =========================================================
   31. TABLET 900px
   ========================================================= */

@media (max-width: 900px) {

    .about-container {
        width: calc(100% - 60px);
        max-width: none;
    }


    /* HERO */

    .about-hero {
        height: 520px;
        min-height: 520px;
    }

    .about-hero-content {
        top: 46%;

        width: 440px;
    }

    .about-hero-title {
        font-size: 39px;
    }

    .about-hero-stats {
        bottom: 22px;

        width: 430px;
    }

    .about-hero-side {
        display: none;
    }


    /* WHO */

    .about-who-section {
        padding: 28px 0;
    }

    .about-who-grid {
        grid-template-columns: 1fr 1fr;

        gap: 25px;
    }

    .about-who-image {
        height: 245px;
    }

    .about-who-side {
        display: none;
    }


    /* EXPERTISE */

    .about-expertise-section {
        padding: 28px 0;
    }

    .about-expertise-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .about-expertise-card {
        min-height: 145px;
    }


    /* WHY */

    .about-why-section {
        grid-template-columns: 1fr;
    }

    .about-why-image {
        height: 280px;
    }

    .about-why-content {
        padding: 28px 60px;
    }


    /* VISION */

    .about-vision-section {
        min-height: 280px;
    }

    .about-vision-content {
        width: 520px;
    }


    /* CTA */

    .about-project-cta {
        padding: 22px 0;
    }
}


/* =========================================================
   32. MOBILE 700px
   ========================================================= */

@media (max-width: 700px) {

    .about-container {
        width: calc(100% - 36px);
    }


    /* HERO */

    .about-hero {
        height: 650px;
        min-height: 650px;
    }

    .about-hero-background {
        background-position: 68% center;
    }

    .about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 4, 4, 1) 0%,
            rgba(3, 4, 4, 0.98) 20%,
            rgba(3, 4, 4, 0.92) 35%,
            rgba(3, 4, 4, 0.68) 52%,
            rgba(3, 4, 4, 0.30) 72%,
            rgba(3, 4, 4, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.48) 0%,
            rgba(0, 0, 0, 0.22) 45%,
            rgba(0, 0, 0, 0.72) 100%
        );
}

    .about-hero-content {
        position: relative;

        left: auto;
        top: auto;

        width: 100%;

        padding-top: 155px;

        transform: none;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-description {
        width: 100%;

        font-size: 9px;
    }

    .about-hero-stats {
        position: absolute;

        left: 0;
        bottom: 25px;

        width: 100%;
    }

    .about-hero-stat {
        padding-right: 8px;
    }

    .about-hero-stat:not(:first-child) {
        padding-left: 8px;
    }

    .about-hero-stat strong {
        font-size: 22px;
    }


    /* WHO */

    .about-who-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .about-who-image {
        height: 220px;

        order: 1;
    }

    .about-who-content {
        order: 2;
    }

    .about-who-content .about-section-title {
        font-size: 27px;
    }


    /* EXPERTISE */

    .about-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* WHY */

    .about-why-image {
        height: 230px;
    }

    .about-why-content {
        padding: 28px 18px;
    }

    .about-why-content .about-section-title {
        font-size: 26px;
    }

    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px 0;
    }

    .about-why-item:nth-child(2) {
        border-right: 0;
    }

    .about-why-item:nth-child(3) {
        padding-left: 0;
    }


    /* VISION */

    .about-vision-section {
        min-height: 350px;
    }

    .about-vision-section .about-container {
        align-items: flex-start;

        flex-direction: column;

        justify-content: center;
    }

    .about-vision-content {
        width: 100%;
    }

    .about-vision-content .about-section-title {
        font-size: 27px;
    }

    .about-vision-quote {
        display: none;
    }


    /* CTA */

    .about-project-cta {
        min-height: 150px;
    }

    .about-project-cta-inner {
        flex-direction: column;

        gap: 13px;
    }
}


/* =========================================================
   33. SMALL MOBILE 480px
   ========================================================= */

@media (max-width: 480px) {

    .about-container {
        width: calc(100% - 28px);
    }


    /* HERO */

    .about-hero {
        height: 680px;
        min-height: 680px;
    }

    .about-hero-background {
        background-position: 70% center;
    }

    .about-hero-content {
        padding-top: 150px;
    }

    .about-hero-label {
        font-size: 6px;

        letter-spacing: 2px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-description {
        font-size: 8.5px;
    }

    .about-hero-stats {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 14px;
    }

    .about-hero-stat {
        border-right: 0;
    }

    .about-hero-stat:nth-child(2) {
        border-right: 0;
    }


    /* WHO */

    .about-who-image {
        height: 190px;
    }

    .about-who-content .about-section-title {
        font-size: 25px;
    }


    /* EXPERTISE */

    .about-expertise-grid {
        grid-template-columns: 1fr;
    }

    .about-expertise-card {
        min-height: 140px;
    }


    /* WHY */

    .about-why-image {
        height: 190px;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
    }

    .about-why-item,
    .about-why-item:first-child,
    .about-why-item:nth-child(3) {
        padding-left: 0;
        padding-right: 0;

        border-right: 0;
    }


    /* VISION */

    .about-vision-section {
        min-height: 390px;
    }

    .about-vision-content .about-section-title {
        font-size: 25px;
    }


    /* CTA */

    .about-project-cta-content h2 {
        font-size: 22px;
    }
}


/* =========================================================
   34. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-btn,
    .about-expertise-card {
        transition: none;
    }
}