:root {
  --paper: #e5e4de;
  --paper-strong: #f1f0eb;
  --ink: #25272a;
  --muted: #666963;
  --line: rgba(37, 39, 42, 0.18);
  --dark: #17191a;
  --signal: #666a63;
  --live: #9da592;
  --error: #b5625a;
  --content-width: 1240px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 24%, rgba(255,255,255,.62), transparent 34%),
    linear-gradient(115deg, rgba(255,255,255,.18), transparent 46%);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; width: 100%; }
.skip-link { position: fixed; left: 10px; top: -80px; z-index: 1000; padding: 12px; background: #fff; }
.skip-link:focus { top: 10px; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  color: #f3efdc;
  background: var(--dark);
  transition: opacity .65s var(--ease), visibility .65s;
}
body.is-ready .intro { opacity: 0; visibility: hidden; }
.intro strong { letter-spacing: .12em; }
.intro-line { width: 160px; height: 1px; background: #f3efdc; transform-origin: left; animation: introLine 1s var(--ease) both; }
.intro-mark, .brand-mark { display: grid; gap: 5px; width: 42px; transform: skewX(-20deg); }
.intro-mark i, .brand-mark i { display: block; height: 8px; background: currentColor; }
.intro-mark i:nth-child(2), .brand-mark i:nth-child(2) { width: 78%; }
.intro-mark i:nth-child(3), .brand-mark i:nth-child(3) { width: 56%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: stretch;
  min-height: 76px;
  border-top: 5px solid var(--dark);
  border-bottom: 1px solid var(--line);
  background: rgba(232,229,215,.9);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 11px; padding: 10px 22px; font-size: .9rem; font-weight: 900; line-height: .82; }
.brand-mark { color: var(--ink); width: 40px; }
.site-nav { justify-self: center; display: flex; border-inline: 1px solid var(--line); }
.site-nav a { display: grid; place-items: center; padding: 0 20px; color: var(--muted); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; transition: color .25s, background .25s; }
.site-nav a:hover, .site-nav a.is-active { color: var(--paper); background: var(--dark); }
.language-switch { display: flex; align-items: center; padding: 10px 20px; }
.language-switch button { width: 40px; height: 38px; border: 1px solid var(--line); color: var(--muted); background: transparent; font-size: .67rem; font-weight: 900; cursor: pointer; }
.language-switch button + button { border-left: 0; }
.language-switch button.is-active { color: var(--paper); background: var(--dark); }
.menu-toggle { display: none; }

.hero {
  --mx: 0;
  --my: 0;
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 108px 4vw 54px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 76px 0 0;
  z-index: -2;
  background-image: linear-gradient(rgba(37,39,42,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(37,39,42,.055) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle, #000 20%, transparent 84%);
}
.hero-network { position: absolute; inset: 76px 0 0; transform: translate3d(calc(var(--mx) * -11px), calc(var(--my) * -8px), 0); transition: transform .12s linear; }
.network-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.network-svg line { vector-effect: non-scaling-stroke; transform-origin: center; transition: stroke .28s var(--ease), opacity .28s var(--ease), stroke-width .28s var(--ease); }
.network-svg .network-spoke { stroke: rgba(37,39,42,.24); stroke-width: 1; stroke-dasharray: 1; stroke-dashoffset: 1; animation: drawLine 1.2s var(--ease) forwards; }
.network-svg .network-spoke.is-related { stroke: rgba(37,39,42,.38); }
.network-svg .network-spoke.is-hot { stroke: var(--signal); stroke-width: 1.5; }
.network-svg .network-relation { stroke: rgba(37,39,42,.11); stroke-width: 1; stroke-dasharray: .018 .026; stroke-dashoffset: 1; opacity: .52; animation: drawLine 1.45s var(--ease) forwards; }
.network-svg .network-relation.is-hot { stroke: var(--signal); stroke-width: 1.35; stroke-dasharray: 1; opacity: .82; }
.network-word {
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(37,39,42,.74);
  font: italic clamp(.86rem,1.5vw,1.08rem) Georgia, serif;
  white-space: nowrap;
  opacity: 0;
  filter: blur(4px);
  transform: translate(calc(-50% + var(--sx)), calc(-50% + var(--sy))) scale(.74);
  cursor: default;
}
body.is-network-ready .network-word { animation: spreadWord 1.25s var(--ease) forwards; }
.network-word:nth-of-type(2n) { animation-delay: .06s; }
.network-word:nth-of-type(3n) { animation-delay: .14s; }
body.is-network-live .network-word {
  left: var(--x); top: var(--y); opacity: 1; filter: none; animation: none;
  transform: translate3d(calc(var(--mx) * var(--depth) * 22px), calc(var(--my) * var(--depth) * 15px), 0);
  transition: transform .1s linear, color .2s, text-shadow .2s;
}
.network-word:hover,
.network-word.is-focus { color: #080909; text-shadow: 0 8px 20px rgba(37,39,42,.2); }
.network-word.is-related { color: rgba(8,9,9,.92); text-shadow: 0 5px 16px rgba(37,39,42,.14); }

.hero-content { position: relative; z-index: 2; display: grid; justify-items: center; text-align: center; transform: translate3d(calc(var(--mx) * 6px), calc(var(--my) * 4px), 0); transition: transform .12s linear; }
.hero-eyebrow { margin: 0 0 22px; font-size: clamp(.68rem,1vw,.82rem); font-weight: 900; letter-spacing: .13em; }
.hero h1 { display: flex; gap: .12em; margin: 0; font-size: clamp(4.6rem,11.2vw,11rem); font-weight: 950; line-height: .78; letter-spacing: 0; white-space: nowrap; opacity: 0; filter: blur(8px); clip-path: inset(0 50%); transform: scale(.94); transition: opacity .75s, filter .9s, clip-path 1s var(--ease), transform 1s var(--ease); }
body.is-name-ready .hero h1 { opacity: 1; filter: none; clip-path: inset(0); transform: scale(1); }
.hero h1 span { display: block; }
.hero-copy { max-width: 620px; margin: 24px 0 0; font-size: clamp(1rem,1.45vw,1.25rem); font-weight: 700; line-height: 1.22; }
.hero-actions { display: flex; gap: 12px; margin-top: 26px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid currentColor; padding: 0 22px; background: transparent; color: var(--ink); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: transform .2s, color .2s, background .2s; }
.button:hover { transform: translateY(-3px); }
.button.is-pressed,
button.is-pressed { transform: translateY(1px) scale(0.98); }
.button:disabled,
button:disabled { cursor: wait; opacity: 0.56; }
.button-dark { color: var(--paper); background: var(--dark); border-color: var(--dark); }
.button-dark:hover { color: var(--dark); background: transparent; }
.scroll-hint { position: absolute; bottom: 20px; font-size: .62rem; letter-spacing: .12em; color: var(--muted); animation: hint 2s ease-in-out infinite; }

.zoom-story { position: relative; height: 180svh; margin-top: -100svh; pointer-events: none; }
.zoom-stage { position: sticky; top: 0; height: 100svh; display: grid; place-items: center; overflow: hidden; perspective: 1000px; }
.camera-frame {
  --zoom: .07;
  position: relative;
  width: min(88vw, 1500px);
  aspect-ratio: 16/9;
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: #090a0a;
  border: 2px solid rgba(255,255,255,.55);
  opacity: var(--frame-opacity,0);
  transform: scale(var(--zoom));
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
  pointer-events: auto;
  will-change: transform, opacity;
}
.camera-frame::after { content: ""; position: absolute; inset: 0; z-index: 6; pointer-events: none; border: 0 solid var(--error); transition: border-width .25s; }
.camera-frame.is-recording::after { border-width: 4px; }
.camera-frame > img { position: relative; z-index: 0; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.08); transform: scale(1.03); transition: transform 8s linear; }
.camera-frame.is-recording img { transform: scale(1.1); }
.camera-youtube { position: absolute; inset: 0; z-index: 1; overflow: hidden; opacity: 0; background: #050606; pointer-events: none; transition: opacity .45s var(--ease); }
.camera-frame.is-recording .camera-youtube { opacity: 1; }
.camera-youtube iframe { width: 100%; height: 100%; border: 0; transform: scale(1.02); pointer-events: none; }
.light-sweep { position: absolute; z-index: -1; width: 90vw; height: 3px; opacity: var(--light-opacity,0); background: #fff; box-shadow: 0 0 24px 8px rgba(255,255,255,.8); transform: scaleX(var(--light-scale,.05)); }
.camera-ui { position: absolute; inset: 14px; z-index: 3; font: 700 clamp(.58rem,.85vw,.8rem) "Courier New", monospace; text-shadow: 0 1px 3px #000; pointer-events: none; }
.hud-top, .hud-bottom { position: absolute; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hud-top { top: 0; } .hud-bottom { bottom: 0; }
.hud-top strong { color: #b5bea8; } .camera-frame.is-recording .hud-top strong { color: #c97970; }
.audio-meters { position: absolute; left: 0; bottom: 28px; display: flex; align-items: end; gap: 2px; height: 22px; }
.audio-meters i { width: 3px; height: calc(4px + var(--audio, .4) * 17px); background: #b5bea8; }
.frame-corner { position: absolute; width: 30px; height: 30px; border-color: rgba(255,255,255,.8); }
.c1 { left: 0; top: 26px; border-left: 1px solid; border-top: 1px solid; }.c2 { right: 0; top: 26px; border-right: 1px solid; border-top: 1px solid; }.c3 { left: 0; bottom: 26px; border-left: 1px solid; border-bottom: 1px solid; }.c4 { right: 0; bottom: 26px; border-right: 1px solid; border-bottom: 1px solid; }
.play-button { position: absolute; inset: 0; z-index: 5; margin: auto; width: 132px; height: 132px; display: grid; place-content: center; justify-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: #fff; background: rgba(0,0,0,.2); backdrop-filter: blur(4px); cursor: pointer; transition: transform .25s, opacity .25s; }
.play-button:hover { transform: scale(1.07); }.play-button span { width: 0; height: 0; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 18px solid #fff; margin-left: 4px; }.play-button b { font-size: .56rem; letter-spacing: .1em; }.camera-frame.is-recording .play-button { opacity: 0; pointer-events: none; }

.section { width: min(var(--content-width), calc(100% - 64px)); margin: 0 auto; padding: clamp(78px,9vw,124px) 0; }
.section-head { display: grid; grid-template-columns: minmax(170px,.28fr) minmax(0,1fr); gap: clamp(28px,4vw,58px); align-items: start; margin-bottom: 55px; }
.kicker { margin: 7px 0 0; color: var(--muted); font-size: .72rem; font-weight: 800; line-height: 1.35; letter-spacing: .08em; }
.section h2 { max-width: 16ch; margin: 0; font-size: clamp(2.6rem,4.6vw,4.9rem); line-height: .98; letter-spacing: 0; text-wrap: balance; overflow-wrap: break-word; }
.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.project { position: relative; min-height: 360px; overflow: hidden; background: #1b1c1d; color: #fff; cursor: pointer; }
.project-wide { grid-row: span 2; min-height: 721px; }
.project img { height: 100%; object-fit: cover; filter: saturate(.65); transition: transform .75s var(--ease), filter .4s; }
.project:hover img, .project:focus img { transform: scale(1.045); filter: saturate(1); }
.project-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.8), transparent 60%); }
.project-meta { position: absolute; left: 28px; right: 28px; bottom: 28px; transform: translateY(14px); transition: transform .35s; }.project:hover .project-meta { transform: translateY(0); }
.project-meta span { font-size: .68rem; font-weight: 800; letter-spacing: .08em; }.project-meta h3 { max-width: 18ch; margin: 10px 0 6px; font-size: clamp(1.7rem,2.45vw,2.9rem); line-height: 1.02; }.project-meta p { max-width: 42ch; margin: 0; opacity: 0; line-height: 1.45; transform: translateY(8px); transition: .3s; }.project:hover .project-meta p { opacity: .82; transform: none; }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 70px minmax(240px,.8fr) 1fr; gap: 28px; align-items: center; min-height: 132px; border-bottom: 1px solid var(--line); transition: color .25s, background .25s, padding .25s; }.service-row:hover { padding-inline: 20px; color: var(--paper); background: var(--dark); }.service-row > span { font-size: .7rem; font-weight: 900; }.service-row h3 { margin: 0; font-size: clamp(1.65rem,3vw,3.1rem); }.service-row p { max-width: 58ch; margin: 0; color: var(--muted); line-height: 1.45; }.service-row:hover p { color: rgba(232,229,215,.72); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.process-grid li { min-height: 270px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.process-grid span { font-size: .68rem; font-weight: 900; }.process-grid h3 { margin: 90px 0 12px; font-size: 1.5rem; }.process-grid p { color: var(--muted); line-height: 1.45; }

.contact { min-height: 84svh; display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(50px,7vw,100px); align-items: center; padding: 100px max(32px,calc((100% - var(--content-width))/2)); color: var(--paper); background: var(--dark); }
.contact h2 { max-width: 760px; margin: 22px 0 45px; font: 700 clamp(3rem,6vw,6.3rem)/.95 Georgia, serif; }.contact-copy > a { font-size: clamp(1.2rem,2vw,2rem); font-weight: 800; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }.contact-form label { display: grid; gap: 8px; }.contact-form label span { font-size: .66rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(232,229,215,.45); border-radius: 0; padding: 14px 0; color: #fff; background: transparent; outline: none; }.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #fff; }.contact-form option { color: #111; }.contact-form .full, .contact-form button, #formStatus { grid-column: 1/-1; }.button-light { color: var(--dark); background: var(--paper); border-color: var(--paper); }.contact-form button { justify-self: start; }.contact-form #formStatus { min-height: 20px; margin: 0; color: rgba(232,229,215,.7); }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 22px max(24px,4vw); border-top: 1px solid #363738; color: var(--paper); background: var(--dark); font-size: .64rem; font-weight: 900; letter-spacing: .1em; }
footer a:hover { color: var(--live); }

.reveal { opacity: 0; transform: translateY(70px); transition: opacity .8s var(--ease), transform .95s var(--ease); }.reveal.is-visible { opacity: 1; transform: none; }
@keyframes introLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes spreadWord { 0% { opacity: 0; filter: blur(4px); } 100% { left: var(--x); top: var(--y); opacity: 1; filter: none; transform: translate(0,0) scale(1); } }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes hint { 50% { opacity: .35; transform: translateY(5px); } }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 175px 1fr auto; }.site-nav a { padding: 0 11px; }.project-wide { min-height: 700px; }.project { min-height: 350px; }
  .contact { grid-template-columns: 1fr; }.contact-copy { max-width: 850px; }
}
@media (max-width: 760px) {
  .site-header { min-height: 70px; grid-template-columns: 1fr auto auto; }.brand { padding: 9px 16px; }.brand-mark { width: 34px; }.language-switch { padding: 8px 10px; }
  .menu-toggle { display: grid; place-content: center; gap: 7px; width: 46px; border: 0; border-left: 1px solid var(--line); background: transparent; }.menu-toggle span { width: 20px; height: 2px; background: var(--ink); transition: transform .25s; }
  .menu-toggle.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav { position: fixed; top: 70px; left: 0; right: 0; display: grid; border: 0; background: var(--paper); transform: translateY(-120%); transition: transform .35s var(--ease); box-shadow: 0 18px 40px rgba(0,0,0,.16); }.site-nav.is-open { transform: none; }.site-nav a { min-height: 52px; justify-content: start; padding: 0 20px; border-bottom: 1px solid var(--line); }
  .hero { padding: 98px 18px 42px; }.hero-network { inset: 70px 0 0; }.network-word { font-size: .78rem; opacity: .58; }.network-word[data-key="live"], .network-word[data-key="camera"], .network-word[data-key="light"], .network-word[data-key="editing"], .network-word[data-key="screen"], .network-word[data-key="signal"] { display: none; }.hero h1 { flex-direction: column; gap: 0; font-size: clamp(4.4rem,22vw,7rem); line-height: .78; white-space: normal; }.hero-eyebrow { margin-bottom: 16px; font-size: .61rem; white-space: nowrap; }.hero-copy { max-width: 32ch; margin-top: 18px; font-size: .94rem; }.hero-actions { width: min(100%,340px); display: grid; }.button { width: 100%; }
  .zoom-story { height: 155svh; }.camera-frame { width: 94vw; }.camera-ui { inset: 8px; }.hud-top span:nth-of-type(2), .hud-bottom span:nth-of-type(3) { display: none; }.play-button { width: 96px; height: 96px; }
  .section { width: min(calc(100% - 32px),var(--content-width)); padding: 75px 0; }.section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }.section h2 { font-size: clamp(2.6rem,12vw,4.8rem); }
  .project-grid { grid-template-columns: 1fr; }.project-wide, .project { grid-row: auto; min-height: 420px; }.project-meta { left: 20px; right: 20px; bottom: 20px; }.project-meta p { opacity: .8; transform: none; }
  .service-row { grid-template-columns: 38px 1fr; gap: 14px; min-height: 0; padding: 24px 0; }.service-row p { grid-column: 2; }.service-row:hover { padding-inline: 12px; }
  .process-grid { grid-template-columns: 1fr 1fr; }.process-grid li { min-height: 230px; }.process-grid h3 { margin-top: 58px; }
  .contact { min-height: auto; padding: 80px 18px; }.contact h2 { font-size: clamp(2.8rem,13vw,4.8rem); }.contact-form { grid-template-columns: 1fr; }.contact-form .full, .contact-form button, #formStatus { grid-column: 1; } footer { display: grid; }
}
@media (max-width: 480px) { .network-word:nth-of-type(3n) { display: none; }.process-grid { grid-template-columns: 1fr; }.process-grid li { min-height: 190px; }.process-grid h3 { margin-top: 38px; } }
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto!important; animation-duration: .001ms!important; transition-duration: .001ms!important; }
  .intro { display: none; }.hero h1,.network-word,.reveal { opacity: 1; filter: none; clip-path: none; transform: none; }.zoom-story { height: 100svh; margin-top: 0; }.camera-frame { --zoom:1!important; --frame-opacity:1!important; }
}

/* B2B production layer */

body::before {
  opacity: 1;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.7), transparent 34%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 48%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

.intro small {
  color: rgba(243, 239, 220, 0.56);
  font: 700 0.58rem/1 "Courier New", monospace;
  letter-spacing: 0.16em;
}

.site-header {
  grid-template-columns: 190px 1fr auto;
  background: var(--paper);
  backdrop-filter: none;
}

.site-nav a {
  grid-auto-flow: column;
  gap: 7px;
  padding: 0 18px;
}

.site-nav a span {
  opacity: 0.58;
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
}

.site-nav a b {
  font: inherit;
}

.hero::before {
  background-image: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 76px 0 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.76), transparent 32%);
}

.hero-content {
  width: min(100%, 1180px);
}

.hero h1 {
  font-size: clamp(4.2rem, 9.25vw, 9.25rem);
}

.hero-copy {
  max-width: 670px;
  line-height: 1.3;
  text-wrap: balance;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 24px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.hero-assurances li span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--live);
}

.camera-frame {
  max-height: calc(100svh - 114px);
}

.camera-frame figcaption {
  bottom: 12px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.76);
  text-shadow: 0 1px 3px #000;
}

.proof-strip {
  width: min(var(--content-width), calc(100% - 64px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 229, 0.46);
}

.proof-strip > div {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px clamp(18px, 2.5vw, 42px);
  border-right: 1px solid var(--line);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip span,
.experience-copy > span,
.service-row > b {
  font: 700 0.62rem/1.2 "Courier New", monospace;
  letter-spacing: 0.1em;
}

.proof-strip span {
  color: var(--muted);
  font-size: .67rem;
}

.proof-strip b {
  max-width: 22ch;
  font-size: 0.74rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 9vw, 126px) 0;
}

.section-head {
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.9rem);
}

.section-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.5;
}

.services {
  padding-bottom: clamp(48px, 5vw, 76px);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.experience-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(210px, 1.1fr);
  min-height: 330px;
  overflow: hidden;
  background: var(--paper-strong);
}

.experience-main {
  grid-row: span 2;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(420px, 1fr) auto;
}

.experience-card figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #202224;
}

.experience-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.04);
  transition: transform 900ms var(--ease), filter 420ms var(--ease);
}

