:root {
  --ink: #0A0A0B;
  --graphite: #141416;
  --graphite-2: #1C1C1F;
  --line: #26262A;
  --steel: #8A8D93;
  --silver: #C9CCD1;
  --chrome: #ECEEF1;
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1440px;
  --ease: cubic-bezier(.22,.61,.36,1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  background: var(--ink);
  color: var(--chrome);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--silver); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 1px solid var(--silver); outline-offset: 4px; }

/* film grain overlay */
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 999; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-4%); } 60% { transform: translate(-1%,3%); } 80% { transform: translate(3%,1%); }
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- type ---------- */
.display {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 118;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: .95;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel);
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--steel); }
.chrome-text {
  background: linear-gradient(100deg, #6E7177 0%, #C9CCD1 22%, #F4F5F7 38%, #A9ACB2 52%, #E4E6E9 68%, #7C7F85 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-position: var(--sheen, 50%) 0;
  transition: background-position .6s var(--ease);
}
.lede { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.55; color: var(--silver); max-width: 56ch; }
.muted { color: var(--steel); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  mix-blend-mode: difference;
  transition: padding .4s var(--ease);
}
.nav.scrolled { padding: 14px var(--gutter); }
.nav .brand { font-family: var(--font-display); font-variation-settings: 'wdth' 125; font-weight: 700; letter-spacing: .22em; font-size: 15px; text-transform: uppercase; color: #fff; }
.nav .brand span { font-weight: 400; opacity: .55; }
.nav ul { display: flex; gap: 34px; list-style: none; }
.nav ul a { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #fff; position: relative; padding: 4px 0; }
.nav ul a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: #fff; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav ul a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,.55); padding: 9px 16px; transition: background .3s, color .3s; }
.nav-cta:hover { background: #fff; color: #000; }
.burger { display: none; width: 40px; height: 40px; position: relative; }
.burger span { position: absolute; left: 8px; right: 8px; height: 1px; background: #fff; transition: transform .35s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 14px; } .burger span:nth-child(2) { top: 20px; } .burger span:nth-child(3) { top: 26px; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; padding: 120px var(--gutter) 60px; overflow: hidden; }
.letterbox {
  position: relative; width: min(100%, 1400px); aspect-ratio: 2.39 / 1;
  background: radial-gradient(120% 90% at 50% 110%, #2A2B2F 0%, #141416 45%, #0A0A0B 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid; place-items: center;
}
/* moving light sweep = signature */
.letterbox::before {
  content: ""; position: absolute; inset: -20%;
  background: radial-gradient(45% 60% at var(--mx, 50%) var(--my, 40%), rgba(236,238,241,.14) 0%, rgba(236,238,241,0) 60%);
  transition: background .2s linear;
  pointer-events: none;
}
/* scan line rolling like a monitor */
.letterbox::after {
  content: ""; position: absolute; left: 0; right: 0; height: 22%; top: -30%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.035), transparent);
  animation: scan 7s linear infinite;
  pointer-events: none;
}
@keyframes scan { to { top: 120%; } }
.frame-mark { position: absolute; width: 22px; height: 22px; border-color: var(--steel); border-style: solid; opacity: .8; }
.frame-mark.tl { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.frame-mark.tr { top: 14px; right: 14px; border-width: 1px 1px 0 0; }
.frame-mark.bl { bottom: 14px; left: 14px; border-width: 0 0 1px 1px; }
.frame-mark.br { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }
.frame-hud { position: absolute; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; color: var(--steel); text-transform: uppercase; }
.frame-hud.tl { top: 18px; left: 48px; }
.frame-hud.tr { top: 18px; right: 48px; display: flex; align-items: center; gap: 8px; }
.frame-hud.tr i { width: 7px; height: 7px; border-radius: 50%; background: #E24B4B; animation: blink 1.4s steps(2) infinite; }
@keyframes blink { 50% { opacity: .15; } }
.frame-hud.bl { bottom: 18px; left: 48px; }
.frame-hud.br { bottom: 18px; right: 48px; }
.frame-cross { position: absolute; left: 50%; top: 50%; width: 36px; height: 36px; transform: translate(-50%,-50%); opacity: .35; }
.frame-cross::before, .frame-cross::after { content: ""; position: absolute; background: var(--steel); }
.frame-cross::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.frame-cross::after { top: 50%; left: 0; right: 0; height: 1px; }
.hero-title { position: relative; text-align: center; padding: 0 5%; }
.hero-title h1 { white-space: nowrap; font-size: clamp(44px, 9.2vw, 150px); font-variation-settings: 'wdth' 125; font-weight: 700; letter-spacing: .06em; line-height: .9; }
.hero-title h1 small { display: block; font-size: .28em; font-weight: 500; letter-spacing: .5em; margin-top: .25em; padding-left: .5em; }
.hero-sub { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); }
.hero-sub span + span::before { content: "·"; margin-right: 22px; color: var(--line); }
.hero-foot { position: absolute; bottom: 28px; left: var(--gutter); right: var(--gutter); display: flex; justify-content: space-between; align-items: end; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); }
.hero-foot .scroll { display: flex; align-items: center; gap: 10px; }
.hero-foot .scroll i { display: block; width: 1px; height: 40px; background: linear-gradient(var(--steel), transparent); animation: drop 2s var(--ease) infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- sections ---------- */
section { padding: clamp(80px, 10vw, 150px) 0; }
.sec-head { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; align-items: end; margin-bottom: clamp(44px, 5vw, 80px); }
.sec-head h2 { font-size: clamp(36px, 4.8vw, 78px); margin-top: 18px; }
.sec-head p { justify-self: end; }
hr.rule { border: 0; height: 1px; background: var(--line); }

/* ---------- servicii ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 28px 40px; position: relative; overflow: hidden; min-height: 400px; display: flex; flex-direction: column; transition: background .4s; }
.service:hover { background: var(--graphite); }
.service::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--silver), transparent); transform: translateX(-100%); transition: transform .8s var(--ease); }
.service:hover::before { transform: translateX(100%); }
.service .ratio { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--steel); }
.service h3 { font-family: var(--font-display); font-variation-settings: 'wdth' 112; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: clamp(22px, 1.9vw, 30px); line-height: 1.05; margin: 64px 0 18px; }
.service p { color: var(--steel); font-size: 15px; flex: 1; }
.service ul { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; color: var(--silver); }
.service ul li::before { content: "—"; color: var(--steel); margin-right: 10px; }

/* ---------- portofoliu ---------- */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filters button { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); padding: 9px 14px; border: 1px solid var(--line); transition: all .3s; }
.filters button:hover { color: var(--chrome); border-color: var(--steel); }
.filters button.active { color: var(--ink); background: var(--silver); border-color: var(--silver); }
.works { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.work { position: relative; overflow: hidden; background: var(--graphite); border: 1px solid var(--line); cursor: pointer; transition: opacity .4s, transform .4s var(--ease); }
.work.hide { display: none; }
.work.span-7 { grid-column: span 7; } .work.span-5 { grid-column: span 5; } .work.span-4 { grid-column: span 4; } .work.span-6 { grid-column: span 6; }
.work .thumb { aspect-ratio: 16 / 9; position: relative; overflow: hidden; }
.work .thumb .bg { position: absolute; inset: 0; transition: transform 1.2s var(--ease), filter .6s; filter: saturate(.7) contrast(1.05); }
.work:hover .thumb .bg { transform: scale(1.05); filter: saturate(1) contrast(1.1); }
.work .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0) 40%, rgba(10,10,11,.85) 100%); }
.work .thumb .bars { position: absolute; left: 0; right: 0; height: 9%; background: var(--ink); z-index: 2; transition: height .5s var(--ease); }
.work .thumb .bars.top { top: 0; } .work .thumb .bars.bot { bottom: 0; }
.work:hover .thumb .bars { height: 0; }
.work .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) scale(.9); width: 64px; height: 64px; border: 1px solid rgba(236,238,241,.5); border-radius: 50%; display: grid; place-items: center; z-index: 3; opacity: 0; transition: opacity .4s, transform .5s var(--ease); backdrop-filter: blur(4px); }
.work:hover .play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.work .play::after { content: ""; border-left: 12px solid var(--chrome); border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
.work .meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 20px 22px; display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.work .meta h3 { font-family: var(--font-display); font-variation-settings: 'wdth' 110; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: clamp(17px, 1.5vw, 24px); line-height: 1.05; }
.work .meta small { display: block; font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--silver); font-size: 13px; margin-top: 6px; }
.work .tc { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; color: var(--steel); white-space: nowrap; }
.work .cat { position: absolute; top: 14px; left: 16px; z-index: 3; font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--silver); padding: 5px 9px; border: 1px solid rgba(201,204,209,.35); background: rgba(10,10,11,.4); backdrop-filter: blur(6px); }
/* placeholder poster gradients — replace .bg backgrounds with real stills */
.g1 { background: linear-gradient(135deg, #2b2f38 0%, #0f1013 60%, #3a3f4a 100%); }
.g2 { background: linear-gradient(160deg, #40434a 0%, #17181b 55%, #0a0a0b 100%); }
.g3 { background: linear-gradient(200deg, #1d1f24 0%, #4a4d55 50%, #121316 100%); }
.g4 { background: linear-gradient(120deg, #101114 0%, #34373e 45%, #1a1b1f 100%); }
.g5 { background: linear-gradient(145deg, #2f3239 0%, #0e0f11 40%, #45484f 100%); }
.g6 { background: linear-gradient(170deg, #22242a 0%, #0c0d0f 50%, #2c2f36 100%); }
.works-more { margin-top: 44px; display: flex; justify-content: center; }
.btn { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; padding: 16px 26px; border: 1px solid var(--steel); color: var(--chrome); position: relative; overflow: hidden; transition: color .35s, border-color .35s; }
.btn::before { content: ""; position: absolute; inset: 0; background: var(--silver); transform: translateY(101%); transition: transform .45s var(--ease); z-index: 0; }
.btn:hover { color: var(--ink); border-color: var(--silver); }
.btn:hover::before { transform: translateY(0); }
.btn span, .btn svg { position: relative; z-index: 1; }
.btn svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn.solid { background: var(--silver); color: var(--ink); border-color: var(--silver); }
.btn.solid::before { background: var(--chrome); }

/* ---------- proces ---------- */
.process-wrap { background: var(--graphite); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin-top: 20px; }
.steps::before { content: ""; position: absolute; left: 0; right: 0; top: 7px; height: 1px; background: var(--line); }
.step { padding: 0 28px 0 0; position: relative; }
.step .dot { width: 15px; height: 15px; border-radius: 50%; border: 1px solid var(--steel); background: var(--graphite); position: relative; z-index: 1; margin-bottom: 30px; }
.step .dot::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--silver); transform: scale(0); transition: transform .4s var(--ease); }
.step:hover .dot::after { transform: scale(1); }
.step .num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; color: var(--steel); }
.step h3 { font-family: var(--font-display); font-variation-settings: 'wdth' 112; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; font-size: 20px; margin: 10px 0 12px; }
.step p { color: var(--steel); font-size: 14.5px; }
.step .dur { margin-top: 18px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver); }

/* ---------- despre ---------- */
.about { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.about-visual { position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--line); background: radial-gradient(90% 70% at 30% 20%, #2e3138 0%, #131417 55%, #0a0a0b 100%); overflow: hidden; }
.about-visual .frame-mark { border-color: var(--silver); }
.about-visual .cap { position: absolute; bottom: 20px; left: 22px; right: 22px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); display: flex; justify-content: space-between; }
.about h2 { font-size: clamp(34px, 3.8vw, 58px); margin: 18px 0 28px; }
.about .lede { margin-bottom: 22px; }
.about p + p { color: var(--steel); }
.facts { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.fact { padding: 22px 0; border-right: 1px solid var(--line); padding-right: 20px; }
.fact + .fact { padding-left: 20px; }
.fact:last-child { border-right: 0; }
.fact b { display: block; font-family: var(--font-display); font-variation-settings: 'wdth' 118; font-weight: 600; font-size: clamp(30px, 3vw, 46px); line-height: 1; letter-spacing: .02em; }
.fact span { display: block; margin-top: 8px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); }
.gear { margin-top: 44px; }
.gear h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); margin-bottom: 14px; }
.gear ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.gear li { font-size: 12.5px; padding: 6px 11px; border: 1px solid var(--line); color: var(--silver); }

/* ---------- testimoniale ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { border: 1px solid var(--line); padding: 34px 30px; position: relative; display: flex; flex-direction: column; min-height: 300px; transition: border-color .4s; }
.quote:hover { border-color: var(--steel); }
.quote .mark { font-family: var(--font-display); font-size: 72px; line-height: .5; color: var(--steel); opacity:.5; margin-bottom: 26px; }
.quote p { font-size: 17px; line-height: 1.55; color: var(--chrome); flex: 1; }
.quote footer { margin-top: 26px; display: flex; justify-content: space-between; align-items: end; }
.quote footer b { display: block; font-weight: 600; font-size: 14px; }
.quote footer span { font-size: 12.5px; color: var(--steel); }
.quote footer em { font-style: normal; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); }

/* ---------- contact ---------- */
.contact-wrap { border-top: 1px solid var(--line); }
.contact { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 100px); }
.contact h2 { font-size: clamp(40px, 5.6vw, 92px); margin: 18px 0 26px; }
.contact-info { list-style: none; margin-top: 40px; display: flex; flex-direction: column; }
.contact-info li { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 16px 0; border-top: 1px solid var(--line); font-size: 15px; }
.contact-info li:last-child { border-bottom: 1px solid var(--line); }
.contact-info li span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); padding-top: 3px; }
.contact-info li a { border-bottom: 1px solid transparent; transition: border-color .3s; }
.contact-info li a:hover { border-color: var(--silver); }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 22px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); }
.field input, .field select, .field textarea { background: transparent; border: 0; border-bottom: 1px solid var(--line); color: var(--chrome); font: inherit; font-size: 16px; padding: 10px 0 12px; border-radius: 0; transition: border-color .3s; -webkit-appearance: none; appearance: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8D93' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; }
.field select option { background: var(--graphite); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--silver); }
.field input::placeholder, .field textarea::placeholder { color: #4B4D53; }
.form-foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.form-foot small { color: var(--steel); font-size: 12.5px; max-width: 42ch; }
.form-msg { grid-column: 1 / -1; display: none; padding: 18px 0; border-top: 1px solid var(--line); color: var(--silver); font-size: 15px; }
.form-msg.show { display: block; }
.form-msg.err { color: #E0A2A2; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- footer ---------- */
footer.site { border-top: 1px solid var(--line); padding: 46px 0 34px; }
.foot-top { display: flex; justify-content: space-between; align-items: end; gap: 30px; flex-wrap: wrap; }
.foot-brand { font-family: var(--font-display); font-variation-settings: 'wdth' 125; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: clamp(40px, 8vw, 120px); line-height: .85; }
.foot-links { display: flex; gap: 28px; list-style: none; font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); }
.foot-links a:hover { color: var(--chrome); }
.foot-bot .credit a { color: var(--silver); border-bottom: 1px solid var(--line); transition: color .3s, border-color .3s; }
.foot-bot .credit a:hover { color: var(--chrome); border-color: var(--silver); }
.foot-bot { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .service { min-height: 320px; }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 44px; }
  .steps::before { display: none; }
  .quotes { grid-template-columns: 1fr; }
  .quote { min-height: 0; }
}
@media (max-width: 860px) {
  .nav ul, .nav .nav-cta { display: none; }
  .burger { display: block; }
  .nav.open ul { display: flex; flex-direction: column; gap: 22px; position: fixed; inset: 0; background: var(--ink); padding: 110px var(--gutter); z-index: -1; }
  .nav.open { mix-blend-mode: normal; }
  .nav.open ul a { font-family: var(--font-display); font-variation-settings: 'wdth' 118; font-size: 34px; letter-spacing: .06em; font-weight: 600; }
  .letterbox { aspect-ratio: 4 / 5; }
  .frame-hud.tl, .frame-hud.bl { left: 44px; } .frame-hud.tr, .frame-hud.br { right: 44px; }
  .frame-hud.bl, .frame-hud.br { display: none; }
  .hero-title h1 { white-space: normal; font-size: clamp(56px, 17vw, 120px); }
  .hero-title h1 small { letter-spacing: .28em; padding-left: .28em; }
  .hero-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; text-align: left; }
  .hero-sub span + span::before { display: none; }
  .hero-foot { display: none; }
  .sec-head { grid-template-columns: 1fr; gap: 20px; }
  .sec-head p { justify-self: start; }
  .work.span-7, .work.span-5, .work.span-4, .work.span-6 { grid-column: span 12; }
  .about, .contact { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 16 / 10; }
  .facts { grid-template-columns: 1fr 1fr 1fr; }
  form { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .services { grid-template-columns: 1fr; }
  .service { min-height: 0; }
  .service h3 { margin-top: 36px; }
  .steps { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .fact { border-right: 0; padding-left: 0 !important; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .contact-info li { grid-template-columns: 1fr; gap: 6px; }
}

/* ================= WordPress additions ================= */
/* nav / logo */
.nav .brand img { max-height: 32px; width: auto; display: block; }
.nav .menu { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav .menu li { margin: 0; }
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }

/* hero with real media */
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: saturate(.85) contrast(1.05); }
.letterbox.has-media::before { background: radial-gradient(45% 60% at var(--mx, 50%) var(--my, 40%), rgba(236,238,241,.06) 0%, rgba(236,238,241,0) 60%); }
.letterbox.has-media .hero-title::before { content: ""; position: absolute; inset: -40% -30%; background: radial-gradient(60% 70% at 50% 50%, rgba(10,10,11,.75), rgba(10,10,11,0) 70%); z-index: -1; }
.letterbox.has-media .hero-title { position: relative; z-index: 2; }
.letterbox .frame-mark, .letterbox .frame-hud { z-index: 2; }
.letterbox.has-media::after { z-index: 1; }

/* dynamic column counts */
.services.cols-1 { grid-template-columns: 1fr; } .services.cols-2 { grid-template-columns: repeat(2, 1fr); } .services.cols-3 { grid-template-columns: repeat(3, 1fr); }
.service-text p { color: var(--steel); font-size: 15px; }
.service-text p + p { margin-top: 10px; }
.service-text { flex: 1; }
.steps.cols-3 { grid-template-columns: repeat(3, 1fr); } .steps.cols-4 { grid-template-columns: repeat(4, 1fr); } .steps.cols-6 { grid-template-columns: repeat(6, 1fr); }
.step-text p { color: var(--steel); font-size: 14.5px; }
.quotes.cols-1 { grid-template-columns: 1fr; } .quotes.cols-2 { grid-template-columns: repeat(2, 1fr); }
.quote-text { flex: 1; }
.quote-text p { font-size: 17px; line-height: 1.55; color: var(--chrome); }
.quote-text p + p { margin-top: 10px; }
.facts.cols-1 { grid-template-columns: 1fr; } .facts.cols-2 { grid-template-columns: repeat(2, 1fr); }
.work.span-8 { grid-column: span 8; } .work.span-12 { grid-column: span 12; }
.work img.bg { width: 100%; height: 100%; object-fit: cover; }
.about-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }
.contact-info .socials a + a::before { content: "·"; margin: 0 8px; color: var(--steel); }
.contact-info small.muted { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 14px; }
@media (max-width: 1100px) {
  .services.cols-3, .services.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps.cols-4, .steps.cols-6 { grid-template-columns: repeat(3, 1fr); }
  .quotes.cols-2 { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav .menu, .nav .nav-cta { display: none; }
  .nav.open .menu { display: flex; flex-direction: column; gap: 22px; position: fixed; inset: 0; background: var(--ink); padding: 110px var(--gutter); z-index: -1; }
  .nav.open .menu a { font-family: var(--font-display); font-variation-settings: 'wdth' 118; font-size: 34px; letter-spacing: .06em; font-weight: 600; }
  .steps.cols-3, .steps.cols-4, .steps.cols-6 { grid-template-columns: 1fr 1fr; }
  .work.span-8 { grid-column: span 12; }
}
@media (max-width: 520px) {
  .services.cols-2, .services.cols-3 { grid-template-columns: 1fr; }
  .steps.cols-3, .steps.cols-4, .steps.cols-6 { grid-template-columns: 1fr; }
  .facts.cols-2 { grid-template-columns: 1fr; }
}

/* single project */
.single-work, .page-generic { padding: 140px 0 clamp(80px, 10vw, 150px); }
.back { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); margin-bottom: 28px; transition: color .3s; }
.back:hover { color: var(--chrome); }
.single-frame { position: relative; border: 1px solid var(--line); background: var(--graphite); overflow: hidden; }
.single-frame img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.single-frame .single-empty { aspect-ratio: 16/9; }
.single-video { aspect-ratio: 16/9; }
.single-video iframe, .single-video video { width: 100%; height: 100%; display: block; }
.single-video .wp-embed-responsive, .single-video .wp-video { width: 100% !important; height: 100%; }
.single-meta { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; margin-top: 44px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.single-meta h1 { font-size: clamp(34px, 5vw, 76px); margin: 16px 0 18px; }
.single-side { display: flex; gap: 40px; padding-top: 34px; }
.single-side span { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.single-side b { font-family: var(--font-display); font-variation-settings: 'wdth' 115; font-weight: 600; font-size: 26px; }
.single-content { margin-top: 40px; }
.single-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); }
.single-nav a:hover { color: var(--chrome); }
@media (max-width: 860px) { .single-meta { grid-template-columns: 1fr; } .single-side { padding-top: 0; } }

/* generic pages / prose */
.wrap.narrow { max-width: 860px; }
.page-generic h1 { font-size: clamp(34px, 5vw, 72px); margin: 16px 0 28px; }
.prose { color: var(--silver); font-size: 17px; line-height: 1.7; max-width: 68ch; }
.prose p, .prose ul, .prose ol, .prose blockquote, .prose figure { margin-bottom: 1.2em; }
.prose h2, .prose h3, .prose h4 { color: var(--chrome); font-family: var(--font-display); font-variation-settings: 'wdth' 112; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; margin: 1.8em 0 .6em; line-height: 1.1; }
.prose h2 { font-size: 26px; } .prose h3 { font-size: 20px; } .prose h4 { font-size: 16px; }
.prose a { color: var(--chrome); border-bottom: 1px solid var(--steel); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose img { border: 1px solid var(--line); }
.prose blockquote { border-left: 1px solid var(--silver); padding-left: 20px; color: var(--chrome); }
.prose article + article { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.prose .wp-block-embed iframe, .prose iframe { max-width: 100%; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ================= Responsive pass v2 ================= */
/* hero never taller than the viewport, on any device */
.letterbox { max-height: calc(100svh - 220px); }
@media (max-width: 1100px) {
  .service h3 { margin-top: 40px; }
}
@media (max-width: 860px) {
  .hero { min-height: 0; padding: 92px var(--gutter) 48px; }
  .letterbox { aspect-ratio: auto; height: clamp(400px, calc(100svh - 150px), 720px); max-height: none; }
  .hero-title { padding: 0 4%; }
  .hero-title h1 { font-size: clamp(52px, 15vw, 110px); }
  .hero-title h1 small { font-size: .3em; letter-spacing: .28em; padding-left: .28em; }
  .hero-sub { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; text-align: center; margin-top: 24px; font-size: 11px; }
  .hero-sub span + span::before { display: none; }
  .frame-hud.bl, .frame-hud.br { display: block; font-size: 10px; }
  .frame-hud.tl, .frame-hud.bl { left: 40px; } .frame-hud.tr, .frame-hud.br { right: 40px; }
  .frame-mark { width: 16px; height: 16px; }
  /* tablet portfolio: two columns instead of a long single column */
  .work, .work.span-4, .work.span-5, .work.span-6, .work.span-7, .work.span-8 { grid-column: span 6; }
  .work.span-12 { grid-column: span 12; }
  .works { gap: 14px; }
  .sec-head { margin-bottom: 36px; }
  section { padding: clamp(64px, 9vw, 110px) 0; }
  .about-visual { aspect-ratio: 16 / 10; max-height: 420px; }
}
@media (max-width: 520px) {
  .hero { padding-top: 84px; }
  .letterbox { height: clamp(380px, calc(100svh - 130px), 620px); }
  .frame-hud.bl { display: none; }
  .hero-title h1 { font-size: clamp(48px, 17vw, 80px); }
  .hero-title h1 small { font-size: .26em; letter-spacing: .2em; padding-left: .2em; white-space: nowrap; }
  /* one column everywhere, beating the .cols-N rules */
  .services, .services.cols-2, .services.cols-3, .services.cols-4 { grid-template-columns: 1fr; }
  .service { min-height: 0; padding: 26px 20px 30px; }
  .service h3 { margin-top: 28px; font-size: 22px; }
  .work, .work.span-4, .work.span-5, .work.span-6, .work.span-7, .work.span-8, .work.span-12 { grid-column: span 12; }
  .filters { gap: 6px; margin-bottom: 24px; }
  .filters button { padding: 8px 11px; font-size: 10.5px; }
  .sec-head h2 { font-size: clamp(32px, 9.5vw, 78px); }
  .lede { font-size: 16px; }
  /* process: vertical timeline */
  .steps, .steps.cols-3, .steps.cols-4, .steps.cols-5, .steps.cols-6 { grid-template-columns: 1fr; row-gap: 34px; padding-left: 30px; position: relative; }
  .steps::before { display: block; left: 7px; right: auto; top: 4px; bottom: 4px; height: auto; width: 1px; }
  .step { position: relative; padding-right: 0; }
  .step .dot { position: absolute; left: -30px; top: 1px; margin: 0; }
  .step .num { line-height: 1; }
  .step h3 { font-size: 19px; margin-top: 8px; }
  /* stats: keep the three in one row */
  .facts, .facts.cols-2, .facts.cols-3 { grid-template-columns: repeat(3, 1fr); margin-top: 32px; }
  .fact { border-right: 1px solid var(--line); border-bottom: 0; padding: 16px 8px 16px 0; }
  .fact + .fact { padding-left: 12px !important; }
  .fact:last-child { border-right: 0; }
  .fact b { font-size: clamp(24px, 7.5vw, 34px); }
  .fact span { font-size: 9.5px; letter-spacing: .1em; margin-top: 6px; }
  .gear { margin-top: 32px; }
  .gear li { font-size: 12px; padding: 5px 9px; }
  .quote { padding: 26px 22px; }
  .quote .mark { font-size: 56px; margin-bottom: 18px; }
  .quote-text p, .quote p { font-size: 16px; }
  .contact h2 { font-size: clamp(40px, 13vw, 92px); }
  .contact-info { margin-top: 28px; }
  .contact-info li { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  form { gap: 20px; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .form-foot .btn { justify-content: center; }
  .foot-brand { font-size: clamp(34px, 11vw, 120px); }
  .foot-links { flex-wrap: wrap; gap: 12px 20px; }
  .foot-bot { flex-direction: column; gap: 8px; }
  .single-work, .page-generic { padding-top: 100px; }
  .single-side { gap: 24px; }
}
/* very small phones */
@media (max-width: 360px) {
  .hero-title h1 { font-size: 44px; }
  .fact b { font-size: 22px; }
}
/* short landscape phones: keep the hero frame usable */
@media (max-height: 520px) and (max-width: 1100px) {
  .hero { min-height: 0; padding-top: 80px; }
  .letterbox { height: auto; aspect-ratio: 2.39 / 1; max-height: none; }
  .hero-foot { display: none; }
}
