/* ========================================================================
   WAYTOGO CONSULTANTS - ABOUT PAGE ONLY
   Loaded after ../style.css
   Home page spacing is the reference for all inner containers.
   ======================================================================== */

.page-about {
    background: var(--wtg-white);
}

.page-about .about-section > .container,
.page-about .about-cta > .container,
.page-about .about-hero__inner {
    width: calc(100% - (var(--content-gutter) * 2));
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: 0;
}

.about-section {
    width: 100%;
    padding: 78px 0;
}

.about-section-label,
.about-eyebrow,
.about-cta__label {
    margin: 0 0 11px;
    color: var(--wtg-navy);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

.about-title {
    margin: 0;
    color: var(--wtg-heading);
    font-family: var(--font-display);
    font-size: clamp(34px, 2.9vw, 47px);
    font-weight: 400;
    line-height: 0.99;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.about-copy {
    margin: 20px 0 0;
    color: var(--wtg-text-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
}


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

.about-hero {
    position: relative;
    isolation: isolate;
    min-height: 430px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: var(--wtg-white);
    background: var(--wtg-navy-deep);
}

.about-hero__media {
    position: absolute;
    z-index: -3;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 9, 34, 0.97) 0%,
            rgba(5, 15, 55, 0.91) 37%,
            rgba(7, 17, 63, 0.56) 64%,
            rgba(4, 11, 40, 0.2) 100%
        ),
        url("../../images/about/about-hero.webp")
        center center / cover no-repeat;
}

.about-hero::after {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 11, 40, 0.02),
        rgba(4, 11, 40, 0.18)
    );
}

.about-hero__inner {
    min-height: 430px;
    padding: 58px 0 62px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 275px;
    gap: 70px;
    align-items: center;
}

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

.about-eyebrow {
    color: var(--wtg-gold-light);
}

.about-hero__title {
    max-width: 820px;
    margin: 0 0 18px;
    color: var(--wtg-white);
    font-family: var(--font-display);
    font-size: clamp(43px, 3.5vw, 57px);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.028em;
    text-wrap: balance;
}

.about-hero__description {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
}

.about-hero__quote {
    align-self: end;
    max-width: 255px;
    margin-bottom: 17px;
    text-align: right;
}

.about-hero__quote p {
    margin: 0 0 13px;
    color: var(--wtg-white);
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    line-height: 1.05;
}

.about-hero__quote span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}


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

.about-story {
    background: var(--wtg-white);
}

.about-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
    gap: 72px;
    align-items: start;
}

.about-story__grid > * {
    min-width: 0;
}

.about-story__copy {
    margin-top: 2px;
}

.about-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
    border-top: 1px solid var(--wtg-border);
    border-bottom: 1px solid var(--wtg-border);
}

.about-timeline article {
    min-height: 118px;
    padding: 22px 24px;
    border-right: 1px solid var(--wtg-border);
}

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

.about-timeline strong {
    display: block;
    margin-bottom: 8px;
    color: var(--wtg-navy);
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.about-timeline span {
    color: var(--wtg-muted);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


/* =========================================================
   WHAT WE KEPT NOTICING
   ========================================================= */

.about-noticing {
    background: var(--wtg-cream);
}

.about-noticing__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 60px;
    align-items: center;
}

.about-noticing__grid > * {
    min-width: 0;
}

.about-image-panel {
    min-height: 345px;
    overflow: hidden;
    background: #d7dce5;
}

.about-image-panel img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
    transition: transform 900ms var(--ease-premium);
}

.about-image-panel:hover img {
    transform: scale(1.025);
}

.about-noticing__content .about-title {
    max-width: 700px;
}

.about-noticing blockquote {
    margin: 24px 0 0;
    padding: 13px 0 13px 17px;
    color: var(--wtg-heading);
    border-left: 2px solid var(--wtg-gold);
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    line-height: 1.14;
}


/* =========================================================
   STRUCTURE
   ========================================================= */