.experience-main img {
  object-position: 53% center;
}

.experience-card:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.02);
}

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 40px);
}

.experience-copy > span {
  color: var(--muted);
  font-size: .67rem;
}

.experience-copy h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.65rem, 2.7vw, 3.15rem);
  line-height: 1;
}

.experience-copy p {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.experience-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.client-logos {
  width: min(var(--content-width), calc(100% - 64px));
  margin: 0 auto;
  padding: 18px 0 clamp(64px, 8vw, 110px);
}

.client-logos-head {
  display: grid;
  grid-template-columns: minmax(160px, .35fr) minmax(0, 1fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.client-logos-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3.8rem);
  line-height: 1;
}

.client-logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.client-logo-slot {
  min-width: 0;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(37, 39, 42, .42);
  background: rgba(244, 241, 229, .34);
  font: 700 .58rem/1.2 "Courier New", monospace;
  letter-spacing: .1em;
}

.client-logo-slot::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-right: 10px;
  background: currentColor;
  transform: skewX(-20deg);
}

.client-logo-slot span { display: inline-block; }
.client-logo-slot b { color: rgba(37,39,42,.25); font: inherit; }

.client-logos-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: .7rem;
}

.project {
  isolation: isolate;
}

.project::before {
  content: attr(data-view-label);
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: white;
  font: 700 0.55rem/1 "Courier New", monospace;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 280ms var(--ease), transform 340ms var(--ease);
}

