@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/jetbrains-mono-400.woff2") format("woff2"); }
@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/jetbrains-mono-500.woff2") format("woff2"); }
@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/jetbrains-mono-700.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/archivo-400.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/archivo-500.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/archivo-600.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/archivo-700.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/archivo-800.woff2") format("woff2"); }

:root {
  --bg: #0a0a0b;
  --ink: #060607;
  --surface: #141417;
  --surface2: #1b1b1f;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #ECECEE;
  --muted: #8c8c95;
  --muted-2: #5d5d65;
  --accent: #BCE84B;
  --accent-2: #9bbf36;
  --accent-ink: #0a0a0b;
  --accent-glow: rgba(188, 232, 75, 0.30);
  --maxw: 1500px;
  --pad: clamp(20px, 4vw, 56px);
  --font: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Code", "SF Mono", Consolas, Menlo, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
input, textarea, select, button { font-family: inherit; }
textarea { resize: vertical; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.skip-link { position: fixed; left: 12px; top: -120px; z-index: 300; background: var(--accent); color: var(--accent-ink); padding: 0.6rem 1rem; border-radius: 8px; font-weight: 700; font-family: var(--font-mono); transition: top 0.2s var(--ease); }
.skip-link:focus { top: 12px; }

@keyframes nps-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes nps-grid { from { background-position: 0 0; } to { background-position: 0 80px; } }
@keyframes nps-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.8); } }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(80px, 12vh, 150px); }
.section--ink { background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.mono-accent { font-family: var(--font-mono); font-weight: 500; color: var(--accent); }

/* decorative overlays */
.grain { position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--accent); z-index: 200; box-shadow: 0 0 12px var(--accent); }

/* eyebrow */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); }
.eyebrow--center { justify-content: center; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 13px; font-weight: 500; letter-spacing: 0.5px; padding: 15px 26px; border-radius: 100px; border: 1px solid transparent; cursor: pointer; transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px var(--accent-glow); }
.btn--ghost { color: var(--text); background: rgba(255,255,255,0.04); border-color: var(--line); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--line-strong); background: rgba(255,255,255,0.08); }

/* ============ HEADER ============ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 20px var(--pad); border-bottom: 1px solid transparent; transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease; }
.site-header.scrolled { background: rgba(10,10,11,0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line); padding-block: 14px; }
.brand { display: inline-flex; align-items: baseline; gap: 7px; color: var(--text); }
.brand__a { font-family: var(--font-mono); font-weight: 400; font-size: 15px; letter-spacing: 1px; }
.brand__b { font-family: var(--font-mono); font-weight: 700; font-size: 15px; letter-spacing: 1px; }
.brand__dot { align-self: center; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-left: 2px; animation: nps-pulse 2.6s ease-in-out infinite; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); }
.nav a { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.5px; color: var(--muted); transition: color 0.25s; }
.nav a:hover { color: var(--text); }
.nav .nav__cta { color: var(--accent-ink); background: var(--accent); padding: 10px 18px; border-radius: 100px; font-weight: 500; transition: transform 0.25s, box-shadow 0.25s; }
.nav .nav__cta:hover { color: var(--accent-ink); transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0 11px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu { position: fixed; inset: 0; z-index: 150; display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: clamp(28px, 9vw, 56px); background: rgba(8,8,9,0.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity 0.35s ease, transform 0.35s ease; }
.menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.menu a { font-family: var(--font-mono); font-size: clamp(28px, 9vw, 44px); font-weight: 500; letter-spacing: -0.01em; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--line); }
.menu .menu__cta { align-self: flex-start; margin-top: 28px; font-size: 15px; color: var(--accent-ink); background: var(--accent); padding: 16px 28px; border-radius: 100px; border-bottom: 0; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 0 var(--pad) clamp(28px, 4vh, 48px); }
.hero__bgwrap { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% 30%; opacity: 0; transition: opacity 1.4s ease; }
.hero__bg.is-active { opacity: 1; }
.hero__grad { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.15) 28%, rgba(10,10,11,0.55) 62%, rgba(10,10,11,0.96) 100%); }
.hero__grad--radial { background: radial-gradient(120% 80% at 75% 35%, transparent 30%, rgba(10,10,11,0.5) 100%); }
.hero__canvas { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; pointer-events: none; }
.hero__top { position: absolute; top: clamp(96px, 14vh, 140px); left: var(--pad); right: var(--pad); z-index: 3; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.hero__meta { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 1px; color: var(--muted); text-align: right; line-height: 1.8; }
.hero__inner { position: relative; z-index: 3; max-width: var(--maxw); width: 100%; margin: 0 auto; }
.hero h1 { font-weight: 900; line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase; font-size: clamp(48px, 9.2vw, 170px); }
.hero__accent { display: block; font-family: var(--font-mono); font-weight: 500; text-transform: none; letter-spacing: -0.01em; color: var(--accent); font-size: clamp(38px, 7.1vw, 132px); margin-top: 0.04em; }
.hero__foot { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; margin-top: clamp(22px, 3vh, 40px); }
.hero__lead { max-width: 560px; font-size: clamp(15px, 1.25vw, 19px); line-height: 1.55; color: #d6d6da; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ MARQUEE ============ */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); overflow: hidden; padding: 18px 0; }
.marquee__track { display: flex; width: max-content; white-space: nowrap; will-change: transform; animation: nps-marquee 32s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; font-family: var(--font-mono); font-size: clamp(16px, 2vw, 26px); letter-spacing: 1px; color: var(--muted); }
.marquee__track i { color: var(--accent); margin: 0 22px; font-style: normal; }

