/* ============================================================
   TRUEFLOW GUTTER SYSTEMS
   ABOUT US PAGE
============================================================ */


/* ============================================================
   HERO
============================================================ */

.about-hero {
    position: relative;
    min-height: clamp(650px, 78vh, 840px);
    overflow: hidden;
    display: flex;
    color: var(--color-light);
    background: var(--color-dark);
}

.about-hero__media,
.about-hero__overlay {
    position: absolute;
    inset: 0;
}

.about-hero__media {
    overflow: hidden;
}

.about-hero__media img {
    width: 100%;
    height: 112%;
    object-fit: cover;
    object-position: center;
}

.about-hero__overlay {
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(17, 24, 39, 0.97) 0%,
            rgba(17, 24, 39, 0.88) 40%,
            rgba(17, 24, 39, 0.56) 70%,
            rgba(17, 24, 39, 0.24) 100%);
}

.about-hero__lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.about-hero__lines span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.075);
}

.about-hero__lines span:first-child {
    left: 34%;
}

.about-hero__lines span:last-child {
    left: 68%;
}

.about-hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
    align-items: center;
    gap: clamp(55px, 8vw, 115px);
    padding-top: clamp(85px, 8vw, 120px);
    padding-bottom: clamp(90px, 8vw, 125px);
}

.about-hero__content {
    max-width: 860px;
}

.about-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.about-hero__kicker::before {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--color-red);
}

.about-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(58px, 7vw, 106px);
    font-weight: 620;
    line-height: 0.9;
    letter-spacing: -0.065em;
}

.about-hero h1 span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
}

.about-hero__lead {
    max-width: 720px;
    margin-bottom: 34px;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.about-hero__lead strong {
    color: var(--color-light);
}

.about-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.about-hero__call small,
.about-hero__call strong {
    display: block;
}

.about-hero__call small {
    margin-bottom: 1px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.48);
}

.about-hero__call strong {
    font-size: 16px;
}

.about-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 34px;
}

.about-hero__trust span {
    padding: 7px 11px;
    font-size: 9px;
    font-weight: 750;
    color: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.about-hero__card {
    align-self: end;
    padding: 28px;
    background: rgba(23, 71, 166, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.about-hero__card-label {
    display: block;
    margin-bottom: 14px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.about-hero__card>strong {
    display: block;
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.about-hero__card p {
    margin-bottom: 22px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.64);
}

.about-hero__card-points {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.about-hero__card-points span {
    padding: 7px 10px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}


/* ============================================================
   STORY
============================================================ */

.about-story {
    overflow: hidden;
    background: var(--color-light);
}

.about-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(70px, 9vw, 135px);
}

.about-story__visual {
    position: relative;
    min-height: 640px;
}

.about-story__image {
    position: absolute;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}

.about-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story__image--main {
    inset: 0 80px 55px 0;
}

.about-story__image--detail {
    right: 0;
    bottom: 0;
    width: 43%;
    height: 265px;
    border: 8px solid var(--color-light);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.about-story__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 18px 20px;
    color: var(--color-light);
    background: var(--color-blue);
    border-radius: 15px;
    box-shadow: 0 16px 40px rgba(23, 71, 166, 0.22);
}

.about-story__badge::before {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    width: 40px;
    height: 4px;
    background: var(--color-red);
}

.about-story__badge small,
.about-story__badge strong {
    display: block;
}

.about-story__badge small {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
}

.about-story__badge strong {
    font-size: 18px;
}

.about-story__content>p:not(.section-lead) {
    color: var(--color-muted);
}


/* ============================================================
   SPECIALISTS
============================================================ */

.about-specialists {
    padding: clamp(90px, 9vw, 140px) 0;
    overflow: hidden;
    color: var(--color-light);
    background: var(--color-dark);
}

.about-specialists__heading {
    max-width: 880px;
    margin-bottom: 55px;
}

.about-specialists__heading h2 {
    margin-bottom: 22px;
    font-size: clamp(44px, 5.3vw, 80px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.about-specialists__heading h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.48);
}

.about-specialists__heading p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.about-specialists__grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-auto-rows: 320px;
    gap: 16px;
}

.about-specialist-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--color-dark);
    isolation: isolate;
}

.about-specialist-card--feature {
    grid-row: span 2;
}

.about-specialist-card:nth-child(4) {
    grid-column: 2 / 4;
}

.about-specialist-card__image,
.about-specialist-card__overlay {
    position: absolute;
    inset: 0;
}

.about-specialist-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-specialist-card__overlay {
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(17, 24, 39, 0.05) 35%,
            rgba(17, 24, 39, 0.82) 100%);
}