.project:hover::before,
.project:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.works-page-link {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 0 4px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: padding 250ms var(--ease), color 220ms var(--ease), background 220ms var(--ease);
}

.works-page-link:hover,
.works-page-link:focus-visible {
  padding-inline: 20px;
  color: var(--paper);
  background: var(--dark);
}

.works-page-link b { font-size: 1.4rem; }

.service-row {
  grid-template-columns: 70px minmax(230px, 0.72fr) minmax(260px, 1fr) auto;
}

.service-row > b {
  max-width: 16ch;
  color: var(--muted);
  text-align: right;
}

.service-row:hover > b {
  color: var(--live);
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-tabs button {
  min-width: 0;
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 12px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 22px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 240ms var(--ease), background 240ms var(--ease);
}

.service-tabs button > span {
  grid-row: 1 / span 2;
  color: var(--muted);
  font: 700 0.67rem/1 "Courier New", monospace;
}

.service-tabs button b {
  min-width: 0;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.12;
}

.service-tabs button small {
  align-self: end;
  color: var(--muted);
  font: 700 0.61rem/1.4 "Courier New", monospace;
  letter-spacing: 0.04em;
}

.service-tabs button:hover,
.service-tabs button.is-active {
  color: var(--paper);
  background: var(--dark);
}

.service-tabs button:hover small,
.service-tabs button.is-active small {
  color: rgba(232, 229, 215, 0.58);
}

.service-panels {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-panel[hidden] {
  display: none;
}

.service-panel.is-active {
  animation: servicePanelIn 480ms var(--ease) both;
}

.service-panel-intro {
  display: grid;
  grid-template-columns: minmax(130px, 0.22fr) minmax(280px, 0.9fr) minmax(260px, 0.68fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding: clamp(32px, 4.2vw, 52px);
  border-bottom: 1px solid var(--line);
}

.service-panel-intro .kicker {
  color: var(--muted);
}

.service-panel-intro h3 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.1rem, 3.5vw, 3.75rem);
  line-height: 1;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.service-panel-intro > p:last-child {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.service-panel-media {
  height: auto;
  aspect-ratio: 16 / 6;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--dark);
}

.service-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(.78) contrast(1.04);
  transform: scale(1.01);
  transition: transform 900ms var(--ease), filter 400ms var(--ease);
}

.service-panel:hover .service-panel-media img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.02);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package {
  min-width: 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.package:last-child {
  border-right: 0;
}

.package-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--line);
  font: 700 0.64rem/1 "Courier New", monospace;
  letter-spacing: .09em;
}

