:root {
    --ink: #141719;
    --graphite: #242b2f;
    --muted: #657079;
    --line: #dfe5e7;
    --paper: #ffffff;
    --surface: #f3f5f3;
    --stone: #d4c9bb;
    --crimson: #ad202b;
    --crimson-dark: #841923;
    --brass: #b88d3f;
    --sage: #718579;
    --shadow: 0 22px 64px rgba(20, 23, 25, 0.15);
}

* {
    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;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

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

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

.container {
    width: min(1220px, calc(100% - 44px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(223, 229, 231, 0.86);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(20, 23, 25, 0.08);
}

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

.brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 0;
    color: var(--ink);
    font-weight: 950;
}

.brand-name {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(168px, 17vw, 226px);
    height: 72px;
    flex: 0 0 auto;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--paper);
}

.brand-fallback {
    position: absolute;
    font-size: 0.82rem;
    font-weight: 950;
}

.brand-mark img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #2b3337;
    font-size: 0.92rem;
    font-weight: 850;
}

.site-nav a {
    position: relative;
    transition: color 0.18s ease, background 0.18s ease;
}

.site-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--crimson);
    transition: transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--crimson);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    color: var(--paper) !important;
    background: var(--ink);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--brass);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.section {
    padding: 104px 0;
}

.section-heading.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 44px;
    align-items: end;
    margin-bottom: 42px;
}

.section-heading h2,
.visual-intro h2,
.brand-band h2,
.cta-card h2,
.story-copy h2,
.values-section h2,
.service-detail-card h2,
.project-toolbar h2,
.contact-page h2,
.detail-copy h2,
.image-banner h2 {
    margin: 0;
    font-size: 3rem;
    line-height: 1.07;
    font-weight: 950;
}

.section-heading p,
.visual-intro p,
.story-copy p,
.service-detail-card p,
.contact-page p,
.detail-copy p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 950;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--paper);
    background: var(--crimson);
}

.btn-primary:hover {
    background: var(--crimson-dark);
}

.btn-light {
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
    color: var(--ink);
    border-color: var(--ink);
    background: transparent;
}

.btn-outline:hover {
    color: var(--paper);
    background: var(--ink);
}

.hero-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--crimson);
    font-weight: 950;
}

.text-link::after {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}

.home-hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 80px);
    color: var(--paper);
    background:
        linear-gradient(90deg, rgba(20, 23, 25, 0.9), rgba(20, 23, 25, 0.62) 45%, rgba(20, 23, 25, 0.28)),
        var(--hero-image) center / cover;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
    background-size: 82px 82px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
    gap: 56px;
    align-items: center;
    min-height: calc(100vh - 146px);
    padding: 86px 0 120px;
}

.home-hero-copy h1 {
    max-width: 860px;
    margin: 0;
    font-size: 5.4rem;
    line-height: 0.96;
    font-weight: 950;
}

.home-hero-copy p:not(.eyebrow) {
    max-width: 670px;
    margin: 24px 0 0;
    color: #dce2e2;
    font-size: 1.12rem;
}

.hero-gallery {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    grid-template-rows: 320px 220px;
    gap: 14px;
    align-items: stretch;
}

.hero-gallery img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.hero-gallery .gallery-main {
    grid-row: span 2;
}

.hero-marquee {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(20, 23, 25, 0.8);
    backdrop-filter: blur(12px);
}

.hero-marquee span {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    color: #dce2e2;
    font-weight: 900;
}

.hero-marquee span:last-child {
    border-right: 0;
}

.visual-intro {
    background: var(--paper);
}

.visual-intro-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 62px;
    align-items: center;
}

.intro-stack {
    position: relative;
}

.intro-stack img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.intro-stack div {
    position: absolute;
    right: -28px;
    bottom: 32px;
    width: min(310px, calc(100% - 32px));
    padding: 22px;
    border-radius: 8px;
    color: var(--paper);
    background: var(--graphite);
}

.intro-stack strong,
.intro-stack span {
    display: block;
}

.intro-stack strong {
    font-size: 1.1rem;
}

.intro-stack span {
    margin-top: 8px;
    color: #d7ddde;
}

.service-preview,
.values-section,
.process {
    background: var(--surface);
}

.visual-service-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.875fr 0.875fr;
    gap: 18px;
}

