/**
 * Infrastructure page — storytelling layer (after hero, before CTA).
 * Requires .page-infrastructure; load after infrastructure-lean.css.
 */

/* —— Hero → content bridge —— */
.page-infrastructure .infra-hero-bridge {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0 1rem 0.65rem;
    margin-top: -1px;
    pointer-events: none;
}

.page-infrastructure .infra-hero-bridge__gradient {
    position: absolute;
    left: 0;
    right: 0;
    top: -2.5rem;
    height: calc(2.5rem + 100%);
    background: linear-gradient(
        180deg,
        rgba(4, 22, 28, 0) 0%,
        rgba(240, 250, 252, 0.35) 28%,
        rgba(247, 251, 252, 0.92) 62%,
        var(--color-bg, #f7fbfc) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.page-infrastructure .infra-hero-bridge__divider {
    position: relative;
    z-index: 1;
    width: min(12rem, 42vw);
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--rgb-teal-bright), 0.35),
        rgba(var(--rgb-green), 0.45),
        rgba(var(--rgb-teal-bright), 0.35),
        transparent
    );
    opacity: 0.85;
    pointer-events: none;
}

.page-infrastructure .infra-hero-bridge__scroll {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-top: 0.15rem;
    padding: 0.35rem 0.75rem;
    color: rgba(6, 58, 66, 0.55);
    text-decoration: none;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    pointer-events: auto;
    transition: color 0.3s ease, transform 0.3s ease;
}

.page-infrastructure .infra-hero-bridge__scroll:hover,
.page-infrastructure .infra-hero-bridge__scroll:focus-visible {
    color: rgba(var(--rgb-teal-deep), 0.95);
    transform: translateY(2px);
}

.page-infrastructure .infra-hero-bridge__scroll:focus-visible {
    outline: 2px solid rgba(var(--rgb-teal-bright), 0.5);
    outline-offset: 4px;
    border-radius: 8px;
}

.page-infrastructure .infra-hero-bridge__arrow {
    color: rgba(var(--rgb-teal-deep), 0.65);
    animation: infra-story-scroll-bob 2.2s ease-in-out infinite;
}

@keyframes infra-story-scroll-bob {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.75;
    }
    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-infrastructure .infra-hero-bridge__arrow {
        animation: none;
    }
}

/* —— Dual expertise —— */
.page-infrastructure .infra-dual-expertise {
    position: relative;
    padding-top: 0;
}

.page-infrastructure .infra-dual__grid {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.35rem);
    margin-top: clamp(1.15rem, 3vw, 1.65rem);
}

@media (min-width: 900px) {
    .page-infrastructure .infra-dual__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(1.5rem, 3vw, 2rem);
    }
}

