:root {
    --ink: #262626;
    --ink-soft: #353535;
    --paper: #f4f1e9;
    --paper-deep: #e8e1d4;
    --acid: #e8a941;
    --acid-soft: #f2cb82;
    --orange: #e8a941;
    --white: #fffdfa;
    --line: rgba(38, 38, 38, .16);
    --muted: #6e6a62;
    --radius: 22px;
    --shell: min(1220px, calc(100% - 64px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--acid);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.grain {
    position: fixed;
    z-index: 20;
    inset: 0;
    opacity: .035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
    width: var(--shell);
    height: 94px;
    position: sticky;
    z-index: 100;
    top: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    transition: height .25s, background .25s, box-shadow .25s;
}

.site-header.scrolled {
    height: 76px;
}

.site-header.scrolled::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 8px -18px;
    border: 1px solid rgba(38, 38, 38, .09);
    border-radius: 18px;
    background: rgba(243, 240, 231, .9);
    box-shadow: 0 12px 35px rgba(25, 42, 34, .08);
    backdrop-filter: blur(16px);
}

.brand {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 850;
    letter-spacing: -.5px;
}

.brand img {
    display: block;
    border-radius: 12px;
}

.brand span,
.brand small {
    display: block;
}

.brand small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    color: #3c5047;
    font-size: 13px;
    font-weight: 700;
}

.main-nav a,
.footer-end a {
    position: relative;
}

.main-nav a::after,
.footer-end a::after {
    content: "";
    position: absolute;
    height: 1px;
    right: 0;
    bottom: -5px;
    left: 0;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s;
}

.main-nav a:hover::after,
.footer-end a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    justify-self: end;
    padding: 12px 16px;
    border: 1px solid var(--ink);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    transition: color .2s, background .2s, transform .2s;
}

.header-cta:hover {
    color: var(--acid);
    background: var(--ink);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}

.hero {
    width: var(--shell);
    min-height: calc(100vh - 94px);
    margin: 0 auto;
    padding: 60px 0 92px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: clamp(42px, 8vw, 112px);
}

.eyebrow {
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #617067;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.65px;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 27px;
    height: 2px;
    background: var(--orange);
}

.eyebrow.light {
    color: rgba(255, 255, 255, .58);
}

.hero h1,
.section-heading h2,
.work-heading h2,
.process-intro h2,
.contact-copy h2 {
    margin: 0;
    font-size: clamp(56px, 6.5vw, 100px);
    line-height: .91;
    letter-spacing: -5.5px;
}

