.tx-page {
    --tx-cream: #f6f1e7;
    --tx-paper: #e8dfd0;
    --tx-ink: #090b0d;
    --tx-panel: #111519;
    --tx-panel-soft: #171c21;
    --tx-gold: #eab54f;
    --tx-red: #c5121d;
    --tx-line: rgba(246, 241, 231, .14);
    overflow: hidden;
    color: var(--tx-cream);
    background: var(--tx-ink);
}

.tx-section-nav {
    position: relative;
    z-index: 45;
    border-bottom: 1px solid var(--tx-line);
    background: rgba(9, 11, 13, .94);
    backdrop-filter: blur(16px);
}

.tx-section-nav-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 54px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tx-section-nav-inner::-webkit-scrollbar {
    display: none;
}

.tx-section-nav a {
    flex: 0 0 auto;
    padding: 9px 12px;
    border-radius: 999px;
    color: rgba(246, 241, 231, .72);
    font-family: "Poppins", sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
}

.tx-section-nav a:hover,
.tx-section-nav a:focus-visible,
.tx-section-nav a[aria-current="page"] {
    color: var(--tx-cream);
    background: rgba(234, 181, 79, .14);
}

.tx-hero {
    position: relative;
    min-height: clamp(640px, 77vh, 820px);
    display: flex;
    align-items: stretch;
    isolation: isolate;
    background-image:
        linear-gradient(90deg, rgba(5, 7, 9, .98) 0%, rgba(5, 7, 9, .88) 32%, rgba(5, 7, 9, .38) 67%, rgba(5, 7, 9, .12) 100%),
        linear-gradient(0deg, rgba(5, 7, 9, .96) 0%, transparent 42%),
        var(--tx-hero-image);
    background-position: center;
    background-size: cover;
}

.tx-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(115deg, transparent 0 52%, rgba(234, 181, 79, .08) 52.1% 52.3%, transparent 52.4%),
        radial-gradient(circle at 82% 30%, rgba(234, 181, 79, .13), transparent 32%);
    pointer-events: none;
}

.tx-metro-hero {
    min-height: clamp(690px, 82vh, 890px);
}

.tx-metro-hero .tx-hero-copy {
    max-width: 880px;
}

.tx-hero-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(90px, 13vh, 150px) 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 72px;
}

.tx-hero-copy {
    max-width: 790px;
}

.tx-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: rgba(246, 241, 231, .58);
    font-family: "Poppins", sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tx-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.tx-breadcrumb a:hover,
.tx-breadcrumb a:focus-visible {
    color: var(--tx-gold);
}

.tx-eyebrow {
    margin-bottom: 18px;
    color: var(--tx-gold);
    font-family: "Poppins", sans-serif;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.tx-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #fffaf0;
    font-size: clamp(3.15rem, 7.2vw, 6.8rem);
    line-height: .94;
}

.tx-hero-copy > p {
    max-width: 720px;
    margin: 27px 0 0;
    color: rgba(246, 241, 231, .82);
    font-size: clamp(1.02rem, 1.7vw, 1.3rem);
    line-height: 1.72;
}

.tx-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.tx-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border: 1px solid rgba(246, 241, 231, .28);
    border-radius: 999px;
    color: var(--tx-cream);
    font-family: "Poppins", sans-serif;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.tx-button::after {
    content: "→";
}

.tx-button:hover,
.tx-button:focus-visible {
    border-color: var(--tx-gold);
    color: var(--tx-cream);
    transform: translateY(-2px);
}

.tx-button-primary {
    border-color: var(--tx-red);
    background: var(--tx-red);
}

.tx-button-primary:hover,
.tx-button-primary:focus-visible {
    border-color: #e2363f;
    background: #e2363f;
}

.tx-hero-route {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 22px 24px;
    border: 1px solid rgba(246, 241, 231, .2);
    border-radius: 18px;
    background: rgba(10, 13, 16, .76);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
}

.tx-hero-route strong {
    display: block;
    margin-bottom: 4px;
    color: var(--tx-cream);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
}

.tx-hero-route p {
    margin: 0;
    color: rgba(246, 241, 231, .66);
    line-height: 1.55;
}

.tx-section {
    padding: clamp(82px, 10vw, 132px) 0;
}