.visual-service {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 28px;
    border-radius: 8px;
    color: var(--paper);
    background:
        linear-gradient(0deg, rgba(20, 23, 25, 0.88), rgba(20, 23, 25, 0.18)),
        var(--service-image) center / cover;
}

.visual-service.large {
    min-height: 520px;
}

.visual-service span {
    color: #f2d58f;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.visual-service strong {
    max-width: 430px;
    margin-top: 10px;
    font-size: 1.7rem;
    line-height: 1.12;
}

.home-projects {
    background: var(--paper);
}

.home-project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 18px;
}

.home-project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    border-radius: 8px;
    color: var(--paper);
    background: var(--graphite);
}

.home-project-card.wide {
    grid-column: span 2;
    grid-row: span 2;
}

.home-project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.home-project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 23, 25, 0.92), rgba(20, 23, 25, 0.06));
}

.home-project-card:hover img {
    transform: scale(1.045);
    opacity: 0.92;
}

.home-project-card span,
.home-project-card strong {
    position: relative;
    z-index: 2;
}

.home-project-card span {
    color: #f2d58f;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.home-project-card strong {
    margin-top: 8px;
    font-size: 1.38rem;
    line-height: 1.18;
}

.home-project-card.wide strong {
    font-size: 2.3rem;
}

.brand-band {
    padding: 92px 0;
    color: var(--paper);
    background:
        linear-gradient(90deg, rgba(20, 23, 25, 0.96), rgba(20, 23, 25, 0.74)),
        url("https://images.unsplash.com/photo-1590959651373-a3db0f38a961?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.brand-band-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 48px;
    align-items: center;
}

.brand-band-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

.brand-band-list span {
    min-height: 88px;
    display: flex;
    align-items: center;
    padding: 18px;
    background: rgba(20, 23, 25, 0.56);
    font-weight: 900;
}

.cta-section {
    background: var(--paper);
}

.cta-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
    padding: 28px;
    border-radius: 8px;
    background: var(--surface);
}

.cta-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.page-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    color: var(--paper);
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(20, 23, 25, 0.88), rgba(20, 23, 25, 0.58), rgba(20, 23, 25, 0.16)),
        var(--page-image) center / cover;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 150px;
    background: linear-gradient(0deg, rgba(20, 23, 25, 0.72), transparent);
}

.page-hero-inner {
    padding: 92px 0 74px;
}

.page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: 4.6rem;
    line-height: 1;
    font-weight: 950;
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 22px 0 0;
    color: #dce2e2;
    font-size: 1.1rem;
}

.story-section {
    background: var(--paper);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
    gap: 58px;
    align-items: center;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
}

.fact-grid div {
    padding: 20px;
    border-top: 3px solid var(--crimson);
    border-radius: 8px;
    background: var(--surface);
}

.fact-grid strong,
.fact-grid span {
    display: block;
}

.fact-grid strong {
    font-size: 2rem;
    line-height: 1;
}

.fact-grid span {
    margin-top: 10px;
    color: var(--muted);
    font-weight: 800;
}

.story-images {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 16px;
}

.story-images img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.story-images img:first-child {
    height: 430px;
    margin-top: 70px;
}

.story-images img:last-child {
    height: 540px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.value-grid article {
    min-height: 310px;
    padding: 28px;
    background: var(--paper);
}

.value-grid span,
.service-detail-card span,
.process-line span {
    display: inline-flex;
    color: var(--brass);
    font-weight: 950;
}

.value-grid h3 {
    margin: 88px 0 10px;
    font-size: 1.3rem;
}

.value-grid p {
    margin: 0;
    color: var(--muted);
}

.image-banner {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    color: var(--paper);
    overflow: hidden;
}

.image-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 23, 25, 0.9), rgba(20, 23, 25, 0.16));
}

.image-banner-content {
    position: relative;
    z-index: 2;
    padding-bottom: 72px;
}

.image-banner h2 {
    max-width: 760px;
}

.service-detail-section {
    background: var(--paper);
}

.service-detail-list {
    display: grid;
    gap: 28px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.service-detail-card.reverse {
    grid-template-columns: 0.96fr 1.04fr;
}

.service-detail-card.reverse img {
    order: 2;
}

.service-detail-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.service-detail-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--paper);
}

.process-line article {
    min-height: 260px;
    padding: 28px;
    border-right: 1px solid var(--line);
}

