*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0a0a0a;
    --dark: #181818;
    --panel: #1e1e1e;
    --border: #333;
    --steel: #555;
    --mid: #888;
    --light: #bbb;
    --white: #f0ede8;
    --accent: #d4a853;
    --accent-dim: #9a7a3a;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
}

/* Custom cursor */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(212, 168, 83, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, transform 0.08s linear;
}

.cursor-ring.hovered {
    width: 48px;
    height: 48px;
    border-color: var(--accent);
}

/* Noise overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9000;
    opacity: 0.6;
}

/* ── NAVIGATION ──────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    border-bottom: 1px solid rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(16px);
    background: rgba(10, 10, 10, 0.85);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.12em;
    color: var(--white);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--black) !important;
    padding: 8px 20px !important;
    letter-spacing: 0.1em;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: #e8b85e !important;
}

/* ── HAMBURGER ───────────────────────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.25s ease;
    transform-origin: center;
}

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

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

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

/* ── MOBILE MENU ─────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-link:hover {
    color: var(--accent);
}

.mobile-link-cta {
    color: var(--accent);
    margin-top: 16px;
}

/* HERO */
#hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(212, 168, 83, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, transparent 60%, var(--black) 100%);
}

.hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 12vw, 160px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 32px;
    position: relative;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-sub {
    font-size: 16px;
    line-height: 1.7;
    color: var(--light);
    max-width: 520px;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
    border: none;
    padding: 14px 32px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background: #e8b85e;
    transform: translateY(-1px);
}

.btn-ghost {
    border: 1px solid var(--border);
    color: var(--light);
    padding: 13px 32px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-scroll {
    position: absolute;
    right: 48px;
    bottom: 80px;
    writing-mode: vertical-rl;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--steel);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeUp 2s ease 1s both;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 48px;
    background: var(--steel);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* STATS BAR */
.stats-bar {
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-item+.stat-item::before {
    content: '/';
    color: var(--steel);
    font-family: 'DM Mono', monospace;
    margin-right: 16px;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.05em;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid);
    line-height: 1.5;
}

/* SECTION BASE */
section {
    padding: 100px 48px;
}

.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
    max-width: 120px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 20px;
}

/* HOW IT WORKS */
#how {
    background: var(--dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 56px;
}

.process-step {
    background: var(--dark);
    padding: 40px 32px;
    position: relative;
    transition: background 0.2s;
}

.process-step:hover {
    background: var(--panel);
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: rgba(212, 168, 83, 0.18);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 24px;
    transition: color 0.2s;
}

.process-step:hover .step-num {
    color: rgba(212, 168, 83, 0.32);
}

.step-icon {
    font-size: 22px;
    margin-bottom: 16px;
}

.step-title {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.7;
}

/* CAPABILITIES */
#capabilities {
    background: var(--black);
    padding: 100px 48px;
}

.caps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px;
}

.caps-intro {
    font-size: 18px;
    line-height: 1.75;
    color: var(--light);
    margin-bottom: 40px;
    font-weight: 300;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.tag {
    border: 1px solid var(--border);
    padding: 6px 14px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cap-item {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cap-item:last-child {
    border-bottom: 1px solid var(--border);
}

.cap-marker {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    min-width: 40px;
    margin-top: 2px;
}

.cap-content h3 {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.cap-content p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.65;
}

/* QUOTE */
.philosophy-bar {
    background: var(--accent);
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-bar blockquote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    letter-spacing: 0.04em;
    color: var(--black);
    text-align: center;
    line-height: 1.1;
    max-width: 900px;
}

/* SUBMIT A PART */
#submit {
    background: var(--dark);
    padding: 100px 48px;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px;
}

.form-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light);
    margin-bottom: 32px;
}

.form-intro strong {
    color: var(--white);
    font-weight: 500;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: var(--mid);
}

.contact-line .cl-icon {
    color: var(--accent);
    font-size: 14px;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid);
}

input,
select,
textarea {
    background: var(--panel);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    cursor: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
}

select option {
    background: var(--panel);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.file-drop {
    border: 1px dashed var(--border);
    background: var(--panel);
    padding: 28px;
    text-align: center;
    cursor: none;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.file-drop:hover {
    border-color: var(--accent);
    background: rgba(212, 168, 83, 0.04);
}

.file-drop.dragging {
    border-color: var(--accent);
    background: rgba(212, 168, 83, 0.06);
}

.file-drop input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: none;
}

.file-icon {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--accent);
}

.file-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
}

.file-sublabel {
    font-size: 11px;
    color: var(--steel);
    margin-top: 4px;
}

.form-notice {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--steel);
    letter-spacing: 0.05em;
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.btn-submit {
    background: var(--accent);
    color: var(--black);
    border: none;
    padding: 16px 32px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background: #e8b85e;
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.5;
    pointer-events: none;
}

#toast {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    padding: 16px 24px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--white);
    z-index: 9000;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    max-width: 320px;
}

#toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* WORK PHOTOS */
.work-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
}

.work-photo-item {
    background: var(--dark);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.work-photo-frame {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
}

.work-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.88);
}

.work-photo-item:hover .work-photo-frame img {
    transform: scale(1.03);
    filter: brightness(1);
}

/* 3D render — light bg, contain so full part is visible */
.work-photo-frame img.img-render {
    object-fit: contain;
    background: #e8e6e2;
    padding: 32px;
    filter: brightness(1);
}