.package-tier b {
  color: var(--muted);
  font: inherit;
}

.tier-basic .package-tier { color: var(--muted); border-color: rgba(37,39,42,.28); }
.tier-medium .package-tier { color: var(--ink); border-color: var(--ink); }
.tier-premium .package-tier { color: var(--ink); border-color: rgba(37,39,42,.62); }

.package h4 {
  margin: 40px 0 16px;
  font-size: clamp(1.4rem, 1.9vw, 2rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.package p {
  margin: 0 0 30px;
  color: var(--muted);
  line-height: 1.5;
}

.package small {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.45;
}

.service-evidence {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 24px clamp(24px, 4.5vw, 62px);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.decision-band {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(430px, 580px);
  justify-content: space-between;
  align-items: end;
  gap: clamp(48px, 7vw, 92px);
  overflow: hidden;
  padding: clamp(80px, 9vw, 118px) max(32px, calc((100% - var(--content-width))/2));
  color: var(--paper);
  background: #17191a;
}

.decision-band::before {
  content: attr(data-stage-label);
  position: absolute;
  top: 4%;
  left: 4%;
  color: rgba(232, 229, 215, 0.035);
  font-size: min(34vw, 540px);
  font-weight: 950;
  line-height: 1;
}

.decision-copy,
.decision-actions {
  position: relative;
  z-index: 2;
}

.decision-copy h2 {
  max-width: 11ch;
  margin: 20px 0 22px;
  font-size: clamp(3rem, 4.8vw, 5rem);
  line-height: 0.96;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.decision-copy > p:last-child {
  max-width: 54ch;
  color: rgba(232, 229, 215, 0.7);
  line-height: 1.5;
}

.decision-actions {
  border-top: 1px solid rgba(232, 229, 215, 0.27);
}

.decision-actions button {
  width: 100%;
  min-height: 90px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid rgba(232, 229, 215, 0.27);
  padding: 14px 4px;
  color: var(--paper);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding 260ms var(--ease), color 220ms var(--ease), background 220ms var(--ease);
}

.decision-actions button:hover,
.decision-actions button:focus-visible {
  padding-inline: 18px;
  color: var(--dark);
  background: var(--paper);
}

.decision-actions button span {
  font: 700 0.68rem/1 "Courier New", monospace;
}

.decision-actions button b {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
}

.decision-actions button i {
  font-style: normal;
  font-size: 1.5rem;
}

.decision-signal {
  position: absolute;
  top: 70px;
  right: 5vw;
  display: flex;
  align-items: end;
  gap: 5px;
  height: 58px;
}

.decision-signal i {
  width: 4px;
  height: calc(10px + var(--level, 0.45) * 46px);
  background: rgba(232, 231, 224, .62);
  animation: signalLevel 1.1s ease-in-out infinite alternate;
}

.decision-signal i:nth-child(2n) { animation-delay: -0.4s; }
.decision-signal i:nth-child(3n) { animation-delay: -0.75s; }

.process-grid li {
  position: relative;
  overflow: hidden;
  transition: color 250ms var(--ease), background 250ms var(--ease);
}

.process-grid li::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 400ms var(--ease), background 250ms var(--ease);
}

.process-grid li:hover {
  color: var(--paper);
  background: var(--dark);
}

.process-grid li:hover p {
  color: rgba(232, 229, 215, 0.7);
}

.process-grid li:hover::after {
  transform: scale(1.8);
  background: rgba(229, 228, 222, .16);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 98px;
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  font-size: clamp(1.35rem, 2.5vw, 2.5rem);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary i {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 240ms var(--ease);
}

.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }

.faq-list details > p {
  max-width: 780px;
  margin: -8px 0 32px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.journal-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.journal-preview-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 280px 1fr;
  min-height: 540px;
  overflow: hidden;
  background: var(--paper-strong);
}

.journal-preview-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--dark);
}

.journal-preview-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62);
  transition: transform 700ms var(--ease), filter 350ms var(--ease);
}

