:root {
    --orange: #f76900;
    --orange-dark: #c84f00;
    --ink: #08111f;
    --ink-2: #101c2d;
    --paper: #f8f3ea;
    --blue: #153b67;
    --canal: #d7e4df;
    --salt: #fff8ed;
    --muted: #6f7a86;
    --line: rgba(8, 17, 31, 0.14);
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(21, 59, 103, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, var(--paper), #fffaf2 52%, #f1eee8);
    background-size: 72px 72px, auto;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 56px);
    background: rgba(248, 243, 234, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.site-nav::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 4px;
    content: "";
    background: repeating-linear-gradient(90deg, var(--orange) 0 72px, var(--blue) 72px 144px, var(--ink) 144px 216px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand span span {
    color: var(--orange);
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 7px;
    box-shadow: 5px 5px 0 var(--ink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 3vw, 30px);
    color: #344255;
    font-size: 0.92rem;
    font-weight: 700;
}

.nav-links a:hover,
.article-links a:hover {
    color: var(--orange-dark);
}

.nav-pill {
    padding: 9px 14px;
    color: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    content: "";
    background:
        radial-gradient(circle at 84% 22%, rgba(247, 105, 0, 0.28), transparent 24%),
        linear-gradient(180deg, transparent 78%, rgba(248, 243, 234, 1));
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.56;
    filter: grayscale(0.25) sepia(0.1);
}

.hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.96), rgba(8, 17, 31, 0.72) 46%, rgba(8, 17, 31, 0.25)),
        linear-gradient(180deg, rgba(247, 105, 0, 0.18), rgba(8, 17, 31, 0.75));
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.58fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: end;
    max-width: 1180px;
    min-height: 690px;
    margin: 0 auto;
    padding: 88px clamp(20px, 5vw, 56px) 58px;
}

.hero-copy,
.hero-panel,
.project-copy,
.article-card > div,
.method-copy,
.method-grid {
    min-width: 0;
}

.eyebrow,
.card-kicker {
    margin: 0 0 12px;
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.project-card h3,
.article-card h3 {
    margin: 0;
    font-family: "Space Grotesk", Inter, sans-serif;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(3.2rem, 8vw, 7.7rem);
    line-height: 0.88;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.hero-lede {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 7px;
    font-weight: 900;
}

.button.primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.18);
}

.button.secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.48);
}

.hero-credit {
    max-width: 520px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
}

.hero-panel {
    display: grid;
    gap: 14px;
}

.signal-card,
.mini-grid > div {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(16px);
}

.signal-card {
    padding: 24px;
    border-radius: 8px;
    box-shadow: 10px 10px 0 rgba(247, 105, 0, 0.24);
}

.signal-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 9px;
    color: var(--ink);
    background: var(--paper);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.signal-card strong {
    display: block;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.65rem;
    line-height: 1.05;
}

.signal-card p,
.mini-grid p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mini-grid > div {
    padding: 18px;
    border-radius: 8px;
}

.mini-grid span {
    font-family: "Space Grotesk", Inter, sans-serif;
    color: var(--orange);
    font-size: 2rem;
    font-weight: 700;
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 88px clamp(20px, 5vw, 56px);
}

.city-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1180px;
    margin: -42px auto 0;
    padding: 0 clamp(20px, 5vw, 56px);
}

.city-strip > div {
    min-height: 112px;
    padding: 20px;
    color: var(--white);
    background: var(--ink);
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.city-strip > div:nth-child(2) {
    background: var(--blue);
}

.city-strip > div:nth-child(3) {
    background: var(--orange-dark);
}

.city-strip > div:nth-child(4) {
    background: #263a34;
    border-right: 0;
}

.city-strip span {
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.city-strip strong {
    display: block;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.05;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.45fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 34px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--ink);
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -18px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 0.98;
    text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
    margin: 0;
    color: #4c5968;
    line-height: 1.6;
}

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

.project-card,
.article-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(8, 17, 31, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-card:focus-visible,
.article-card:focus-visible,
.button:focus-visible,
.nav-links a:focus-visible,
.footer-links a:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
}

.project-card:hover,
.article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 105, 0, 0.48);
    box-shadow: 0 24px 58px rgba(8, 17, 31, 0.14);
}

