:root {
    --black: #060606;
    --black-soft: #0a0a0a;
    --panel: #101010;
    --panel-2: #171717;
    --panel-3: #1d1d1d;
    --line: #2a2a2a;
    --line-light: #3b3b3b;
    --white: #eeeae2;
    --white-pure: #fff;
    --muted: #a6a39d;
    --muted-2: #74716c;
    --red: #d70b2f;
    --red-bright: #ef233c;
    --red-dark: #7f0b20;
    --success: #2fa36b;
    --warning: #d69e2e;
    --radius: 8px;
    --font-display: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
    --font-body: Inter, Arial, Helvetica, sans-serif;
    color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-family: var(--font-body); background: var(--black); color: var(--white); }
body { margin: 0; min-width: 320px; background: var(--black); color: var(--white); }
body:not(.home-page) { background: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px), var(--black); background-size: 48px 48px; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
img, svg { max-width: 100%; }
::selection { background: var(--red); color: #fff; }
.container { width: min(1240px, calc(100% - 56px)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; background: #fff; color: #000; padding: 12px 16px; font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 60; border-bottom: 1px solid rgba(255,255,255,.11); background: rgba(6,6,6,.9); backdrop-filter: blur(18px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; text-transform: uppercase; }
.brand-mark { width: 42px; height: 42px; color: var(--red-bright); flex: 0 0 auto; }
.brand-type { display: grid; line-height: .78; font-family: var(--font-display); font-size: 13px; letter-spacing: .08em; }
.brand-type strong { font-size: 23px; font-weight: 900; letter-spacing: .015em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.desktop-nav > a:not(.btn) { position: relative; color: #ccc8c0; text-decoration: none; font-size: 13px; font-weight: 800; }
.desktop-nav > a:not(.btn):after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--red-bright); transition: right .22s ease; }
.desktop-nav > a:not(.btn):hover:after, .desktop-nav > a:not(.btn):focus-visible:after { right: 0; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { width: 46px; height: 46px; display: grid; align-content: center; gap: 5px; padding: 11px; border: 1px solid var(--line-light); cursor: pointer; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { display: block; height: 2px; background: var(--white); }
.mobile-menu nav { position: fixed; left: 0; right: 0; top: 78px; background: #090909; border-bottom: 1px solid var(--line); padding: 20px 28px 28px; display: grid; gap: 0; box-shadow: 0 18px 50px rgba(0,0,0,.55); }
.mobile-menu nav > a:not(.btn) { padding: 15px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-family: var(--font-display); font-size: 25px; font-weight: 800; text-transform: uppercase; }
.mobile-menu nav .btn { margin-top: 18px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border: 1px solid var(--red); background: var(--red); color: #fff; text-decoration: none; font-family: var(--font-body); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .055em; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); background: var(--red-bright); border-color: var(--red-bright); }
.btn-small { min-height: 46px; padding-inline: 20px; }
.btn-ghost, .btn.secondary { background: transparent; border-color: #5d5a55; }
.btn-ghost:hover, .btn.secondary:hover { background: var(--white); color: #080808; border-color: var(--white); }
.btn-light { background: var(--white); border-color: var(--white); color: #080808; }
.btn-light:hover { background: transparent; color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--white); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; text-decoration-color: var(--red-bright); text-underline-offset: 6px; }

.eyebrow { display: flex; align-items: center; gap: 11px; color: var(--red-bright); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
.eyebrow-line { width: 34px; height: 2px; background: currentColor; flex: 0 0 auto; }
.display-title, h1, h2, h3 { margin: 0; font-family: var(--font-display); text-transform: uppercase; }
h1 { font-size: clamp(58px, 8vw, 118px); line-height: .82; letter-spacing: -.038em; font-weight: 900; }
h2 { font-size: clamp(48px, 6.2vw, 88px); line-height: .86; letter-spacing: -.03em; font-weight: 900; }
h3 { font-size: 34px; line-height: .93; letter-spacing: -.018em; font-weight: 800; }
.red { color: var(--red-bright); }
.outline-text { color: transparent; -webkit-text-stroke: 1px rgba(238,234,226,.72); text-stroke: 1px rgba(238,234,226,.72); }

.hero-home { position: relative; overflow: hidden; isolation: isolate; min-height: calc(100vh - 78px); border-bottom: 1px solid var(--line); background: radial-gradient(circle at 82% 16%, rgba(215,11,47,.16), transparent 31%), #060606; }
.hero-grid-overlay, .final-cta-grid { position: absolute; inset: 0; z-index: -1; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, #000, rgba(0,0,0,.3)); }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(390px, .7fr); gap: clamp(38px, 6vw, 88px); align-items: center; min-height: calc(100vh - 78px); padding-block: 72px 52px; }
.hero-copy-block { position: relative; z-index: 2; }
.hero-copy-block .eyebrow { margin-bottom: 24px; }
.display-title { max-width: 860px; }
.display-title > span { display: block; }
.display-title em { color: var(--red-bright); font-style: normal; }
.hero-lead { max-width: 730px; margin: 30px 0 0; color: #cbc6bd; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.58; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 760px; margin-top: 52px; border-top: 1px solid var(--line); }
.hero-proof > div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 11px; padding: 18px 18px 0 0; color: var(--muted); font-size: 11px; line-height: 1.35; text-transform: uppercase; letter-spacing: .06em; }
.hero-proof strong { color: var(--red-bright); font-family: var(--font-display); font-size: 22px; }
.hero-art { position: relative; min-width: 0; border: 1px solid rgba(255,255,255,.17); background: #0b0b0b; box-shadow: 0 40px 80px rgba(0,0,0,.5); transform: rotate(.5deg); }
.hero-art:before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.08); pointer-events: none; z-index: 2; }
.hero-art svg { display: block; width: 100%; height: auto; }
.hero-art-label { position: absolute; z-index: 3; padding: 7px 10px; background: var(--red); color: #fff; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.hero-art-label-top { top: -13px; right: 24px; }
.hero-art-caption { display: flex; justify-content: space-between; gap: 14px; padding: 14px 17px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.hero-art-caption strong { color: var(--white); }

.ticker { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--red); color: #fff; }
.ticker-track { min-width: max-content; display: flex; align-items: center; gap: 22px; padding: 14px 0; animation: ticker 34s linear infinite; font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.ticker-track i { width: 7px; height: 7px; background: #fff; transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-34%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .ticker-track { animation: none; } }

.section { position: relative; padding: 112px 0; }
.section-intro { background: #080808; }
.section-heading { margin-bottom: 56px; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .55fr); align-items: end; gap: 64px; }
.split-heading .eyebrow { margin-bottom: 22px; }
.section-copy { padding-bottom: 4px; }
.section-copy p, .work-header > p { margin: 0 0 27px; color: #b6b1a8; font-size: 17px; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.service-card { position: relative; grid-column: span 2; min-height: 390px; padding: 29px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.035), transparent 42%), var(--panel); transition: transform .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #555; }
.service-card-featured { grid-column: span 4; background: radial-gradient(circle at 86% 10%, rgba(215,11,47,.22), transparent 33%), linear-gradient(145deg, rgba(255,255,255,.04), transparent 46%), var(--panel); }
.service-card-featured:after { content: "TKS / WEB / 01"; position: absolute; right: 25px; bottom: 22px; color: #66615a; font-size: 9px; letter-spacing: .16em; }
.service-number { color: var(--muted-2); font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: .12em; }
.service-icon { position: absolute; top: 24px; right: 26px; color: var(--red-bright); font-size: 29px; }
.service-card h3 { margin-top: 68px; }
.service-card p { max-width: 520px; margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-tags { position: absolute; left: 29px; right: 29px; bottom: 27px; display: flex; flex-wrap: wrap; gap: 7px; }
.service-tags span { border: 1px solid #383838; padding: 6px 8px; color: #aaa59c; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.sink-story { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: radial-gradient(circle at 20% 22%, rgba(215,11,47,.14), transparent 30%), #050505; }
.sink-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(380px, .72fr); gap: clamp(48px, 7vw, 104px); align-items: center; }
.sink-art { position: relative; border: 1px solid var(--line-light); box-shadow: 0 40px 90px rgba(0,0,0,.52); }
.sink-art:before { content: ""; position: absolute; inset: -14px 14px 14px -14px; border: 1px solid rgba(239,35,60,.28); z-index: -1; }
.sink-art svg { display: block; width: 100%; }
.technical-label { position: absolute; top: 18px; left: 18px; z-index: 2; color: #c8c2b8; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.hand-note { position: absolute; right: -20px; bottom: 23px; transform: rotate(-6deg); color: #fff; font-family: "Comic Sans MS", cursive; font-size: 17px; }
.hand-note:before { content: ""; position: absolute; width: 70px; height: 24px; right: calc(100% + 7px); top: -2px; border-bottom: 2px solid var(--red-bright); transform: rotate(-7deg); }
.sink-copy .eyebrow { margin-bottom: 22px; }
.sink-copy h2 { margin-bottom: 30px; }
.sink-copy p { color: #aaa69f; font-size: 16px; line-height: 1.75; }
.sink-copy .large-copy { color: var(--white); font-family: var(--font-display); font-size: 29px; font-weight: 700; line-height: 1.18; text-transform: uppercase; }
.story-rule { display: grid; gap: 7px; margin-top: 30px; padding: 22px 0 0 22px; border-top: 1px solid var(--line); border-left: 3px solid var(--red-bright); }
.story-rule span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
.story-rule strong { font-family: var(--font-display); font-size: 25px; text-transform: uppercase; }

.system-section { background: #0b0b0b; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-grid article { position: relative; min-height: 340px; padding: 29px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.02), transparent); }
.process-grid article:before { content: ""; position: absolute; left: 0; top: 0; width: 0; height: 3px; background: var(--red-bright); transition: width .3s ease; }
.process-grid article:hover:before { width: 100%; }
.process-top { display: flex; justify-content: space-between; gap: 10px; align-items: center; color: var(--muted-2); }
.process-top span { color: var(--red-bright); font-family: var(--font-display); font-size: 36px; font-weight: 800; }
.process-top small { text-transform: uppercase; letter-spacing: .12em; }
.process-grid h3 { margin-top: 100px; font-size: 29px; }
.process-grid p { color: var(--muted); font-size: 13px; line-height: 1.65; }

.work-section { background: #060606; }
.work-header { display: grid; grid-template-columns: 1fr minmax(300px, .42fr); gap: 60px; align-items: end; margin-bottom: 54px; }
.work-header .eyebrow { margin-bottom: 22px; }
.case-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.case-card { border: 1px solid var(--line); background: var(--panel); overflow: hidden; }
.case-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.25fr .75fr; }
.case-visual { position: relative; min-height: 390px; overflow: hidden; background-color: #0b0b0b; }
.case-card-wide .case-visual { min-height: 470px; }
.case-stamp { position: absolute; left: 22px; bottom: 22px; padding: 8px 10px; background: var(--red); color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.case-visual-platform { display: grid; place-items: center; background: radial-gradient(circle at 74% 20%, rgba(239,35,60,.35), transparent 33%), linear-gradient(140deg, #222 0%, #0a0a0a 50%, #19030a 100%); }
.case-browser { width: 72%; min-width: 330px; border: 1px solid #5d5a56; background: #080808; box-shadow: 30px 30px 0 rgba(215,11,47,.17), 0 40px 80px rgba(0,0,0,.55); transform: perspective(1000px) rotateY(-7deg) rotateX(3deg); }
.case-browser-top { height: 28px; display: flex; align-items: center; gap: 6px; padding: 0 10px; border-bottom: 1px solid #393939; }
.case-browser-top span { width: 6px; height: 6px; border-radius: 50%; background: #777; }
.case-browser-top span:first-child { background: var(--red-bright); }
.case-browser-body { display: grid; grid-template-columns: 88px 1fr; min-height: 250px; }
.case-browser-sidebar { border-right: 1px solid #303030; background: linear-gradient(#171717 18px, transparent 18px) 16px 22px / 55px 42px repeat-y; }
.case-browser-content { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; padding: 24px; }
.case-browser-content i { min-height: 90px; background: linear-gradient(145deg, #242424, #0e0e0e); border: 1px solid #303030; }
.case-browser-content i:first-child { grid-column: 1 / -1; min-height: 62px; border-left: 4px solid var(--red-bright); }
.case-content { padding: 30px; }
.case-card-wide .case-content { display: flex; flex-direction: column; justify-content: center; padding: 45px; }
.case-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-bottom: 32px; color: var(--muted-2); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.case-content h3 { font-size: clamp(39px, 4.5vw, 62px); }
.case-content p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.case-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.case-points span { padding: 7px 9px; border: 1px solid #3a3a3a; color: #b9b4ab; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.case-visual-trades { background: radial-gradient(circle at 70% 30%, rgba(239,35,60,.35), transparent 35%), linear-gradient(135deg, #1b1b1b, #080808); }
.blueprint-house { position: absolute; inset: 14% 11% 17%; border: 1px solid rgba(238,234,226,.25); background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 24px 24px; }
.blueprint-house:before { content: ""; position: absolute; left: 18%; right: 18%; top: 22%; bottom: 18%; border: 3px solid var(--white); clip-path: polygon(50% 0, 100% 38%, 91% 38%, 91% 100%, 9% 100%, 9% 38%, 0 38%); opacity: .78; }
.blueprint-house span { position: absolute; background: var(--red-bright); }
.blueprint-house span:nth-child(1) { width: 34%; height: 4px; left: 33%; top: 48%; }
.blueprint-house span:nth-child(2) { width: 4px; height: 35%; left: 50%; top: 48%; }
.blueprint-house span:nth-child(3) { width: 18%; height: 4px; right: 8%; bottom: 9%; }
.case-visual-directory { background: radial-gradient(circle at 25% 25%, rgba(239,35,60,.28), transparent 35%), #0a0a0a; }
.profile-stack { position: absolute; inset: 15% 18%; }
.profile-stack div { position: absolute; width: 65%; height: 67%; border: 1px solid #5b5752; background: linear-gradient(#2a2a2a 36%, #111 36%); box-shadow: 0 28px 50px rgba(0,0,0,.45); }
.profile-stack div:before { content: ""; position: absolute; width: 60px; height: 60px; border-radius: 50%; left: 24px; top: 24px; background: linear-gradient(145deg, #777, #252525); border: 3px solid var(--red-bright); }
.profile-stack div:after { content: "★★★★★"; position: absolute; left: 24px; bottom: 28px; color: var(--red-bright); font-size: 13px; letter-spacing: 3px; }
.profile-stack div:nth-child(1) { left: 0; top: 13%; transform: rotate(-8deg); opacity: .45; }
.profile-stack div:nth-child(2) { right: 0; top: 7%; transform: rotate(7deg); opacity: .68; }
.profile-stack div:nth-child(3) { left: 17%; top: 0; }

.audience-section { border-top: 1px solid var(--line); background: #0a0a0a; }
.audience-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.audience-layout .eyebrow { margin-bottom: 22px; }
.trade-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.trade-list span { position: relative; padding: 21px 22px 21px 44px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #c1bdb5; font-family: var(--font-display); font-size: 21px; font-weight: 700; text-transform: uppercase; }
.trade-list span:before { content: "+"; position: absolute; left: 20px; color: var(--red-bright); }

.final-cta { position: relative; overflow: hidden; isolation: isolate; padding: 132px 0; text-align: center; background: radial-gradient(circle at 50% 50%, rgba(215,11,47,.22), transparent 42%), #050505; }
.final-cta-grid { mask-image: radial-gradient(circle, #000, transparent 72%); }
.final-cta-inner { display: flex; flex-direction: column; align-items: center; }
.final-cta .eyebrow { margin-bottom: 24px; }
.final-cta h2 { font-size: clamp(61px, 9vw, 124px); }
.final-cta p { max-width: 650px; margin: 27px auto 31px; color: #bcb7ae; font-size: 18px; line-height: 1.65; }
.cta-note { margin-top: 20px; color: var(--muted-2); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }

.site-footer { border-top: 1px solid var(--line); background: #050505; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr 1fr; gap: 50px; padding: 68px 0 54px; }
.footer-brand p { max-width: 300px; margin: 24px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-grid a:not(.brand) { color: #b8b3aa; font-size: 13px; text-decoration: none; }
.footer-grid a:not(.brand):hover { color: #fff; }
.footer-label { margin-bottom: 5px; color: var(--red-bright); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.footer-cta .footer-email { color: var(--white) !important; font-family: var(--font-display); font-size: 23px !important; font-weight: 700; }
.footer-cta .text-link { margin-top: 8px; font-size: 10px !important; text-decoration: underline !important; text-decoration-color: var(--red-bright) !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 26px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }

/* Standard content pages and forms */
body:not(.home-page) .hero { padding: 100px 0 78px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 20%, rgba(215,11,47,.14), transparent 34%); }
body:not(.home-page) .hero .eyebrow { margin-bottom: 22px; }
body:not(.home-page) .hero h1 { max-width: 1000px; }
.lead { max-width: 760px; color: #c7c3bc; font-size: 20px; line-height: 1.6; }
.grid { display: grid; gap: 20px; }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.card { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.025), transparent), var(--panel); padding: 26px; border-radius: var(--radius); }
.card p { color: var(--muted); line-height: 1.6; }
.status-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0c0c0c; padding: 16px 0; color: var(--muted); }
.status-bar strong { color: var(--white); }
.prose { max-width: 860px; font-size: 18px; line-height: 1.75; color: #cbc7bf; }
.prose h2, .prose h3 { color: var(--white); margin-top: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
input, select, textarea { width: 100%; background: #0b0b0b; color: var(--white); border: 1px solid #393939; border-radius: 4px; padding: 13px 14px; }
textarea { min-height: 160px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(200,16,46,.45); border-color: var(--red); }
.errors { border: 1px solid var(--red); background: rgba(200,16,46,.12); padding: 16px; margin-bottom: 20px; }
.flash { border: 1px solid var(--success); background: rgba(47,163,107,.12); padding: 14px 16px; margin-bottom: 20px; }
.honeypot { position: absolute !important; left: -9999px !important; }

/* Administration */
.admin-shell { display: grid; min-height: 100vh; grid-template-columns: 250px 1fr; }
.sidebar { border-right: 1px solid var(--line); background: #090909; padding: 24px 18px; position: sticky; top: 0; height: 100vh; }
.sidebar .brand { margin-bottom: 32px; }
.sidebar nav { display: grid; gap: 8px; }
.sidebar nav a { padding: 11px 12px; border-radius: 4px; text-decoration: none; color: #c7c3bc; }
.sidebar nav a:hover, .sidebar nav a.active { background: var(--panel-2); color: #fff; }
.admin-main { padding: 32px; min-width: 0; }
.admin-top { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 28px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.stat { padding: 24px; background: var(--panel); border: 1px solid var(--line); }
.stat .number { font-size: 42px; color: var(--red-bright); font-weight: 900; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--panel); }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { text-align: left; padding: 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--muted); text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.badge { display: inline-flex; padding: 5px 9px; border-radius: 99px; border: 1px solid #4b4b4b; font-size: 12px; text-transform: uppercase; }
.badge.new { border-color: var(--red); color: #ff8798; }
.split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 22px; }
.stack { display: grid; gap: 18px; }
.small { font-size: 13px; color: var(--muted); }
.login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
.login-card { width: min(460px, 100%); background: var(--panel); border: 1px solid var(--line); padding: 34px; }

@media (max-width: 1080px) {
    .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(340px, .67fr); gap: 38px; }
    .display-title { font-size: clamp(57px, 7.8vw, 90px); }
    .split-heading { gap: 38px; }
    .service-card { grid-column: span 3; }
    .service-card-featured { grid-column: span 6; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.4fr .7fr .7fr; }
    .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
    .container { width: min(100% - 36px, 1240px); }
    .desktop-nav { display: none; }
    .mobile-menu { display: block; }
    .hero-home { min-height: auto; }
    .hero-layout { grid-template-columns: 1fr; min-height: auto; padding-block: 72px; }
    .hero-copy-block { max-width: 760px; }
    .hero-art { width: min(620px, 100%); justify-self: center; }
    .split-heading, .sink-layout, .work-header, .audience-layout { grid-template-columns: 1fr; }
    .split-heading { align-items: start; }
    .section-copy { max-width: 680px; }
    .sink-art { width: min(650px, 100%); }
    .case-card-wide { grid-template-columns: 1fr; }
    .case-grid { grid-template-columns: 1fr; }
    .case-card-wide { grid-column: auto; }
    .case-card-wide .case-content { padding: 30px; }
    .trade-list { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .admin-shell { grid-template-columns: 1fr; }
    .sidebar { position: static; height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
    .sidebar nav { grid-template-columns: repeat(3, 1fr); }
    .split { grid-template-columns: 1fr; }
    .grid.four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
    .container { width: min(100% - 24px, 1240px); }
    .header-inner { min-height: 68px; }
    .brand-mark { width: 35px; height: 35px; }
    .brand-type strong { font-size: 20px; }
    .mobile-menu nav { top: 68px; padding-inline: 18px; }
    .hero-layout { padding-block: 54px 45px; }
    .display-title, h1 { font-size: clamp(52px, 16.5vw, 78px); }
    h2 { font-size: clamp(45px, 14vw, 68px); }
    .hero-lead { margin-top: 24px; font-size: 16px; }
    .actions { display: grid; grid-template-columns: 1fr; }
    .actions .btn { width: 100%; }
    .hero-proof { grid-template-columns: 1fr; margin-top: 38px; }
    .hero-proof > div { border-bottom: 1px solid var(--line); padding: 13px 0; }
    .hero-art-caption { display: grid; }
    .ticker-track { font-size: 15px; }
    .section { padding: 78px 0; }
    .section-heading { margin-bottom: 38px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card, .service-card-featured { grid-column: auto; min-height: 360px; }
    .service-card { padding: 24px; }
    .service-tags { left: 24px; right: 24px; }
    .sink-copy .large-copy { font-size: 25px; }
    .hand-note { right: 10px; bottom: 12px; font-size: 14px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid article { min-height: 280px; }
    .process-grid h3 { margin-top: 64px; }
    .case-visual, .case-card-wide .case-visual { min-height: 330px; }
    .case-browser { min-width: 0; width: 82%; }
    .case-browser-body { grid-template-columns: 62px 1fr; min-height: 190px; }
    .case-browser-content { padding: 15px; gap: 9px; }
    .trade-list { grid-template-columns: 1fr; }
    .final-cta { padding: 92px 0; }
    .final-cta h2 { font-size: clamp(55px, 17vw, 78px); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; padding-top: 52px; }
    .footer-brand, .footer-cta { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
    .form-grid, .stat-grid { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .admin-main { padding: 20px 14px; }
    .sidebar nav { grid-template-columns: 1fr 1fr; }
}