.about-structure {
    background: var(--wtg-white);
}

.about-structure__title {
    max-width: 820px;
    margin-bottom: 34px;
}

.about-practices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-practice-card {
    min-height: 250px;
    padding: 24px 23px;
    display: flex;
    flex-direction: column;
    background: var(--wtg-white);
    border: 1px solid var(--wtg-border);
    transition:
        transform var(--transition-base),
        border-color var(--transition-base),
        box-shadow var(--transition-base);
}

.about-practice-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 161, 91, 0.55);
    box-shadow: 0 16px 42px rgba(11, 26, 98, 0.07);
}

.about-practice-card__label {
    margin-bottom: 13px;
    color: var(--wtg-navy);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-practice-card h3 {
    margin: 0 0 13px;
    color: var(--wtg-heading);
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.04;
}

.about-practice-card p {
    margin: 0 0 18px;
    color: var(--wtg-text-secondary);
    font-size: 13px;
    line-height: 1.58;
}

.about-practice-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.about-practice-card a,
.about-inline-link {
    margin-top: auto;
    color: var(--wtg-navy);
    font-size: 11px;
    font-weight: 700;
}

.about-practice-card a:hover,
.about-inline-link:hover {
    color: var(--wtg-gold);
}


/* =========================================================
   LEADERSHIP
   ========================================================= */

.about-leadership {
    background: var(--wtg-blue-soft);
}

.about-leadership__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.43fr) minmax(0, 0.57fr);
    gap: 58px;
    align-items: center;
}

.about-leadership__grid > * {
    min-width: 0;
}

.about-founder-card {
    min-height: 275px;
    padding: 30px;
    color: var(--wtg-white);
    background: var(--wtg-navy);
}

.about-founder-card__label {
    margin-bottom: 35px;
    color: var(--wtg-gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-founder-card__photo {
    height: 210px;
    margin: -30px -30px 24px;
    overflow: hidden;
    background: #05070c;
}

.about-founder-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
    filter: saturate(0.92) contrast(1.03);
    transition: transform 900ms var(--ease-premium);
}

.about-founder-card:hover .about-founder-card__photo img {
    transform: scale(1.025);
}

.about-founder-card h3 {
    margin: 0 0 6px;
    color: var(--wtg-white);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
}

.about-founder-card > span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-leadership__content .about-title {
    max-width: 720px;
}



/* =========================================================
   MODEL
   ========================================================= */

.about-model {
    background: var(--wtg-white);
}

.about-model__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 62px;
    align-items: center;
}

.about-model__grid > * {
    min-width: 0;
}

.about-model__content .about-title {
    max-width: 690px;
}

.about-model__content .button {
    margin-top: 25px;
}

.about-model__image {
    min-height: 310px;
    overflow: hidden;
    background: #0a0e16;
}

.about-model__image img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
    transition: transform 900ms var(--ease-premium);
}

.about-model__image:hover img {
    transform: scale(1.025);
}


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

.about-cta {
    position: relative;
    overflow: hidden;
    padding: 58px 0;
    color: var(--wtg-white);
    background: var(--wtg-navy);
}

.about-cta::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -280px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(213, 183, 112, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(213, 183, 112, 0.025);
}

.about-cta__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 72px;
    align-items: center;
}

.about-cta__label {
    color: var(--wtg-gold-light);
}

.about-cta h2 {
    max-width: 810px;
    margin: 0;
    color: var(--wtg-white);
    font-family: var(--font-display);
    font-size: clamp(34px, 3vw, 47px);
    font-weight: 400;
    line-height: 0.99;
    letter-spacing: -0.02em;
}

.about-cta__action {
    display: flex;
    justify-content: flex-end;
}


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

@media (max-width: 1180px) {
    .about-section {
        padding: 70px 0;
    }

    .about-story__grid,
    .about-noticing__grid,
    .about-model__grid {
        gap: 44px;
    }
}