.journal-preview-card:hover img {
  transform: scale(1.05);
  filter: saturate(1);
}

.journal-preview-card > div {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 36px);
}

.journal-preview-card span {
  color: var(--muted);
  font: 700 0.67rem/1.4 "Courier New", monospace;
  letter-spacing: 0.06em;
}

.journal-preview-card h3 {
  margin: auto 0 18px;
  font-size: clamp(1.55rem, 2.2vw, 2.45rem);
  line-height: 1.05;
  overflow-wrap: break-word;
}

.journal-preview-card b {
  font-size: 1.35rem;
}

.journal-all {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 0 4px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: padding 250ms var(--ease), color 220ms var(--ease), background 220ms var(--ease);
}

.journal-all:hover {
  padding-inline: 20px;
  color: var(--paper);
  background: var(--dark);
}

.journal-all b { font-size: 1.4rem; }

.contact {
  min-height: 84svh;
  gap: clamp(50px, 8vw, 130px);
}

.contact-copy > p:not(.kicker) {
  max-width: 55ch;
  margin: -26px 0 30px;
  color: rgba(232, 229, 215, 0.68);
  line-height: 1.5;
}

.contact-copy > a {
  overflow-wrap: anywhere;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 24px;
  color: rgba(232, 229, 215, 0.48);
  font: 700 0.62rem/1.2 "Courier New", monospace;
  letter-spacing: 0.1em;
}

