:root {
    --navy: #101b2b;
    --ink: #1d2940;
    --muted: #667085;
    --gold: #f6b936;
    --gold-dark: #d99a17;
    --line: #dfe3ea;
    --paper: #f6f7f9;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(16, 27, 43, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

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

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 2px;
    background: var(--gold);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
    background: #ffc64c;
    transform: translateY(-2px);
}

.button.secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .72);
}

.button.dark {
    background: var(--navy);
    color: var(--white);
}

.hero {
    min-height: 92vh;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(16, 27, 43, .95) 0%, rgba(16, 27, 43, .78) 48%, rgba(16, 27, 43, .58) 100%),
        url("../img/hero-construction.jpg") center/cover;
    position: relative;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 112px;
    gap: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.brand-logo {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    object-fit: cover;
    background: #101827;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.brand span {
    display: block;
    font-size: 18px;
    line-height: 1.05;
}

.brand small {
    display: block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
    margin-top: 4px;
}

.social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(246, 185, 54, .24);
}

.social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.navrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    gap: 28px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 15px;
    font-weight: 700;
}

.menu a:hover,
.menu a.active {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    width: 64px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: transparent;
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-copy {
    width: min(920px, 100%);
    padding: 72px 0 168px;
}

.eyebrow {
    margin: 0 0 24px;
    color: var(--gold);
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 900;
}

h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(46px, 8vw, 92px);
    line-height: .98;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 740px;
    margin: 30px 0 42px;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
}

.actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.stats-band {
    margin-top: -76px;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1.12fr repeat(2, .72fr);
    background: var(--white);
    box-shadow: var(--shadow);
}

.stats-intro {
    padding: 48px 44px;
    background: var(--gold);
}

.stats-intro h2 {
    margin: 0 0 22px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.22;
}

.stats-intro p {
    margin: 0 0 30px;
    max-width: 520px;
}

.stat {
    min-height: 212px;
    padding: 48px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat strong {
    display: block;
    color: var(--ink);
    font-size: clamp(38px, 4vw, 48px);
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 14px;
    color: #515968;
}

section {
    padding: 96px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px;
}

.kicker {
    margin: 0 0 14px;
    color: var(--gold-dark);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.14;
    letter-spacing: 0;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    min-height: 420px;
    display: flex;
    align-items: end;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
    position: relative;
}

.service-card img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    transition: transform .35s ease, opacity .35s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 27, 43, .08), rgba(16, 27, 43, .92));
}

.service-card:hover img {
    opacity: .88;
    transform: scale(1.05);
}

.service-body {
    position: relative;
    z-index: 1;
    padding: 30px;
}

.service-body h3 {
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.15;
}

.service-body p {
    margin: 0;
    color: rgba(255, 255, 255, .83);
}

.featured-project {
    padding-top: 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: stretch;
    min-height: 520px;
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow);
}

.featured-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--navy);
}

.featured-media.is-awaiting-render {
    background:
        linear-gradient(135deg, rgba(16, 27, 43, .96), rgba(35, 48, 70, .86)),
        var(--navy);
}

.featured-media > img {
    height: 100%;
    object-fit: cover;
    opacity: .7;
}

.featured-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 27, 43, .18), rgba(16, 27, 43, .78));
}

.featured-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 36px;
    text-align: center;
}

.featured-overlay span {
    font-size: 24px;
    letter-spacing: .48em;
    text-transform: uppercase;
}

.featured-overlay strong {
    font-size: clamp(64px, 9vw, 124px);
    font-weight: 300;
    line-height: .82;
    letter-spacing: 0;
}

.featured-overlay img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    margin-top: 28px;
}

.featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px;
}

.featured-copy .kicker {
    color: var(--gold);
}

.featured-copy h2 {
    color: var(--white);
}

.featured-copy p {
    margin: 24px 0 30px;
    color: rgba(255, 255, 255, .8);
    font-size: 17px;
}

.featured-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-bottom: 34px;
    background: rgba(255, 255, 255, .16);
}