.page-infrastructure .infra-dual__panel {
    position: relative;
    overflow: hidden;
    border-radius: clamp(18px, 2.5vw, 24px);
    padding: clamp(1.35rem, 3vw, 2rem);
    min-height: min(17rem, 40vh);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(var(--rgb-teal-deep), 0.12);
    box-shadow:
        0 20px 56px rgba(var(--rgb-brand-ink), 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    opacity: 0;
    transform: translateY(28px);
}

.page-infrastructure .infra-dual__panel[data-infra-dual="left"].is-revealed {
    animation: infra-dual-in-left 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-infrastructure .infra-dual__panel[data-infra-dual="right"].is-revealed {
    animation: infra-dual-in-right 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes infra-dual-in-left {
    from {
        opacity: 0;
        transform: translateX(-36px) translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes infra-dual-in-right {
    from {
        opacity: 0;
        transform: translateX(36px) translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.page-infrastructure .infra-dual__panel--civil {
    background: linear-gradient(165deg, #f2fbfc 0%, #e8f6f8 45%, #dff0f3 100%);
}

.page-infrastructure .infra-dual__panel--arch {
    background: linear-gradient(165deg, #faf8ff 0%, #f0f2fb 48%, #e8ecf8 100%);
}

.page-infrastructure .infra-dual__texture {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0v60H0' fill='none' stroke='%23063a42' stroke-opacity='0.06' stroke-width='0.8'/%3E%3C/svg%3E");
    pointer-events: none;
}

.page-infrastructure .infra-dual__texture--arch {
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='36' cy='36' r='28' fill='none' stroke='%23581c87' stroke-opacity='0.05'/%3E%3C/svg%3E");
}

.page-infrastructure .infra-dual__blueprint {
    position: absolute;
    right: -8%;
    top: 8%;
    width: 55%;
    max-width: 220px;
    height: auto;
    opacity: 0.55;
    pointer-events: none;
}

.page-infrastructure .infra-dual__content {
    position: relative;
    z-index: 1;
}

.page-infrastructure .infra-dual__kicker {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(var(--rgb-teal-deep), 0.75);
}

.page-infrastructure .infra-dual__panel--arch .infra-dual__kicker {
    color: rgba(88, 28, 135, 0.75);
}

.page-infrastructure .infra-dual__title {
    margin: 0 0 0.85rem;
    font-family: var(--font-display, "Poppins", sans-serif);
    font-size: clamp(1.45rem, 2.2vw + 0.9rem, 2rem);
    font-weight: 800;
    line-height: 1.18;
    color: #042a30;
}

.page-infrastructure .infra-dual__text {
    margin: 0 0 1rem;
    font-size: 0.98rem;
    line-height: 1.68;
    color: rgba(15, 56, 62, 0.78);
    max-width: 36rem;
}

.page-infrastructure .infra-dual__bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.page-infrastructure .infra-dual__bullets li {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(var(--rgb-teal-deep), 0.12);
    color: rgba(6, 58, 66, 0.88);
}

.page-infrastructure .infra-dual__panel--arch .infra-dual__bullets li {
    border-color: rgba(88, 28, 135, 0.12);
}

@media (hover: hover) and (pointer: fine) {
    .page-infrastructure .infra-dual__panel:hover {
        transform: translateY(-6px);
        box-shadow:
            0 28px 72px rgba(var(--rgb-brand-ink), 0.12),
            0 0 0 1px rgba(255, 255, 255, 0.75) inset,
            0 0 48px rgba(var(--rgb-teal-bright), 0.12);
        border-color: rgba(var(--rgb-teal-bright), 0.28);
    }

    .page-infrastructure .infra-dual__panel--arch:hover {
        box-shadow:
            0 28px 72px rgba(45, 20, 80, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.75) inset,
            0 0 52px rgba(88, 28, 135, 0.12);
        border-color: rgba(88, 28, 135, 0.22);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-infrastructure .infra-dual__panel {
        opacity: 1;
        transform: none;
        animation: none !important;
    }
}

/* —— Glass utility —— */
.page-infrastructure .infra-story-glass {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.85);
}

/* —— Approach timeline —— */
.page-infrastructure .infra-approach__lede {
    margin: 0.5rem 0 0;
    max-width: 40rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(15, 56, 62, 0.72);
}

.page-infrastructure .infra-approach-timeline {
    position: relative;
    margin-top: clamp(1.1rem, 3vw, 1.65rem);
    padding-top: 0.25rem;
}

.page-infrastructure .infra-approach-timeline__track {
    display: none;
}

@media (min-width: 900px) {
    .page-infrastructure .infra-approach-timeline__track {
        display: block;
        position: absolute;
        left: 4%;
        right: 4%;
        top: 2.25rem;
        height: 4px;
        border-radius: 4px;
        z-index: 0;
        overflow: hidden;
    }

    .page-infrastructure .infra-approach-timeline__track-bg {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            rgba(var(--rgb-teal-deep), 0.08),
            rgba(var(--rgb-teal-deep), 0.14),
            rgba(var(--rgb-teal-deep), 0.08)
        );
    }

    .page-infrastructure .infra-approach-timeline__track-fill {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0%;
        max-width: 100%;
        border-radius: inherit;
        background: linear-gradient(
            90deg,
            rgba(var(--rgb-teal-bright), 0.5),
            rgba(var(--rgb-green), 0.55),
            rgba(var(--rgb-teal-bright), 0.45)
        );
        box-shadow: 0 0 20px rgba(var(--rgb-teal-bright), 0.35);
        transition: width 0.12s linear;
    }
}

.page-infrastructure .infra-approach-timeline__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(1.15rem, 2.5vw, 1.5rem);
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .page-infrastructure .infra-approach-timeline__steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(0.75rem, 1.5vw, 1.25rem);
    }
}

.page-infrastructure .infra-approach-step__card {
    position: relative;
    height: 100%;
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    border-radius: clamp(16px, 2vw, 20px);
    box-shadow: 0 12px 40px rgba(var(--rgb-teal-deep), 0.08);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
}

.page-infrastructure .infra-approach-step.is-active .infra-approach-step__card {
    box-shadow:
        0 18px 48px rgba(var(--rgb-teal-deep), 0.12),
        0 0 0 1px rgba(var(--rgb-teal-bright), 0.2);
}

.page-infrastructure .infra-approach-step__icon {
    margin-bottom: 0.65rem;
}

.page-infrastructure .infra-approach-step__num {
    display: block;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(var(--rgb-teal-deep), 0.45);
    margin-bottom: 0.35rem;
}

.page-infrastructure .infra-approach-step__title {
    margin: 0 0 0.4rem;
    font-family: var(--font-display, "Poppins", sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    color: #063a42;
}

.page-infrastructure .infra-approach-step__desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.58;
    color: rgba(15, 56, 62, 0.68);
}

@media (hover: hover) and (pointer: fine) {
    .page-infrastructure .infra-approach-step__card:hover {
        transform: translateY(-6px);
    }
}

/* —— Services band (story polish) —— */
.page-infrastructure.infra-page--story .infra-services--story {
    position: relative;
}

.page-infrastructure.infra-page--story .infra-services--story::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(var(--rgb-teal-bright), 0.06), transparent 55%);
    pointer-events: none;
}

.page-infrastructure .infra-projects__lede {
    margin: 0.4rem 0 0;
    max-width: 42rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(15, 56, 62, 0.68);
}

/* —— Project grid (story cards) —— */
.page-infrastructure .infra-projects--story .infra-projects__grid--story {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.5vw, 1.35rem);
}

@media (min-width: 640px) {
    .page-infrastructure .infra-projects--story .infra-projects__grid--story {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .page-infrastructure .infra-projects--story .infra-projects__grid--story {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.page-infrastructure .infra-project-card--story {
    border-radius: clamp(16px, 2vw, 20px);
    overflow: hidden;
    list-style: none;
    margin: 0;
    background: #0a1214;
    box-shadow:
        0 12px 40px rgba(var(--rgb-brand-ink), 0.12),
        0 0 0 1px rgba(var(--rgb-teal-deep), 0.08);
    opacity: 0;
    transform: translateY(24px);
}

.page-infrastructure .infra-projects__grid--story.is-inview .infra-project-card--story {
    animation: infra-story-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--infra-proj-delay, 0.05s);
}

@keyframes infra-story-card-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-infrastructure .infra-project-card--story .infra-project-card__link {
    position: relative;
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
}

.page-infrastructure .infra-project-card--story .infra-project-card__media {
    aspect-ratio: 4 / 3;
}

.page-infrastructure .infra-project-card--story .infra-project-card__img {
    transform: scale(1);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-infrastructure .infra-project-card--story .infra-project-card__overlay {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 35%,
        rgba(0, 0, 0, 0.88) 100%
    );
    transition: opacity 0.35s ease, background 0.35s ease;
}

.page-infrastructure .infra-project-card--story .infra-project-card__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: clamp(1.1rem, 3vw, 1.5rem);
}

.page-infrastructure .infra-project-card--story .infra-project-card__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.page-infrastructure .infra-project-card--story .infra-project-card__title {
    font-size: clamp(1.05rem, 1.1vw + 0.9rem, 1.2rem);
    order: 0;
}

.page-infrastructure .infra-project-card--story .infra-project-card__excerpt {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-infrastructure .infra-project-card--story .infra-project-card__cta {
    margin-top: 0.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    transition: transform 0.3s ease;
}

.page-infrastructure .infra-project-card--story .infra-project-card__cta span:first-child {
    position: relative;
}

.page-infrastructure .infra-project-card--story .infra-project-card__cta span:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: rgba(var(--rgb-teal-bright), 0.85);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
    .page-infrastructure .infra-project-card--story:hover .infra-project-card__img {
        transform: scale(1.05);
    }

    .page-infrastructure .infra-project-card--story:hover .infra-project-card__overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.5) 45%,
            rgba(0, 0, 0, 0.92) 100%
        );
    }

    .page-infrastructure .infra-project-card--story:hover .infra-project-card__copy {
        transform: translateY(-4px);
    }

    .page-infrastructure .infra-project-card--story:hover .infra-project-card__cta span:first-child::after {
        transform: scaleX(1);
    }

    .page-infrastructure .infra-project-card--story:hover {
        box-shadow:
            0 22px 56px rgba(var(--rgb-brand-ink), 0.2),
            0 0 0 1px rgba(var(--rgb-teal-bright), 0.15),
            0 0 40px rgba(var(--rgb-teal-bright), 0.12);
    }
}

.page-infrastructure .infra-project-card--story .infra-project-card__copy {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
    .page-infrastructure .infra-project-card--story {
        opacity: 1;
        transform: none;
        animation: none !important;
    }
}

/* —— Pagination —— */
.page-infrastructure .infra-projects-pagination {
    margin-top: clamp(1.25rem, 3vw, 1.75rem);
    display: flex;
    justify-content: center;
}

.page-infrastructure .infra-projects-pagination__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.page-infrastructure .infra-projects-pagination__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(6, 58, 66, 0.75);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(var(--rgb-teal-deep), 0.14);
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.3s ease;
}