.tx-section-alt {
    border-top: 1px solid var(--tx-line);
    border-bottom: 1px solid var(--tx-line);
    background:
        radial-gradient(circle at 88% 18%, rgba(234, 181, 79, .08), transparent 28%),
        var(--tx-panel);
}

.tx-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.tx-section-heading {
    max-width: 790px;
    margin-bottom: 46px;
}

.tx-section-heading h2,
.tx-feature-copy h2,
.tx-cta h2 {
    margin: 0;
    color: var(--tx-cream);
    font-size: clamp(2.2rem, 4.8vw, 4.5rem);
    line-height: 1.02;
}

.tx-section-heading p,
.tx-feature-copy > p {
    max-width: 700px;
    margin: 20px 0 0;
    color: rgba(246, 241, 231, .68);
    font-size: 1.05rem;
    line-height: 1.76;
}

.tx-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--tx-line);
}

.tx-principle {
    padding: 32px 28px 0 0;
}

.tx-principle + .tx-principle {
    padding-left: 28px;
    border-left: 1px solid var(--tx-line);
}

.tx-principle span {
    display: block;
    margin-bottom: 34px;
    color: var(--tx-gold);
    font-family: "Poppins", sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.tx-principle h3 {
    margin: 0 0 12px;
    color: var(--tx-cream);
    font-size: 1.35rem;
}

.tx-principle p {
    margin: 0;
    color: rgba(246, 241, 231, .62);
    line-height: 1.68;
}

.tx-card-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.tx-image-card {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    grid-column: span 6;
    padding: 30px;
    border: 1px solid var(--tx-line);
    border-radius: 20px;
    isolation: isolate;
    color: var(--tx-cream);
    background-image:
        linear-gradient(0deg, rgba(5, 7, 9, .96) 0%, rgba(5, 7, 9, .45) 63%, rgba(5, 7, 9, .05) 100%),
        var(--tx-card-image);
    background-position: center;
    background-size: cover;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease;
}

.tx-image-card.tx-card-third {
    min-height: 350px;
    grid-column: span 4;
}

.tx-image-card::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(115deg, rgba(197, 18, 29, .24), transparent 42%);
    opacity: 0;
    transition: opacity .2s ease;
}

.tx-image-card:hover,
.tx-image-card:focus-visible {
    border-color: rgba(234, 181, 79, .72);
    color: var(--tx-cream);
    transform: translateY(-4px);
}

.tx-image-card:hover::after,
.tx-image-card:focus-visible::after {
    opacity: 1;
}

.tx-card-number {
    display: block;
    margin-bottom: 50px;
    color: var(--tx-gold);
    font-family: "Poppins", sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.tx-image-card h3 {
    max-width: 540px;
    margin: 0 0 10px;
    color: var(--tx-cream);
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
    line-height: 1.08;
}

.tx-image-card p {
    max-width: 560px;
    margin: 0;
    color: rgba(246, 241, 231, .72);
    line-height: 1.6;
}

.tx-link-line {
    display: inline-flex;
    gap: 10px;
    margin-top: 20px;
    color: var(--tx-gold);
    font-family: "Poppins", sans-serif;
    font-size: .76rem;
    font-weight: 800;
}

.tx-link-line::after {
    content: "→";
}

.tx-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(48px, 8vw, 110px);
    align-items: start;
}

.tx-feature-copy {
    position: sticky;
    top: 95px;
}

.tx-work-list {
    display: grid;
    gap: 1px;
    border-top: 1px solid var(--tx-line);
    background: var(--tx-line);
}

.tx-work-item {
    padding: 28px 0;
    background: var(--tx-ink);
}

.tx-section-alt .tx-work-item {
    background: var(--tx-panel);
}

.tx-work-item span {
    display: block;
    margin-bottom: 9px;
    color: var(--tx-gold);
    font-family: "Poppins", sans-serif;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.tx-work-item h3 {
    margin: 0 0 9px;
    color: var(--tx-cream);
    font-size: 1.3rem;
}

.tx-work-item p {
    margin: 0;
    color: rgba(246, 241, 231, .64);
    line-height: 1.68;
}

.tx-metro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tx-metro-card {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--tx-line);
    border-radius: 20px;
    color: var(--tx-cream);
    background-image:
        linear-gradient(0deg, rgba(5, 7, 9, .97), rgba(5, 7, 9, .18) 70%),
        var(--tx-card-image);
    background-position: center;
    background-size: cover;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease;
}