@media (max-width: 1024px) {
    .about-hero {
        min-height: 0;
    }

    .about-hero__inner {
        min-height: 410px;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 56px 0 58px;
    }

    .about-hero__quote {
        display: none;
    }

    .about-story__grid,
    .about-noticing__grid,
    .about-leadership__grid,
    .about-model__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

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

    .about-practice-card:last-child {
        grid-column: 1 / -1;
    }

    .about-image-panel,
    .about-model__image {
        min-height: 360px;
    }

    .about-founder-card {
        max-width: 620px;
    }

    .about-cta__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-cta__action {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 48px 0;
    }

    .about-section-label,
    .about-eyebrow,
    .about-cta__label {
        margin-bottom: 10px;
        font-size: 10px;
        line-height: 1.4;
        letter-spacing: 0.18em;
    }

    .about-title {
        font-size: clamp(31px, 8.8vw, 39px);
        line-height: 1;
    }

    .about-copy {
        font-size: 14px;
        line-height: 1.62;
    }

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

    .about-hero__media {
        background:
            linear-gradient(
                180deg,
                rgba(3, 9, 34, 0.82) 0%,
                rgba(4, 11, 40, 0.87) 52%,
                rgba(4, 11, 40, 0.98) 100%
            ),
            url("../../images/about/about-hero.webp")
            58% center / cover no-repeat;
    }

    .about-hero__inner {
        min-height: 0;
        padding: 50px 0 52px;
    }

    .about-hero__title {
        margin-bottom: 16px;
        max-width: 100%;
        font-size: clamp(36px, 10.2vw, 45px);
        line-height: 0.98;
    }

    .about-hero__description {
        font-size: 14px;
        line-height: 1.62;
    }

    .about-story__grid,
    .about-noticing__grid,
    .about-leadership__grid,
    .about-model__grid {
        gap: 27px;
    }

    .about-timeline {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .about-timeline article {
        min-height: 0;
        padding: 18px 0;
        display: grid;
        grid-template-columns: 88px 1fr;
        align-items: center;
        border-right: 0;
        border-bottom: 1px solid var(--wtg-border);
    }

    .about-timeline article:last-child {
        border-bottom: 0;
    }

    .about-timeline strong {
        margin: 0;
        font-size: 32px;
    }

    .about-image-panel,
    .about-model__image {
        min-height: 240px;
    }

    .about-noticing blockquote {
        margin-top: 20px;
        font-size: 20px;
    }

    .about-structure__title {
        margin-bottom: 26px;
    }

    .about-practices {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-practice-card,
    .about-practice-card:last-child {
        grid-column: auto;
        min-height: 0;
        padding: 21px 19px;
    }

    .about-practice-card h3 {
        font-size: 23px;
    }

    .about-practice-card p {
        font-size: 14px;
        line-height: 1.58;
    }

    .about-founder-card {
        min-height: 0;
        padding: 25px 22px;
    }

    .about-founder-card__label {
        margin-bottom: 25px;
    }

    .about-founder-card__photo {
        height: 230px;
        margin: -25px -22px 22px;
    }

    .about-model__content .button,
    .about-model__content .button {
        width: 100%;
    }

    .about-cta {
        padding: 48px 0;
    }

    .about-cta__inner {
        gap: 24px;
    }

    .about-cta h2 {
        font-size: clamp(31px, 8.8vw, 39px);
        line-height: 1;
    }

    .about-cta__action,
    .about-cta__action .button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .about-hero__inner {
        padding-top: 44px;
        padding-bottom: 46px;
    }

    .about-hero__title {
        font-size: 35px;
    }

    .about-title,
    .about-cta h2 {
        font-size: 31px;
    }

    .about-image-panel,
    .about-model__image {
        min-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-image-panel img,
    .about-model__image img {
        transform: none !important;
    }
}

@media (max-width: 420px) {
    .about-founder-card__photo {
        height: 205px;
    }
}
