:root {
    --ink: #111416;
    --muted: #667078;
    --line: #d8dde0;
    --paper: #f4f6f7;
    --white: #ffffff;
    --cyan: #00a7df;
    --lime: #badb42;
    --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    padding: 0 max(28px, calc((100vw - var(--max)) / 2));
    display: grid;
    grid-template-columns: 240px 1fr 190px;
    align-items: center;
    color: var(--white);
    transition: background .25s, height .25s, color .25s;
}
.site-header.is-scrolled {
    height: 72px;
    color: var(--ink);
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
}
.brand img { width: 188px; filter: brightness(0) invert(1); }
.is-scrolled .brand img { filter: none; }
.desktop-nav { display: flex; justify-content: center; gap: 36px; font-size: 14px; }
.desktop-nav a, .footer-links a { position: relative; }
.desktop-nav a::after, .footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s;
}
.desktop-nav a:hover::after, .footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; border: 1px solid currentColor; padding: 10px 18px; font-size: 13px; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
    position: relative;
    min-height: 780px;
    height: 100svh;
    color: var(--white);
    overflow: hidden;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; background: #071018; }
.hero-media-slide {
    position: absolute;
    inset: -3%;
    width: 106%;
    height: 106%;
    max-width: none;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1.4s ease;
    will-change: opacity, transform;
}
.hero-media-slide.is-active {
    z-index: 1;
    opacity: 1;
    animation: hero-ken-burns 7s ease-out both;
}
@keyframes hero-ken-burns {
    from { transform: scale(1.02) translate3d(0, 0, 0); }
    to { transform: scale(1.1) translate3d(-1%, -1%, 0); }
}
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,15,20,.84) 0%, rgba(7,15,20,.38) 55%, rgba(7,15,20,.1) 100%); }
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    height: 100%;
    margin: auto;
    padding: 170px 28px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