.contact-form {
  align-self: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:user-invalid,
.contact-form textarea:user-invalid {
  border-color: var(--error);
}

.contact-form button {
  display: inline-flex;
  gap: 24px;
}

.contact-form button b {
  font-size: 1.1rem;
}

.privacy-note {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  color: rgba(232, 229, 215, 0.48);
  font-size: 0.68rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  padding: 14px;
  color: white;
  background: #17191a;
  text-align: center;
}

@keyframes signalLevel {
  from { transform: scaleY(0.3); opacity: 0.55; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes servicePanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 175px 1fr auto; }
  .site-nav a { padding: 0 11px; }
  .site-nav a span { display: none; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-main { grid-row: auto; grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr); grid-template-rows: 1fr; }
  .experience-card { min-height: 360px; }
  .service-row { grid-template-columns: 56px minmax(210px, 0.72fr) minmax(240px, 1fr); }
  .service-row > b { display: none; }
}

@media (max-width: 900px) {
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip > div:nth-child(2) { border-right: 0; }
  .proof-strip > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .decision-band { grid-template-columns: 1fr; min-height: 740px; }
  .decision-copy { max-width: 760px; }
  .journal-preview-grid { grid-template-columns: 1fr; }
  .journal-preview-card { grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr); grid-template-rows: 1fr; min-height: 340px; }
}