.tx-metro-card:hover,
.tx-metro-card:focus-visible {
    border-color: rgba(234, 181, 79, .75);
    color: var(--tx-cream);
    transform: translateY(-4px);
}

.tx-metro-card h2,
.tx-metro-card h3 {
    margin: 0 0 9px;
    color: var(--tx-cream);
    font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.tx-metro-card p {
    max-width: 570px;
    margin: 0;
    color: rgba(246, 241, 231, .72);
    line-height: 1.62;
}

.tx-location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 19px;
}

.tx-location-list span,
.tx-location-list a {
    padding: 7px 10px;
    border: 1px solid rgba(246, 241, 231, .22);
    border-radius: 999px;
    color: rgba(246, 241, 231, .74);
    font-family: "Poppins", sans-serif;
    font-size: .68rem;
    font-weight: 700;
    text-decoration: none;
}

.tx-research-note {
    margin: 28px 0 0;
    color: rgba(246, 241, 231, .54);
    font-size: .82rem;
}

.tx-research-note a {
    color: var(--tx-gold);
}

.tx-community-panel {
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid var(--tx-line);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(234, 181, 79, .1), transparent 46%),
        var(--tx-panel);
}

.tx-community-label {
    color: var(--tx-gold);
    font-family: "Poppins", sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.tx-location-list-large {
    margin-top: 24px;
    gap: 12px;
}

.tx-location-list-large span {
    padding: 11px 15px;
    font-size: .76rem;
}

.tx-community-panel > p {
    margin: 28px 0 0;
    color: rgba(246, 241, 231, .58);
    line-height: 1.65;
}

.tx-quote {
    padding: clamp(34px, 6vw, 64px);
    border-left: 4px solid var(--tx-red);
    border-radius: 0 20px 20px 0;
    background: var(--tx-panel-soft);
}

.tx-quote p {
    max-width: 900px;
    margin: 0;
    color: var(--tx-cream);
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.45rem, 3.1vw, 2.65rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.03em;
}

.tx-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(55px, 8vw, 90px);
    border: 1px solid var(--tx-line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 88% 15%, rgba(234, 181, 79, .18), transparent 28%),
        linear-gradient(120deg, rgba(197, 18, 29, .22), transparent 44%),
        var(--tx-panel);
}

.tx-cta p {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(246, 241, 231, .68);
    font-size: 1.05rem;
    line-height: 1.72;
}

@media (max-width: 991.98px) {
    .tx-hero {
        background-position: 62% center;
    }

    .tx-principles,
    .tx-feature-grid,
    .tx-metro-grid {
        grid-template-columns: 1fr;
    }

    .tx-feature-copy {
        position: static;
    }

    .tx-image-card,
    .tx-image-card.tx-card-third {
        min-height: 360px;
        grid-column: span 6;
    }

    .tx-principle,
    .tx-principle + .tx-principle {
        padding: 28px 0;
        border-left: 0;
        border-bottom: 1px solid var(--tx-line);
    }

    .tx-principle span {
        margin-bottom: 16px;
    }
}

@media (max-width: 720px) {
    .tx-section-nav-inner,
    .tx-hero-inner,
    .tx-container {
        width: calc(100% - 28px);
    }

    .tx-hero {
        min-height: 720px;
        background-position: 70% center;
        background-image:
            linear-gradient(90deg, rgba(5, 7, 9, .96), rgba(5, 7, 9, .6)),
            linear-gradient(0deg, rgba(5, 7, 9, .98), transparent 55%),
            var(--tx-hero-image);
    }

    .tx-hero-inner {
        padding-top: 72px;
    }

    .tx-hero h1 {
        font-size: clamp(3rem, 15vw, 4.7rem);
    }

    .tx-hero-route {
        grid-template-columns: 1fr;
    }

    .tx-hero-route .tx-button,
    .tx-actions .tx-button {
        width: 100%;
    }

    .tx-card-grid {
        grid-template-columns: 1fr;
    }

    .tx-image-card,
    .tx-image-card.tx-card-third {
        min-height: 380px;
        grid-column: auto;
        padding: 24px;
    }

    .tx-metro-card {
        min-height: 420px;
        padding: 24px;
    }

    .tx-cta {
        padding: 42px 26px;
    }
}