.eyebrow, .section-kicker { margin: 0 0 20px; color: var(--cyan); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.hero h1 { max-width: 850px; margin: 0; font-size: clamp(58px, 7.5vw, 112px); line-height: .94; font-weight: 600; letter-spacing: 0; }
.hero-copy { width: 100%; max-width: 600px; margin: 34px 0; color: rgba(255,255,255,.8); font-size: 19px; }
.hero-actions { display: flex; gap: 12px; }
.button { min-height: 50px; padding: 13px 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.button-primary { color: var(--ink); background: var(--lime); }
.button-primary:hover { background: var(--white); }
.button-ghost { border-color: rgba(255,255,255,.55); }
.button-ghost:hover { color: var(--ink); background: var(--white); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--cyan); }
.scroll-cue { position: absolute; z-index: 2; right: 32px; bottom: 32px; display: flex; align-items: center; gap: 12px; font-size: 12px; text-transform: uppercase; }
.scroll-cue span { width: 48px; height: 1px; background: var(--white); }

.section { max-width: var(--max); margin: auto; padding: 120px 28px; }
.intro { display: grid; grid-template-columns: .7fr 2fr; gap: 56px; }
.intro-main h2, .section-heading h2, .process-copy h2, .contact-copy h2 {
    margin: 0;
    font-size: clamp(44px, 5vw, 76px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
}
.intro-main > p { max-width: 720px; margin: 34px 0 0; color: var(--muted); font-size: 20px; }
.stats { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid var(--line); }
.stats div { padding: 30px 24px 0 0; }
.stats strong { display: block; font-size: 46px; font-weight: 500; line-height: 1; }
.stats span { color: var(--muted); font-size: 14px; }

.services { max-width: none; padding-left: max(28px, calc((100vw - var(--max)) / 2)); padding-right: max(28px, calc((100vw - var(--max)) / 2)); background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1.5fr .7fr; align-items: end; gap: 70px; margin-bottom: 70px; }
.section-heading > p { max-width: 460px; margin: 0; color: var(--muted); font-size: 18px; }
.service-list { border-top: 1px solid #c8cfd3; }
.service-row { min-height: 150px; padding: 34px 0; display: grid; grid-template-columns: 80px 1fr 1.2fr; align-items: start; gap: 30px; border-bottom: 1px solid #c8cfd3; }
.service-row > span { color: var(--cyan); font-size: 13px; }
.service-row h3 { margin: 0; font-size: 28px; font-weight: 500; }
.service-row p { max-width: 560px; margin: 0; color: var(--muted); }

.project-showcase { padding: 96px 0 110px; overflow: hidden; background: var(--white); }
.project-showcase-heading { max-width: var(--max); margin: 0 auto 58px; padding: 0 28px; display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 70px; }
.project-showcase-heading h2 { margin: 0; font-size: clamp(44px, 5vw, 76px); line-height: 1; font-weight: 500; }
.project-showcase-intro > p { margin: 0; color: var(--muted); font-size: 17px; }
.project-controls { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.project-arrow { width: 46px; height: 46px; padding: 0; color: var(--ink); background: transparent; border: 1px solid var(--line); cursor: pointer; font-size: 20px; transition: color .2s, background .2s; }
.project-arrow:hover { color: var(--white); background: var(--ink); }
.project-counter { min-width: 76px; text-align: center; color: var(--muted); font-size: 12px; }
.project-counter strong { color: var(--ink); font-size: 17px; font-weight: 500; }
.project-slider { display: flex; gap: 24px; padding: 0 max(28px, calc((100vw - var(--max)) / 2)); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; outline: none; }
.project-slider::-webkit-scrollbar { display: none; }
.project-slide { position: relative; flex: 0 0 min(78vw, 1080px); height: min(72vw, 680px); min-height: 540px; color: var(--white); overflow: hidden; scroll-snap-align: center; }
.project-slide > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-slide:hover > img { transform: scale(1.025); }
.project-slide-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,12,16,.86), rgba(5,12,16,.03) 70%); }
.project-slide-meta { position: absolute; inset: auto 0 0; padding: 45px; }
.project-slide-meta > span:first-child { color: var(--lime); font-size: 12px; text-transform: uppercase; }
.project-slide-meta h3 { max-width: 750px; margin: 7px 0 12px; font-size: clamp(38px, 4.4vw, 68px); line-height: 1; font-weight: 500; }
.project-slide-meta p { max-width: 580px; margin: 0; color: rgba(255,255,255,.78); font-size: 16px; }
.project-open { position: absolute; right: 45px; bottom: 47px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 13px; }
.project-progress { max-width: var(--max); height: 2px; margin: 32px auto 0; background: var(--line); }
.project-progress span { display: block; width: 25%; height: 100%; background: var(--cyan); transition: width .25s; }
.project-all-link { max-width: var(--max); margin: 24px auto 0; padding: 0 28px; display: flex; justify-content: flex-end; gap: 18px; color: var(--muted); font-size: 14px; }
.project-all-link span { color: var(--cyan); }

.process { max-width: none; padding: 0; display: grid; grid-template-columns: 1.1fr .9fr; background: var(--ink); color: var(--white); }
.process-image img { width: 100%; height: 100%; min-height: 760px; object-fit: cover; }
.process-copy { padding: 110px max(28px, calc((100vw - var(--max)) / 2)) 90px 80px; }
.process-copy h2 { max-width: 650px; font-size: clamp(42px, 4vw, 64px); }
.process-copy ol { list-style: none; margin: 65px 0 0; padding: 0; border-top: 1px solid #3b4145; }
.process-copy li { padding: 26px 0; display: grid; grid-template-columns: 60px 1fr; border-bottom: 1px solid #3b4145; }
.process-copy li > span { color: var(--lime); font-size: 12px; }
.process-copy h3 { margin: 0 0 7px; font-size: 23px; font-weight: 500; }
.process-copy li p { max-width: 520px; margin: 0; color: #aeb6bb; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.contact-copy > p:not(.section-kicker) { max-width: 480px; margin: 30px 0; color: var(--muted); }
.direct-contact { margin-top: 60px; display: flex; flex-direction: column; gap: 6px; font-size: 17px; }
.direct-contact a:hover { color: var(--cyan); }
.contact-form { padding: 45px; background: var(--paper); }
.contact-form label { margin-bottom: 20px; display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 10px 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid #b9c1c5;
    border-radius: 0;
    outline: none;
    text-transform: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form .button { margin-top: 10px; }
.honeypot { position: absolute; left: -10000px; }
.form-status { margin: 16px 0 0; color: #2b741d; font-size: 14px; }
.form-status.error { color: #9e3028; }

.marquee { overflow: hidden; padding: 23px 0; color: var(--white); background: var(--cyan); font-size: 18px; font-weight: 700; white-space: nowrap; }
.marquee div { width: max-content; animation: marquee 24s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.values { max-width: none; padding-left: max(28px, calc((100vw - var(--max)) / 2)); padding-right: max(28px, calc((100vw - var(--max)) / 2)); background: #eef1f2; }
.text-link { align-self: end; justify-self: start; padding-bottom: 5px; border-bottom: 1px solid var(--ink); }
.text-link span { margin-left: 18px; color: var(--cyan); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #c8cfd3; }
.value-grid article { min-height: 290px; padding: 30px 24px 20px 0; border-right: 1px solid #c8cfd3; }
.value-grid article + article { padding-left: 24px; }
.value-grid article:last-child { border-right: 0; }
.value-grid span { color: var(--cyan); font-size: 12px; }
.value-grid h3 { margin: 70px 0 16px; font-size: 24px; font-weight: 500; }
.value-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.inner-hero { position: relative; min-height: 680px; height: 78svh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.inner-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.inner-hero-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,15,20,.86), rgba(7,15,20,.12) 70%); }
.inner-hero-copy { position: relative; z-index: 1; width: min(100%, var(--max)); margin: 0 auto; padding: 100px 28px 70px; }
.inner-hero h1, .archive-hero h1, .project-single-hero h1 { max-width: 950px; margin: 0; font-size: clamp(54px, 7vw, 104px); line-height: .96; font-weight: 500; }
.inner-hero-copy > p:last-child, .archive-hero > p:last-child { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.76); font-size: 19px; }
.story-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; }
.story-grid h2, .career-layout h2, .project-summary h2 { margin: 0; font-size: clamp(42px, 5vw, 72px); line-height: 1; font-weight: 500; }
.story-grid p { margin: 0 0 25px; color: var(--muted); font-size: 18px; }
.wide-stats { grid-column: auto; grid-template-columns: repeat(4, 1fr); }
.split-feature { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 680px; color: var(--white); background: var(--ink); }
.split-feature > img { width: 100%; height: 100%; object-fit: cover; }
.split-feature > div { padding: 110px max(28px, calc((100vw - var(--max)) / 2)) 90px 75px; }
.split-feature h2 { margin: 0 0 30px; font-size: clamp(42px, 4vw, 68px); line-height: 1; font-weight: 500; }
.split-feature div > p:last-child { max-width: 550px; color: #aeb6bb; font-size: 18px; }
.service-detail { padding-top: 70px; }
.service-detail-row { padding: 50px 0; display: grid; grid-template-columns: 80px 1fr 1fr; gap: 35px; border-bottom: 1px solid var(--line); }
.service-detail-row > span { color: var(--cyan); }
.service-detail-row h2 { margin: 0; font-size: 36px; font-weight: 500; }
.service-detail-row p { max-width: 600px; margin: 0; color: var(--muted); font-size: 17px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card img { width: 100%; aspect-ratio: .9; object-fit: cover; }
.news-card .section-kicker { margin-top: 22px; }
.news-card h2 { margin: 0 0 12px; font-size: 26px; line-height: 1.15; font-weight: 500; }
.news-card > p:last-child { color: var(--muted); }
.career-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; }
.career-layout > div:last-child { padding-top: 36px; color: var(--muted); font-size: 18px; }
.career-layout .button { margin-top: 25px; }
.archive-hero { min-height: 530px; padding: 190px max(28px, calc((100vw - var(--max)) / 2)) 80px; color: var(--white); background: var(--ink); }
.archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px 25px; }
.archive-project:nth-child(even) { margin-top: 110px; }
.archive-project img { width: 100%; aspect-ratio: 1.1; object-fit: cover; }
.archive-project span { display: block; margin-top: 20px; color: var(--cyan); font-size: 12px; }
.archive-project h2 { margin: 5px 0; font-size: 32px; font-weight: 500; }
.archive-project p { margin: 0; color: var(--muted); }
.project-single-hero { position: relative; min-height: 760px; height: 100svh; display: flex; align-items: flex-end; color: var(--white); }
.project-single-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,15,20,.85), transparent 70%); }
.project-single-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-single-hero > div { position: relative; z-index: 1; width: min(100%, var(--max)); margin: 0 auto; padding: 100px 28px 70px; }
.project-summary > h2 { max-width: 1000px; }
.project-facts { margin: 65px 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.project-facts span { padding: 24px 20px 24px 0; color: var(--muted); }
.project-facts strong { display: block; color: var(--ink); font-size: 12px; text-transform: uppercase; }
.project-body { max-width: 760px; color: var(--muted); font-size: 18px; }
.project-gallery { display: grid; grid-template-columns: 1fr 1fr; }
.project-gallery img { width: 100%; height: 680px; object-fit: cover; }
.next-project { padding: 75px max(28px, calc((100vw - var(--max)) / 2)); display: flex; justify-content: space-between; color: var(--white); background: var(--cyan); font-size: 28px; }

.site-footer {
    padding: 70px max(28px, calc((100vw - var(--max)) / 2)) 25px;
    display: grid;
    grid-template-columns: 1.5fr .7fr .8fr;
    gap: 60px;
    color: #bac1c5;
    background: #090b0c;
}
.site-footer img { width: 190px; filter: brightness(0) invert(1); }
.site-footer p { max-width: 360px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-contact a:hover { color: var(--white); }
.copyright { grid-column: 1 / -1; width: 100%; max-width: none !important; padding-top: 24px; border-top: 1px solid #282d30; font-size: 12px; }
.contact-dock { position: fixed; z-index: 30; right: 14px; bottom: 14px; display: flex; flex-direction: row; gap: 6px; }
.contact-dock-item { width: 52px; height: 42px; display: grid; place-items: center; color: var(--white); background: #159957; border: 1px solid rgba(255,255,255,.28); box-shadow: 0 8px 24px rgba(0,0,0,.2); font-size: 10px; font-weight: 700; }
.contact-dock-mail { background: var(--cyan); }
.contact-dock-item:hover { color: var(--ink); background: var(--lime); }
.default-page { min-height: 70vh; padding-top: 150px; }
.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .site-header { height: 72px; padding: 0 20px; grid-template-columns: 1fr auto; }
    .brand img { width: 164px; }
    .desktop-nav, .header-cta { display: none; }
    .menu-toggle { position: absolute; right: 12px; top: 15px; z-index: 2; width: 42px; height: 42px; padding: 10px; display: flex; flex-direction: column; justify-content: center; gap: 7px; color: inherit; background: transparent; border: 0; }
    .menu-toggle span { width: 100%; height: 1px; background: currentColor; transition: transform .2s; }
    .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .mobile-nav { position: fixed; inset: 72px 0 0; padding: 50px 24px; display: flex; flex-direction: column; gap: 24px; color: var(--ink); background: var(--white); font-size: 30px; transform: translateX(100%); transition: transform .25s; }
    .menu-open .mobile-nav { transform: translateX(0); }
    .hero { min-height: 680px; }
    .hero-content { padding: 130px 20px 90px; justify-content: flex-end; }
    .hero h1 { font-size: clamp(50px, 14vw, 76px); }
    .hero-copy { max-width: calc(100vw - 40px); font-size: 17px; }
    .scroll-cue { display: none; }
    .section { padding: 72px 20px; }
    .intro, .section-heading, .contact { grid-template-columns: 1fr; gap: 32px; }
    .story-grid, .career-layout { grid-template-columns: 1fr; gap: 35px; }
    .stats { grid-column: 1; margin-top: 30px; }
    .service-row { grid-template-columns: 45px 1fr; gap: 16px; }
    .service-row p { grid-column: 2; }
    .project-showcase { padding: 64px 0 72px; }
    .project-showcase-heading { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }
    .project-slider { padding: 0 20px; gap: 14px; }
    .project-slide { flex-basis: 84vw; min-height: 500px; height: 68vw; }
    .project-slide-meta { padding: 30px; }
    .project-open { right: 30px; bottom: 32px; }
    .project-progress { margin-left: 20px; margin-right: 20px; }
    .process { grid-template-columns: 1fr; }
    .process-image img { min-height: 480px; }
    .process-copy { padding: 80px 20px; }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .value-grid article:nth-child(2) { border-right: 0; }
    .value-grid article:nth-child(n+3) { border-top: 1px solid #c8cfd3; }
    .split-feature { grid-template-columns: 1fr; }
    .split-feature > img { min-height: 500px; }
    .split-feature > div { padding: 80px 20px; }
    .service-detail-row { grid-template-columns: 55px 1fr; }
    .service-detail-row p { grid-column: 2; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .project-gallery img { height: 480px; }
}

@media (max-width: 620px) {
    .hero-actions { width: 100%; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .intro-main h2, .section-heading h2, .process-copy h2, .contact-copy h2 { font-size: 43px; }
    .stats { grid-template-columns: 1fr; }
    .stats div { padding: 22px 0; border-bottom: 1px solid var(--line); }
    .project-showcase-heading h2 { font-size: 43px; }
    .project-controls { justify-content: space-between; }
    .project-slide { flex-basis: calc(100vw - 40px); min-height: 520px; height: 72svh; }
    .project-slide-meta { padding: 24px 22px; }
    .project-slide-meta h3 { font-size: 38px; }
    .project-slide-meta p { padding-right: 0; font-size: 14px; }
    .project-open { position: static; display: inline-block; margin-top: 18px; }
    .contact-dock { right: 0; bottom: 0; left: 0; flex-direction: row; gap: 0; }
    .contact-dock-item { width: 33.333%; height: 50px; box-shadow: none; }
    .site-footer { padding-bottom: 75px; }
    .service-row h3 { font-size: 23px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form { padding: 28px 20px; }
    .site-footer { grid-template-columns: 1fr; gap: 34px; }
    .copyright { grid-column: 1; }
    .inner-hero { min-height: 620px; }
    .inner-hero h1, .archive-hero h1, .project-single-hero h1 { font-size: 48px; }
    .value-grid, .news-grid, .archive-grid, .project-facts, .project-gallery { grid-template-columns: 1fr; }
    .value-grid article { min-height: auto; padding: 25px 0 !important; border-right: 0; border-top: 1px solid #c8cfd3; }
    .value-grid h3 { margin-top: 28px; }
    .wide-stats { grid-template-columns: 1fr 1fr; }
    .archive-project:nth-child(even) { margin-top: 0; }
    .project-gallery img { height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero-media-slide { display: none; animation: none; transition: none; }
    .hero-media-slide:first-child { display: block; opacity: 1; transform: none; }
}