.work-photo-item:hover .work-photo-frame img.img-render {
    transform: scale(1.02);
    filter: brightness(1);
}

/* Real photo — same treatment as render, contain with light bg */
.work-photo-frame img.img-fitted {
    object-fit: contain;
    background: #e8e6e2;
    padding: 32px;
    filter: brightness(0.95);
}

.work-photo-label {
    padding: 12px 16px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    background: var(--dark);
    border-top: 1px solid var(--border);
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background: var(--dark);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.2s;
    position: relative;
}

.service-card:hover {
    background: var(--panel);
}

.service-card:first-child {
    border-top: 2px solid var(--accent);
}

.service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--accent);
}

.service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.04em;
    line-height: 1.05;
    color: var(--white);
}

.service-desc {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.75;
    flex: 1;
}

.service-tag {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--steel);
    border: 1px solid var(--border);
    padding: 5px 10px;
    align-self: flex-start;
    margin-top: 8px;
}

.service-footer {
    margin-top: 32px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--steel);
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
    background: var(--black);
    padding: 0 48px;
    display: block;
    position: relative;
    z-index: 1;
}

.footer-disclaimer {
    padding: 32px 0;
    border-bottom: 1px solid #1d1d1d;
}

.footer-disclaimer p {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.06em;
    color: var(--steel);
    line-height: 2;
    max-width: 860px;
}

.footer-main {
    padding: 56px 0 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid #1d1d1d;
}

/* Brand block: logo + tagline side by side, left side */
.footer-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 0.15em;
    color: var(--white);
    line-height: 1;
}

.footer-logo span {
    color: var(--accent);
}

.footer-tagline {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.9;
    padding-left: 24px;
    border-left: 1px solid var(--border);
}

/* Links: mirrors nav-links, right side */
.footer-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-links a {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--steel);
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    color: var(--steel);
}

.footer-meta-dot {
    color: var(--border);
}

/* ── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 1024px) {
    nav {
        padding: 18px 32px;
    }

    #hero {
        padding: 100px 32px 72px;
    }

    section {
        padding: 80px 32px;
    }

    .stats-bar {
        padding: 24px 32px;
    }

    .philosophy-bar {
        padding: 48px 32px;
    }

    footer {
        padding: 0 32px;
    }

    .form-layout {
        gap: 48px;
    }

    #submit {
        padding: 80px 32px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-ring {
        display: none;
    }

    input,
    select,
    textarea,
    button {
        cursor: auto;
    }

    nav {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    #hero {
        min-height: 100svh;
        padding: 80px 20px 48px;
        justify-content: center;
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.15em;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(54px, 13vw, 96px);
        margin-bottom: 20px;
    }

    .hero-sub {
        font-size: 14px;
        line-height: 1.65;
        max-width: 100%;
        margin-bottom: 0;
    }

    .hero-scroll {
        display: none;
    }

    .stats-bar {
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: var(--border);
        border-left: none;
        border-right: none;
    }

    .stat-item {
        background: var(--panel);
        padding: 20px 16px;
    }

    .stat-item+.stat-item::before {
        display: none;
    }

    .stat-num {
        font-size: 28px;
    }

    .stat-label {
        font-size: 9px;
    }

    section {
        padding: 60px 20px;
    }

    .section-label {
        margin-bottom: 28px;
    }

    .section-title {
        font-size: clamp(36px, 9vw, 56px);
    }

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

    .process-grid .process-step:last-child {
        grid-column: 1 / -1;
        display: block !important;
    }

    .process-grid .process-step:last-child>div:last-child {
        display: none;
    }

    .process-step {
        padding: 24px 18px;
    }

    .step-num {
        font-size: 52px;
    }

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

    .work-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .work-photos {
        grid-template-columns: 1fr;
    }

    .work-photo-item img.img-render {
        padding: 16px;
    }

    .philosophy-bar {
        padding: 36px 20px;
    }

    #submit {
        padding: 60px 20px;
    }

    .form-layout {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-top: 28px;
    }

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

    footer {
        padding: 0 20px;
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 0 36px;
        gap: 28px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    #hero {
        padding: 72px 16px 40px;
    }

    .hero-eyebrow {
        font-size: 9px;
        color: #e8b85e;
    }

    .hero-title {
        font-size: clamp(48px, 15vw, 72px);
        line-height: 0.9;
    }

    .hero-sub {
        font-size: 14px;
        color: #c8c8c8;
    }

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

    .process-grid .process-step:last-child {
        grid-column: 1 / -1;
    }

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

    .work-photo-frame {
        aspect-ratio: 4 / 3;
    }

    .process-step {
        background: #181818;
    }

    .step-desc {
        color: #999;
    }

    section {
        padding: 48px 16px;
    }

    .philosophy-bar {
        padding: 32px 16px;
    }

    #submit {
        padding: 48px 16px;
    }

    footer {
        padding: 0 16px;
    }

    .stats-bar {
        padding: 0;
    }

    input,
    select,
    textarea {
        background: #1e1e1e;
        border-color: #333;
        color: #f0ede8;
    }

    label {
        color: #888;
    }

    .form-intro {
        color: #bbb;
    }

    .contact-line {
        color: #888;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    #toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        font-size: 11px;
    }

    .mobile-link {
        font-size: 40px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-links a {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 44px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-bottom: 1px solid var(--border);
    }

    .work-stats {
        grid-template-columns: 1fr !important;
    }

    .mobile-link {
        font-size: 34px;
    }
}