.featured-meta span {
    min-height: 78px;
    display: flex;
    align-items: center;
    padding: 18px;
    background: rgba(255, 255, 255, .07);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.about {
    background: var(--paper);
}

.about-grid {
    display: grid;
    grid-template-columns: .96fr 1.04fr;
    align-items: center;
    gap: 56px;
}

.photo-stack {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 18px;
    align-items: end;
}

.photo-stack img {
    height: 520px;
    object-fit: cover;
}

.photo-stack img:last-child {
    height: 360px;
    margin-bottom: -44px;
    border: 12px solid var(--paper);
}

.about-copy p {
    color: var(--muted);
    font-size: 17px;
}

.checks {
    display: grid;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.checks li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-weight: 800;
}

.checks li::before {
    content: "";
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    margin-top: 8px;
    background: var(--gold);
}

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

.step {
    min-height: 230px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.step span {
    color: var(--gold-dark);
    font-size: 38px;
    font-weight: 950;
}

.step h3 {
    margin: 28px 0 0;
    font-size: 22px;
    line-height: 1.2;
}

.projects {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(16, 27, 43, .94), rgba(16, 27, 43, .78)),
        url("../img/project-areas.jpg") center/cover fixed;
}

.project-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 42px;
    background: rgba(255, 255, 255, .22);
}

.project-type {
    min-height: 170px;
    display: flex;
    align-items: end;
    padding: 28px;
    background: rgba(255, 255, 255, .08);
    font-size: 24px;
    font-weight: 900;
}

.contact {
    padding-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 0;
    box-shadow: var(--shadow);
}

.contact-panel {
    padding: 48px;
    background: var(--gold);
}

.contact-panel h2 {
    font-size: clamp(32px, 4vw, 44px);
}

.contact-panel p {
    margin: 22px 0 34px;
}

.contact-list {
    display: grid;
    gap: 18px;
    font-weight: 850;
}

.contact-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-icons a {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(16, 27, 43, .22);
    color: var(--navy);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.contact-icons a:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-icons svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 48px;
    background: var(--white);
}

.form label {
    display: grid;
    gap: 8px;
    color: #4b5565;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 12px 14px;
    color: var(--ink);
    background: #fbfcfd;
    font: inherit;
}

.form textarea,
.wide {
    grid-column: 1 / -1;
}

.form textarea {
    min-height: 130px;
    resize: vertical;
}

.notice {
    grid-column: 1 / -1;
    padding: 14px 16px;
    color: var(--ink);
    font-weight: 800;
}

.notice.success {
    background: rgba(35, 134, 82, .14);
    border: 1px solid rgba(35, 134, 82, .36);
}

.notice.error {
    background: rgba(185, 56, 45, .12);
    border: 1px solid rgba(185, 56, 45, .34);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

footer {
    margin-top: 96px;
    padding: 42px 0;
    color: rgba(255, 255, 255, .78);
    background: var(--navy);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 980px) {
    .topbar {
        min-height: 88px;
    }

    .social {
        display: none;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .navrow {
        min-height: 72px;
        align-items: flex-start;
    }

    .menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 14px 0;
    }

    .menu.open {
        display: flex;
    }

    .menu a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .navrow .button {
        display: none;
    }

    .stats-grid,
    .featured-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services,
    .process-grid,
    .project-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        border-left: 0;
    }

    .featured-copy {
        padding: 42px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand-logo {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }

    .hero-copy {
        padding: 44px 0 126px;
    }

    .actions,
    .actions .button,
    .section-head,
    .footer-grid {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .stats-band {
        margin-top: -54px;
    }

    .stats-intro,
    .stat,
    .contact-panel,
    .form {
        padding: 30px 24px;
    }

    section {
        padding: 70px 0;
    }

    .services,
    .process-grid,
    .project-strip,
    .form {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 350px;
    }

    .featured-media {
        min-height: 430px;
    }

    .featured-overlay span {
        font-size: 16px;
        letter-spacing: .36em;
    }

    .featured-overlay img {
        width: 72px;
        height: 72px;
    }

    .featured-copy {
        padding: 32px 24px;
    }

    .featured-meta {
        grid-template-columns: 1fr;
    }

    .photo-stack {
        grid-template-columns: 1fr;
    }

    .photo-stack img,
    .photo-stack img:last-child {
        height: 340px;
        margin: 0;
        border: 0;
    }
}