.process-line article:last-child {
    border-right: 0;
}

.process-line h3 {
    margin: 78px 0 10px;
    font-size: 1.32rem;
}

.process-line p {
    margin: 0;
    color: var(--muted);
}

.projects-page {
    background: var(--paper);
}

.project-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    gap: 30px;
    align-items: end;
    margin-bottom: 38px;
}

.project-toolbar h2 {
    margin: 0;
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.project-filters button {
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    background: var(--paper);
    cursor: pointer;
    font-weight: 900;
}

.project-filters button.is-active,
.project-filters button:hover {
    color: var(--paper);
    border-color: var(--ink);
    background: var(--ink);
}

.project-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.project-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 16px 46px rgba(20, 23, 25, 0.07);
}

.project-card.is-hidden {
    display: none;
}

.project-card.is-featured {
    grid-column: span 2;
    grid-template-columns: 1.08fr 0.92fr;
}

.project-media {
    position: relative;
    display: block;
    min-height: 300px;
    overflow: hidden;
    background: var(--surface);
}

.project-card.is-featured .project-media {
    min-height: 450px;
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-media img {
    transform: scale(1.045);
}

.project-media span {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 7px 10px;
    border-radius: 6px;
    color: var(--paper);
    background: rgba(20, 23, 25, 0.78);
    font-size: 0.78rem;
    font-weight: 950;
}

.project-body {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--crimson);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.project-meta span:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: var(--stone);
}

.project-body h3 {
    margin: 12px 0 12px;
    font-size: 1.38rem;
    line-height: 1.2;
}

.project-card.is-featured .project-body h3 {
    font-size: 2rem;
}

.project-body p {
    margin: 0;
    color: var(--muted);
}

.empty-state {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: var(--surface);
}

.contact-page {
    padding: 104px 0;
    background: var(--paper);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: start;
}

.contact-visual {
    position: sticky;
    top: 112px;
}

.contact-visual img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info-card {
    width: calc(100% - 40px);
    margin: -72px auto 0;
    position: relative;
    z-index: 2;
    padding: 22px;
    border-radius: 8px;
    color: var(--paper);
    background: var(--graphite);
}

.contact-info-card strong,
.contact-info-card span {
    display: block;
}

.contact-info-card span {
    margin-top: 8px;
    color: #d7ddde;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-list.horizontal {
    grid-template-columns: repeat(3, 1fr);
}

.contact-list a,
.contact-list span {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 12px 14px;
    border-left: 3px solid var(--crimson);
    background: var(--surface);
    color: var(--ink);
    font-weight: 900;
}

.contact-form {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

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

label {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
    color: #2a343a;
    font-size: 0.92rem;
    font-weight: 900;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #cfd7da;
    border-radius: 6px;
    padding: 13px 14px;
    background: var(--paper);
    color: var(--ink);
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--crimson);
    box-shadow: 0 0 0 3px rgba(173, 32, 43, 0.13);
}

.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px solid #bdd9c5;
    border-radius: 6px;
    background: #eff9f2;
    color: #21592e;
    font-weight: 850;
}

.alert.error {
    border-color: #efb8bd;
    background: #fff0f1;
    color: var(--crimson-dark);
}

.project-hero {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: flex-end;
    color: var(--paper);
    overflow: hidden;
    background: var(--ink);
}

.project-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
}

.project-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 23, 25, 0.94), rgba(20, 23, 25, 0.18));
}

.project-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 0 76px;
}

.project-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: 4.2rem;
    line-height: 1.04;
    font-weight: 950;
}

.project-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 18px 0 0;
    color: #dbe1e1;
    font-size: 1.08rem;
}

.back-link {
    display: inline-flex;
    margin-bottom: 24px;
    color: #f2d58f;
    font-weight: 950;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 56px;
    align-items: start;
}