.about-specialist-card__number {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    font-size: 9px;
    font-weight: 800;
    color: var(--color-light);
    background: var(--color-red);
    border-radius: 50%;
}

.about-specialist-card__content {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    left: 22px;
}

.about-specialist-card__content small {
    display: block;
    margin-bottom: 6px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffd2d4;
}

.about-specialist-card__content h3 {
    margin-bottom: 0;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.about-specialist-card--feature .about-specialist-card__content h3 {
    font-size: clamp(34px, 4vw, 56px);
}

.about-specialist-card__content p {
    max-width: 500px;
    margin: 12px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.64);
}

.about-specialist-card:hover .about-specialist-card__image img {
    transform: scale(1.06);
}


/* ============================================================
   SEAMLESS FOCUS
============================================================ */

.about-seamless {
    background: var(--color-grey);
}

.about-seamless__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(70px, 9vw, 135px);
}

.about-seamless__content>p:not(.section-lead) {
    color: var(--color-muted);
}

.about-seamless__features {
    display: grid;
    margin: 32px 0;
    border-top: 1px solid var(--color-border);
}

.about-seamless__features article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
}

.about-seamless__features article>span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    font-size: 9px;
    font-weight: 800;
    color: var(--color-light);
    background: var(--color-red);
    border-radius: 50%;
}

.about-seamless__features h3 {
    margin-bottom: 3px;
    font-size: 15px;
}

.about-seamless__features p {
    margin: 0;
    font-size: 12px;
    color: var(--color-muted);
}

.about-seamless__visual {
    position: relative;
    min-height: 610px;
}

.about-seamless__main {
    position: absolute;
    inset: 0 0 55px 70px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}

.about-seamless__detail {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42%;
    height: 250px;
    overflow: hidden;
    border: 8px solid var(--color-grey);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.about-seamless__main img,
.about-seamless__detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================================
   PROPERTY TYPES
============================================================ */

.about-property-types {
    padding: clamp(90px, 9vw, 140px) 0;
    color: var(--color-light);
    background: var(--color-blue);
}

.about-property-types__heading {
    max-width: 860px;
    margin-bottom: 55px;
}

.about-property-types__heading h2 {
    margin-bottom: 20px;
    font-size: clamp(44px, 5.3vw, 80px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.about-property-types__heading h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
}

.about-property-types__heading p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

.about-property-types__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.about-property-types__grid article {
    min-height: 260px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.about-property-types__grid article:last-child {
    border-right: 0;
}

.about-property-types__grid article>span {
    display: inline-block;
    margin-bottom: 55px;
    font-size: 9px;
    font-weight: 800;
    color: #ffd2d4;
}

.about-property-types__grid h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.about-property-types__grid p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.58);
}


/* ============================================================
   VALUES
============================================================ */

.about-values {
    background: var(--color-light);
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.about-values__grid article {
    min-height: 250px;
    padding: 28px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    transition:
        background var(--transition),
        transform var(--transition);
}

.about-values__grid article:hover {
    background: var(--color-grey);
    transform: translateY(-4px);
}

.about-values__grid article>span {
    display: inline-block;
    margin-bottom: 50px;
    font-size: 9px;
    font-weight: 800;
    color: var(--color-red);
}

.about-values__grid h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.about-values__grid p {
    margin: 0;
    font-size: 12px;
    color: var(--color-muted);
}


/* ============================================================
   REAL WORK
============================================================ */

.about-work {
    padding: clamp(90px, 9vw, 140px) 0;
    color: var(--color-light);
    background: var(--color-dark);
}

.about-work__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
        "before after"
        "content content";
    gap: 16px;
}

.about-work__image {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 18px;
}

.about-work__image--large {
    grid-area: before;
}

.about-work__image:not(.about-work__image--large) {
    grid-area: after;
}

.about-work__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-work__image>span {
    position: absolute;
    top: 17px;
    padding: 8px 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-light);
    border-radius: 999px;
}