.page-infrastructure .infra-projects-pagination__pill:hover {
    color: rgba(var(--rgb-teal-deep), 1);
    border-color: rgba(var(--rgb-teal-bright), 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--rgb-teal-deep), 0.1);
}

.page-infrastructure .infra-projects-pagination__pill.is-active {
    color: #fff;
    background: linear-gradient(135deg, rgba(var(--rgb-teal-deep), 0.95), rgba(var(--rgb-brand-ink), 0.92));
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(var(--rgb-brand-ink), 0.25);
    cursor: default;
}

/* —— Section headings: numbered labels + staggered line reveal —— */
.page-infrastructure .js-infra-reveal.infra-section-head {
    opacity: 1;
    transform: none;
    transition: none;
}

.page-infrastructure .infra-section-head .infra-head-line {
    opacity: 0;
    transform: translate3d(0, 1.15rem, 0);
    transition: none;
}

.page-infrastructure .infra-section-head.is-revealed .infra-head-line {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-infrastructure .infra-section-head.is-revealed .infra-head-line:nth-child(1) {
    transition-delay: 0.04s;
}

.page-infrastructure .infra-section-head.is-revealed .infra-head-line:nth-child(2) {
    transition-delay: 0.12s;
}

.page-infrastructure .infra-section-head.is-revealed .infra-head-line:nth-child(3) {
    transition-delay: 0.22s;
}

.page-infrastructure .infra-section-head.is-revealed .infra-head-line:nth-child(4) {
    transition-delay: 0.32s;
}

.page-infrastructure .infra-section-head.is-revealed .infra-head-line:nth-child(5) {
    transition-delay: 0.4s;
}

.page-infrastructure .infra-section-head .section__eyebrow.infra-head-line {
    color: rgba(var(--rgb-teal-deep), 0.88);
    font-weight: 700;
    letter-spacing: 0.12em;
}

@media (prefers-reduced-motion: reduce) {
    .page-infrastructure .infra-section-head .infra-head-line {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Staggered children (e.g. impact stats) */
.page-infrastructure .infra-reveal-stagger-children.js-infra-reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.page-infrastructure .infra-reveal-stagger-children .infra-impact-stat {
    opacity: 0;
    transform: translate3d(0, 1rem, 0);
    transition: none;
}

.page-infrastructure .infra-reveal-stagger-children.is-revealed .infra-impact-stat {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-infrastructure .infra-reveal-stagger-children.is-revealed .infra-impact-stat:nth-child(1) {
    transition-delay: 0.1s;
}

.page-infrastructure .infra-reveal-stagger-children.is-revealed .infra-impact-stat:nth-child(2) {
    transition-delay: 0.2s;
}

.page-infrastructure .infra-reveal-stagger-children.is-revealed .infra-impact-stat:nth-child(3) {
    transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .page-infrastructure .infra-reveal-stagger-children .infra-impact-stat {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* —— Impact strip —— */
.page-infrastructure .infra-impact-strip {
    position: relative;
    padding: clamp(2rem, 5vw, 2.85rem) 0;
    overflow: hidden;
}

.page-infrastructure .infra-impact-strip__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(var(--rgb-brand-ink), 0.94) 0%,
        rgba(var(--rgb-teal-deep), 0.88) 42%,
        rgba(8, 45, 52, 0.92) 100%
    );
    z-index: 0;
}

.page-infrastructure .infra-impact-strip__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 80% 20%, rgba(var(--rgb-teal-bright), 0.18), transparent 55%);
    opacity: 0.9;
}

.page-infrastructure .infra-impact-strip__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-infrastructure .infra-impact-strip__head {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.page-infrastructure .infra-impact-strip__eyebrow {
    color: rgba(158, 229, 200, 0.95) !important;
    margin-bottom: 0.45rem !important;
}

.page-infrastructure .infra-impact-strip__head .infra-impact-strip__headline {
    margin: 0.2rem 0 0;
}

.page-infrastructure .infra-impact-strip__head .infra-impact-strip__sub {
    margin: 0.75rem auto 0;
}

.page-infrastructure .infra-impact-strip__headline {
    margin: 0;
    font-family: var(--font-display, "Poppins", sans-serif);
    font-size: clamp(1.5rem, 2.5vw + 1rem, 2.35rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.25);
}

.page-infrastructure .infra-impact-strip__sub {
    margin: 0.85rem auto 0;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.page-infrastructure .infra-impact-strip__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.85rem, 2vw, 1.15rem);
    margin-top: clamp(1rem, 3vw, 1.5rem);
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .page-infrastructure .infra-impact-strip__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.page-infrastructure .infra-impact-stat {
    padding: clamp(1.25rem, 3vw, 1.5rem);
    border-radius: clamp(14px, 2vw, 18px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.page-infrastructure .infra-impact-stat__value {
    display: block;
    font-family: var(--font-display, "Poppins", sans-serif);
    font-size: clamp(2rem, 4vw + 1rem, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.page-infrastructure .infra-impact-stat__label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(158, 229, 200, 0.92);
}

/* —— Project detail page —— */
.page-project .infra-project-detail {
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
    padding-bottom: clamp(3rem, 8vw, 4rem);
}

.page-project .infra-project-detail__crumb {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    color: rgba(15, 56, 62, 0.55);
}

.page-project .infra-project-detail__crumb a {
    color: rgba(var(--rgb-teal-deep), 0.9);
    text-decoration: none;
    font-weight: 600;
}

.page-project .infra-project-detail__crumb a:hover {
    text-decoration: underline;
}

.page-project .infra-project-detail__header .section__eyebrow {
    margin-bottom: 0.35rem;
}

.page-project .infra-project-detail__title {
    margin: 0;
    font-family: var(--font-display, "Poppins", sans-serif);
    font-size: clamp(1.65rem, 2.5vw + 1rem, 2.35rem);
    font-weight: 800;
    color: #042a30;
    line-height: 1.15;
}

.page-project .infra-project-detail__hero {
    margin-top: clamp(1.5rem, 4vw, 2rem);
    border-radius: clamp(16px, 2vw, 22px);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(var(--rgb-brand-ink), 0.12);
    aspect-ratio: 16 / 9;
    max-height: min(70vh, 520px);
}

.page-project .infra-project-detail__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-project .infra-project-detail__body {
    margin-top: clamp(1.75rem, 4vw, 2.25rem);
    max-width: 44rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(15, 56, 62, 0.88);
}

.page-project .infra-project-detail__body p {
    margin: 0 0 1rem;
}

.page-project .infra-project-detail__back {
    margin-top: clamp(2rem, 5vw, 2.75rem);
}

.page-project .text-content a {
    color: rgba(var(--rgb-teal-deep), 0.95);
}

/* —— Ripple target (JS adds span) —— */
.page-infrastructure .infra-story-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transform: scale(0);
    animation: infra-story-ripple 0.55s ease-out forwards;
    pointer-events: none;
}

@keyframes infra-story-ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-infrastructure .infra-story-ripple {
        animation: none;
        opacity: 0;
    }
}