h1 em,
h2 em,
blockquote em {
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero-intro {
    max-width: 620px;
    margin: 34px 0 0;
    color: #56675f;
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.65;
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.button {
    min-height: 54px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    border: 0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
}

.button:hover {
    transform: translateY(-3px);
}

.button-accent {
    color: var(--ink);
    background: var(--acid);
    box-shadow: 5px 5px 0 var(--ink);
}

.button-accent:hover {
    background: var(--acid-soft);
    box-shadow: 7px 7px 0 var(--ink);
}

.button:disabled {
    opacity: .6;
    cursor: wait;
}

.text-link {
    padding: 7px 0;
    border-bottom: 1px solid var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.text-link span,
.service-card a span {
    margin-left: 8px;
}

.hero-meta {
    margin-top: 70px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.hero-meta div {
    display: grid;
    gap: 3px;
}

.hero-meta strong {
    font-size: 17px;
}

.hero-meta span {
    color: var(--muted);
    font-size: 10px;
}

.hero-build {
    min-height: 570px;
    position: relative;
    display: grid;
    place-items: center;
}

.brand-showcase {
    width: min(100%, 480px);
    min-height: 540px;
    position: relative;
    overflow: hidden;
    padding: 34px;
    display: flex;
    flex-direction: column;
    color: var(--white);
    background: var(--ink);
    box-shadow: 18px 18px 0 var(--acid);
}

.brand-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .08;
    background: repeating-linear-gradient(90deg, transparent 0 48px, white 49px 50px), repeating-linear-gradient(0deg, transparent 0 48px, white 49px 50px);
}

.brand-showcase::after {
    content: "";
    width: 280px;
    height: 280px;
    position: absolute;
    right: -125px;
    bottom: 75px;
    border: 24px solid var(--acid);
    border-radius: 50%;
}

.brand-showcase-top,
.brand-showcase-name,
.brand-showcase-services {
    position: relative;
    z-index: 2;
}

.brand-showcase-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.brand-showcase-top img {
    width: 190px;
    height: 190px;
    display: block;
}

.brand-showcase-top span {
    padding-top: 8px;
    color: var(--acid);
    font-size: 9px;
    font-weight: 800;
    line-height: 1.55;
    text-align: right;
    text-transform: uppercase;
}

.brand-showcase-name {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.brand-showcase-name strong {
    color: var(--acid);
    font: 112px/.75 Georgia, serif;
    letter-spacing: -8px;
}

.brand-showcase-name span {
    font-size: 31px;
    font-weight: 850;
    line-height: .9;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.brand-showcase-services {
    margin-top: 34px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, .24);
    color: rgba(255, 255, 255, .62);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.build-frame {
    width: min(100%, 480px);
    aspect-ratio: .86;
    position: relative;
    overflow: hidden;
    border: 12px solid var(--ink);
    background: #ccd3c8;
    box-shadow: 18px 18px 0 var(--acid);
}

.build-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .32;
    background: repeating-linear-gradient(90deg, transparent 0 42px, rgba(38, 38, 38, .18) 43px 44px), repeating-linear-gradient(0deg, transparent 0 42px, rgba(38, 38, 38, .18) 43px 44px);
}

.frame-beam {
    position: absolute;
    z-index: 2;
    background: var(--ink);
}

.beam-a {
    width: 14px;
    inset: 0 auto 0 20%;
}

.beam-b {
    height: 14px;
    inset: 24% 0 auto;
}

.beam-c {
    width: 14px;
    height: 130%;
    left: 56%;
    top: -15%;
    transform: rotate(28deg);
}

.frame-panel {
    position: absolute;
    width: 46%;
    height: 35%;
    right: 0;
    bottom: 0;
    background: var(--orange);
}

.frame-window {
    width: 37%;
    aspect-ratio: 1;
    position: absolute;
    z-index: 3;
    top: 34%;
    left: 10%;
    display: grid;
    place-items: center;
    border: 10px solid var(--white);
    background: #74716b;
}

.frame-window span {
    width: 2px;
    height: 100%;
    background: var(--white);
}

.build-label {
    position: absolute;
    z-index: 4;
    right: 16px;
    top: 16px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    color: var(--white);
    background: var(--ink);
}

.build-label b {
    color: var(--acid);
    font-size: 26px;
}

.build-label span {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero-build > p {
    position: absolute;
    right: 5px;
    bottom: -2px;
    margin: 0;
    color: var(--muted);
    font: italic 15px Georgia, serif;
}

.measure {
    position: absolute;
    z-index: 5;
    color: #819087;
    font-size: 9px;
    letter-spacing: 1px;
}

.measure::before,
.measure::after {
    content: "";
    position: absolute;
    background: #96a199;
}

.measure-top {
    width: 80%;
    top: 6px;
    left: 10%;
    border-top: 1px solid #96a199;
    text-align: center;
}

.measure-top::before,
.measure-top::after {
    width: 1px;
    height: 8px;
    top: -4px;
}

.measure-top::before { left: 0; }
.measure-top::after { right: 0; }
.measure-top span { position: relative; top: -17px; padding: 0 6px; background: var(--paper); }

.measure-side {
    height: 70%;
    right: -6px;
    top: 14%;
    border-right: 1px solid #96a199;
}

.measure-side span {
    position: relative;
    right: -19px;
    top: 48%;
    display: block;
    transform: rotate(90deg);
}

.ticker {
    overflow: hidden;
    padding: 18px 0;
    color: var(--acid);
    background: var(--ink);
}

.ticker-track {
    width: max-content;
    display: flex;
    will-change: transform;
}

.ticker-group {
    min-width: 100vw;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    animation: ticker 30s linear infinite;
    will-change: transform;
}

.ticker span {
    padding: 0 22px;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticker i {
    color: var(--orange);
    font-size: 8px;
}

@keyframes ticker {
    to { transform: translate3d(-100%, 0, 0); }
}

.section {
    width: var(--shell);
    margin: 0 auto;
    padding: 140px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr .65fr;
    align-items: end;
    gap: 50px;
}

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

.section-heading h2,
.work-heading h2,
.process-intro h2,
.contact-copy h2 {
    font-size: clamp(47px, 5vw, 74px);
    letter-spacing: -4px;
}

.section-heading > p:last-child,
.work-heading > p,
.process-intro > p:last-child {
    max-width: 460px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.service-grid {
    margin-top: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.service-card {
    min-height: 580px;
    position: relative;
    padding: 42px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.service-primary {
    background: var(--acid);
}

.service-dark {
    color: var(--white);
    background: var(--ink);
}

.service-code {
    width: max-content;
    padding: 7px 9px;
    border: 1px solid currentColor;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1px;
}

.service-number {
    position: absolute;
    right: 38px;
    top: 32px;
    color: rgba(38, 38, 38, .2);
    font: 80px/1 Georgia, serif;
}

.service-dark .service-number {
    color: rgba(255, 255, 255, .12);
}

.service-card h3 {
    max-width: 500px;
    margin: 110px 0 18px;
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1;
    letter-spacing: -2.5px;
}

.service-card > p {
    max-width: 520px;
    margin: 0;
    color: rgba(38, 38, 38, .68);
    font-size: 15px;
    line-height: 1.65;
}

.service-dark > p {
    color: rgba(255, 255, 255, .62);
}

.service-card ul {
    margin: 32px 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    gap: 12px 25px;
}

.service-card li {
    padding-top: 10px;
    border-top: 1px solid currentColor;
    font-size: 11px;
    font-weight: 750;
}

.service-card a {
    width: max-content;
    margin-top: auto;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.work {
    padding-top: 40px;
}

.work-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.work-heading > p {
    max-width: 350px;
}

.filter-bar {
    margin: 56px 0 30px;
    padding-bottom: 13px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--line);
}

.filter-bar button {
    padding: 10px 14px;
    border: 0;
    border-radius: 100px;
    color: var(--muted);
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.filter-bar button.active {
    color: var(--acid);
    background: var(--ink);
}

.filter-bar span {
    margin-left: 5px;
    opacity: .65;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 20px;
}

.project-card[hidden] {
    display: none;
}

.project-card:nth-child(even) {
    margin-top: 70px;
}

.project-visual {
    aspect-ratio: 1.32;
    position: relative;
    overflow: hidden;
    background: #cbd2c7;
}

.project-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.project-card:hover .project-visual img {
    transform: scale(1.035);
}

.project-placeholder {
    background: var(--ink-soft);
}

.project-card:nth-child(2n) .project-placeholder {
    background: #b8ad9b;
}

.project-placeholder::before {
    content: "";
    width: 44%;
    aspect-ratio: 1;
    position: absolute;
    top: 20%;
    left: 28%;
    border: 22px solid var(--acid);
    transform: rotate(8deg);
}

.project-card:nth-child(2n) .project-placeholder::before {
    border-color: var(--orange);
    transform: rotate(-8deg);
}

.project-placeholder::after {
    content: "";
    width: 25%;
    height: 58%;
    position: absolute;
    bottom: 0;
    left: 38%;
    background: var(--paper);
}

.blueprint-line {
    position: absolute;
    z-index: 2;
    display: block;
    background: rgba(255, 255, 255, .46);
}

.line-one { width: 1px; height: 80%; top: 10%; left: 15%; }
.line-two { height: 1px; width: 80%; top: 13%; left: 10%; }

.project-placeholder > b {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 14px;
    color: rgba(255, 255, 255, .3);
    font: 90px/1 Georgia, serif;
}

.project-badges {
    position: absolute;
    z-index: 5;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 7px;
}

.project-badges span {
    padding: 7px 9px;
    border-radius: 100px;
    color: var(--ink);
    background: var(--acid);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.project-badges span + span {
    background: var(--white);
}

.project-info {
    padding: 20px 2px 0;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    color: #7a877f;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.project-info h3 {
    margin: 13px 0 10px;
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -1.7px;
}

.project-info p {
    max-width: 550px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.project-info small {
    margin-top: 15px;
    display: block;
    color: var(--ink);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.empty-projects {
    padding: 80px 20px;
    text-align: center;
    border: 1px dashed var(--line);
    color: var(--muted);
}

.process {
    width: 100%;
    padding: 130px max(32px, calc((100% - 1220px) / 2));
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(50px, 9vw, 130px);
    color: var(--white);
    background: var(--ink);
}

.process-intro {
    align-self: start;
    position: sticky;
    top: 120px;
}

.process-intro > p:last-child {
    margin-top: 28px;
    color: rgba(255, 255, 255, .57);
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    min-height: 155px;
    padding: 34px 0;
    display: grid;
    grid-template-columns: 80px 1fr;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.process-list li > span {
    color: var(--acid);
    font: 24px Georgia, serif;
}

.process-list h3 {
    margin: 0 0 10px;
    font-size: 27px;
    letter-spacing: -1px;
}

.process-list p {
    max-width: 460px;
    margin: 0;
    color: rgba(255, 255, 255, .54);
    font-size: 13px;
    line-height: 1.6;
}

.statement {
    display: grid;
    grid-template-columns: .2fr 1.3fr .65fr;
    gap: clamp(30px, 6vw, 90px);
    align-items: start;
}

.statement-mark {
    color: var(--orange);
    font: 140px/.7 Georgia, serif;
}

.statement blockquote {
    margin: 0;
    font-size: clamp(40px, 4.5vw, 66px);
    font-weight: 750;
    line-height: 1.04;
    letter-spacing: -3.4px;
}

.statement-details {
    padding-top: 18px;
}

.statement-details > p {
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.statement-details div {
    display: grid;
}

.statement-details span {
    padding: 11px 0;
    border-top: 1px solid var(--line);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto 20px;
    padding: clamp(50px, 8vw, 110px);
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(50px, 9vw, 130px);
    color: var(--white);
    background: var(--ink-soft);
    border-radius: 28px;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 420px;
    margin: 28px 0;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    line-height: 1.7;
}

.contact-promise {
    padding-top: 20px;
    display: grid;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, .17);
}

.contact-promise strong {
    color: var(--acid);
    font-size: 12px;
}

.contact-promise span {
    color: rgba(255, 255, 255, .47);
    font-size: 10px;
}

.contact-form {
    padding: 38px;
    color: var(--ink);
    background: var(--white);
    border-radius: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label:not(.privacy-check, .honeypot) {
    margin-bottom: 18px;
    display: grid;
    gap: 8px;
}

.contact-form label > span:first-child {
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #bec6bf;
    border-radius: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    transition: border .2s;
}

.contact-form input,
.contact-form select {
    height: 46px;
}

.contact-form textarea {
    padding: 12px 0;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--orange);
}

.privacy-check {
    margin: 4px 0 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.privacy-check input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    accent-color: var(--ink);
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
}

.form-end {
    display: flex;
    align-items: center;
    gap: 24px;
}

.form-status {
    margin: 0;
    color: #397245;
    font-size: 11px;
    line-height: 1.45;
}

.form-status.error {
    color: #aa3f31;
}

.site-footer {
    width: var(--shell);
    margin: 0 auto;
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;
    gap: 30px;
    color: var(--muted);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-brand img {
    border-radius: 13px;
}

.footer-brand strong,
.footer-brand span,
.footer-company span,
.footer-end span {
    display: block;
}

.footer-brand strong {
    color: var(--ink);
    font-size: 14px;
}

.footer-brand span,
.footer-company,
.footer-end {
    font-size: 9px;
    line-height: 1.8;
}

.footer-company {
    justify-self: center;
}

.footer-company strong,
.footer-company span {
    display: block;
}

.footer-company strong {
    color: var(--ink);
}

.footer-company a {
    display: block;
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-end {
    justify-self: end;
    text-align: right;
}

.footer-end a {
    width: max-content;
    margin: 0 0 4px auto;
    color: var(--ink);
    font-weight: 800;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s, transform .75s cubic-bezier(.2, .8, .2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    :root { --shell: min(100% - 40px, 760px); }

    .site-header { grid-template-columns: 1fr auto; }
    .header-cta { display: none; }
    .menu-toggle {
        width: 44px;
        height: 44px;
        z-index: 3;
        display: grid;
        place-content: center;
        gap: 6px;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: var(--paper);
    }
    .menu-toggle span { width: 18px; height: 2px; display: block; background: var(--ink); 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); }
    .main-nav {
        position: fixed;
        z-index: 2;
        inset: 0;
        padding: 120px 28px 45px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        background: var(--acid);
        visibility: hidden;
        opacity: 0;
        transition: opacity .2s, visibility .2s;
    }
    .menu-open .main-nav { visibility: visible; opacity: 1; }
    .main-nav a { font-size: 38px; letter-spacing: -2px; }

    .hero { min-height: auto; padding-top: 70px; grid-template-columns: 1fr; }
    .hero-build { min-height: 590px; }
    .section-heading { grid-template-columns: 1fr; }
    .section-heading .eyebrow { margin-bottom: -5px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 520px; }
    .work-heading { align-items: start; flex-direction: column; }
    .process { grid-template-columns: 1fr; }
    .process-intro { position: static; }
    .statement { grid-template-columns: 80px 1fr; }
    .statement-details { grid-column: 2; }
    .contact { grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: 1fr 1fr; }
    .footer-company { justify-self: end; text-align: right; }
}

@media (max-width: 650px) {
    :root { --shell: calc(100% - 28px); }
    .site-header { height: 76px; }
    .site-header.scrolled::before { inset-inline: -5px; }
    .brand img { width: 38px; height: 38px; }
    .hero { padding: 50px 0 70px; }
    .hero h1 { font-size: clamp(49px, 15.5vw, 72px); letter-spacing: -3.8px; }
    .hero-intro { font-size: 16px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
    .hero-meta { margin-top: 50px; gap: 13px; }
    .hero-meta strong { font-size: 14px; }
    .hero-meta span { font-size: 8px; }
    .hero-build { min-height: 430px; }
    .brand-showcase { min-height: 470px; padding: 24px; box-shadow: 11px 11px 0 var(--acid); }
    .brand-showcase-top img { width: 135px; height: 135px; }
    .brand-showcase-name strong { font-size: 82px; letter-spacing: -6px; }
    .brand-showcase-name span { font-size: 24px; }
    .brand-showcase-services { gap: 7px; font-size: 7px; }
    .build-frame { border-width: 8px; box-shadow: 11px 11px 0 var(--acid); }
    .hero-build > p, .measure-side { display: none; }
    .section { padding: 95px 0; }
    .section-heading h2, .work-heading h2, .process-intro h2, .contact-copy h2 { font-size: 45px; letter-spacing: -2.8px; }
    .service-grid { margin-top: 45px; }
    .service-card { min-height: 540px; padding: 28px 24px; }
    .service-number { right: 20px; font-size: 60px; }
    .service-card h3 { margin-top: 100px; font-size: 38px; }
    .service-card ul { grid-template-columns: 1fr; }
    .filter-bar { overflow-x: auto; }
    .filter-bar button { white-space: nowrap; }
    .project-grid { grid-template-columns: 1fr; gap: 50px; }
    .project-card:nth-child(even) { margin-top: 0; }
    .project-placeholder > b { font-size: 60px; }
    .process { padding: 90px 22px; }
    .process-list li { grid-template-columns: 55px 1fr; }
    .statement { grid-template-columns: 1fr; gap: 25px; }
    .statement-mark { font-size: 90px; }
    .statement blockquote { font-size: 39px; letter-spacing: -2px; }
    .statement-details { grid-column: 1; }
    .contact { width: calc(100% - 16px); padding: 54px 18px; }
    .contact-form { padding: 27px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-end { align-items: flex-start; flex-direction: column; }
    .site-footer { grid-template-columns: 1fr; }
    .footer-company { justify-self: start; text-align: left; }
    .footer-end { justify-self: start; text-align: left; }
    .footer-end a { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .ticker-group { animation-duration: 60s !important; animation-iteration-count: infinite !important; }
}