.feature-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.wide-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.project-image {
    position: relative;
    min-height: 220px;
    background: var(--ink-2);
}

.project-image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.project-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 48%, rgba(8, 17, 31, 0.72));
}

.project-image span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    padding: 7px 9px;
    color: var(--white);
    background: rgba(8, 17, 31, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.project-copy {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    padding: 24px;
}

.project-copy h3 {
    font-size: 1.45rem;
    line-height: 1.08;
}

.feature-card h3 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.wide-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.project-copy p:not(.card-kicker),
.article-card p:not(.card-kicker) {
    color: #4b5868;
    line-height: 1.62;
}

.project-copy strong {
    margin-top: auto;
    color: var(--orange-dark);
    font-size: 0.9rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 6px 0 20px;
}

.tag-row span {
    padding: 6px 8px;
    color: #344255;
    background: rgba(21, 59, 103, 0.08);
    border: 1px solid rgba(21, 59, 103, 0.12);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.method-section {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
    gap: clamp(26px, 5vw, 64px);
    align-items: start;
    max-width: none;
    margin: 0;
    padding-right: max(clamp(20px, 5vw, 56px), calc((100vw - 1180px) / 2 + 56px));
    padding-left: max(clamp(20px, 5vw, 56px), calc((100vw - 1180px) / 2 + 56px));
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(8, 17, 31, 0.96), rgba(21, 59, 103, 0.92)),
        repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 255, 255, 0.08) 12px, rgba(255, 255, 255, 0.08) 13px);
}

.method-copy h2,
.method-grid h3 {
    margin: 0;
    font-family: "Space Grotesk", Inter, sans-serif;
    letter-spacing: 0;
}

.method-copy h2 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 0.92;
    text-wrap: balance;
}

.method-copy p:not(.eyebrow),
.method-grid p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.method-grid {
    display: grid;
    gap: 14px;
}

.method-grid article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px 18px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.method-grid article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.method-grid span {
    grid-row: span 2;
    color: var(--orange);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
}

.method-grid h3 {
    font-size: 1.45rem;
}

.method-grid p {
    margin: 0;
}

.insights-section {
    padding-top: 30px;
}

.article-list {
    display: grid;
    gap: 16px;
}

.article-card {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 24px;
    padding: 18px;
}

.article-card img,
.article-placeholder {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}

.article-placeholder {
    display: grid;
    place-items: center;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(247, 105, 0, 0.86), rgba(21, 59, 103, 0.94)),
        repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255, 255, 255, 0.18) 8px, rgba(255, 255, 255, 0.18) 9px);
    font-weight: 900;
    letter-spacing: 0.12em;
}

.article-card h3 {
    font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.card-kicker span {
    margin-left: 10px;
    color: var(--muted);
    letter-spacing: 0;
    text-transform: none;
}

.article-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 16px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 900;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    padding: 56px clamp(20px, 5vw, 56px) 34px;
    color: rgba(255, 255, 255, 0.78);
    background: var(--ink);
}

.site-footer > div:first-child {
    max-width: 520px;
}

.site-footer p {
    line-height: 1.65;
}

.site-footer .brand {
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 20px;
    text-align: right;
}

.footer-links p {
    flex-basis: 100%;
    margin: 0 0 4px;
    color: var(--white);
    font-weight: 900;
}

.footer-links a:hover {
    color: var(--orange);
}

.site-footer small {
    grid-column: 1 / -1;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero-grid,
    .section-heading,
    .feature-card,
    .article-card,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        align-items: center;
        min-height: 760px;
        padding-top: 58px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .city-strip,
    .method-section {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card {
        grid-column: span 1;
    }

    .wide-card {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .section-heading .eyebrow {
        margin-bottom: -10px;
    }

    .footer-links {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .hero {
        min-height: 720px;
    }

    .hero-grid {
        min-height: 720px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 14vw, 4rem);
        line-height: 0.94;
    }

    .hero-lede {
        font-size: 1rem;
        line-height: 1.55;
    }

    .button {
        width: 100%;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

    .city-strip,
    .method-section {
        grid-template-columns: 1fr;
    }

    .city-strip {
        margin-top: 0;
        padding: 0;
    }

    .city-strip > div {
        min-height: 96px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .project-copy {
        min-height: auto;
    }

    .article-card {
        padding: 14px;
    }
}