@media (max-width: 760px) {
  body::after { opacity: 0.022; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .site-nav a span { display: inline; }
  .site-nav a { grid-auto-flow: column; justify-content: start; }
  .hero::after { inset: 70px 0 0; }
  .hero-content { align-self: center; }
  .hero h1 { max-width: 100%; font-size: clamp(3.9rem, 17vw, 5.5rem); }
  .network-word[data-key="stage"] { display: none; }
  .hero-copy { max-width: 32ch; }
  .hero-assurances { display: grid; justify-items: start; margin-top: 18px; }
  .camera-frame { max-height: none; }
  .proof-strip { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .proof-strip > div { min-height: 68px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip > div:last-child { border-bottom: 0; }
  .experience-main,
  .experience-card { grid-template-columns: 1fr; grid-template-rows: 280px auto; min-height: 0; }
  .experience-copy { min-height: 220px; }
  .service-row { grid-template-columns: 38px 1fr; }
  .service-row p { grid-column: 2; }
  .decision-band { min-height: 690px; padding-inline: 18px; }
  .decision-band::before { top: 13%; font-size: 43vw; }
  .decision-copy h2 { font-size: clamp(3rem, 14vw, 5.2rem); }
  .decision-signal { top: 34px; right: 18px; height: 38px; }
  .decision-actions button { min-height: 76px; }
  .faq-list summary { min-height: 82px; font-size: 1.35rem; }
  .journal-preview-card { grid-template-columns: 1fr; grid-template-rows: 240px auto; min-height: 500px; }
  .contact-copy > p:not(.kicker) { margin-top: -18px; }
  .privacy-note { grid-column: 1; }
}

@media (max-width: 480px) {
  .hero-assurances li { font-size: 0.62rem; }
  .experience-main,
  .experience-card { grid-template-rows: 240px auto; }
  .experience-copy { min-height: 205px; }
  .proof-strip b { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .decision-signal i { animation: none; }
  .project::before { display: none; }
}

/* Lithuanian copy and mobile layout refinement */
@media (max-width: 1100px) {
  .service-tabs { grid-template-columns: 1fr 1fr; }
  .service-panel-intro { grid-template-columns: 150px 1fr; }
  .service-panel-intro > p:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  body::before { background: radial-gradient(circle at 50% 18%, rgba(255,255,255,.68), transparent 38%); }

  .site-header { height: 70px; }
  .brand { min-width: 0; gap: 9px; padding-inline: 14px 9px; font-size: .78rem; }
  .brand-mark { flex: 0 0 32px; }
  .language-switch { padding-inline: 7px; }
  .language-switch button { width: 38px; }
  .site-nav { max-height: calc(100svh - 70px); overflow-y: auto; }

  .hero {
    min-height: 100svh;
    align-content: center;
    padding: 96px 18px 58px;
  }
  .hero-network { inset: 70px 0 0; transform: none !important; }
  .network-word { font-size: .75rem; }
  .network-word[data-key="live"],
  .network-word[data-key="camera"],
  .network-word[data-key="light"],
  .network-word[data-key="editing"] { display: none; }
  .network-word[data-key="production"] { display: block; --x: 6%; --y: 17%; }
  .network-word[data-key="television"] { display: block; --x: 58%; --y: 10%; }
  .network-word[data-key="stage"] { display: block; --x: 78%; --y: 26%; }
  .network-word[data-key="sound"] { display: block; --x: 8%; --y: 76%; }
  .network-word[data-key="screen"] { display: block; --x: 74%; --y: 72%; }
  .network-word[data-key="signal"] { display: block; --x: 56%; --y: 88%; }
  body.is-network-live .network-word { transform: none; transition: color .28s var(--ease), text-shadow .28s var(--ease); }

  .hero-content { align-self: auto; width: 100%; transform: none !important; }
  .hero-eyebrow { max-width: 32ch; margin-bottom: 14px; white-space: normal; line-height: 1.4; text-wrap: balance; }
  .hero h1 { font-size: clamp(3.65rem, 17vw, 5.2rem); line-height: .8; }
  .hero-copy { max-width: 34ch; margin-top: 18px; font-size: .92rem; line-height: 1.36; text-wrap: pretty; }
  .hero-actions { width: min(100%, 330px); margin-top: 22px; }
  .hero-assurances { width: min(100%, 330px); gap: 8px; }
  .hero-assurances li { align-items: flex-start; line-height: 1.35; text-align: left; }
  .hero-assurances li span { flex: 0 0 6px; margin-top: 4px; }
  .scroll-hint { bottom: 14px; }

  .zoom-story {
    height: auto !important;
    margin-top: 0 !important;
    padding: 0 14px 54px;
    pointer-events: auto;
  }
  .zoom-stage {
    position: relative;
    top: auto;
    height: auto;
    display: block;
    overflow: visible;
  }
  .camera-frame {
    --zoom: 1 !important;
    --frame-opacity: 1 !important;
    width: 100%;
    max-height: none;
    opacity: 1;
    transform: none;
    box-shadow: 0 16px 38px rgba(0,0,0,.22);
  }
  .light-sweep { display: none; }
  .camera-frame figcaption { left: 10px; right: 10px; bottom: 8px; font-size: .5rem; }
  .play-button { width: 88px; height: 88px; }
  .play-button b { max-width: 70px; line-height: 1.3; }

  .section { padding: 68px 0; }
  .section-head { gap: 15px; }
  .section h2 { font-size: clamp(2.25rem, 10.6vw, 3.45rem); line-height: .98; text-wrap: pretty; }
  .section-intro { margin-top: 18px; font-size: .95rem; line-height: 1.5; }

  .experience-copy { min-height: 0; }
  .experience-copy h3 { font-size: 1.85rem; }
  .client-logos { width: min(calc(100% - 32px), var(--content-width)); padding: 0 0 68px; }
  .client-logos-head { grid-template-columns: 1fr; gap: 12px; }
  .client-logos-head h2 { font-size: 2.15rem; }
  .client-logo-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-logo-slot { min-height: 88px; }
  .project-wide,
  .project { min-height: 390px; }
  .project::before { display: none; }
  .project-meta h3 { font-size: 2rem; }
  .project-meta p { font-size: .92rem; line-height: 1.42; }

  .service-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }
  .service-tabs button { min-width: 0; min-height: 108px; padding: 16px; }
  .service-tabs button b { font-size: 1rem; line-height: 1.15; overflow-wrap: break-word; }
  .service-tabs button small { font-size: .58rem; }
  .service-panel-intro { grid-template-columns: 1fr; gap: 16px; padding: 28px 20px; }
  .service-panel-intro > p:last-child { grid-column: 1; margin-top: 0; font-size: .95rem; }
  .service-panel-intro h3 { max-width: 16ch; font-size: clamp(2rem, 9vw, 2.9rem); line-height: 1.02; }
  .service-panel-media { height: auto; aspect-ratio: 16 / 9; }
  .package-grid { grid-template-columns: 1fr; }
  .package { min-height: 0; padding: 28px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .package:last-child { border-bottom: 0; }
  .package h4 { margin: 34px 0 12px; font-size: 1.7rem; }
  .package-tier { padding-bottom: 13px; }
  .package p { margin-bottom: 24px; font-size: .94rem; }
  .service-evidence { padding: 22px 20px; }

  .decision-band { min-height: 0; gap: 42px; padding: 74px 18px; }
  .decision-band::before { top: 9%; font-size: 31vw; }
  .decision-copy h2 { max-width: 12ch; font-size: clamp(2.55rem, 10.8vw, 3.55rem); line-height: .98; }
  .decision-actions button { grid-template-columns: 34px 1fr auto; gap: 12px; }
  .decision-actions button b { font-size: 1.05rem; }

  .process-grid li { min-height: 210px; }
  .process-grid h3 { margin-top: 48px; font-size: 1.35rem; }
  .process-grid p { font-size: .92rem; }
  .faq-list summary { line-height: 1.2; }
  .faq-list details > p { font-size: .95rem; }

  .journal-preview-card { min-height: 470px; }
  .journal-preview-card h3 { font-size: 1.8rem; }
  .contact { padding: 72px 18px; }
  .contact h2 { margin-bottom: 34px; font-size: clamp(2.55rem, 11.8vw, 3.8rem); line-height: 1; }
  .contact-copy > p:not(.kicker) { margin-top: -12px; }
  footer { line-height: 1.45; }
}

@media (max-width: 420px) {
  .brand { font-size: .7rem; }
  .brand-mark { flex-basis: 29px; }
  .menu-toggle { width: 42px; }
  .language-switch button { width: 34px; }
  .hero h1 { font-size: clamp(3.4rem, 16.5vw, 4.4rem); }
  .hero-copy { font-size: .88rem; }
  .hero-assurances { display: none; }
  .service-tabs { grid-template-columns: 1fr; }
  .service-tabs button {
    min-height: 82px;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto;
    gap: 7px 10px;
  }
  .service-tabs button > span { grid-row: 1 / span 2; }
  .service-tabs button small { align-self: start; }
  .project-wide,
  .project { min-height: 350px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 180px; }
  .process-grid h3 { margin-top: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .service-panel.is-active { animation: none; }
  .network-svg .network-relation,
  .network-svg .network-spoke { animation: none; stroke-dashoffset: 0; }
}
