:root {
    --black: #0a0a0a;
    --charcoal: #171717;
    --graphite: #303030;
    --steel: #717171;
    --silver: #c9c9c9;
    --line: #d0cab3;
    --fog: #ddd7bf;
    --paper: #eee9ce;
    --white: #fffdf3;
    --coral: #df704d;
    --mustard: #e6bd42;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    color: var(--charcoal);
    background: var(--fog);
    font-family: "Bahnschrift", "Aptos", sans-serif;
    font-size: 16px;
    letter-spacing: 0;
}

button, input, textarea, select { font: inherit; }

.topbar {
    min-height: 76px;
    padding: 14px max(20px, calc((100vw - 1180px) / 2));
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--black);
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--black);
    background: var(--mustard);
    font-size: 14px;
    font-weight: 700;
}

.topbar strong, .topbar span { display: block; }
.topbar strong { font-size: 19px; font-weight: 700; }
.topbar span { margin-top: 4px; color: var(--steel); font-size: 11px; }
.topbar-label { margin-left: auto; color: var(--steel); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; }

.workspace {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
}

.intro-panel {
    min-height: calc(100vh - 76px);
    padding: 64px 34px;
    color: var(--white);
    background-color: var(--black);
    background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 32px 32px;
}

.eyebrow { margin: 0 0 18px; color: #a7a7a7; font-size: 12px; font-weight: 700; letter-spacing: 1.8px; }
.intro-panel h1 { max-width: 255px; margin: 0; font-size: 38px; font-weight: 600; line-height: 1.05; }
.intro-panel > p:not(.eyebrow) { max-width: 265px; margin-top: 24px; color: #c9c9c9; font-size: 15px; line-height: 1.65; }
.workflow { margin-top: 56px; display: grid; gap: 0; color: #898989; font-size: 13px; }
.workflow span { padding: 13px 0; border-top: 1px solid #2c2c2c; }
.workflow .active { color: var(--white); border-color: var(--white); }

.quote-form { min-width: 0; padding: 38px clamp(28px, 4vw, 48px) 100px; background: var(--paper); }
.form-section { max-width: 980px; padding: 34px 0 44px; border-bottom: 1px solid var(--line); }
.section-heading { margin-bottom: 28px; display: flex; align-items: flex-start; gap: 16px; }
.section-heading > span { min-width: 38px; padding-top: 5px; color: var(--coral); font-size: 13px; font-weight: 700; }
.section-heading h2 { margin: 0; color: var(--black); font-size: 27px; font-weight: 600; }
.section-heading p { margin: 6px 0 0; color: var(--steel); font-size: 15px; }

.fields-grid, .service-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 8px; color: var(--graphite); font-size: 14px; font-weight: 700; }
.field-wide { grid-column: 1 / -1; }
.field input, .field textarea, .field select {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid var(--silver);
    border-radius: 2px;
    outline: none;
    color: var(--black);
    background: var(--white);
    font-size: 16px;
    font-weight: 400;
    resize: vertical;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%); background-position: calc(100% - 19px) 20px, calc(100% - 14px) 20px; background-repeat: no-repeat; background-size: 5px 5px, 5px 5px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--black); box-shadow: 0 0 0 2px rgba(0, 0, 0, .09); }

.service-list { display: grid; gap: 12px; }
.service-row { display: grid; grid-template-columns: 86px 1fr; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; background: var(--white); }
.service-toggle { padding: 20px 12px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: #3e2119; background: var(--coral); border-right: 1px solid #bd593b; font-size: 13px; font-weight: 700; }
.service-toggle input { width: 17px; height: 17px; accent-color: var(--black); }
.service-fields { padding: 22px; }
.icon-button { width: 30px; height: 30px; margin-top: auto; border: 0; color: #777; background: transparent; font-size: 23px; cursor: pointer; }
.icon-button:hover { color: var(--black); background: #d7d7d7; }
.line-total { align-self: end; padding: 11px 0; color: var(--black); font-size: 17px; font-weight: 700; text-align: right; }
.secondary-button { margin-top: 16px; padding: 12px 16px; border: 1px solid var(--black); border-radius: 2px; color: var(--black); background: transparent; font-size: 14px; font-weight: 700; cursor: pointer; }
.secondary-button:hover { color: var(--white); background: var(--black); }

.alert { max-width: 980px; padding: 14px 16px; border: 1px solid #9a9a9a; color: var(--black); background: #e3e3e3; }
.form-actions { position: sticky; bottom: 0; z-index: 2; max-width: 980px; margin-top: 28px; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--white); background: var(--charcoal); box-shadow: 0 -10px 28px rgba(0, 0, 0, .12); border-radius: 12px; }
.form-actions span, .form-actions strong { display: block; }
.form-actions span { color: #bdbdbd; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.form-actions strong { margin-top: 4px; font-size: 25px; font-weight: 600; }
.primary-button { min-height: 48px; padding: 0 24px; border: 1px solid var(--mustard); border-radius: 24px; color: var(--black); background: var(--mustard); font-size: 14px; font-weight: 700; cursor: pointer; }
.primary-button:hover { color: var(--black); background: #f0ca59; }

@media (max-width: 1080px) {
    .workspace { grid-template-columns: 1fr; }
    .intro-panel { min-height: auto; padding: 38px max(24px, calc((100vw - 820px) / 2)); }
    .intro-panel h1 { max-width: 520px; font-size: 36px; }
    .intro-panel > p:not(.eyebrow) { max-width: 560px; }
    .workflow { margin-top: 28px; grid-template-columns: repeat(3, 1fr); }
    .workflow span { border-top: 1px solid #333; }
    .quote-form { width: min(860px, 100%); margin: 0 auto; padding: 28px 24px 90px; }
}

@media (max-width: 600px) {
    .topbar { min-height: 68px; padding: 11px 15px; }
    .brand-mark { width: 42px; height: 42px; }
    .topbar strong { font-size: 17px; }
    .topbar span { max-width: 245px; font-size: 10px; }
    .topbar-label { display: none; }
    .fields-grid, .service-fields { grid-template-columns: 1fr; }
    .field-wide { grid-column: auto; }
    .service-row { grid-template-columns: 1fr; }
    .service-toggle { padding: 9px 13px; flex-direction: row; justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--line); }
    .service-toggle .icon-button { margin: 0 0 0 auto; }
    .service-fields { padding: 17px; }
    .form-actions { position: static; align-items: stretch; flex-direction: column; margin-bottom: 0; }
    .primary-button { width: 100%; }
}

/* Public landing page */
html { scroll-behavior: smooth; }

body {
    overflow-x: hidden;
    background: #f3f1e9;
}

a { color: inherit; }

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    min-height: 84px;
    padding: 16px clamp(22px, 4vw, 68px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    color: #fff;
    background: rgba(17, 17, 17, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.site-brand .brand-mark {
    width: 42px;
    height: 42px;
    color: #111;
    background: #d8ff3e;
}

.site-brand strong {
    font-size: 15px;
    letter-spacing: 1.2px;
}

.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.site-nav a { font-size: 13px; font-weight: 600; text-decoration: none; }
.site-nav a:hover { color: #d8ff3e; }

.nav-cta {
    justify-self: end;
    padding: 12px 0 10px;
    border-bottom: 1px solid #d8ff3e;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.nav-cta span, .primary-button span { margin-left: 8px; }

.hero {
    position: relative;
    min-height: min(920px, calc(100svh - 84px));
    padding: 140px clamp(22px, 6vw, 92px) 72px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    color: #fff;
    background: #111;
}

.hero-media, .hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media {
    background: url("../images/hero-production.jpg") center 42% / cover no-repeat;
    animation: hero-reveal 1.2s ease-out both;
}

.hero-shade {
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .46) 55%, rgba(0, 0, 0, .18) 100%), linear-gradient(0deg, rgba(0, 0, 0, .62), transparent 52%);
}

.hero-content { width: min(1320px, 100%); margin: 0 auto; }
.hero .eyebrow { margin: 0 0 20px; color: #d8ff3e; font-size: 12px; letter-spacing: 2px; }

.hero h1 {
    margin: 0;
    max-width: 960px;
    font-family: "Bodoni MT", Didot, "Times New Roman", serif;
    font-size: 176px;
    font-weight: 400;
    line-height: .71;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-intro {
    width: min(580px, 48%);
    margin: 54px 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.hero-intro p { margin: 0; max-width: 330px; color: #dedede; font-size: 17px; line-height: 1.55; }

.hero .primary-button {
    width: auto;
    min-width: 218px;
    min-height: 52px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: #d8ff3e;
    border-radius: 0;
    color: #111;
    background: #d8ff3e;
    text-decoration: none;
}

.hero-index {
    position: absolute;
    right: clamp(22px, 4vw, 68px);
    bottom: 30px;
    left: clamp(22px, 4vw, 68px);
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    letter-spacing: 1.5px;
}

.signal-band {
    min-height: 82px;
    padding: 20px clamp(22px, 4vw, 68px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    overflow: hidden;
    color: #111;
    background: #d8ff3e;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.signal-band b { font-size: 25px; font-weight: 300; }

.services-section, .value-section, .quote-area, .portfolio-preview {
    padding: 110px clamp(22px, 6vw, 92px);
}

.section-kicker {
    width: 100%;
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid #b8b6ae;
}

.section-kicker span { color: #ef5d3f; font-size: 12px; font-weight: 700; }
.section-kicker p { margin: 0; color: #565550; font-size: 11px; font-weight: 700; letter-spacing: 1.8px; }

.services-heading {
    max-width: 1320px;
    margin: 64px auto 72px;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, .8fr);
    align-items: end;
    gap: 60px;
}

.services-heading h2, .value-intro h2, .process-heading h2, .quote-heading h2, .contact-section h2 {
    margin: 0;
    color: #111;
    font-family: "Bodoni MT", Didot, "Times New Roman", serif;
    font-size: 88px;
    font-weight: 400;
    line-height: .94;
    letter-spacing: 0;
}

.services-heading > p { margin: 0; color: #55544f; font-size: 17px; line-height: 1.7; }

.services-grid { max-width: 1320px; margin: 0 auto; border-top: 1px solid #b8b6ae; }

.service-card {
    display: grid;
    grid-template-columns: 9% 1fr;
    padding: 36px 0;
    border-bottom: 1px solid #b8b6ae;
}

.service-card > span { padding-top: 7px; color: #ef5d3f; font-size: 12px; font-weight: 700; }
.service-card > div { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(300px, 1.2fr) 150px; align-items: start; gap: 48px; }
.service-card h3 { margin: 0; max-width: 360px; color: #111; font-size: 24px; font-weight: 600; line-height: 1.15; }
.service-card p { margin: 0; display: -webkit-box; overflow: hidden; color: #65635d; font-size: 14px; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.service-card strong { color: #111; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

.showcase {
    min-height: 720px;
    display: grid;
    grid-template-columns: 55% 45%;
    color: #fff;
    background: #111;
}

.showcase-image { background: url("../images/production-set.jpg") center / cover no-repeat; }
.showcase-statement { padding: clamp(50px, 8vw, 120px) clamp(32px, 6vw, 90px); display: flex; flex-direction: column; justify-content: space-between; }
.showcase-statement > p { margin: 0; color: #d8ff3e; font-size: 11px; font-weight: 700; letter-spacing: 1.8px; }
.showcase blockquote { margin: 80px 0 0; font-family: "Bodoni MT", Didot, "Times New Roman", serif; font-size: 68px; line-height: 1.02; }
.showcase blockquote em { color: #d8ff3e; font-weight: 400; }

.portfolio-preview { background: #f3f1e9; }
.portfolio-preview-heading { max-width: 1320px; margin: 62px auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.portfolio-preview-heading h2 { margin: 0; color: #111; font-family: "Bodoni MT", Didot, "Times New Roman", serif; font-size: 88px; font-weight: 400; line-height: .94; }
.portfolio-preview-heading a, .portfolio-cta > a { padding: 13px 0; border-bottom: 1px solid #111; color: #111; font-size: 13px; font-weight: 700; text-decoration: none; }
.portfolio-preview-heading a span, .portfolio-cta > a span { margin-left: 10px; }
.portfolio-preview-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: repeat(2, 280px); gap: 16px; }
.preview-project { position: relative; min-width: 0; overflow: hidden; color: #fff; background: #111; text-decoration: none; }
.preview-project-large { grid-row: 1 / 3; }
.preview-project img { width: 100%; height: 100%; display: block; object-fit: cover; opacity: .78; transition: transform .5s ease, opacity .3s ease; }
.preview-project::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, .82)); }
.preview-project > span { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.preview-project b { font-family: "Bodoni MT", Didot, "Times New Roman", serif; font-size: 28px; font-weight: 400; }
.preview-project small { max-width: 190px; color: #d8ff3e; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-align: right; }
.preview-project:hover img { transform: scale(1.025); opacity: .94; }

/* Portfolio page */
.portfolio-page { background: #111; }
.portfolio-site-header { background: rgba(17, 17, 17, .94); }
.portfolio-hero { min-height: 680px; padding: 120px clamp(22px, 6vw, 92px) 70px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: #111; }
.portfolio-hero .eyebrow { color: #d8ff3e; }
.portfolio-hero h1 { margin: 20px 0 0; font-family: "Bodoni MT", Didot, "Times New Roman", serif; font-size: 176px; font-weight: 400; line-height: .78; text-transform: uppercase; }
.portfolio-hero > div { margin-top: 76px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.portfolio-hero > div p { max-width: 520px; margin: 0; color: #c8c8c8; font-size: 19px; line-height: 1.55; }
.portfolio-hero > div span { color: #777; font-size: 10px; letter-spacing: 1.4px; }
.portfolio-index { min-height: 80px; padding: 20px clamp(22px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #111; background: #d8ff3e; font-size: 14px; font-weight: 700; }
.portfolio-projects { background: #f3f1e9; }
.portfolio-project { min-height: 700px; display: grid; grid-template-columns: 56% 44%; border-bottom: 1px solid #b8b6ae; }
.portfolio-project-reverse { grid-template-columns: 44% 56%; }
.portfolio-project-reverse figure { order: 2; }
.portfolio-project figure { min-width: 0; min-height: 620px; margin: 0; overflow: hidden; background: #222; }
.portfolio-project figure img { width: 100%; height: 100%; display: block; object-fit: cover; }
.portfolio-project-copy { padding: clamp(45px, 7vw, 100px); display: flex; flex-direction: column; }
.portfolio-project-copy > span { color: #ef5d3f; font-size: 12px; font-weight: 700; }
.portfolio-project-copy > p { margin: 80px 0 18px; color: #66645e; font-size: 10px; font-weight: 700; letter-spacing: 1.4px; }
.portfolio-project-copy h2 { margin: 0; color: #111; font-family: "Bodoni MT", Didot, "Times New Roman", serif; font-size: 64px; font-weight: 400; line-height: .95; }
.project-description { margin-top: auto; padding-top: 50px; border-top: 1px solid #b8b6ae; }
.project-description p { margin: 0 0 28px; color: #615f59; font-size: 15px; line-height: 1.7; }
.project-description a { color: #111; font-size: 12px; font-weight: 700; text-decoration: none; }
.project-description a span { margin-left: 8px; }
.portfolio-cta { padding: 130px clamp(22px, 6vw, 92px); color: #111; background: #ef5d3f; }
.portfolio-cta > p { margin: 0 0 48px; font-size: 11px; font-weight: 700; letter-spacing: 1.8px; }
.portfolio-cta h2 { margin: 0 0 70px; font-family: "Bodoni MT", Didot, "Times New Roman", serif; font-size: 112px; font-weight: 400; line-height: .86; }

.value-section { background: #fff; }
.value-layout { max-width: 1320px; margin: 70px auto 0; display: grid; grid-template-columns: minmax(300px, .9fr) minmax(440px, 1.1fr); gap: clamp(60px, 10vw, 160px); }
.value-intro { position: sticky; top: 40px; align-self: start; }
.value-intro h2 { font-size: 68px; }
.value-intro > p { max-width: 550px; margin: 36px 0 0; color: #64625d; line-height: 1.75; }
.benefits-list { border-top: 1px solid #ceccc5; }
.benefit-row { padding: 28px 0 30px; display: grid; grid-template-columns: 42px 1fr; gap: 20px; border-bottom: 1px solid #ceccc5; }
.benefit-row > span { padding-top: 3px; color: #ef5d3f; font-size: 11px; font-weight: 700; }
.benefit-row h3 { margin: 0; color: #111; font-size: 21px; }
.benefit-row p { margin: 10px 0 0; color: #67655f; font-size: 14px; line-height: 1.65; }

.process-section { padding: 110px clamp(22px, 6vw, 92px); color: #fff; background: #141414; }
.section-kicker-light { border-color: #3f3f3f; }
.section-kicker-light p { color: #aaa; }
.process-heading { max-width: 1320px; margin: 64px auto 70px; display: grid; grid-template-columns: 1fr 360px; align-items: end; gap: 60px; }
.process-heading h2 { color: #fff; }
.process-heading > p { margin: 0; color: #aaa; font-size: 16px; line-height: 1.7; }
.process-list { max-width: 1320px; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; border-top: 1px solid #454545; border-bottom: 1px solid #454545; }
.process-list li { min-height: 330px; padding: 26px 24px; border-right: 1px solid #454545; }
.process-list li:first-child { border-left: 1px solid #454545; }
.process-list span { color: #d8ff3e; font-size: 11px; }
.process-list h3 { margin: 70px 0 15px; font-size: 18px; line-height: 1.25; }
.process-list p { margin: 0; color: #999; font-size: 13px; line-height: 1.6; }

.quote-area { background: #f3f1e9; }
.quote-heading { max-width: 1320px; margin: 0 auto; }
.quote-heading h2 { margin-top: 60px; }
.quote-heading > p { max-width: 530px; margin: 28px 0 0 auto; color: #5e5c57; font-size: 16px; line-height: 1.7; }

.lead-form {
    width: min(1120px, 100%);
    margin: 80px auto 0;
    padding: clamp(24px, 4vw, 54px);
    background: #fff;
    border-top: 5px solid #111;
}

.lead-block { padding: 42px 0 52px; border-bottom: 1px solid #ceccc5; }
.lead-block:first-child { padding-top: 0; }
.lead-block-heading { margin-bottom: 32px; display: grid; grid-template-columns: 46px 1fr; }
.lead-block-heading > span { padding-top: 5px; color: #ef5d3f; font-size: 12px; font-weight: 700; }
.lead-block-heading h3 { margin: 0; color: #111; font-size: 27px; }
.lead-block-heading p { margin: 7px 0 0; color: #74716b; font-size: 14px; }

.service-options { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 0; gap: 12px; }
.service-option { position: relative; display: block; cursor: pointer; }
.service-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.service-option > span { min-height: 92px; padding: 20px; display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 14px; color: #111; background: #f3f1e9; border: 1px solid #d5d2c9; transition: border-color .15s ease, background-color .15s ease; }
.service-option b { color: #ef5d3f; font-size: 11px; }
.service-option strong { font-size: 16px; line-height: 1.3; }
.service-option input:checked + span { background: #d8ff3e; border-color: #111; }
.service-option input:focus-visible + span { outline: 2px solid #111; outline-offset: 2px; }
.service-option input:checked + span::after { content: "✓"; justify-self: end; font-size: 20px; font-weight: 700; }
.service-option input:checked + span { grid-template-columns: 34px 1fr auto; }
.service-options.has-error { outline: 2px solid #b42318; outline-offset: 5px; }
.field-error { margin: 14px 0 0; color: #b42318; font-size: 13px; font-weight: 700; }

.lead-actions { padding-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.lead-actions p { max-width: 510px; margin: 0; color: #6a6862; font-size: 13px; line-height: 1.55; }
.lead-actions .primary-button { min-width: 235px; border-radius: 0; color: #111; background: #d8ff3e; border-color: #d8ff3e; }
.lead-actions .primary-button:hover { background: #c9f02f; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.contact-section { padding: 120px clamp(22px, 6vw, 92px) 90px; color: #fff; background: #ef5d3f; }
.contact-section > p { margin: 0 0 38px; font-size: 11px; font-weight: 700; letter-spacing: 1.8px; }
.contact-section h2 { color: #111; font-size: 210px; line-height: .75; }
.contact-grid { margin-top: 100px; padding-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; border-top: 1px solid rgba(0, 0, 0, .35); }
.contact-grid a, .contact-grid span { color: #111; font-size: 18px; font-weight: 700; text-decoration: none; }

.site-footer { min-height: 86px; padding: 24px clamp(22px, 4vw, 68px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; color: #aaa; background: #111; font-size: 10px; letter-spacing: 1.2px; }
.site-footer strong { color: #fff; font-size: 13px; }
.site-footer span:last-child { justify-self: end; }

@keyframes hero-reveal {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-media { animation: none; }
}

@media (max-width: 980px) {
    .site-header { grid-template-columns: 1fr auto; }
    .site-nav { display: none; }
    .hero { min-height: max(620px, calc(100svh - 84px)); }
    .hero h1 { font-size: 118px; }
    .hero-intro { width: min(620px, 80%); }
    .service-card > div { grid-template-columns: 1fr 1.2fr; }
    .service-card strong { grid-column: 1; }
    .showcase { min-height: 640px; grid-template-columns: 48% 52%; }
    .showcase blockquote { font-size: 52px; }
    .value-layout { grid-template-columns: 1fr; }
    .value-intro { position: static; }
    .process-list { grid-template-columns: repeat(2, 1fr); }
    .process-list li { min-height: 280px; border-bottom: 1px solid #454545; }
    .process-list li:last-child { grid-column: 1 / -1; }
    .contact-section h2 { font-size: 128px; }
    .portfolio-preview-heading h2 { font-size: 70px; }
    .portfolio-project { min-height: 620px; grid-template-columns: 1fr 1fr; }
    .portfolio-project-copy h2 { font-size: 48px; }
    .portfolio-hero h1 { font-size: 118px; }
    .portfolio-cta h2 { font-size: 84px; }
}

@media (max-width: 680px) {
    .site-header { min-height: 70px; padding: 12px 16px; }
    .site-brand .brand-mark { width: 38px; height: 38px; }
    .site-brand strong { max-width: 70px; font-size: 11px; line-height: 1.05; }
    .nav-cta { font-size: 11px; }
    .hero { min-height: max(520px, calc(100svh - 70px)); padding: 54px 20px 44px; }
    .hero-media { background-position: 58% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .2)), linear-gradient(0deg, rgba(0, 0, 0, .75), transparent 65%); }
    .hero h1 { font-size: 76px; line-height: .75; }
    .hero-intro { width: 100%; margin-top: 28px; align-items: stretch; flex-direction: column; gap: 18px; }
    .hero-intro p { font-size: 15px; }
    .hero .primary-button { width: 100%; }
    .hero-index { display: none; }
    .signal-band { justify-content: flex-start; }
    .signal-band span:nth-of-type(n+3), .signal-band b:nth-of-type(n+2) { display: none; }
    .services-section, .value-section, .process-section, .quote-area, .portfolio-preview { padding: 78px 20px; }
    .services-heading { margin: 44px 0 52px; grid-template-columns: 1fr; gap: 28px; }
    .services-heading h2, .quote-heading h2 { font-size: 50px; }
    .service-card { grid-template-columns: 38px 1fr; }
    .service-card > div { grid-template-columns: 1fr; gap: 18px; }
    .service-card strong { grid-column: auto; }
    .showcase { min-height: 720px; grid-template-columns: 1fr; grid-template-rows: 48% 52%; }
    .showcase-statement { padding: 44px 20px; }
    .showcase blockquote { margin-top: 50px; font-size: 44px; }
    .value-layout { margin-top: 46px; gap: 54px; }
    .value-intro h2 { font-size: 48px; }
    .process-heading { margin: 46px 0 52px; grid-template-columns: 1fr; gap: 30px; }
    .process-heading h2 { font-size: 48px; }
    .process-list { grid-template-columns: 1fr; }
    .process-list li, .process-list li:last-child { min-height: 0; grid-column: auto; border-left: 1px solid #454545; }
    .process-list h3 { margin-top: 38px; }
    .quote-heading > p { margin-left: 0; }
    .lead-form { margin-top: 50px; padding: 22px 16px; }
    .lead-block { padding: 34px 0 40px; }
    .lead-block-heading { grid-template-columns: 34px 1fr; }
    .lead-block-heading h3 { font-size: 23px; }
    .service-options { grid-template-columns: 1fr; }
    .service-option > span { min-height: 80px; }
    .lead-actions { align-items: stretch; flex-direction: column; }
    .lead-actions .primary-button { width: 100%; }
    .portfolio-preview-heading { margin: 44px 0; align-items: flex-start; flex-direction: column; }
    .portfolio-preview-heading h2 { font-size: 50px; }
    .portfolio-preview-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 330px); }
    .preview-project-large { grid-row: auto; }
    .preview-project > span { align-items: flex-start; flex-direction: column; }
    .preview-project small { text-align: left; }
    .portfolio-hero { min-height: 620px; padding: 110px 20px 54px; }
    .portfolio-hero h1 { font-size: 54px; }
    .portfolio-hero > div { margin-top: 60px; align-items: flex-start; flex-direction: column; }
    .portfolio-index { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
    .portfolio-index span:nth-of-type(n+3), .portfolio-index b:nth-of-type(n+2) { display: none; }
    .portfolio-project, .portfolio-project-reverse { min-height: 0; grid-template-columns: 1fr; }
    .portfolio-project-reverse figure { order: 0; }
    .portfolio-project figure { min-height: 430px; }
    .portfolio-project-copy { min-height: 500px; padding: 46px 20px; }
    .portfolio-project-copy > p { margin-top: 60px; }
    .portfolio-project-copy h2 { font-size: 48px; }
    .portfolio-cta { padding: 90px 20px; }
    .portfolio-cta h2 { font-size: 58px; }
    .contact-section { padding: 90px 20px 60px; }
    .contact-section h2 { font-size: 78px; }
    .contact-grid { margin-top: 70px; grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: 1fr auto; }
    .site-footer span:first-of-type { display: none; }
}