.about-work__image--large>span {
    left: 17px;
    background: rgba(17, 24, 39, 0.78);
}

.about-work__image:not(.about-work__image--large)>span {
    right: 17px;
    background: var(--color-blue);
}

.about-work__content {
    grid-area: content;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
    align-items: end;
    gap: 60px;
    padding-top: 42px;
}

.about-work__content .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -34px;
}

.about-work__content h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.about-work__content h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.48);
}

.about-work__content p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.62);
}

.about-work__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}


/* ============================================================
   PROCESS
============================================================ */

.about-process {
    background: var(--color-grey);
}

.about-process__heading {
    max-width: 900px;
    margin-bottom: 55px;
}

.about-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.about-process__steps article {
    position: relative;
    padding-right: 30px;
}

.about-process__steps article:not(:last-child) {
    margin-right: 30px;
}

.about-process__steps article>span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 34px;
    font-size: 10px;
    font-weight: 800;
    color: var(--color-light);
    background: var(--color-blue);
    border-radius: 50%;
}

.about-process__steps article:nth-child(even)>span {
    background: var(--color-red);
}

.about-process__steps article::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 60px;
    right: -6px;
    height: 1px;
    background: var(--color-border);
}

.about-process__steps article:last-child::after {
    display: none;
}

.about-process__steps h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.about-process__steps p {
    margin: 0;
    font-size: 12px;
    color: var(--color-muted);
}


/* ============================================================
   COVERAGE
============================================================ */

.about-coverage {
    background: var(--color-light);
}

.about-coverage__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: clamp(65px, 9vw, 130px);
}

.about-coverage__content>p {
    max-width: 610px;
    color: var(--color-muted);
}

.about-coverage__content .button {
    margin-top: 14px;
}

.about-coverage__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.about-coverage__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    font-size: 13px;
    font-weight: 700;
    background: var(--color-grey);
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    transition:
        color var(--transition),
        background var(--transition);
}

.about-coverage__links a span {
    color: var(--color-red);
}

.about-coverage__links a:hover {
    color: var(--color-blue);
    background: #fff;
}


/* ============================================================
   CTA
============================================================ */

.about-cta {
    padding: 65px 0;
    color: var(--color-light);
    background: var(--color-red);
}