.detail-panel {
    align-self: start;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.detail-panel dl {
    display: grid;
    gap: 18px;
    margin: 0;
}

.detail-panel div {
    display: grid;
    gap: 4px;
}

.detail-panel dt {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 950;
    text-transform: uppercase;
}

.detail-panel dd {
    margin: 0;
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 950;
}

.scope-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.scope-list div {
    padding: 18px;
    border-left: 3px solid var(--crimson);
    background: var(--surface);
}

.scope-list span,
.scope-list strong {
    display: block;
}

.scope-list span {
    color: var(--crimson);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.scope-list strong {
    margin-top: 6px;
    font-size: 1rem;
    line-height: 1.4;
}

.detail-copy .btn {
    margin-top: 26px;
}

.not-found {
    min-height: 68vh;
}

.site-footer {
    padding: 56px 0 28px;
    color: #dce2e3;
    background: #101416;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 0.55fr 0.75fr;
    gap: 54px;
}

.footer-brand {
    color: var(--paper);
}

.footer-brand .brand-mark {
    width: clamp(172px, 18vw, 230px);
    height: 76px;
    padding: 8px;
    border-radius: 8px;
    background: var(--paper);
}

.footer-main p {
    max-width: 520px;
    margin: 18px 0 0;
    color: #aeb8bd;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--paper);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.site-footer a {
    display: table;
    margin-top: 8px;
    color: #c8d0d3;
    font-weight: 800;
}

.site-footer .footer-brand {
    display: inline-flex;
    margin-top: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9facb1;
    font-size: 0.88rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .home-hero-grid,
    .visual-intro-grid,
    .story-grid,
    .contact-page-grid,
    .project-detail-grid,
    .brand-band-grid,
    .cta-card,
    .section-heading.split,
    .project-toolbar {
        grid-template-columns: 1fr;
    }

    .hero-gallery {
        max-width: 760px;
    }

    .visual-service-grid,
    .project-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .project-card.is-featured,
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse img {
        order: 0;
    }

    .contact-visual {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .header-inner {
        min-height: 70px;
    }

    .brand-mark {
        width: 138px;
        height: 52px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 70px;
        left: 14px;
        right: 14px;
        display: none;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--paper);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: grid;
        gap: 14px;
    }

    .site-nav a::after {
        display: none;
    }

    .nav-cta {
        justify-content: center;
    }

    .home-hero {
        min-height: auto;
    }

    .home-hero-grid {
        min-height: auto;
        padding: 70px 0 130px;
    }

    .home-hero-copy h1,
    .page-hero h1,
    .project-hero h1 {
        font-size: 2.75rem;
    }

    .section-heading h2,
    .visual-intro h2,
    .brand-band h2,
    .cta-card h2,
    .story-copy h2,
    .values-section h2,
    .service-detail-card h2,
    .project-toolbar h2,
    .contact-page h2,
    .detail-copy h2,
    .image-banner h2 {
        font-size: 2rem;
    }

    .section,
    .contact-page,
    .brand-band {
        padding: 72px 0;
    }

    .hero-gallery,
    .story-images,
    .fact-grid,
    .value-grid,
    .visual-service-grid,
    .home-project-grid,
    .brand-band-list,
    .process-line,
    .project-showcase,
    .contact-list.horizontal,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-gallery {
        grid-template-rows: auto;
    }

    .hero-gallery img,
    .hero-gallery .gallery-main,
    .intro-stack img,
    .story-images img:first-child,
    .story-images img:last-child,
    .contact-visual img,
    .cta-card img,
    .service-detail-card img {
        height: 330px;
        margin-top: 0;
    }

    .hero-marquee {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-marquee span {
        min-height: 52px;
        font-size: 0.88rem;
    }

    .intro-stack div {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        margin: -36px 16px 0;
    }

    .visual-service.large,
    .visual-service {
        min-height: 320px;
    }

    .home-project-card.wide {
        grid-column: auto;
        grid-row: auto;
    }

    .home-project-card,
    .home-project-grid {
        grid-auto-rows: 300px;
    }

    .home-project-card.wide strong {
        font-size: 1.38rem;
    }

    .page-hero {
        min-height: 430px;
    }

    .page-hero-inner {
        padding: 76px 0 56px;
    }

    .value-grid article,
    .process-line article {
        min-height: auto;
    }

    .value-grid h3,
    .process-line h3 {
        margin-top: 46px;
    }

    .project-card.is-featured {
        grid-column: auto;
    }

    .project-card.is-featured .project-media,
    .project-media {
        min-height: 280px;
    }

    .project-card.is-featured .project-body h3 {
        font-size: 1.38rem;
    }

    .project-filters {
        justify-content: flex-start;
    }

    .contact-form,
    .service-detail-card div {
        padding: 22px;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
