:root {
    --navy: #031a33;
    --navy2: #062848;
    --green: #008d68;
    --mint: #69d9b2;
    --ink: #132335;
    --muted: #5d6b79;
    --bg: #f5f8f7;
    --white: #fff;
    --line: #dbe4e2;
}
* {
    box-sizing: border-box;
}
@font-face {
    font-family: Inter;
    src: url(./fonts/Inter-Regular.otf);
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
}
a {
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
    transition: 0.2s;
}
.wrap {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand img {
    width: 245px;
    max-height: 68px;
    object-fit: contain;
}
.navlinks {
    display: flex;
    gap: 8px;
    align-items: center;
}
.navlinks a {
    text-decoration: none;
    font-weight: 750;
    padding: 10px 14px;
    border-radius: 999px;
}
.navlinks a:hover,
.navlinks a.active {
    background: #e7f5f0;
    color: #006c52;
}
.hero {
    min-height: 72vh;
    position: relative;
    display: grid;
    align-items: end;
    background:
        linear-gradient(90deg, rgba(1, 17, 35, 0.92), rgba(1, 17, 35, 0.5) 48%, rgba(1, 17, 35, 0.08)),
        url("img/hero-sunrise.jpg") center/cover no-repeat;
    color: #fff;
}
.projects-hero {
    min-height: 72vh;
    position: relative;
    display: grid;
    align-items: end;
    background:
        linear-gradient(90deg, rgba(1, 17, 35, 0.92), rgba(1, 17, 35, 0.5) 48%, rgba(1, 17, 35, 0.08)),
        url("img/lake-hero.jpg") center/cover no-repeat;
    color: #fff;
}
.about-hero {
    min-height: 72vh;
    position: relative;
    display: grid;
    align-items: end;
    background:
        linear-gradient(90deg, rgba(1, 17, 35, 0.92), rgba(1, 17, 35, 0.5) 48%, rgba(1, 17, 35, 0.08)),
        url("img/about-hero.jpg") center/cover no-repeat;
    color: #fff;
}
.contact-hero {
    min-height: 72vh;
    position: relative;
    display: grid;
    align-items: end;
    background:
        linear-gradient(90deg, rgba(1, 17, 35, 0.92), rgba(1, 17, 35, 0.5) 48%, rgba(1, 17, 35, 0.08)),
        url("img/boardroom-hero.jpg") center/cover no-repeat;
    color: #fff;
}
.hero-inner {
    padding: 100px 0 90px;
    max-width: 760px;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--mint);
}
h1,
h2,
h3 {
    line-height: 1.1;
    margin: 0 0 18px;
}
h1 {
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    letter-spacing: -0.045em;
}
h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.035em;
}
h3 {
    font-size: 1.45rem;
}
.lead {
    font-size: 1.22rem;
    color: #e4edf0;
    max-width: 700px;
}
.btn {
    display: inline-block;
    text-decoration: none;
    background: var(--green);
    color: #fff;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 9px;
    border: 0;
    cursor: pointer;
}
.btn.alt {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.section {
    padding: 86px 0;
}
.section.white {
    background: #fff;
}
.section.dark {
    background: var(--navy);
    color: #fff;
}
.section.dark p {
    color: #d5e0e7;
}
.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}
.copy p {
    font-size: 1.07rem;
    color: #475767;
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.stat {
    background: #fff;
    background: linear-gradient(110deg, #008d68, #006c52, #074266);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 35px rgba(3, 26, 51, 0.06);
    color:aliceblue;
    font-size: 0.8rem;
}
.stat strong {
    display: block;
    font-size: 1.6rem;
    color:beige;
}
.page-hero {
    background: linear-gradient(135deg, var(--navy), #074266);
    color: #fff;
    padding: 85px 0;
}
.page-hero p {
    max-width: 820px;
    color: #dbe7ed;
    font-size: 1.16rem;
}
.project {
    padding: 78px 0;
    border-bottom: 1px solid var(--line);
}
.project:nth-child(even) {
    background: #fff;
}
.project-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 28px;
}
.project-kicker {
    font-weight: 850;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}
.project-images {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 18px;
    margin: 28px 0;
    img:hover {
        transform: scale(1.01);
    }
}
.project-images2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 28px 0;
    img:hover {
        transform: scale(1.01);
    }
}
.project-images img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 14px 45px rgba(3, 26, 51, 0.12);
}
.project-images2 img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 14px 45px rgba(3, 26, 51, 0.12);
}
.side-img {
    border-radius: 14px;
}
.project-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
}
.features {
    margin: 0;
    padding-left: 20px;
}
.features li {
    margin: 8px 0;
}
.timeline {
    background: #e9f5f1;
    border-left: 4px solid var(--green);
    padding: 17px 20px;
    border-radius: 8px;
    font-weight: 750;
}
.about-img {
    border-radius: 16px;
    box-shadow: 0 14px 45px rgba(3, 26, 51, 0.14);
}
.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 14px 45px rgba(3, 26, 51, 0.08);
}
label {
    font-weight: 750;
    display: block;
    margin: 12px 0 6px;
}
input,
textarea {
    width: 100%;
    font: inherit;
    padding: 12px 14px;
    border: 1px solid #cbd8d5;
    border-radius: 8px;
    background: #fbfdfc;
}
textarea {
    min-height: 140px;
    resize: vertical;
}
.form-note {
    font-size: 0.88rem;
    color: var(--muted);
}
footer {
    background: #021426;
    color: #c9d5dc;
    padding: 20px 0;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}
.footer-row img {
    width: 190px;
/*    filter: brightness(0) invert(1); */
    opacity: 0.9;
}
.small {
    font-size: 0.9rem;
    color: #758592;
}
@media (max-width: 800px) {
    .nav {
        height: auto;
        padding: 14px 0;
        align-items: flex-start;
    }
    .brand img {
        width: 185px;
    }
    .navlinks {
        gap: 0;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .navlinks a {
        font-size: 0.9rem;
        padding: 8px;
    }
    .hero {
        min-height: 66vh;
    }
    .grid2,
    .project-copy,
    .project-images,
    .project-images2 {
        grid-template-columns: 1fr;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    .project-images img {
        min-height: 0;
    }
    .project-images2 img {
        min-height: 0;
    }
    .project-head,
    .footer-row {
        display: block;
    }
    .footer-row img {
        margin-bottom: 20px;
    }
}