/* ============ STUDIO ============ */
.studio__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; margin-top: clamp(36px, 6vh, 72px); }
.studio__grid h2 { font-weight: 800; font-size: clamp(32px, 4.4vw, 68px); line-height: 1.02; letter-spacing: -0.02em; }
.studio__copy { display: flex; flex-direction: column; gap: 20px; }
.studio__copy p { font-size: clamp(15px, 1.15vw, 18px); line-height: 1.65; color: #cfcfd4; }
.studio__copy p.muted { color: var(--muted); }
.studio__copy strong { color: var(--text); font-weight: 600; }
.studio__copy .mono-accent { font-size: 0.92em; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: clamp(48px, 7vh, 90px); background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.stat { background: var(--bg); padding: 28px clamp(18px, 2vw, 30px); }
.stat__v { font-family: var(--font-mono); font-size: clamp(22px, 2.4vw, 34px); font-weight: 700; color: var(--accent); }
.stat__l { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.5px; color: var(--muted); margin-top: 8px; }

/* ============ CAPABILITIES ============ */
.caps__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(40px, 6vh, 72px); }
.caps__head h2 { margin-top: 22px; font-weight: 800; font-size: clamp(32px, 4.4vw, 66px); line-height: 1.0; letter-spacing: -0.02em; }
.caps__intro { max-width: 340px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.caps__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 1.6vw, 28px); }
.card { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--surface); transition: border-color 0.4s var(--ease); }
.card:hover { border-color: rgba(188, 232, 75, 0.4); }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); transition: transform 0.9s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__num { position: absolute; top: 16px; left: 18px; font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 1px; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.card__body { padding: clamp(22px, 2.4vw, 34px); }
.card__body h3 { font-family: var(--font-mono); font-weight: 700; font-size: clamp(19px, 1.7vw, 24px); letter-spacing: -0.01em; }
.card__body > p { margin: 14px 0 22px; font-size: 14.5px; line-height: 1.62; color: var(--muted); }
.covers { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.covers__line { width: 14px; height: 1px; background: var(--muted); }
.covers__label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { font-family: var(--font-mono); font-size: 11.5px; color: #bcbcc2; border: 1px solid var(--line); border-radius: 100px; padding: 6px 12px; background: rgba(255,255,255,0.02); }

/* ============ PIPELINE ============ */
.pipe { position: relative; overflow: hidden; }
.pipe__grid-bg { position: absolute; inset: 0; opacity: 0.5; perspective: 520px; pointer-events: none; }
.pipe__grid-bg > div { position: absolute; left: -25%; right: -25%; bottom: -10%; height: 70%; transform: rotateX(72deg); background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 80px 80px; animation: nps-grid 4.5s linear infinite; -webkit-mask-image: linear-gradient(180deg, transparent, #000 60%); mask-image: linear-gradient(180deg, transparent, #000 60%); }
.pipe__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 60% at 50% 40%, rgba(188,232,75,0.06), transparent 70%); }
.pipe .wrap { position: relative; z-index: 1; }
.pipe__head { text-align: center; margin-bottom: clamp(44px, 7vh, 80px); }
.pipe__head .eyebrow { margin-bottom: 18px; }
.pipe__head h2 { font-weight: 800; font-size: clamp(28px, 3.8vw, 56px); line-height: 1.05; letter-spacing: -0.02em; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.step { background: var(--ink); padding: clamp(22px, 2vw, 32px) clamp(16px, 1.6vw, 24px); min-height: 200px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; transition: background 0.3s var(--ease); }
.step:hover { background: #0f0f11; }
.step__num { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: 1px; }
.step h3 { font-family: var(--font-mono); font-weight: 700; font-size: clamp(15px, 1.3vw, 19px); margin-bottom: 8px; }
.step p { font-size: 12.5px; line-height: 1.55; color: var(--muted); }

/* ============ WORK ============ */
.work__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(40px, 6vh, 68px); }
.work__head h2 { margin-top: 22px; font-weight: 800; font-size: clamp(32px, 4.4vw, 66px); line-height: 1.0; letter-spacing: -0.02em; }
.work__intro { max-width: 340px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(12px, 1.2vw, 20px); }
.tile { position: relative; overflow: hidden; border-radius: 14px; border: 1px solid var(--line); background: var(--surface2); }
.tile--wide { grid-column: span 4; aspect-ratio: 16 / 10; }
.tile--tall { grid-column: span 2; aspect-ratio: 4 / 5; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.tile:hover img { transform: scale(1.05); }
.tile figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; background: linear-gradient(180deg, transparent, rgba(6,6,7,0.85)); display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.tile__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.5px; color: var(--text); }
.tile__cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1px; color: var(--accent); text-transform: uppercase; }

/* ============ CONTACT ============ */
.contact__grid { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: clamp(36px, 5vw, 80px); align-items: start; margin-top: 22px; }
.contact__grid h2 { font-weight: 800; font-size: clamp(32px, 4.2vw, 62px); line-height: 1.0; letter-spacing: -0.02em; }
.contact__lead { margin: 16px 0 clamp(32px, 4vh, 48px); max-width: 48ch; font-size: 15px; line-height: 1.6; color: var(--muted); }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field > span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }
.field > span i { color: var(--muted-2); text-transform: none; font-style: normal; }
.field input, .field select, .field textarea { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; color: var(--text); font-size: 15px; outline: none; transition: border-color 0.25s; }
.field textarea { line-height: 1.55; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field select { -webkit-appearance: none; -moz-appearance: none; appearance: none; width: 100%; cursor: pointer; padding-right: 2.6rem; background-color: var(--surface); background-image: none; }
.field select::-ms-expand { display: none; }
.select-wrap { position: relative; display: block; }
.select-wrap::after { content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.checks { display: flex; flex-wrap: wrap; gap: 9px; }
.check { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12.5px; color: #c3c3c9; border: 1px solid var(--line); border-radius: 100px; padding: 9px 15px; cursor: pointer; user-select: none; transition: border-color 0.2s, color 0.2s; }
.check:hover { border-color: rgba(188,232,75,0.5); color: var(--text); }
.check input { accent-color: var(--accent); width: 14px; height: 14px; }
.consent { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.consent input { accent-color: var(--accent); width: 15px; height: 15px; margin-top: 2px; flex: none; }
.consent span { font-size: 13px; line-height: 1.5; color: var(--muted); }
.form-foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.form-note { font-size: 13px; color: var(--muted); }
.form-note .email-link { color: var(--accent); }
.form-status { display: none; font-size: 14px; line-height: 1.5; padding: 14px 16px; border-radius: 10px; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(188,232,75,0.08); border: 1px solid rgba(188,232,75,0.4); color: var(--accent); }
.form-status.err { background: rgba(229,72,60,0.12); border: 1px solid rgba(229,72,60,0.45); color: #f0938a; }
.contact-aside { border: 1px solid var(--line); border-radius: 16px; padding: clamp(26px, 2.6vw, 38px); background: var(--surface); position: sticky; top: 100px; }
.aside__tag { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 1px; color: var(--accent); }
.aside__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: nps-pulse 2.4s ease-in-out infinite; }
.aside__email { display: block; font-family: var(--font-mono); font-size: clamp(15px, 1.4vw, 19px); color: var(--text); margin-bottom: 26px; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.aside__email:hover { color: var(--accent); }
.contact-aside ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-aside li { display: flex; gap: 12px; font-size: 14px; line-height: 1.5; color: var(--muted); }
.contact-aside li span:first-child { color: var(--accent); font-family: var(--font-mono); flex-shrink: 0; }

/* ============ CLOSING ============ */
.closing { position: relative; min-height: 62vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: clamp(60px, 10vh, 120px) var(--pad); }
.closing__bg { position: absolute; inset: 0; z-index: 0; background-image: url("../portfolio/environments/airport-apron.jpg"); background-size: cover; background-position: center; }
.closing__grad { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, var(--bg) 0%, rgba(10,10,11,0.92) 8%, rgba(10,10,11,0.6) 26%, rgba(10,10,11,0.5) 65%, rgba(10,10,11,0.78) 100%); }
.closing__canvas { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; pointer-events: none; }
.closing__line { position: relative; z-index: 3; max-width: 18ch; text-align: center; font-family: var(--font-mono); font-weight: 500; font-size: clamp(22px, 3.4vw, 48px); line-height: 1.28; letter-spacing: -0.01em; }

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid var(--line); padding: clamp(48px, 7vh, 80px) 0 clamp(32px, 4vh, 48px); }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; padding-bottom: clamp(40px, 6vh, 64px); }
.site-footer .brand__a, .site-footer .brand__b { font-size: clamp(18px, 2vw, 26px); }
.site-footer .brand__dot { width: 7px; height: 7px; animation: none; }
.footer__nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__nav a { font-family: var(--font-mono); font-size: 13px; color: var(--muted); transition: color 0.25s; }
.footer__nav a:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line); }
.footer__bottom span { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.5px; color: #5d5d65; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .studio__grid, .contact__grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 48px); }
  .contact-aside { position: static; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .caps__grid, .duo { grid-template-columns: 1fr; }
  .stats, .steps { grid-template-columns: repeat(2, 1fr); }
  .step { min-height: auto; gap: 16px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .tile--wide, .tile--tall { grid-column: auto; aspect-ratio: 4 / 3; }
  .hero__meta { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(38px, 12vw, 56px); }
  .hero__accent { font-size: clamp(27px, 8.8vw, 42px); }
}
@media (max-width: 420px) {
  .stats, .steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track, .brand__dot, .aside__dot, .pipe__grid-bg > div { animation: none; }
  .hero__bg { transition: none; }
  * { transition-duration: 0.01ms !important; }
}