.about-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-cta__inner>div:first-child>span {
    display: block;
    margin-bottom: 6px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.about-cta h2 {
    max-width: 820px;
    margin-bottom: 8px;
    font-size: clamp(31px, 3.8vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.about-cta p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.about-cta__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    flex: none;
}

.about-cta__phone {
    font-size: 15px;
    font-weight: 800;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

    .about-hero__inner {
        grid-template-columns: 1fr 310px;
    }

    .about-specialists__grid {
        grid-template-columns: 1.15fr 1fr;
    }

    .about-specialist-card:nth-child(4) {
        grid-column: auto;
    }

    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 900px) {

    .about-hero {
        min-height: auto;
    }

    .about-hero__inner {
        grid-template-columns: 1fr;
        padding-top: 85px;
        padding-bottom: 90px;
    }

    .about-hero__card {
        display: none;
    }

    .about-story__grid,
    .about-seamless__grid,
    .about-coverage__grid {
        grid-template-columns: 1fr;
    }

    .about-story__visual,
    .about-seamless__visual {
        max-width: 720px;
    }

    .about-specialists__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 340px;
    }

    .about-specialist-card--feature {
        grid-row: span 2;
    }

    .about-property-types__grid {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .about-property-types__grid article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .about-process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 20px;
    }

    .about-process__steps article:nth-child(2)::after,
    .about-process__steps article:nth-child(4)::after {
        display: none;
    }

    .about-work__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-work__content .section-kicker {
        grid-column: auto;
        margin-bottom: 0;
    }

    .about-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 700px) {

    .about-hero__inner {
        padding-top: 70px;
        padding-bottom: 75px;
    }

    .about-hero h1 {
        font-size: clamp(46px, 13vw, 65px);
    }

    .about-hero__lead {
        font-size: 16px;
    }

    .about-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .about-hero__actions .button {
        width: 100%;
    }

    .about-hero__call {
        text-align: center;
    }

    .about-story__visual {
        min-height: 470px;
    }

    .about-story__image--main {
        inset: 0 35px 42px 0;
    }

    .about-story__image--detail {
        width: 46%;
        height: 200px;
        border-width: 6px;
    }

    .about-specialists__grid {
        display: flex;
        gap: 13px;
        overflow-x: auto;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .about-specialists__grid::-webkit-scrollbar {
        display: none;
    }

    .about-specialist-card,
    .about-specialist-card--feature {
        width: min(82vw, 410px);
        min-width: min(82vw, 410px);
        height: 470px;
        grid-row: auto;
        scroll-snap-align: start;
    }

    .about-seamless__visual {
        min-height: 470px;
    }

    .about-seamless__main {
        inset: 0 0 42px 35px;
    }

    .about-seamless__detail {
        width: 46%;
        height: 195px;
        border-width: 6px;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-values__grid article {
        min-height: auto;
    }

    .about-values__grid article>span {
        margin-bottom: 30px;
    }

    .about-work__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "before"
            "after"
            "content";
    }

    .about-work__image {
        min-height: 340px;
    }

    .about-process__steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-process__steps article {
        display: grid;
        grid-template-columns: 48px 1fr;
        column-gap: 16px;
        padding: 0 0 38px;
        margin: 0 !important;
    }

    .about-process__steps article>span {
        grid-row: 1 / span 2;
        margin: 0;
    }

    .about-process__steps article::after {
        display: block !important;
        top: 48px;
        left: 24px;
        right: auto;
        bottom: 0;
        width: 1px;
        height: calc(100% - 42px);
    }

    .about-process__steps article:last-child::after {
        display: none !important;
    }

    .about-process__steps h3,
    .about-process__steps p {
        grid-column: 2;
    }

    .about-coverage__links {
        grid-template-columns: 1fr;
    }

    .about-cta__actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .about-cta__actions .button {
        width: 100%;
    }

    .about-cta__phone {
        text-align: center;
    }
}


@media (max-width: 520px) {

    .about-hero h1 {
        font-size: clamp(43px, 12.5vw, 58px);
    }

    .about-story__visual,
    .about-seamless__visual {
        min-height: 390px;
    }

    .about-story__image--main {
        inset: 0 25px 35px 0;
        border-radius: 17px;
    }

    .about-story__image--detail {
        height: 160px;
        border-radius: 13px;
    }

    .about-story__badge {
        left: 12px;
        bottom: 12px;
        padding: 14px 16px;
    }

    .about-seamless__main {
        inset: 0 0 35px 25px;
        border-radius: 17px;
    }

    .about-seamless__detail {
        height: 160px;
        border-radius: 13px;
    }

    .about-specialist-card,
    .about-specialist-card--feature {
        width: 84vw;
        min-width: 84vw;
        height: 430px;
    }

    .about-work__image {
        min-height: 290px;
    }
}