@font-face { font-family: Archivo; font-style: normal; font-weight: 500 800; font-display: swap; src: url('/assets/fonts/archivo-latin.woff2') format('woff2'); }
@font-face { font-family: Inter; font-style: normal; font-weight: 400 700; font-display: swap; src: url('/assets/fonts/inter-latin.woff2') format('woff2'); }

:root {
  --ink: #0b0b0c;
  --paper: #f1eee7;
  --panel: #faf8f2;
  --muted: #5c5954;
  --line: rgba(11, 11, 12, 0.2);
  --blue: #1947ff;
  --coral: #ff563f;
  --yellow: #ffd126;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --motion-instant: 120ms;
  --motion-fast: 180ms;
  --motion-base: 360ms;
  --motion-slow: 620ms;
  --motion-cinematic: 900ms;
  --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-settle: cubic-bezier(0.34, 1.36, 0.64, 1);
  --ease-exit: cubic-bezier(0.7, 0, 0.84, 0);
  --display-tracking: -0.07em;
  --display-leading: 0.9;
  --copy-leading: 1.58;
  --copy-measure: 62ch;
  --label-tracking: 0.08em;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(11, 11, 12, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 11, 12, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  color: var(--ink);
  font: 400 16px/1.55 Inter, sans-serif;
}

body.menu-is-open { overflow: hidden; }
::selection { background: var(--coral); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  margin-bottom: 0;
  font-family: Archivo, sans-serif;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ui-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-cta .ui-icon, .button .ui-icon { width: 17px; height: 17px; }
.text-link .ui-icon, .project-link .ui-icon { width: 16px; height: 16px; color: var(--blue); transition: color 150ms ease, transform 150ms var(--ease); }
.text-link:hover .ui-icon, .project-link:hover .ui-icon { color: var(--coral); transform: translate(2px, -2px); }
.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { transform: none; }
.shell { width: min(1320px, calc(100% - 56px)); margin-inline: auto; }
.section { padding-block: 104px; }

.glass {
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-right-color: rgba(73, 94, 144, 0.24);
  border-bottom-color: rgba(11, 11, 12, 0.25);
  background:
    radial-gradient(circle at var(--glass-x, 30%) -40%, rgba(255, 255, 255, 0.98), transparent 44%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.34) 58%, rgba(87, 125, 255, 0.16));
  box-shadow: inset 0 1px 0 #fff, 0 18px 45px rgba(17, 20, 29, 0.1);
  backdrop-filter: blur(26px) saturate(155%);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
}

.site-header {
  --nav-x: 50%;
  --scroll-progress: 0;
  position: sticky;
  z-index: 90;
  top: 13px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(1360px, calc(100% - 28px));
  height: 66px;
  margin: 13px auto 0;
  padding: 0 11px 0 17px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-right-color: rgba(65, 84, 133, 0.25);
  border-bottom-color: rgba(11, 11, 12, 0.26);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--nav-x) -55%, #fff, rgba(255, 255, 255, 0.35) 38%, transparent 58%),
    linear-gradient(138deg, rgba(250, 248, 241, 0.8), rgba(235, 238, 246, 0.58));
  box-shadow: inset 0 1px #fff, 0 15px 42px rgba(17, 20, 29, 0.15);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
  transition: width 180ms var(--ease), height 180ms var(--ease), top 180ms var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 17px;
  bottom: 2px;
  width: calc((100% - 34px) * var(--scroll-progress));
  max-width: calc(100% - 34px);
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--yellow), var(--blue));
}
.site-header.is-scrolled { top: 8px; width: min(1180px, calc(100% - 22px)); height: 58px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: 31px; height: 31px; }
.brand span { display: grid; gap: 3px; }
.brand b { font: 800 20px/0.86 Archivo, sans-serif; letter-spacing: -0.065em; }
.brand small { color: #57544f; font: 700 8px/1 Inter, sans-serif; letter-spacing: 0.14em; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(11, 11, 12, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
}
.desktop-nav a { padding: 9px 11px; border-radius: 8px; font-size: 13px; font-weight: 700; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { background: var(--ink); color: #fff; }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms var(--ease), box-shadow 150ms var(--ease), background-color 150ms ease;
}
.header-cta { min-height: 44px; padding-inline: 17px; background: var(--ink); color: #fff; font-size: 13px; }
.button-dark { background: var(--ink); color: #fff; }
.button-light { background: #fff; color: var(--ink); }
.button-ghost {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px #fff, 0 8px 24px rgba(11, 11, 12, 0.08);
  backdrop-filter: blur(18px);
}
.header-cta:hover, .button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--coral); }
.menu-button, .mobile-menu, .menu-backdrop { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
  gap: 24px;
  min-height: calc(100vh - 92px);
  padding-top: 70px;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 40px 3.5vw 46px 0; }
.hero-copy::before { content: ""; width: 42px; height: 10px; margin-bottom: 26px; background: linear-gradient(90deg, var(--coral) 50%, var(--yellow) 50%); }
.hero h1 { max-width: 710px; font-size: clamp(64px, 7vw, 108px); }
.hero h1 em { display: block; color: var(--blue); font-style: normal; }
.hero-copy > p { max-width: 590px; margin: 28px 0 0; color: var(--muted); font-size: 19px; }
.button-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.hero-media { position: relative; min-height: 610px; margin: 0; overflow: hidden; border: 1px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); }
.hero-media > picture, .visual-statement > picture, .project-video > picture, .project-reel-item > picture { display: contents; }
.hero-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; transform: scale(1.03); }
.hero-cinema::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.24), transparent 65%); transform: translateX(-120%); animation: hero-light 5s 0.8s var(--ease) 1; }
.hero-cinema-screens img { position: absolute; width: 33%; border: 1px solid var(--ink); box-shadow: 7px 7px 0 rgba(11, 11, 12, 0.75); object-fit: cover; object-position: top; }
.hero-cinema-screens img:nth-child(1) { right: 6%; bottom: 8%; height: 33%; animation: screen-enter 700ms 180ms var(--ease) both; }
.hero-cinema-screens img:nth-child(2) { left: 7%; top: 10%; height: 29%; animation: screen-enter 700ms 330ms var(--ease) both; }
.hero-cinema-screens img:nth-child(3) { right: 14%; top: 14%; height: 25%; animation: screen-enter 700ms 480ms var(--ease) both; }
@keyframes screen-enter { from { opacity: 0; transform: translateY(28px); } }
@keyframes hero-light { 70%, 100% { transform: translateX(120%); } }
.hero-proof { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 0; background: var(--ink); color: #fff; }
.hero-proof span { padding: 16px; border-right: 1px solid rgba(255, 255, 255, 0.22); text-align: center; font-size: 11px; font-weight: 700; }
.hero-proof span:last-child { border: 0; background: var(--blue); }

.section-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--ink); }
.section-head h2, .sticky-copy h2, .process-band h2, .page-intro h1, .contact-hero h1 { color: var(--blue); font-size: clamp(48px, 6.5vw, 88px); }
.text-link, .project-link, .back-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid currentColor; }
.text-link:hover, .project-link:hover { color: var(--blue); }

.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.project-card { position: relative; grid-column: span 4; overflow: hidden; border: 1px solid var(--ink); border-radius: 6px; background: var(--panel); transition: transform 170ms var(--ease), box-shadow 170ms var(--ease); }
.project-grid .project-card:nth-child(1) { grid-column: span 7; }
.project-grid .project-card:nth-child(2) { grid-column: span 5; }
.project-grid .project-card:nth-child(n + 6) { grid-column: span 4; }
.project-card::after { content: ""; position: absolute; z-index: 3; top: 12px; right: 22px; width: 58px; height: 12px; background: color-mix(in srgb, var(--tone, var(--blue)) 82%, #fff); transform: rotate(2deg); }
.project-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); }
.project-visual { position: relative; height: 320px; margin: 9px; overflow: hidden; border: 1px solid var(--ink); background: #ddd6cb; }
.project-grid .project-card:nth-child(-n + 2) .project-visual { height: 415px; }
.project-visual img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 6s linear; }
.project-card.is-playing .project-visual img, .project-card:hover .project-visual img { transform: scale(1.04) translateY(-2%); }
.project-chrome { position: absolute; z-index: 2; top: 0; right: 0; left: 0; display: flex; align-items: center; gap: 5px; height: 27px; padding: 0 10px; border-bottom: 1px solid rgba(11, 11, 12, 0.28); background: rgba(247, 244, 237, 0.88); backdrop-filter: blur(12px); }
.project-chrome span { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.project-chrome span:nth-child(2) { background: var(--yellow); }
.project-chrome span:nth-child(3) { background: var(--blue); }
.project-chrome i { width: 34%; height: 6px; margin-left: auto; border: 1px solid rgba(11, 11, 12, 0.2); border-radius: 20px; background: rgba(255, 255, 255, 0.7); }
.project-copy { padding: 16px 20px 22px; }
.project-copy h3 { font-size: 30px; }
.project-copy p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.project-actions { display: flex; flex-wrap: wrap; gap: 20px; }
.project-link { margin-top: 15px; font-size: 13px; }
.project-card-compact .project-copy { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.project-card-compact .project-link { flex: 0 0 auto; margin-top: 0; }
.tone-blue { --tone: #1947ff; }
.tone-lime { --tone: #71d84a; }
.tone-orange { --tone: #ff7a32; }
.tone-red { --tone: #ef4545; }
.tone-violet { --tone: #7657ee; }
.tone-gold { --tone: #d99b22; }
.tone-cyan { --tone: #25b6c9; }

.visual-statement { position: relative; height: 660px; margin-top: 35px; overflow: hidden; border: 1px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.visual-statement > img { width: 100%; height: 100%; object-fit: cover; }
.visual-statement > div { position: absolute; right: 24px; bottom: 24px; width: min(490px, calc(100% - 48px)); padding: 30px; border-radius: 14px; }
.visual-statement h2 { font-size: clamp(42px, 4.4vw, 66px); }
.visual-statement p { margin: 17px 0 0; color: var(--muted); }
.visual-statement-reverse { border-color: var(--blue); box-shadow-color: var(--blue); box-shadow: 8px 8px 0 var(--blue); }
.visual-statement-reverse > div { right: auto; left: 24px; }

.split-section { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 100px; padding-block: 120px; background: var(--ink); color: #fff; box-shadow: 0 0 0 100vmax var(--ink); clip-path: inset(0 -100vmax); }
.sticky-copy { position: sticky; top: 115px; align-self: start; }
.sticky-copy h2 { color: #fff; }
.service-stage { position: relative; display: grid; min-height: 220px; margin-top: 34px; padding: 25px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.55); background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(25, 71, 255, 0.3)); backdrop-filter: blur(22px); }
.service-stage span { color: var(--yellow); font-weight: 700; }
.service-stage strong { align-self: end; max-width: 350px; font: 700 42px/0.95 Archivo, sans-serif; letter-spacing: -0.05em; }
.service-stage i { position: absolute; right: -35px; bottom: -35px; width: 115px; height: 115px; border: 18px solid var(--coral); border-radius: 50%; }
.service-stack { display: grid; gap: 11px; }
.service-row { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 17px; padding: 25px 18px; border: 1px solid #fff; border-radius: 5px; background: var(--paper); color: var(--ink); transition: transform 160ms var(--ease), box-shadow 160ms var(--ease); }
.service-row:hover { transform: translate(-4px, -4px); box-shadow: 7px 7px 0 var(--blue); }
.service-row > span { color: var(--coral); font-size: 12px; font-weight: 700; }
.service-row h3 { font-size: 30px; }
.service-row p { margin: 7px 0 0; color: var(--muted); }
.service-row b { font-size: 22px; }

.process-band { position: relative; padding-block: 110px; background: var(--blue); color: #fff; box-shadow: 0 0 0 100vmax var(--blue); clip-path: inset(0 -100vmax); }
.process-band h2 { color: #fff; }
.process-band ol { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin: 48px 0 0; padding: 0; list-style: none; }
.process-band ol::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: #fff; transition: width 1s var(--ease); }
.process-band.is-drawn ol::before { width: 100%; }
.process-band li { padding-top: 28px; }
.process-band li span { color: #fff; font-size: 12px; font-weight: 800; }
.process-band h3 { margin-top: 30px; font-size: 30px; }
.process-band p { margin: 12px 0 0; color: rgba(255, 255, 255, 0.82); }

.page-intro { position: relative; padding: 112px 0 58px; }
.page-intro::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 6px; background: linear-gradient(90deg, var(--blue) 78%, var(--coral) 78% 91%, var(--yellow) 91%); }
.page-intro h1 { max-width: 1120px; }
.page-intro > p { max-width: 740px; margin: 24px 0 0; color: var(--muted); font-size: 19px; }
.filter-bar { display: inline-flex; gap: 5px; margin-top: 34px; padding: 6px; border-radius: 12px; }
.filter-bar button { padding: 10px 13px; border: 0; border-radius: 7px; background: transparent; font-weight: 700; cursor: pointer; }
.filter-bar button span { margin-left: 6px; color: var(--muted); font-size: 11px; }
.filter-bar button.is-active { background: var(--ink); color: #fff; }
.filter-bar button.is-active span { color: #cbd0d7; }
.project-card[hidden] { display: none; }

.service-cards, .support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-detail, .support-grid article, .price-card { position: relative; padding: 34px; overflow: hidden; border: 1px solid var(--ink); border-radius: 5px; background: var(--panel); }
.service-detail::before, .price-card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 7px; background: var(--blue); }
.service-detail:nth-child(2n)::before, .price-card:nth-child(2n)::before { background: var(--coral); }
.service-detail:nth-child(3n)::before, .price-card:nth-child(3n)::before { background: var(--yellow); }
.service-title { display: flex; align-items: center; gap: 22px; }
.service-title span, .support-grid article > span, .price-card > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.service-title h2, .support-grid h2, .price-card h2 { font-size: 38px; }
.service-detail > p, .support-grid p, .price-card > p { margin: 18px 0 0; color: var(--muted); }
.service-detail ul, .price-card ul, .timeline ul { margin: 24px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.service-detail li, .price-card li, .timeline li { padding: 11px 0; border-bottom: 1px solid var(--line); }
.service-detail li::before, .price-card li::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background: var(--blue);
  vertical-align: -2px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.capability-table { border-top: 1px solid var(--ink); }
.capability-row { display: grid; grid-template-columns: 0.7fr 1fr 1.35fr 0.8fr; border-bottom: 1px solid var(--ink); }
.capability-row span { padding: 17px 12px; border-right: 1px solid var(--line); }
.capability-row span:first-child { font-family: Archivo, sans-serif; font-weight: 700; }
.capability-row span:last-child { border-right: 0; }
.capability-head { background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; }

.timeline article { display: grid; grid-template-columns: 95px 1fr; padding: 50px 0; border-top: 1px solid var(--ink); }
.timeline article > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.timeline article > div { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.timeline h2 { font-size: 44px; }
.timeline p { color: var(--muted); font-size: 17px; }
.timeline article { opacity: 0.25; transform: translateY(14px); transition: opacity 350ms ease, transform 350ms var(--ease); }
.timeline article.is-visible { opacity: 1; transform: none; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { display: flex; flex-direction: column; }
.price-card ul { flex: 1; }
.price-card .button { width: 100%; margin-top: auto; }
.price-card.featured { background: var(--blue); color: #fff; }
.price-card.featured > span, .price-card.featured > p { color: #fff; }
.price-card.featured .button { background: #fff; color: var(--ink); }
.narrow-note { margin-bottom: 100px; padding: 32px; border-radius: 14px; }
.narrow-note h2 { font-size: 34px; }
.narrow-note > div { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 24px; }
.narrow-note p { margin: 0; padding: 12px 0; border-top: 1px solid var(--line); }

.faq-list { max-width: 960px; }
.faq-list details { border-top: 1px solid var(--ink); }
.faq-list details:last-child { border-bottom: 1px solid var(--ink); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; font: 700 24px/1.1 Archivo, sans-serif; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .ui-icon { width: 24px; height: 24px; color: var(--blue); transition: color 160ms ease, transform 160ms ease; }
.faq-list details[open] summary .ui-icon { color: var(--coral); transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: 0; padding: 0 0 28px; color: var(--muted); font-size: 17px; }

.contact-hero { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 75px; padding: 112px 0; }
.contact-hero h1 { color: var(--ink); }
.contact-hero > div > p { margin-top: 22px; color: var(--muted); font-size: 19px; }
.direct-contact { display: grid; margin-top: 34px; }
.direct-contact a { padding: 17px 0; border-top: 1px solid var(--ink); }
.direct-contact span { display: block; color: var(--muted); font-size: 11px; font-weight: 700; }
.direct-contact b { display: block; margin-top: 4px; font-size: 19px; }
.planner { min-height: 590px; padding: 30px; border-radius: 15px; }
.planner-top { display: flex; justify-content: space-between; gap: 20px; }
.planner-top strong { font: 700 23px/1 Archivo, sans-serif; }
.planner-top span { font-size: 12px; font-weight: 700; }
.planner-progress { height: 3px; margin: 18px 0 36px; background: rgba(11, 11, 12, 0.15); }
.planner-progress i { display: block; width: 20%; height: 100%; background: var(--blue); transition: width 240ms var(--ease); }
.planner-step { display: none; min-width: 0; margin: 0; padding: 0; border: 0; }
.planner-step.is-active { display: block; animation: step-in 240ms var(--ease) both; }
@keyframes step-in { from { opacity: 0; transform: translateX(18px); } }
.planner-step legend { margin-bottom: 25px; font: 700 clamp(31px, 3vw, 44px)/1 Archivo, sans-serif; letter-spacing: -0.05em; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.choice-grid label { position: relative; cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; }
.choice-grid label span { display: flex; align-items: center; min-height: 66px; padding: 13px 15px; border: 1px solid var(--ink); background: rgba(255, 255, 255, 0.55); font-weight: 700; }
.choice-grid input:checked + span { background: var(--blue); color: #fff; }
.choice-grid input:focus-visible + span { outline: 3px solid var(--coral); outline-offset: 3px; }
.choice-grid-small label span { min-height: 58px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: grid; gap: 7px; font-size: 12px; font-weight: 700; }
.form-wide { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea { width: 100%; padding: 13px; border: 1px solid var(--ink); border-radius: 0; background: rgba(255, 255, 255, 0.72); color: var(--ink); }
.planner-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 30px; }
.planner > p { margin: 16px 0 0; color: var(--muted); font-size: 12px; }

.studio-layout { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 55px; align-items: center; }
.studio-layout figure { height: 620px; margin: 0; overflow: hidden; border: 1px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.studio-layout figure img { width: 100%; height: 100%; object-fit: cover; }
.studio-layout h2, .studio-principles > h2 { font-size: clamp(44px, 5vw, 70px); }
.studio-layout p { margin-top: 24px; color: var(--muted); font-size: 18px; }
.studio-layout dl { margin: 38px 0 0; border: 1px solid var(--ink); background: rgba(255,255,255,.42); box-shadow: 6px 6px 0 var(--blue); }
.studio-layout dl div { display: grid; grid-template-columns: minmax(135px, .72fr) minmax(0, 1.28fr); align-items: center; gap: 30px; min-height: 66px; padding: 15px 20px; border-bottom: 1px solid var(--ink); }
.studio-layout dl div:last-child { border-bottom: 0; }
.studio-layout dt { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.studio-layout dd { min-width: 0; margin: 0; font: 700 17px/1.3 Archivo, sans-serif; overflow-wrap: anywhere; }
.studio-principles > div { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 35px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.studio-principles article { padding: 28px; border-right: 1px solid var(--ink); }
.studio-principles article:last-child { border: 0; }
.studio-principles span, .support-grid article > span { color: var(--blue); font-weight: 800; font-size: 12px; }
.studio-principles h3 { margin-top: 40px; font-size: 29px; }
.studio-principles p { margin: 13px 0 0; color: var(--muted); }
.support-grid article { min-height: 230px; }
.support-grid h2 { margin-top: 45px; }
.contact-strip { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 105px; padding: 38px; background: var(--yellow); border: 1px solid var(--ink); }
.contact-strip h2 { font-size: clamp(34px, 4vw, 54px); }

.case-hero { display: grid; grid-template-columns: 0.76fr 1.24fr; gap: 55px; align-items: center; min-height: 710px; padding-block: 80px; }
.back-link { margin-bottom: 28px; }
.case-hero h1 { font-size: clamp(62px, 7vw, 108px); }
.case-hero > div > p { max-width: 520px; margin: 26px 0 0; color: var(--muted); font-size: 18px; }
.case-preview { position: relative; height: 540px; overflow: hidden; border: 1px solid var(--ink); background: var(--ink); box-shadow: 9px 9px 0 var(--tone); }
.case-preview img { width: 100%; height: 100%; object-fit: cover; object-position: top; animation: preview-drift 10s ease-in-out infinite alternate; }
@keyframes preview-drift { to { transform: scale(1.04) translateY(-2.5%); } }
.case-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.case-facts article { padding: 40px; }
.case-facts article:first-child { border-right: 1px solid var(--ink); }
.case-facts h2, .case-features h2 { font-size: 45px; }
.case-facts p { max-width: 530px; margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.case-detail { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 55px; align-items: start; padding-block: 110px; }
.case-device { height: 720px; overflow: hidden; border: 1px solid var(--ink); background: var(--ink); box-shadow: 8px 8px 0 var(--blue); }
.case-device img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.case-features { position: sticky; top: 110px; }
.case-features ol { margin: 30px 0 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.case-features li { display: grid; grid-template-columns: 50px 1fr; padding: 17px 0; border-bottom: 1px solid var(--ink); font-weight: 700; }
.case-features li span { color: var(--blue); font-size: 12px; }
.next-project { background: var(--blue); color: #fff; }
.next-project a { display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 25px; min-height: 180px; }
.next-project a > span { font-size: 13px; font-weight: 700; }
.next-project strong { font: 700 clamp(42px, 5vw, 70px)/1 Archivo, sans-serif; letter-spacing: -0.055em; }
.next-project .ui-icon { width: 36px; height: 36px; }

.showreel { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: #080809; color: #fff; }
.showreel::backdrop { background: rgba(0, 0, 0, 0.82); }
.showreel-shell { display: grid; grid-template-rows: auto 1fr auto; width: 100%; height: 100%; padding: 24px; }
.showreel-close { justify-self: end; padding: 10px 13px; border: 1px solid rgba(255, 255, 255, 0.4); background: transparent; color: #fff; cursor: pointer; }
.showreel-stage { position: relative; min-height: 0; margin-block: 20px; overflow: hidden; }
.showreel-slide { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity 300ms ease, transform 400ms var(--ease); transform: scale(0.98); }
.showreel-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.showreel-slide img { width: min(1120px, 90vw); height: min(68vh, 720px); border: 1px solid rgba(255, 255, 255, 0.45); object-fit: cover; object-position: top; }
.showreel-slide h2 { position: absolute; left: max(5vw, 25px); bottom: 18px; padding: 12px 15px; background: var(--blue); font-size: clamp(32px, 5vw, 68px); }
.showreel-controls { display: grid; grid-template-columns: auto auto auto 1fr; align-items: center; gap: 12px; }
.showreel-controls button { width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, 0.35); background: transparent; color: #fff; cursor: pointer; }
.showreel-controls button .ui-icon { width: 20px; height: 20px; }
.showreel-controls > span { min-width: 60px; text-align: center; font-size: 12px; }
.showreel-controls a { justify-self: end; font-weight: 700; }

.project-reel { overflow: hidden; border-block: 1px solid rgba(255, 255, 255, 0.22); background: #070708; }
.project-reel-track { display: flex; width: max-content; animation: project-reel 42s linear infinite; }
.project-reel-group { display: flex; gap: 12px; padding: 13px 12px 13px 0; }
.project-reel-item { position: relative; flex: 0 0 320px; width: 320px; height: 195px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.3); background: #111; }
.project-reel-item img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.project-reel-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); }
.project-reel-item span { position: absolute; z-index: 1; left: 12px; bottom: 10px; color: #fff; font: 700 13px Archivo, sans-serif; }
.project-reel:hover .project-reel-track, .project-reel:focus-within .project-reel-track { animation-play-state: paused; }
@keyframes project-reel { to { transform: translateX(-50%); } }

.site-footer { margin-top: 0; overflow: hidden; background: var(--ink); color: #fff; }
.footer-lead, .footer-grid, .footer-bottom, .footer-wordmark { width: min(1320px, calc(100% - 56px)); margin-inline: auto; }
.footer-lead { display: flex; align-items: end; justify-content: space-between; gap: 25px; padding: 82px 0 42px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.footer-lead h2 { font-size: clamp(48px, 6.5vw, 88px); }
.footer-wordmark { padding: 25px 0 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); font: 800 clamp(120px, 23vw, 340px)/0.7 Archivo, sans-serif; letter-spacing: -0.1em; white-space: nowrap; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 1fr; gap: 60px; padding: 50px 0; }
.brand-footer img { filter: invert(1) brightness(4); }
.brand-footer small { color: #a8b0bb; }
.footer-grid p { max-width: 380px; margin: 18px 0 0; color: #aeb6c1; }
.footer-grid nav, .footer-contact { display: grid; align-content: start; gap: 9px; }
.footer-grid nav a, .footer-contact a { color: #d2d6dc; }
.footer-contact a { font-size: 18px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.2); color: #939ca8; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(15px); transition: opacity 340ms ease, transform 340ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: 170ms ease both fade-out; }
::view-transition-new(root) { animation: 260ms var(--ease) both fade-in; }
@keyframes fade-out { to { opacity: 0; } }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } }

@media (max-width: 1120px) {
  .desktop-nav a { padding-inline: 8px; }
}

@media (max-width: 980px) {
  .desktop-nav, .header-cta { display: none; }
  .site-header { overflow: visible; }
  .menu-button { display: grid; place-content: center; gap: 5px; width: 46px; height: 46px; margin-left: auto; padding: 0; border: 0; border-radius: 11px; background: var(--ink); cursor: pointer; }
  .menu-button span { display: block; width: 21px; height: 2px; background: #fff; transform-origin: center; transition: transform 180ms ease, opacity 130ms ease; }
  .menu-button[aria-expanded="true"] { background: var(--blue); }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu-backdrop:not([hidden]) { display: block; position: fixed; z-index: 70; inset: 0; background: rgba(5, 5, 7, 0.56); opacity: 0; backdrop-filter: blur(5px); transition: opacity 180ms ease; }
  .menu-backdrop.is-open { opacity: 1; }
  .mobile-menu:not([hidden]) {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: 98px 16px max(22px, env(safe-area-inset-bottom));
    overflow-y: auto;
    background:
      linear-gradient(90deg, var(--blue) 0 7px, transparent 7px),
      linear-gradient(rgba(11, 11, 12, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(11, 11, 12, 0.045) 1px, transparent 1px),
      rgba(243, 240, 232, 0.97);
    background-size: auto, 64px 64px, 64px 64px, auto;
    opacity: 0;
    transform: translateY(-14px);
    backdrop-filter: blur(28px) saturate(140%);
    transition: opacity 200ms ease, transform 220ms var(--ease);
  }
  .mobile-menu.is-open { opacity: 1; transform: none; }
  .mobile-menu nav { display: grid; border-bottom: 1px solid var(--ink); }
  .mobile-menu nav a { display: flex; align-items: center; justify-content: space-between; min-height: 62px; padding: 8px 10px; border-top: 1px solid var(--ink); font: 700 clamp(32px, 8.5vw, 44px)/1 Archivo, sans-serif; letter-spacing: -0.055em; }
  .mobile-menu nav a[aria-current="page"] { padding-left: 21px; background: var(--blue); color: #fff; }
  .mobile-menu nav .ui-icon { width: 20px; height: 20px; color: var(--blue); }
  .mobile-menu nav a[aria-current="page"] .ui-icon { color: #fff; }
  .mobile-menu-bottom { display: grid; gap: 16px; margin-top: auto; padding-top: 22px; }
  .mobile-menu-cta { display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: 0 17px; background: var(--ink); color: #fff; font-weight: 700; }
  .mobile-menu-bottom > div { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 13px; font-weight: 700; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding-right: 0; }
  .hero-media { min-height: 520px; }
  .project-grid .project-card:nth-child(n) { grid-column: span 6; }
  .project-grid .project-card:nth-child(-n + 2) .project-visual, .project-visual { height: 310px; }
  .split-section { grid-template-columns: 1fr; gap: 50px; }
  .sticky-copy { position: static; }
  .service-stage { min-height: 170px; }
  .contact-hero, .studio-layout, .case-hero, .case-detail { grid-template-columns: 1fr; }
  .studio-layout figure { height: 520px; }
  .case-preview { height: 500px; }
  .case-features { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .shell, .footer-lead, .footer-grid, .footer-bottom, .footer-wordmark { width: calc(100% - 28px); }
  .section { padding-block: 76px; }
  .site-header { top: 8px; width: calc(100% - 16px); height: 60px; margin-top: 8px; padding-left: 12px; border-radius: 15px; }
  .site-header.is-scrolled { width: calc(100% - 16px); height: 56px; }
  .brand img { width: 28px; height: 28px; }
  .brand b { font-size: 18px; }
  .brand small { font-size: 7px; }
  .menu-button { width: 43px; height: 43px; border-radius: 10px; }
  .mobile-menu:not([hidden]) { padding: 85px 10px max(15px, env(safe-area-inset-bottom)); }
  .mobile-menu nav a { min-height: 58px; font-size: clamp(29px, 9vw, 38px); }
  .hero { gap: 22px; padding-top: 50px; }
  .hero-copy { padding: 20px 0 12px; }
  .hero-copy::before { margin-bottom: 20px; }
  .hero h1 { font-size: clamp(50px, 14vw, 66px); }
  .hero-copy > p { margin-top: 20px; font-size: 17px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .hero-media { min-height: 400px; box-shadow: 5px 5px 0 var(--ink); }
  .hero-media img { width: 135%; max-width: none; object-position: left center; transform: none; }
  .hero-cinema-screens img { width: 43%; }
  .hero-cinema-screens img:nth-child(2) { left: 5%; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .hero-proof span { padding: 13px 8px; font-size: 10px; }
  .hero-proof span:nth-child(2n) { border-right: 0; }
  .hero-proof span:last-child { grid-column: 1 / -1; }
  .section-head { align-items: end; margin-bottom: 24px; padding-bottom: 20px; }
  .section-head h2, .sticky-copy h2, .process-band h2, .page-intro h1, .contact-hero h1 { font-size: clamp(45px, 13vw, 60px); }
  #selected-work .section-head .text-link { flex: 0 0 auto; font-size: 13px; }
  .project-grid-home { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 18px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .project-grid-home::-webkit-scrollbar { display: none; }
  .project-grid-home .project-card:nth-child(n) { flex: 0 0 min(82vw, 316px); width: min(82vw, 316px); scroll-snap-align: start; }
  .project-grid-home .project-visual, .project-grid-home .project-card:nth-child(-n + 2) .project-visual { height: 220px; }
  .project-grid-home .project-copy { min-height: 76px; padding: 14px 15px 17px; }
  .project-grid-home .project-copy h3 { font-size: 24px; }
  .project-grid-home .project-link { display: grid; place-items: center; width: 42px; height: 42px; margin: 0; background: var(--ink); color: #fff; font-size: 0; }
  .project-grid-home .project-link .ui-icon { width: 18px; height: 18px; color: #fff; }
  .project-grid-all { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .project-grid-all .project-card:nth-child(n) { grid-column: 1 / -1; }
  .project-grid-all .project-visual, .project-grid-all .project-card:nth-child(-n + 2) .project-visual { height: 230px; }
  .project-copy h3 { font-size: 27px; }
  .visual-statement { height: 510px; margin-top: 12px; box-shadow: 5px 5px 0 var(--ink); }
  .visual-statement img { width: 111%; max-width: none; height: 100%; object-fit: cover; object-position: left center; }
  .visual-statement > div, .visual-statement-reverse > div { right: 12px; bottom: 12px; left: 12px; width: auto; padding: 21px; }
  .visual-statement h2 { font-size: 38px; }
  .visual-statement-reverse { box-shadow: 5px 5px 0 var(--blue); }
  .split-section { gap: 38px; padding-block: 78px; }
  .service-stage { min-height: 130px; }
  .service-stage strong { font-size: 34px; }
  .service-row { grid-template-columns: 31px 1fr auto; padding: 20px 10px; }
  .service-row h3 { font-size: 24px; }
  .service-row p { font-size: 14px; }
  .process-band { padding-block: 78px; }
  .process-band ol { grid-template-columns: 1fr; gap: 0; }
  .process-band ol::before { display: none; }
  .process-band li { border-top: 2px solid #fff; }
  .page-intro { padding: 75px 0 45px; }
  .page-intro > p { font-size: 17px; }
  .filter-bar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; overflow: visible; }
  .filter-bar button { width: 100%; min-width: 0; white-space: nowrap; }
  .service-cards, .support-grid { grid-template-columns: 1fr; }
  .service-detail, .support-grid article, .price-card { padding: 27px 24px; }
  .capability-table { overflow-x: auto; }
  .capability-row { grid-template-columns: 140px 180px 240px 150px; width: 710px; }
  .timeline article { grid-template-columns: 45px 1fr; padding: 37px 0; }
  .timeline article > div { grid-template-columns: 1fr; gap: 10px; }
  .timeline h2 { font-size: 34px; }
  .narrow-note > div { grid-template-columns: 1fr; }
  .faq-list summary { font-size: 20px; }
  .contact-hero { gap: 45px; padding: 78px 0; }
  .planner { min-height: 610px; padding: 22px 17px; }
  .choice-grid, .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .planner-actions { justify-content: stretch; }
  .planner-actions .button { flex: 1; }
  .studio-layout { gap: 38px; }
  .studio-layout figure { height: 420px; box-shadow: 5px 5px 0 var(--ink); }
  .studio-layout dl { box-shadow: 5px 5px 0 var(--blue); }
  .studio-layout dl div { grid-template-columns: 1fr; gap: 7px; min-height: 0; padding: 17px 16px 18px; }
  .studio-layout dd { font-size: 16px; }
  .studio-principles > div { grid-template-columns: 1fr; }
  .studio-principles article { border-right: 0; border-bottom: 1px solid var(--ink); }
  .studio-principles article:last-child { border: 0; }
  .contact-strip { display: grid; margin-bottom: 76px; padding: 28px 22px; }
  .case-hero { min-height: 0; gap: 42px; padding-block: 72px; }
  .case-hero h1 { font-size: clamp(56px, 15vw, 72px); }
  .case-preview { height: 360px; box-shadow: 5px 5px 0 var(--tone); }
  .case-facts { grid-template-columns: 1fr; }
  .case-facts article { padding: 35px 10px; }
  .case-facts article:first-child { border-right: 0; border-bottom: 1px solid var(--ink); }
  .case-detail { gap: 45px; padding-block: 78px; }
  .case-device { height: 460px; box-shadow: 5px 5px 0 var(--blue); }
  .next-project a { grid-template-columns: 1fr auto; min-height: 160px; }
  .next-project a > span { grid-column: 1 / -1; align-self: end; }
  .next-project strong { align-self: start; font-size: 40px; }
  .next-project .ui-icon { align-self: start; width: 30px; height: 30px; }
  .showreel-shell { padding: 14px; }
  .showreel-slide img { width: 100%; height: 64vh; }
  .showreel-slide h2 { left: 8px; bottom: 8px; font-size: 34px; }
  .showreel-controls { grid-template-columns: auto auto auto; }
  .showreel-controls a { grid-column: 1 / -1; justify-self: stretch; padding: 13px; background: var(--blue); text-align: center; }
  .project-reel { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .project-reel-track { animation: none; }
  .project-reel-copy { display: none; }
  .project-reel-group { padding: 10px; }
  .project-reel-item { flex-basis: 270px; width: 270px; height: 165px; scroll-snap-align: start; }
  .footer-lead { display: grid; padding: 70px 0 42px; }
  .footer-wordmark { padding-block: 28px; font-size: 25vw; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 370px) {
  .mobile-menu nav a { min-height: 54px; font-size: 29px; }
  .mobile-menu-bottom { padding-top: 14px; }
  .project-grid-home .project-card:nth-child(n) { flex-basis: 86vw; width: 86vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal, .timeline article { opacity: 1; transform: none; }
  .project-reel { overflow-x: auto; }
  .project-reel-track { animation: none; }
  .project-reel-copy { display: none; }
}

/* Recorded project walkthroughs */
.project-video {
  position: relative;
  height: 320px;
  margin: 9px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}
.project-grid .project-card:nth-child(-n + 2) .project-video { height: 415px; }
.project-video video,
.project-video .video-poster {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.project-video video { z-index: 1; }
.project-video .video-poster { z-index: 2; transition: opacity 180ms ease; }
.project-video.is-started .video-poster { opacity: 0; pointer-events: none; }
.project-video .project-chrome { z-index: 4; }
.video-toggle {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 54px;
  padding: 0 20px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  background: rgba(11, 11, 12, 0.9);
  box-shadow: 4px 4px 0 var(--blue);
  color: #fff;
  font: 700 13px/1 Archivo, sans-serif;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 150ms var(--ease), box-shadow 150ms ease, background-color 150ms ease;
}
.video-toggle .ui-icon { width: 16px; height: 16px; margin-right: 9px; }
.video-toggle:hover, .video-toggle:focus-visible { transform: translate(calc(-50% - 2px), calc(-50% - 2px)); background: var(--blue); box-shadow: 5px 5px 0 var(--coral); }
.project-video.is-started .video-toggle { display: none; }
.video-progress {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
}
.video-progress i { display: block; width: 0; height: 100%; background: var(--tone, var(--blue)); }

/* Two-second hero sequence */
.hero-logo-sequence {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}
.hero-logo-sequence img { position: absolute; z-index: 2; inset: 0; width: 52px; height: 52px; animation: logo-lock 420ms 900ms var(--ease) both; }
.hero-logo-sequence span { position: absolute; z-index: 1; width: 21px; height: 21px; background: var(--blue); }
.hero-logo-sequence span:nth-child(1) { top: 0; left: 0; animation: logo-piece-one 750ms 80ms var(--ease) both; }
.hero-logo-sequence span:nth-child(2) { right: 0; bottom: 0; background: var(--ink); animation: logo-piece-two 750ms 160ms var(--ease) both; }
.hero-logo-sequence span:nth-child(3) { top: 15px; left: 15px; width: 22px; height: 22px; background: var(--paper); border: 3px solid var(--ink); animation: logo-piece-three 750ms 240ms var(--ease) both; }
@keyframes logo-piece-one { from { opacity: 0; transform: translate(-34px, -18px) rotate(-30deg); } }
@keyframes logo-piece-two { from { opacity: 0; transform: translate(34px, 18px) rotate(30deg); } }
@keyframes logo-piece-three { from { opacity: 0; transform: scale(0.25) rotate(90deg); } }
@keyframes logo-lock { from { opacity: 0; transform: scale(0.8); } }
.hero-copy h1 { animation: hero-headline-lock 650ms 950ms var(--ease) both; }
@keyframes hero-headline-lock { from { opacity: 0; transform: translateY(24px); } }
.hero-screen-sequence {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  padding-top: 2px;
}
.hero-screen-card {
  display: grid;
  grid-template-rows: 23px auto 38px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 5px 5px 0 var(--blue);
  animation: hero-screen-in 620ms var(--ease) both;
}
.hero-screen-card:nth-child(1) { animation-delay: 160ms; }
.hero-screen-card:nth-child(2) { animation-delay: 300ms; }
.hero-screen-card:nth-child(3) { animation-delay: 440ms; }
.hero-screen-card:nth-child(4) { animation-delay: 580ms; }
.hero-screen-bar { display: flex; align-items: center; gap: 4px; padding: 0 8px; background: #f7f4ed; }
.hero-screen-bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.hero-screen-bar i:nth-child(2) { background: var(--yellow); }
.hero-screen-bar i:nth-child(3) { background: var(--blue); }
.hero-screen-shot { display: block; min-width: 0; aspect-ratio: 16 / 9; overflow: hidden; background: #ddd; }
.hero-screen-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 320ms var(--ease); }
.hero-screen-card:hover .hero-screen-shot img { transform: scale(1.025); }
.hero-screen-label { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 10px; }
.hero-screen-label strong { overflow: hidden; font: 700 13px/1 Archivo, sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.hero-screen-label small { display: inline-flex; align-items: center; gap: 5px; flex: 0 0 auto; color: rgba(255,255,255,.65); font-size: 9px; font-weight: 700; }
.hero-screen-label small .ui-icon { width: 12px; height: 12px; color: var(--coral); }
@keyframes hero-screen-in { from { opacity: 0; transform: translateX(80px); } }
.hero-cinema::after { animation-duration: 1.8s; }

/* Service demonstrations */
.service-stage p { max-width: 350px; margin: 12px 0 0; color: rgba(255, 255, 255, 0.72); }
.service-row { display: grid; grid-template-columns: minmax(220px, 0.72fr) minmax(300px, 1.28fr); gap: 16px; padding: 14px; }
.service-row-copy { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; padding: 11px 3px; }
.service-row-copy > span { align-self: start; color: #9d2d20; font-size: 12px; font-weight: 800; }
.service-row-copy h3 { font-size: 27px; }
.service-row-copy p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.service-row-copy a { align-self: start; display: grid; width: 34px; height: 34px; place-items: center; color: var(--blue); }
.service-row-copy a .ui-icon { width: 20px; height: 20px; }
.service-row-copy a:hover { color: var(--coral); }
.service-demo { position: relative; min-height: 220px; overflow: hidden; border: 1px solid var(--ink); background: #fff; }
.service-demo *, .service-demo *::before, .service-demo *::after { box-sizing: border-box; }
.demo-app { display: grid; grid-template-columns: 48px 1fr; height: 100%; min-height: 220px; background: #edf0f6; }
.demo-app-nav { display: grid; align-content: start; gap: 10px; padding: 17px 13px; background: var(--blue); }
.demo-app-nav i { width: 20px; height: 5px; background: #fff; }
.demo-app-main { display: grid; grid-template-rows: 40px 1fr 32px; gap: 12px; padding: 14px; }
.demo-app-head, .demo-app-foot { background: var(--ink); }
.demo-app-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.demo-app-content b { background: #fff; border: 1px solid var(--ink); }
.demo-booking { display: grid; grid-template-columns: 1fr 90px; gap: 10px; height: 100%; min-height: 220px; padding: 16px; background: #f6f2e8; }
.demo-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.demo-calendar i { min-height: 25px; border: 1px solid var(--ink); background: #fff; }
.demo-calendar i.is-picked { background: var(--blue); }
.demo-times { display: grid; align-content: start; gap: 8px; }
.demo-times i { height: 34px; background: var(--yellow); border: 1px solid var(--ink); }
.demo-raffle { display: grid; grid-template-columns: 1fr 90px; grid-template-rows: 1fr 45px; gap: 10px; height: 100%; min-height: 220px; padding: 15px; background: var(--blue); }
.demo-prize { border: 1px solid #fff; background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.35)); }
.demo-tickets { display: grid; gap: 6px; }
.demo-tickets i { display: grid; place-items: center; background: var(--yellow); color: var(--ink); font-style: normal; font-weight: 800; }
.demo-raffle > b { grid-column: 1 / -1; display: grid; place-items: center; background: var(--ink); color: #fff; }
.demo-site { display: grid; grid-template-columns: 1fr 34%; grid-template-rows: 36px 1fr; height: 100%; min-height: 220px; background: #eee8dc; }
.demo-site-head { grid-column: 1 / -1; display: flex; gap: 5px; align-items: center; padding: 0 11px; background: var(--ink); }
.demo-site-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.demo-site-head i:nth-child(2) { background: var(--yellow); }
.demo-site-head i:nth-child(3) { background: var(--blue); }
.demo-site-content { padding: 24px 18px; }
.demo-site-content strong { display: block; width: 78%; height: 30px; background: var(--ink); }
.demo-site-content p { width: 88%; height: 7px; margin: 11px 0 0; background: #837d74; }
.demo-site-content p:nth-child(3) { width: 64%; }
.demo-site-content b { display: block; width: 80px; height: 27px; margin-top: 23px; background: var(--blue); }
.demo-site-side { background: var(--coral); }
.demo-landing { position: relative; height: 100%; min-height: 220px; padding: 32px 20px; background: var(--yellow); }
.demo-landing strong { display: block; width: 62%; height: 33px; background: var(--ink); }
.demo-landing p { width: 48%; height: 7px; margin: 12px 0 0; background: rgba(11,11,12,.55); }
.demo-landing b { display: block; width: 100px; height: 31px; margin-top: 25px; background: var(--blue); }
.demo-landing aside { position: absolute; right: 18px; bottom: 18px; width: 35%; height: 58%; border: 1px solid var(--ink); background: var(--paper); }

/* Process becomes a build sequence */
.process-sketch { position: relative; height: 112px; margin: 24px 0; border: 2px solid rgba(255, 255, 255, 0.75); }
.process-sketch i { position: absolute; display: block; border: 1px solid rgba(255, 255, 255, 0.85); }
.process-sketch i:nth-child(1) { top: 12px; right: 12px; left: 12px; height: 18px; }
.process-sketch i:nth-child(2) { top: 42px; bottom: 12px; left: 12px; width: 40%; }
.process-sketch i:nth-child(3) { top: 42px; right: 12px; bottom: 12px; left: 48%; }
.process-band:not(.is-drawn) .process-sketch { clip-path: inset(0 100% 0 0); }
.process-band.is-drawn .process-sketch { clip-path: inset(0); transition: clip-path 650ms var(--ease); }
.process-band.is-drawn li:nth-child(2) .process-sketch { transition-delay: 220ms; }
.process-band.is-drawn li:nth-child(3) .process-sketch { transition-delay: 440ms; }
.process-sketch-build i:nth-child(2) { background: var(--coral); }
.process-sketch-build i:nth-child(3) { background: var(--yellow); }
.process-sketch-live { background: #fff; }
.process-sketch-live i { border-color: var(--ink); }
.process-sketch-live i:nth-child(3) { background: var(--blue); }

/* Project case-study screens */
.case-preview > .project-video { width: 100%; height: 100%; margin: 0; border: 0; }
.case-device-wide > .project-video { width: 100%; height: 100%; margin: 0; border: 0; }
.case-screens { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; padding-block: 110px; }
.case-device { position: relative; height: auto; margin: 0; overflow: hidden; border: 1px solid var(--ink); background: var(--ink); box-shadow: 8px 8px 0 var(--blue); }
.case-device-wide { height: 610px; }
.case-device-mobile { height: 650px; box-shadow: 8px 8px 0 var(--coral); }
.case-device video, .case-device img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.case-device figcaption { position: absolute; right: 10px; bottom: 10px; padding: 8px 10px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; }
.case-detail { padding-top: 0; }
.case-detail > div:first-child h2 { font-size: 45px; }
.case-detail > div:first-child p { max-width: 560px; margin-top: 20px; color: var(--muted); font-size: 18px; }
.showreel-slide video { width: min(1120px, 90vw); height: min(68vh, 720px); border: 1px solid rgba(255, 255, 255, 0.45); object-fit: cover; object-position: top; }
.planner-details { margin-top: 18px; }

@media (max-width: 980px) {
  .project-grid .project-card:nth-child(-n + 2) .project-video, .project-video { height: 310px; }
  .service-row { grid-template-columns: 1fr; }
  .service-demo { min-height: 260px; }
  .case-screens { grid-template-columns: minmax(0, 1fr) 280px; }
}

@media (max-width: 680px) {
  .hero-logo-sequence { width: 42px; height: 42px; margin-bottom: 18px; }
  .hero-logo-sequence img { width: 42px; height: 42px; }
  .hero-logo-sequence span { width: 17px; height: 17px; }
  .hero-logo-sequence span:nth-child(3) { top: 12px; left: 12px; width: 18px; height: 18px; }
  .hero-screen-sequence {
    display: flex;
    width: calc(100vw - 14px);
    gap: 12px;
    padding: 2px 14px 12px 0;
    overflow-x: auto;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .hero-screen-sequence::-webkit-scrollbar { display: none; }
  .hero-screen-card { flex: 0 0 min(84vw, 350px); grid-template-rows: 25px auto 44px; scroll-snap-align: start; box-shadow: 5px 5px 0 var(--blue); }
  .hero-screen-label { padding-inline: 12px; }
  .hero-screen-label strong { font-size: 15px; }
  .project-grid-home .project-video, .project-grid-home .project-card:nth-child(-n + 2) .project-video,
  .project-grid-all .project-video, .project-grid-all .project-card:nth-child(-n + 2) .project-video {
    height: auto;
    aspect-ratio: var(--media-ratio, 8 / 5);
  }
  .video-toggle { min-width: 174px; min-height: 52px; }
  .service-row { padding: 10px; }
  .service-row-copy { grid-template-columns: 30px 1fr auto; }
  .service-demo { min-height: 225px; }
  .process-sketch { display: none; }
  .process-band h3 { margin-top: 16px; }
  .case-screens { grid-template-columns: 1fr; gap: 38px; padding-block: 78px; }
  .case-device-wide { height: auto; }
  .case-device-wide .project-video-detail { height: auto; aspect-ratio: var(--media-ratio, 8 / 5); }
  .case-device-mobile { width: min(78vw, 310px); height: auto; aspect-ratio: 390 / 844; margin-inline: auto; box-shadow: 5px 5px 0 var(--coral); }
  .case-preview { height: auto; }
  .case-preview > .project-video { height: auto; aspect-ratio: var(--media-ratio, 8 / 5); }
  .case-detail { padding-top: 0; }
  .showreel-slide video { width: 100%; height: auto; aspect-ratio: var(--media-ratio, 8 / 5); object-fit: contain; background: #080809; }
}

@media (pointer: fine) {
  .project-video:hover { cursor: default; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-sequence span { display: none; }
  .hero-logo-sequence img, .hero-copy h1, .hero-screen-card { animation: none; }
  .project-video video, .video-progress, .video-toggle { display: none !important; }
  .project-video .video-poster { opacity: 1; }
  .process-band .process-sketch { clip-path: inset(0); }
}

/* Support, legal and verified review pages */
.section-head > p { max-width: 520px; margin: 12px 0 0; color: var(--muted); }
.support-included {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1px;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
}
.support-included > div { padding: clamp(30px, 5vw, 70px); background: var(--panel); }
.support-included > div:first-child { background: var(--blue); color: #fff; }
.support-included > div:first-child > span { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.support-included h2 { max-width: 520px; margin-top: 55px; font-size: clamp(45px, 5vw, 76px); }
.support-included h3 { margin: 0 0 14px; font-size: 24px; }
.support-included h3:not(:first-child) { margin-top: 38px; }
.support-included ul, .support-packages ul, .legal-copy ul { margin: 0; padding: 0; list-style: none; }
.support-included li, .support-packages li, .legal-copy li { position: relative; padding: 10px 0 10px 21px; border-top: 1px solid var(--line); }
.support-included li::before, .support-packages li::before, .legal-copy li::before { content: ""; position: absolute; top: 18px; left: 1px; width: 7px; height: 7px; background: var(--blue); }
.support-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.support-packages article { min-height: 430px; padding: 30px; border: 1px solid var(--ink); background: var(--panel); }
.support-packages article:nth-child(2) { background: var(--blue); color: #fff; }
.support-packages article:nth-child(2) p { color: rgba(255,255,255,.78); }
.support-packages article:nth-child(2) li { border-color: rgba(255,255,255,.28); }
.support-packages article:nth-child(2) li::before { background: var(--yellow); }
.support-packages article > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.support-packages article:nth-child(2) > span { color: #fff; }
.support-packages h3 { margin-top: 58px; font-size: 39px; }
.support-packages p { margin: 14px 0 26px; color: var(--muted); }
.support-note { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 14px; }

.legal-page .page-intro { padding-bottom: 65px; }
.legal-copy { max-width: 940px; padding-bottom: 120px; }
.legal-copy > section { display: grid; grid-template-columns: minmax(210px, .7fr) minmax(0, 1.3fr); column-gap: 56px; padding: 34px 0; border-top: 1px solid var(--ink); }
.legal-copy h2 { font-size: 28px; line-height: 1.05; }
.legal-copy h3 { margin: 28px 0 12px; font-size: 20px; }
.legal-copy p { margin: 0; color: #34312d; }
.legal-copy p + p { margin-top: 18px; }
.legal-copy a, .planner > p a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-copy dl { margin: 0; }
.legal-copy dl > div { padding: 18px 0; border-top: 1px solid var(--line); }
.legal-copy dl > div:first-child { padding-top: 0; border-top: 0; }
.legal-copy dt { font-weight: 800; }
.legal-copy dd { margin: 5px 0 0; color: #34312d; }
.legal-copy ul { margin-top: 14px; }
.legal-callout { margin-top: 25px; padding: 24px; border: 1px solid var(--ink); background: var(--yellow); }
.legal-callout h3 { margin-top: 0; }

.reviews-empty { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1px; margin-bottom: 20px; border: 1px solid var(--ink); background: var(--ink); }
.reviews-empty > div { padding: clamp(30px, 5vw, 70px); background: var(--panel); }
.reviews-empty > div:first-child { background: var(--blue); color: #fff; }
.reviews-empty > div:first-child > span { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.reviews-empty h2 { max-width: 560px; margin-top: 55px; font-size: clamp(46px, 6vw, 82px); }
.reviews-empty p { max-width: 580px; margin: 24px 0 0; color: rgba(255,255,255,.78); font-size: 18px; }
.review-sectors { display: grid; align-content: center; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.review-sectors span { padding: 15px; border: 1px solid var(--ink); background: #fff; font-weight: 700; }
.review-request { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.review-request h2 { font-size: clamp(42px, 5vw, 68px); }
.review-request p { max-width: 650px; margin: 18px 0 0; color: var(--muted); }
.review-request .button { flex: 0 0 auto; }
.footer-grid nav { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 28px; }

@media (max-width: 820px) {
  .support-included, .reviews-empty { grid-template-columns: 1fr; }
  .support-packages { grid-template-columns: 1fr; }
  .support-packages article { min-height: 0; }
  .legal-copy > section { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 680px) {
  .support-included > div, .reviews-empty > div { padding: 28px 22px; }
  .support-included h2, .reviews-empty h2 { margin-top: 38px; }
  .support-packages article { padding: 25px 22px; }
  .support-packages h3 { margin-top: 35px; }
  .legal-page .page-intro { padding-bottom: 45px; }
  .legal-copy { padding-bottom: 80px; }
  .legal-copy > section { padding: 27px 0; }
  .legal-copy h2 { font-size: 25px; }
  .review-sectors { grid-template-columns: 1fr; }
  .review-request { display: grid; align-items: start; }
  .review-request .button { width: 100%; }
  .footer-grid nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Mobile media proportions */
@media (max-width: 680px) {
  .hero-media {
    min-height: 0;
    aspect-ratio: 5 / 7;
  }
  .hero-media > picture,
  .visual-statement > picture,
  .studio-layout figure > picture {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  .hero-media img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
    transform: none;
  }
  .visual-statement {
    height: auto;
    aspect-ratio: 9 / 16;
  }
  .visual-statement > picture > img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .studio-layout figure {
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .studio-layout figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
  }
  .project-video > picture,
  .project-reel-item > picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .project-video > picture > img,
  .project-reel-item > picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .project-reel-item {
    height: auto;
    aspect-ratio: 8 / 5;
  }
  .project-video,
  .case-preview,
  .case-device,
  .project-reel-item,
  .hero-screen-shot {
    contain: paint;
  }
  .project-video video,
  .project-video .video-poster,
  .case-device img,
  .case-device video,
  .project-reel-item img,
  .hero-screen-shot img {
    display: block;
    max-width: none;
  }
  .case-device-mobile img {
    object-fit: contain;
    background: var(--ink);
  }
}

/* LUMA action controls */
.action-control {
  --button-bg: var(--ink);
  --button-color: #fff;
  --button-hover: var(--blue);
  --button-shadow: var(--coral);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: color-mix(in srgb, var(--button-color) 28%, var(--ink));
  background: var(--button-bg);
  box-shadow: 3px 3px 0 var(--button-shadow);
  color: var(--button-color);
}

.action-control::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  background: var(--button-hover);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--motion-base) var(--ease-snap);
}

.action-control > .action-label,
.action-control > .action-icon {
  position: relative;
  z-index: 1;
  transition: transform var(--motion-fast) var(--ease-snap);
}

.action-control > .action-label {
  display: inline-block;
  min-width: 0;
}

.action-control > .action-icon {
  flex: 0 0 auto;
}

.button-dark,
.header-cta,
.mobile-menu-cta {
  --button-bg: var(--ink);
  --button-color: #fff;
  --button-hover: var(--blue);
  --button-shadow: var(--coral);
}

.button-light {
  --button-bg: #fff;
  --button-color: var(--ink);
  --button-hover: var(--yellow);
  --button-shadow: var(--blue);
}

.button-ghost {
  --button-bg: rgba(255, 255, 255, 0.58);
  --button-color: var(--ink);
  --button-hover: #fff;
  --button-shadow: var(--blue);
}

.price-card.featured .button {
  --button-bg: #fff;
  --button-color: var(--ink);
  --button-hover: var(--yellow);
  --button-shadow: var(--coral);
}

.video-toggle.action-control {
  --button-bg: rgba(11, 11, 12, 0.92);
  --button-color: #fff;
  --button-hover: var(--blue);
  --button-shadow: var(--coral);
  background: var(--button-bg);
  box-shadow: 4px 4px 0 var(--button-shadow);
  gap: 10px;
  transition:
    transform var(--motion-fast) var(--ease-snap),
    box-shadow var(--motion-fast) var(--ease-snap);
}

.video-toggle.action-control .ui-icon {
  margin-right: 0;
}

@media (hover: hover) and (pointer: fine) {
  .action-control:hover::before,
  .action-control:focus-visible::before {
    transform: scaleX(1);
    transform-origin: left center;
  }

  .header-cta.action-control:hover,
  .button.action-control:hover,
  .mobile-menu-cta.action-control:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--button-shadow);
  }

  .action-control:hover > .action-label,
  .action-control:focus-visible > .action-label {
    transform: translateX(-2px);
  }

  .action-control:hover > .action-icon,
  .action-control:focus-visible > .action-icon {
    transform: translate(3px, -3px);
  }

  .video-toggle.action-control:hover,
  .video-toggle.action-control:focus-visible {
    background: var(--button-bg);
    transform: translate(calc(-50% - 3px), calc(-50% - 3px));
    box-shadow: 7px 7px 0 var(--button-shadow);
  }
}

.header-cta.action-control:active,
.button.action-control:active,
.mobile-menu-cta.action-control:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--button-shadow);
  transition-duration: var(--motion-instant);
}

.video-toggle.action-control:active {
  transform: translate(calc(-50% + 2px), calc(-50% + 2px));
  box-shadow: 1px 1px 0 var(--button-shadow);
  transition-duration: var(--motion-instant);
}

@media (max-width: 680px) {
  .button.action-control,
  .mobile-menu-cta.action-control,
  .video-toggle.action-control {
    min-height: 52px;
  }

  .action-control {
    box-shadow: 3px 3px 0 var(--button-shadow);
  }
}

@media (prefers-reduced-motion: reduce) {
  .action-control::before { display: none; }

  .action-control > .action-label,
  .action-control > .action-icon {
    transform: none !important;
  }
}

/* LUMA typography system */
html {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body {
  font-size: 16px;
  line-height: var(--copy-leading);
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
}

h1,
h2,
h3 {
  line-height: var(--display-leading);
  letter-spacing: var(--display-tracking);
  text-wrap: balance;
}

p,
li,
dd,
figcaption {
  text-wrap: pretty;
}

main p {
  max-width: var(--copy-measure);
}

.hero h1 {
  max-width: 7.2em;
  font-size: clamp(70px, 7.45vw, 116px);
  line-height: 0.86;
}

.hero-copy > p {
  max-width: 48ch;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.52;
}

.section-head {
  align-items: end;
  margin-bottom: 42px;
  padding-bottom: 24px;
}

.section-head > div {
  display: grid;
  gap: 14px;
}

.section-head h2,
.sticky-copy h2,
.process-band h2,
.page-intro h1,
.contact-hero h1 {
  font-size: clamp(54px, 6.35vw, 92px);
  line-height: 0.88;
}

.section-head p,
.section-head > div > p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.page-intro {
  padding-top: clamp(96px, 9vw, 132px);
  padding-bottom: clamp(52px, 5vw, 72px);
}

.page-intro h1 {
  max-width: 13ch;
}

.page-intro > p {
  max-width: 58ch;
  margin-top: 22px;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
}

.project-copy h3 {
  font-size: clamp(27px, 2.1vw, 34px);
  line-height: 0.95;
}

.service-title h2,
.support-grid h2,
.price-card h2 {
  font-size: clamp(34px, 3vw, 43px);
  line-height: 0.94;
}

.service-row-copy h3 {
  font-size: clamp(25px, 2vw, 30px);
  line-height: 0.94;
}

.visual-statement h2 {
  line-height: 0.9;
}

.timeline h2,
.case-facts h2,
.case-features h2,
.case-detail > div:first-child h2 {
  font-size: clamp(38px, 3.6vw, 50px);
  line-height: 0.94;
}

.faq-list summary {
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.text-link,
.project-link,
.back-link,
.button,
.header-cta {
  letter-spacing: -0.015em;
}

.service-title span,
.support-grid article > span,
.price-card > span,
.timeline article > span,
.process-band li span,
.studio-principles span,
.commercial-proof span,
.support-packages article > span {
  font-size: 11px;
  line-height: 1;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.commercial-proof strong {
  line-height: 0.96;
}

.capability-row span,
.case-features li,
.direct-contact b {
  line-height: 1.35;
}

.legal-copy {
  max-width: 76ch;
}

.legal-copy p,
.legal-copy li {
  max-width: 72ch;
  line-height: 1.65;
}

.footer-grid p {
  max-width: 36ch;
  line-height: 1.55;
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
    line-height: 1.55;
  }

  .section {
    padding-block: 74px;
  }

  .hero h1 {
    max-width: 7.4em;
    font-size: clamp(50px, 13.7vw, 62px);
    line-height: 0.88;
  }

  .hero-copy > p {
    max-width: 36ch;
    font-size: 17px;
    line-height: 1.52;
  }

  .section-head {
    margin-bottom: 28px;
    padding-bottom: 18px;
  }

  .section-head h2,
  .sticky-copy h2,
  .process-band h2,
  .page-intro h1,
  .contact-hero h1 {
    font-size: clamp(43px, 12.4vw, 58px);
    line-height: 0.9;
  }

  .page-intro {
    padding-top: 78px;
    padding-bottom: 44px;
  }

  .page-intro h1 {
    max-width: 9.5em;
  }

  .page-intro > p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.5;
  }

  .project-copy h3 {
    font-size: 25px;
  }

  .visual-statement h2 {
    font-size: 39px;
  }

  .timeline h2,
  .case-facts h2,
  .case-features h2,
  .case-detail > div:first-child h2 {
    font-size: 35px;
  }

  .commercial-proof span,
  .service-title span,
  .support-grid article > span,
  .price-card > span,
  .timeline article > span,
  .process-band li span {
    font-size: 10px;
  }
}

/* LUMA motion language */
.site-header {
  transition:
    width var(--motion-fast) var(--ease-snap),
    height var(--motion-fast) var(--ease-snap),
    top var(--motion-fast) var(--ease-snap);
}

.desktop-nav a {
  transition:
    color var(--motion-instant) linear,
    background-color var(--motion-instant) linear,
    transform var(--motion-fast) var(--ease-snap);
}

.desktop-nav a:active { transform: translateY(1px); }

.project-card,
.service-row {
  transition:
    transform var(--motion-fast) var(--ease-snap),
    box-shadow var(--motion-fast) var(--ease-snap);
}

.header-cta,
.button {
  transition:
    transform var(--motion-fast) var(--ease-snap),
    box-shadow var(--motion-fast) var(--ease-snap),
    background-color var(--motion-instant) linear,
    color var(--motion-instant) linear;
}

.header-cta:active,
.button:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--coral);
  transition-duration: var(--motion-instant);
}

.text-link .ui-icon,
.project-link .ui-icon {
  transition:
    color var(--motion-instant) linear,
    transform var(--motion-fast) var(--ease-snap);
}

.reveal {
  --reveal-delay: 0ms;
  position: relative;
  isolation: isolate;
  opacity: 1;
  transform: translateY(18px);
  transition: transform var(--motion-slow) var(--ease-snap) var(--reveal-delay);
}

.reveal::before {
  content: "";
  position: absolute;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  background: var(--blue);
  transform: scaleX(1);
  transform-origin: right center;
  transition: transform var(--motion-base) var(--ease-exit) calc(var(--reveal-delay) + 140ms);
}

.reveal.is-visible {
  transform: none;
}

.reveal.is-visible::before { transform: scaleX(0); }
.project-grid .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2),
.support-grid .reveal:nth-child(2) { --reveal-delay: 45ms; }
.project-grid .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3),
.support-grid .reveal:nth-child(3) { --reveal-delay: 90ms; }

.timeline article {
  opacity: 1;
  transition: transform var(--motion-slow) var(--ease-snap) var(--reveal-delay);
}

.hero-logo-sequence img {
  animation: luma-logo-lock var(--motion-base) 720ms var(--ease-settle) both;
}

.hero-logo-sequence span:nth-child(1) {
  animation: luma-frame-a var(--motion-slow) 60ms var(--ease-snap) both;
}

.hero-logo-sequence span:nth-child(2) {
  animation: luma-frame-b var(--motion-slow) 120ms var(--ease-snap) both;
}

.hero-logo-sequence span:nth-child(3) {
  animation: luma-frame-core var(--motion-slow) 180ms var(--ease-settle) both;
}

.hero-copy h1 {
  animation: luma-title-lock var(--motion-slow) 780ms var(--ease-snap) both;
}

.hero-screen-card {
  animation: luma-screen-lock var(--motion-slow) var(--ease-snap) both;
}

@keyframes luma-frame-a {
  0% { opacity: 0; transform: translate(-24px, -18px) scale(0.82); }
  72% { opacity: 1; transform: translate(2px, 2px) scale(1.04); }
  100% { opacity: 1; transform: none; }
}

@keyframes luma-frame-b {
  0% { opacity: 0; transform: translate(24px, 18px) scale(0.82); }
  72% { opacity: 1; transform: translate(-2px, -2px) scale(1.04); }
  100% { opacity: 1; transform: none; }
}

@keyframes luma-frame-core {
  0% { opacity: 0; transform: scale(0.22); }
  72% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: none; }
}

@keyframes luma-logo-lock {
  0% { opacity: 0; transform: scale(0.82); }
  70% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: none; }
}

@keyframes luma-title-lock {
  0% { opacity: 0; clip-path: inset(0 0 100%); transform: translateY(20px); }
  76% { opacity: 1; clip-path: inset(0); transform: translateY(-2px); }
  100% { opacity: 1; clip-path: inset(0); transform: none; }
}

@keyframes luma-screen-lock {
  0% { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(36px); }
  76% { opacity: 1; clip-path: inset(0); transform: translateX(-3px); }
  100% { opacity: 1; clip-path: inset(0); transform: none; }
}

@media (max-width: 980px) {
  .menu-button span {
    transition:
      transform var(--motion-fast) var(--ease-snap),
      opacity var(--motion-instant) linear;
  }

  .menu-backdrop:not([hidden]) {
    transition: opacity var(--motion-fast) linear;
  }

  .mobile-menu:not([hidden]) {
    clip-path: inset(0 0 100% 0);
    opacity: 1;
    transform: none;
    transition: clip-path var(--motion-base) var(--ease-snap);
  }

  .mobile-menu.is-open { clip-path: inset(0); }

  .mobile-menu nav a {
    opacity: 0;
    transform: translateX(-12px);
    transition:
      opacity var(--motion-fast) linear,
      transform var(--motion-base) var(--ease-snap);
  }

  .mobile-menu.is-open nav a {
    opacity: 1;
    transform: none;
  }

  .mobile-menu.is-open nav a:nth-child(2) { transition-delay: 30ms; }
  .mobile-menu.is-open nav a:nth-child(3) { transition-delay: 60ms; }
  .mobile-menu.is-open nav a:nth-child(4) { transition-delay: 90ms; }
  .mobile-menu.is-open nav a:nth-child(5) { transition-delay: 120ms; }
  .mobile-menu.is-open nav a:nth-child(6) { transition-delay: 150ms; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal,
  .reveal.is-visible,
  .timeline article,
  .timeline article.is-visible {
    clip-path: none;
    opacity: 1;
    transform: none;
  }

  .reveal::before { display: none; }
  .hero-logo-sequence img,
  .hero-logo-sequence span,
  .hero-copy h1,
  .hero-screen-card { animation: none; }

  .mobile-menu:not([hidden]),
  .mobile-menu.is-open {
    clip-path: none;
  }

  .mobile-menu nav a,
  .mobile-menu.is-open nav a {
    opacity: 1;
    transform: none;
  }
}

/* Commercial, local and sector pages */
.commercial-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  margin-top: 20px;
  border: 1px solid var(--ink);
  background: rgba(255,255,255,.72);
  box-shadow: 8px 8px 0 var(--ink);
}
.commercial-proof > div {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--ink);
}
.commercial-proof span,
.industry-delivery span,
.case-conversion span,
.case-delivery > div > span,
.industry-requirements > div > span,
.local-intro > span {
  display: block;
  margin-bottom: 11px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.commercial-proof strong,
.industry-delivery strong,
.case-conversion strong {
  display: block;
  font: 750 25px/1 "Archivo", sans-serif;
  letter-spacing: -.045em;
}
.commercial-proof p,
.industry-delivery p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.commercial-proof > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 178px;
  padding: 24px;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
}
.commercial-proof > a:hover,
.commercial-proof > a:focus-visible {
  background: var(--blue);
}
.sectors-preview .section-head p,
.industry-page .section-head p,
.local-page .section-head p {
  max-width: 650px;
  margin: 13px 0 0;
  color: var(--muted);
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sector-card {
  position: relative;
  display: flex;
  min-height: 265px;
  padding: 27px;
  flex-direction: column;
  border: 1px solid var(--ink);
  background: rgba(255,255,255,.76);
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.sector-card > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.sector-card h2,
.sector-card h3 {
  max-width: 300px;
  margin-top: auto;
  font-size: 30px;
}
.sector-card p {
  min-height: 42px;
  margin: 13px 36px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.sector-card > .ui-icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
}
.sector-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.sector-card li {
  padding: 9px 0;
  border-top: 1px solid currentColor;
  font-size: 13px;
}
.sector-card:hover,
.sector-card:focus-visible {
  outline: 0;
  transform: translateY(-5px);
  background: var(--blue);
  color: #fff;
}
.sector-card:hover > span,
.sector-card:focus-visible > span,
.sector-card:hover p,
.sector-card:focus-visible p {
  color: rgba(255,255,255,.78);
}
.sector-grid-large .sector-card {
  min-height: 380px;
}
.sector-grid-large .sector-card h2 {
  margin-top: 58px;
  font-size: clamp(34px, 4vw, 52px);
}
.industry-intro,
.local-intro {
  max-width: 1220px;
}
.industry-intro h1,
.local-intro h1 {
  max-width: 940px;
}
.industry-intro > p,
.local-intro > p {
  max-width: 760px;
  font-size: 20px;
}
.industry-requirements,
.local-service-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  border-top: 1px solid var(--ink);
}
.industry-requirements h2,
.local-service-grid > div h2 {
  max-width: 440px;
  font-size: clamp(42px, 5vw, 68px);
}
.industry-requirements ol,
.local-service-grid ol,
.case-delivery ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.industry-requirements li,
.local-service-grid li,
.case-delivery li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 25px 0;
  border-top: 1px solid var(--ink);
}
.industry-requirements li:first-child,
.local-service-grid li:first-child,
.case-delivery li:first-child {
  border-top-width: 3px;
}
.industry-requirements li > span,
.local-service-grid li > span,
.case-delivery li > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.industry-requirements h3,
.local-service-grid h3,
.case-delivery h3 {
  font-size: 26px;
}
.local-service-grid li p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--muted);
}
.project-grid-industry .project-card:nth-child(n) {
  grid-column: span 4;
}
.industry-delivery,
.case-conversion {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0;
  margin-bottom: 110px;
  border: 1px solid var(--ink);
  background: #fff;
}
.industry-delivery > div,
.case-conversion > div {
  padding: 28px;
  border-right: 1px solid var(--ink);
}
.industry-delivery > .button {
  align-self: stretch;
  min-height: 100%;
  border-radius: 0;
}
.service-entry {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 26px 0 0;
}
.service-entry strong {
  font: 750 25px/1 "Archivo", sans-serif;
}
.service-entry span {
  color: var(--muted);
  font-size: 14px;
}
.case-tags {
  display: flex;
  gap: 8px;
  margin: 18px 0 0;
  flex-wrap: wrap;
}
.case-tags span {
  padding: 8px 10px;
  border: 1px solid var(--ink);
  background: #fff;
  font-size: 11px;
  font-weight: 750;
}
.case-related {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.case-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 420px;
  padding: 13px 0;
  border-top: 1px solid var(--ink);
  font-weight: 750;
}
.case-delivery {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid var(--ink);
}
.case-delivery > div h2 {
  font-size: clamp(42px, 5vw, 68px);
}
.case-conversion-actions {
  display: grid;
  gap: 12px;
  min-width: 310px;
}
.case-conversion-actions .button {
  border-radius: 0;
}
.case-conversion-actions > a:last-child {
  align-self: center;
  font-size: 12px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.review-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-bottom: 40px;
}
.review-process > div {
  padding: 28px;
  border: 1px solid var(--ink);
  border-right: 0;
  background: #fff;
}
.review-process > div:last-child {
  border-right: 1px solid var(--ink);
}
.review-process span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.review-process h2 {
  margin-top: 48px;
  font-size: 29px;
}
.review-process p {
  color: var(--muted);
}
.footer-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.consent-panel {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  width: min(920px, calc(100% - 40px));
  margin-left: auto;
  padding: 22px;
  border: 1px solid var(--ink);
  background: rgba(250,248,242,.96);
  box-shadow: 8px 8px 0 var(--ink);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.consent-panel[hidden] {
  display: none;
}
.consent-panel strong {
  font: 750 22px/1 "Archivo", sans-serif;
}
.consent-panel p {
  max-width: 600px;
  margin: 8px 0 4px;
  color: var(--muted);
  font-size: 13px;
}
.consent-panel a {
  font-size: 12px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent-panel > div:last-child {
  display: flex;
  gap: 10px;
}
.consent-panel .button {
  min-height: 46px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .commercial-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .commercial-proof > div:nth-child(2) { border-right: 0; }
  .commercial-proof > div:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .commercial-proof > a { min-width: 0; }
  .sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-requirements, .local-service-grid, .case-delivery { grid-template-columns: 1fr; gap: 42px; }
  .project-grid-industry .project-card:nth-child(n) { grid-column: span 6; }
  .industry-delivery, .case-conversion { grid-template-columns: 1fr 1fr; }
  .industry-delivery > .button, .case-conversion-actions { grid-column: 1 / -1; min-height: 62px; }
  .review-process { grid-template-columns: 1fr; }
  .review-process > div { border-right: 1px solid var(--ink); border-bottom: 0; }
  .review-process > div:last-child { border-bottom: 1px solid var(--ink); }
}

@media (max-width: 680px) {
  .commercial-proof {
    grid-template-columns: 1fr;
    margin-top: 12px;
    box-shadow: 5px 5px 0 var(--ink);
  }
  .commercial-proof > div,
  .commercial-proof > div:nth-child(2) {
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
  .commercial-proof > a {
    min-height: 62px;
    padding: 18px 20px;
  }
  .sector-grid { grid-template-columns: 1fr; }
  .sector-card,
  .sector-grid-large .sector-card { min-height: 255px; padding: 22px; }
  .sector-grid-large .sector-card h2 { margin-top: 45px; }
  .sectors-preview .section-head,
  .industry-page .section-head,
  .local-page .section-head { display: grid; gap: 20px; }
  .industry-intro > p, .local-intro > p { font-size: 17px; }
  .industry-requirements, .local-service-grid { padding-top: 72px; padding-bottom: 72px; }
  .industry-requirements h2, .local-service-grid > div h2 { font-size: 40px; }
  .project-grid-industry { display: grid; grid-template-columns: 1fr; }
  .project-grid-industry .project-card:nth-child(n) { grid-column: 1 / -1; }
  .industry-delivery, .case-conversion {
    grid-template-columns: 1fr;
    margin-bottom: 74px;
  }
  .industry-delivery > div,
  .case-conversion > div {
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
  .industry-delivery > .button,
  .case-conversion-actions {
    grid-column: auto;
  }
  .service-entry {
    display: grid;
    gap: 8px;
  }
  .case-tags { margin-top: 14px; }
  .case-delivery { padding-top: 72px; padding-bottom: 72px; }
  .case-conversion-actions { min-width: 0; }
  .review-process { padding-top: 72px; }
  .review-process h2 { margin-top: 32px; }
  .footer-bottom { gap: 10px; flex-wrap: wrap; }
  .consent-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 18px;
    width: auto;
    padding: 19px;
    box-shadow: 5px 5px 0 var(--ink);
  }
  .consent-panel > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .consent-panel .button {
    min-width: 0;
    padding: 0 12px;
  }
}

/* LUMA liquid-glass navigation */
@media (min-width: 981px) {
  .site-header {
    top: 14px;
    gap: 12px;
    width: min(1360px, calc(100% - 28px));
    height: 64px;
    margin-top: 14px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: none;
  }

  .site-header::after { display: none; }
  .site-header > * { pointer-events: auto; }

  .site-header .brand {
    align-self: stretch;
    gap: 11px;
    min-width: 178px;
    padding: 0 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-right-color: rgba(61, 79, 122, 0.22);
    border-bottom-color: rgba(11, 11, 12, 0.24);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(241, 238, 231, 0.48)),
      rgba(255, 255, 255, 0.36);
    box-shadow: inset 0 1px #fff, 0 14px 34px rgba(17, 20, 29, 0.12);
    backdrop-filter: blur(26px) saturate(155%);
    -webkit-backdrop-filter: blur(26px) saturate(155%);
    transition:
      min-width var(--motion-fast) var(--ease-snap),
      padding var(--motion-fast) var(--ease-snap),
      border-radius var(--motion-fast) var(--ease-snap);
  }

  .desktop-nav {
    --nav-x: 50%;
    position: relative;
    align-self: center;
    height: 58px;
    margin-left: auto;
    padding: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-right-color: rgba(57, 76, 123, 0.2);
    border-bottom-color: rgba(11, 11, 12, 0.22);
    border-radius: 18px;
    background:
      radial-gradient(
        circle 180px at var(--nav-x) -45%,
        rgba(255, 255, 255, 0.98),
        rgba(255, 255, 255, 0.28) 48%,
        transparent 72%
      ),
      linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(224, 231, 249, 0.3));
    box-shadow: inset 0 1px #fff, 0 14px 34px rgba(17, 20, 29, 0.11);
    backdrop-filter: blur(28px) saturate(165%);
    -webkit-backdrop-filter: blur(28px) saturate(165%);
    transition:
      height var(--motion-fast) var(--ease-snap),
      border-radius var(--motion-fast) var(--ease-snap);
  }

  .desktop-nav::before {
    content: "";
    position: absolute;
    top: -16px;
    left: calc(var(--nav-x) - 38px);
    width: 76px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    filter: blur(12px);
    pointer-events: none;
    transform: translateX(-50%);
  }

  .desktop-nav::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 2px;
    left: 8px;
    height: 2px;
    background:
      linear-gradient(
        90deg,
        var(--blue) 0 calc(100% * var(--scroll-progress)),
        transparent calc(100% * var(--scroll-progress))
      );
    pointer-events: none;
  }

  .desktop-nav a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid transparent;
    border-radius: 11px;
  }

  .desktop-nav a:hover {
    border-color: rgba(11, 11, 12, 0.12);
    background: rgba(255, 255, 255, 0.58);
    color: var(--ink);
  }

  .desktop-nav a[aria-current="page"] {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
  }

  .site-header .header-cta {
    align-self: center;
    min-height: 54px;
    border-radius: 13px;
  }

  .site-header.is-scrolled {
    top: 8px;
    width: min(1140px, calc(100% - 22px));
    height: 54px;
  }

  .site-header.is-scrolled .brand {
    min-width: 160px;
    padding-inline: 15px;
    border-radius: 15px;
  }

  .site-header.is-scrolled .brand img {
    width: 28px;
    height: 28px;
  }

  .site-header.is-scrolled .desktop-nav {
    height: 50px;
    padding-block: 3px;
    border-radius: 15px;
  }

  .site-header.is-scrolled .desktop-nav a {
    min-height: 42px;
    padding-inline: 11px;
  }

  .site-header.is-scrolled .header-cta {
    min-height: 48px;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 8px 0 13px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-right-color: rgba(57, 76, 123, 0.22);
    border-bottom-color: rgba(11, 11, 12, 0.24);
    background:
      radial-gradient(circle at 18% -55%, rgba(255, 255, 255, 0.98), transparent 52%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(229, 234, 247, 0.48));
    box-shadow: inset 0 1px #fff, 0 13px 32px rgba(17, 20, 29, 0.13);
    backdrop-filter: blur(28px) saturate(165%);
    -webkit-backdrop-filter: blur(28px) saturate(165%);
  }

  .site-header .brand {
    min-height: 44px;
  }

  .menu-button {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 13px;
    background: var(--ink);
    box-shadow: 2px 2px 0 var(--blue);
  }

  .menu-button span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1.5px;
    margin: 0;
    background: #fff;
    transform-origin: center;
  }

  .menu-button span:nth-child(1) {
    transform: translate(-50%, -4px);
  }

  .menu-button span:nth-child(2) {
    display: none;
  }

  .menu-button span:nth-child(3) {
    transform: translate(-50%, 4px);
  }

  .menu-button[aria-expanded="true"] {
    background: var(--blue);
    box-shadow: 2px 2px 0 var(--coral);
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .menu-backdrop:not([hidden]) {
    z-index: 72;
    background: rgba(5, 5, 7, 0.5);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
  }

  .mobile-menu:not([hidden]) {
    z-index: 82;
    inset: 78px 8px 8px;
    min-height: 0;
    height: auto;
    padding: 16px 14px max(16px, env(safe-area-inset-bottom));
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-right-color: rgba(57, 76, 123, 0.25);
    border-bottom-color: rgba(11, 11, 12, 0.28);
    border-radius: 22px;
    background:
      radial-gradient(circle at 86% 0, rgba(255, 255, 255, 0.96), transparent 34%),
      linear-gradient(145deg, rgba(250, 248, 242, 0.92), rgba(222, 229, 248, 0.76));
    box-shadow: inset 0 1px #fff, 0 24px 60px rgba(5, 6, 10, 0.28);
    backdrop-filter: blur(32px) saturate(155%);
    -webkit-backdrop-filter: blur(32px) saturate(155%);
    clip-path: inset(0 0 100% 62% round 22px);
    transition: clip-path var(--motion-base) var(--ease-snap);
  }

  .mobile-menu.is-open {
    clip-path: inset(0 round 22px);
  }

  .mobile-menu nav {
    border: 1px solid rgba(11, 11, 12, 0.22);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
  }

  .mobile-menu nav a {
    min-height: 58px;
    padding: 8px 13px;
    border-top-color: rgba(11, 11, 12, 0.2);
    font-size: clamp(29px, 8.4vw, 40px);
  }

  .mobile-menu nav a:first-child {
    border-top: 0;
  }

  .mobile-menu nav a[aria-current="page"] {
    padding-left: 17px;
    background: var(--blue);
  }

  .mobile-menu nav .ui-icon {
    width: 19px;
    height: 19px;
    stroke-width: 1.35;
  }

  .mobile-menu-bottom {
    gap: 13px;
    padding: 14px 2px 0;
  }

  .mobile-menu-cta {
    min-height: 56px;
    border-radius: 12px;
  }
}

@media (max-width: 370px) {
  .mobile-menu:not([hidden]) {
    padding: 11px 10px max(11px, env(safe-area-inset-bottom));
  }

  .mobile-menu nav a {
    min-height: 52px;
    font-size: 28px;
  }

  .mobile-menu-bottom {
    padding-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu:not([hidden]),
  .mobile-menu.is-open {
    clip-path: none;
  }
}

/* Cinematic hero composition */
.hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  grid-template-rows: minmax(620px, 1fr) auto;
  gap: 22px 26px;
  min-height: calc(100vh - 92px);
  padding-top: 72px;
}

.hero-copy {
  min-width: 0;
  padding: 44px 3.8vw 50px 0;
}

.hero-media {
  --hero-x: 0;
  --hero-y: 0;
  --hero-scroll: 0;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  perspective: 1100px;
  background:
    linear-gradient(rgba(11, 11, 12, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 11, 12, 0.055) 1px, transparent 1px),
    #e5e0d5;
  background-size: 34px 34px;
}

.hero-media > picture.hero-depth-subject {
  position: absolute;
  z-index: 2;
  inset: 18px 18px 26px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 rgba(11, 11, 12, 0.72);
  clip-path: inset(0);
  transform:
    translate3d(
      calc(var(--hero-x) * 4px),
      calc(var(--hero-y) * 3px + var(--hero-scroll) * -12px),
      0
    )
    scale(1.015);
  transition: transform var(--motion-slow) var(--ease-snap);
  animation: hero-subject-reveal 760ms 260ms var(--ease-snap) both;
}

.hero-depth-subject img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: none;
}

.hero-depth-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: transform var(--motion-slow) var(--ease-snap);
}

.hero-depth-back {
  z-index: 1;
  transform: translate3d(
    calc(var(--hero-x) * -9px),
    calc(var(--hero-y) * -7px + var(--hero-scroll) * 9px),
    0
  );
}

.hero-depth-back i,
.hero-depth-front i {
  position: absolute;
  display: block;
}

.hero-depth-back i:first-child {
  top: 3px;
  right: 2px;
  width: 42%;
  height: 25%;
  background: var(--blue);
}

.hero-depth-back i:last-child {
  bottom: 3px;
  left: 2px;
  width: 36%;
  height: 24%;
  background: var(--yellow);
}

.hero-depth-front {
  z-index: 3;
  transform: translate3d(
    calc(var(--hero-x) * 13px),
    calc(var(--hero-y) * 10px + var(--hero-scroll) * -18px),
    34px
  );
}

.hero-depth-front i:nth-child(1) {
  top: 8%;
  left: 4%;
  width: 72px;
  height: 72px;
  border: 11px solid var(--blue);
  box-shadow: 4px 4px 0 rgba(11, 11, 12, 0.8);
  animation: hero-depth-piece 520ms 680ms var(--ease-settle) both;
}

.hero-depth-front i:nth-child(2) {
  top: 19%;
  right: 1.5%;
  width: 62px;
  height: 13px;
  background: var(--coral);
  box-shadow: 3px 3px 0 var(--ink);
  animation: hero-depth-piece 520ms 760ms var(--ease-settle) both;
}

.hero-depth-front i:nth-child(3) {
  right: 4%;
  bottom: 5%;
  width: 48px;
  height: 48px;
  border: 8px solid var(--ink);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: hero-depth-piece 520ms 840ms var(--ease-settle) both;
}

.hero-cinema::after {
  z-index: 4;
  pointer-events: none;
  animation: hero-light 1.1s 700ms var(--ease-snap) 1 both;
}

.hero-screen-sequence {
  display: none;
}

.hero-proof {
  align-self: start;
  margin-top: 0;
}

@keyframes hero-subject-reveal {
  from { clip-path: inset(0 100% 0 0); }
}

@keyframes hero-depth-piece {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.82);
  }
  72% {
    opacity: 1;
    transform: translateY(-2px) scale(1.04);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
    padding-top: 64px;
  }

  .hero-copy {
    padding: 36px 0 18px;
  }

  .hero-media {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  .hero {
    gap: 20px;
    padding-top: 50px;
  }

  .hero-copy {
    padding: 20px 0 10px;
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .hero-media > picture.hero-depth-subject {
    inset: 10px 10px 17px;
    box-shadow: 4px 4px 0 rgba(11, 11, 12, 0.72);
    transform:
      translate3d(
        calc(var(--hero-x) * 2px),
        calc(var(--hero-y) * 2px + var(--hero-scroll) * -7px),
        0
      )
      scale(1.01);
  }

  .hero-media > picture.hero-depth-subject img {
    width: 100%;
    max-width: none;
    object-position: center 46%;
  }

  .hero-depth-back {
    transform: translate3d(0, calc(var(--hero-scroll) * 5px), 0);
  }

  .hero-depth-front {
    transform: translate3d(0, calc(var(--hero-scroll) * -9px), 24px);
  }

  .hero-depth-front i:nth-child(1) {
    top: 6%;
    left: 2%;
    width: 54px;
    height: 54px;
    border-width: 8px;
  }

  .hero-depth-front i:nth-child(2) {
    top: 22%;
    right: 0;
    width: 44px;
    height: 10px;
  }

  .hero-depth-front i:nth-child(3) {
    right: 3%;
    bottom: 3%;
    width: 38px;
    height: 38px;
    border-width: 6px;
  }

  .hero-proof {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media > picture.hero-depth-subject,
  .hero-depth-back,
  .hero-depth-front {
    animation: none;
    transform: none;
    transition: none;
  }

  .hero-depth-front i,
  .hero-cinema::after {
    animation: none;
  }
}

/* Original LUMA hero artwork */
.hero-depth-overlay {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-depth-overlay img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: fill;
  transform: none;
}

.hero-depth-front {
  animation: hero-overlay-reveal 560ms 680ms var(--ease-settle) both;
}

@keyframes hero-overlay-reveal {
  from {
    opacity: 0;
    scale: 0.96;
  }
  72% {
    opacity: 1;
    scale: 1.015;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-depth-front {
    animation: none;
    scale: 1;
  }
}

/* Scroll-linked editorial image depth */
.visual-statement[data-image-depth] {
  --image-depth: 0;
  --image-light: -118%;
  isolation: isolate;
}

.visual-statement[data-image-depth] > picture {
  position: absolute;
  z-index: 0;
  inset: -6% 0;
  display: block;
  width: 100%;
  height: 112%;
  overflow: hidden;
}

.visual-statement[data-image-depth] > picture > img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, calc(var(--image-depth) * -18px), 0) scale(1.06);
  transition: transform 120ms linear;
  will-change: transform;
}

.visual-statement[data-image-depth]::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    104deg,
    transparent 34%,
    rgba(255, 255, 255, 0.28) 49%,
    transparent 64%
  );
  transform: translate3d(var(--image-light), 0, 0);
  will-change: transform;
}

.visual-statement[data-image-depth] > .glass {
  z-index: 3;
  isolation: isolate;
  transform: translate3d(
    calc(var(--image-depth) * 5px),
    calc(var(--image-depth) * -7px),
    0
  );
  transition: transform 120ms linear;
  will-change: transform;
}

.visual-statement[data-image-depth] > .glass::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -10px;
  bottom: -10px;
  left: 10px;
  height: 10px;
  background: rgba(11, 11, 12, 0.76);
  transform: translate3d(
    calc(var(--image-depth) * 3px),
    calc(var(--image-depth) * 2px),
    0
  );
}

@media (max-width: 680px) {
  .visual-statement[data-image-depth] > picture {
    inset: -3% 0;
    height: 106%;
  }

  .visual-statement[data-image-depth] > picture > img {
    transform: translate3d(0, calc(var(--image-depth) * -8px), 0) scale(1.025);
  }

  .visual-statement[data-image-depth] > .glass {
    transform: translate3d(
      calc(var(--image-depth) * 2px),
      calc(var(--image-depth) * -3px),
      0
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual-statement[data-image-depth] > picture > img,
  .visual-statement[data-image-depth] > .glass,
  .visual-statement[data-image-depth] > .glass::before {
    transform: none;
    transition: none;
  }

  .visual-statement[data-image-depth]::after {
    display: none;
  }
}

/* Task 13: kinetic type reserved for major display headings. */
.kinetic-heading {
  --kinetic-colour: currentColor;
}

.kinetic-heading .kinetic-word {
  display: inline-block;
  color: var(--kinetic-colour);
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translate3d(calc(var(--kinetic-x) * 0.24em), 0.82em, 0);
  transition:
    color 90ms linear,
    opacity 460ms var(--ease-settle),
    clip-path 620ms var(--ease-snap),
    transform 620ms var(--ease-snap);
  transition-delay:
    0ms,
    calc(var(--kinetic-index) * 34ms),
    calc(var(--kinetic-index) * 34ms),
    calc(var(--kinetic-index) * 34ms);
  will-change: transform, clip-path, opacity;
}

.kinetic-heading.is-kinetic-visible .kinetic-word {
  opacity: 1;
  clip-path: inset(0);
  transform: translate3d(0, 0, 0);
}

.hero-copy h1.kinetic-heading {
  animation: none;
}

.hero-copy h1.kinetic-heading .kinetic-word {
  transform: translate3d(calc(var(--kinetic-x) * 0.38em), 0.45em, 0);
  transition-delay:
    0ms,
    calc(720ms + var(--kinetic-index) * 42ms),
    calc(720ms + var(--kinetic-index) * 42ms),
    calc(720ms + var(--kinetic-index) * 42ms);
}

.hero-copy h1.kinetic-heading.is-kinetic-visible .kinetic-word {
  transform: translate3d(0, 0, 0);
}

.kinetic-colour-heading {
  color: var(--kinetic-colour);
}

@media (max-width: 680px) {
  .kinetic-heading .kinetic-word {
    transform: translate3d(calc(var(--kinetic-x) * 0.14em), 0.58em, 0);
    transition-delay:
      0ms,
      calc(var(--kinetic-index) * 26ms),
      calc(var(--kinetic-index) * 26ms),
      calc(var(--kinetic-index) * 26ms);
  }

  .hero-copy h1.kinetic-heading .kinetic-word {
    transform: translate3d(calc(var(--kinetic-x) * 0.2em), 0.32em, 0);
    transition-delay:
      0ms,
      calc(560ms + var(--kinetic-index) * 34ms),
      calc(560ms + var(--kinetic-index) * 34ms),
      calc(560ms + var(--kinetic-index) * 34ms);
  }

  .kinetic-heading.is-kinetic-visible .kinetic-word,
  .hero-copy h1.kinetic-heading.is-kinetic-visible .kinetic-word {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .kinetic-heading .kinetic-word,
  .hero-copy h1.kinetic-heading .kinetic-word,
  .kinetic-heading.is-kinetic-visible .kinetic-word,
  .hero-copy h1.kinetic-heading.is-kinetic-visible .kinetic-word {
    color: inherit;
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* Task 05: editorial work index. */
.work-page .page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
}

.work-page .page-intro::after {
  grid-column: 1 / -1;
}

.work-page .filter-bar {
  margin: 0 0 5px;
  border: 1px solid rgba(11, 11, 12, 0.14);
}

.work-index {
  padding-top: clamp(72px, 8vw, 118px);
}

.work-page .project-grid-all {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(92px, 10vw, 160px);
}

.work-page .project-grid-all .project-card:nth-child(n) {
  --project-depth: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-column: 1 / -1;
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  overflow: visible;
  padding-top: 34px;
  border: 0;
  border-top: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.work-page .project-grid-all .project-card::after {
  top: -1px;
  right: auto;
  left: 0;
  width: clamp(90px, 11vw, 160px);
  height: 7px;
  background: var(--tone);
  transform: none;
}

.work-page .project-grid-all .project-card:hover {
  transform: none;
  box-shadow: none;
}

.work-page .project-grid-all .project-video,
.work-page .project-grid-all .project-card:nth-child(-n + 2) .project-video {
  grid-column: 1 / span 8;
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: var(--media-ratio, 8 / 5);
  overflow: visible;
  border: 1px solid var(--ink);
  background: #0b0b0c;
  box-shadow:
    10px 10px 0 var(--tone),
    18px 18px 0 var(--ink);
  transform: translate3d(0, calc(var(--project-depth) * -12px), 0);
  transition: transform 120ms linear;
  will-change: transform;
}

.work-page .project-grid-all .project-video::after {
  content: "";
  position: absolute;
  z-index: 7;
  inset: -1px;
  pointer-events: none;
  background: var(--tone);
  clip-path: inset(0);
  transition: clip-path 760ms var(--ease-snap) 100ms;
}

.work-page .project-grid-all .project-card.is-visible .project-video::after {
  clip-path: inset(0 0 0 100%);
}

.work-page .project-grid-all .project-video > picture,
.work-page .project-grid-all .project-video > picture > img,
.work-page .project-grid-all .project-video video,
.work-page .project-grid-all .project-video .video-poster {
  border-radius: 0;
}

.work-page .project-grid-all .project-video > picture > img,
.work-page .project-grid-all .project-video video,
.work-page .project-grid-all .project-video .video-poster {
  object-fit: cover;
  object-position: top center;
}

.work-page .project-grid-all .project-copy {
  grid-column: 9 / -1;
  padding: 0;
  transform: translate3d(0, calc(var(--project-depth) * 7px), 0);
  transition: transform 120ms linear;
  will-change: transform;
}

.work-page .project-grid-all .project-card:nth-child(even) .project-video {
  grid-column: 5 / -1;
  grid-row: 1;
}

.work-page .project-grid-all .project-card:nth-child(even) .project-copy {
  grid-column: 1 / span 4;
  grid-row: 1;
}

.work-page .project-kicker {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px 14px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.work-page .project-kicker span:first-child {
  grid-row: span 2;
  color: var(--tone);
}

.work-page .project-kicker span:last-child {
  color: var(--ink);
}

.work-page .project-grid-all .project-copy h3 {
  max-width: 9ch;
  color: var(--ink);
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.9;
}

.work-page .project-grid-all .project-copy p {
  max-width: 32ch;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.work-page .project-grid-all .project-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 32px;
}

.work-page .project-grid-all .project-link {
  justify-content: space-between;
  min-height: 48px;
  margin: 0;
  padding: 0 13px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
}

.work-page .project-grid-all .project-link:first-child {
  background: var(--ink);
  color: #fff;
  box-shadow: 3px 3px 0 var(--tone);
}

.work-page .project-grid-all .project-link:first-child .ui-icon {
  color: var(--tone);
}

.work-page .project-grid-all .project-link:hover,
.work-page .project-grid-all .project-link:focus-visible {
  background: var(--tone);
  color: var(--ink);
}

.work-page .project-grid-all .project-link:hover .ui-icon,
.work-page .project-grid-all .project-link:focus-visible .ui-icon {
  color: var(--ink);
}

@media (max-width: 860px) {
  .work-page .page-intro {
    grid-template-columns: 1fr;
  }

  .work-page .filter-bar {
    margin: 0;
  }

  .work-page .project-grid-all .project-card:nth-child(n) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .work-page .project-grid-all .project-video,
  .work-page .project-grid-all .project-card:nth-child(-n + 2) .project-video,
  .work-page .project-grid-all .project-card:nth-child(even) .project-video {
    grid-column: 1;
    grid-row: 1;
  }

  .work-page .project-grid-all .project-copy,
  .work-page .project-grid-all .project-card:nth-child(even) .project-copy {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 680px) {
  .work-page .page-intro {
    gap: 26px;
  }

  .work-page .filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 5px;
  }

  .work-page .filter-bar button {
    min-height: 44px;
  }

  .work-index {
    padding-top: 68px;
  }

  .work-page .project-grid-all {
    gap: 92px;
  }

  .work-page .project-grid-all .project-card:nth-child(n) {
    gap: 34px;
    padding-top: 26px;
  }

  .work-page .project-grid-all .project-video,
  .work-page .project-grid-all .project-card:nth-child(-n + 2) .project-video {
    width: calc(100% - 10px);
    height: auto;
    margin: 0;
    aspect-ratio: var(--media-ratio, 8 / 5);
    box-shadow:
      6px 6px 0 var(--tone),
      10px 10px 0 var(--ink);
    transform: translate3d(0, calc(var(--project-depth) * -4px), 0);
  }

  .work-page .project-grid-all .project-copy {
    transform: none;
  }

  .work-page .project-kicker {
    margin-bottom: 21px;
  }

  .work-page .project-grid-all .project-copy h3 {
    max-width: 11ch;
    font-size: clamp(42px, 13vw, 56px);
  }

  .work-page .project-grid-all .project-copy p {
    margin-top: 16px;
    font-size: 16px;
  }

  .work-page .project-grid-all .project-actions {
    margin-top: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-page .project-grid-all .project-video,
  .work-page .project-grid-all .project-copy {
    transform: none !important;
    transition: none;
    will-change: auto;
  }

  .work-page .project-grid-all .project-video::after {
    display: none;
  }
}

/* Task 06: deliberate, user-controlled walkthrough player. */
.video-control-dock {
  position: absolute;
  z-index: 8;
  right: 12px;
  bottom: 13px;
  display: flex;
  align-items: center;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 3px;
  background: rgba(11, 11, 12, 0.86);
  box-shadow: 4px 4px 0 var(--tone, var(--blue));
  color: #fff;
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
}

.video-control-dock[hidden] {
  display: none;
}

.video-control-dock button {
  display: grid;
  place-items: center;
  width: 46px;
  min-width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.video-control-dock button:hover,
.video-control-dock button:focus-visible {
  background: var(--tone, var(--blue));
  color: var(--ink);
}

.video-control-dock button + span,
.video-control-dock span + button {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.video-control-dock .ui-icon {
  width: 17px;
  height: 17px;
  stroke-width: 1.6;
}

.video-control-dock [data-video-time] {
  min-width: 96px;
  padding: 0 11px;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 46px;
  text-align: center;
}

.video-control-dock .icon-play {
  display: none;
}

.video-control-dock [data-video-pause][data-state="play"] .icon-pause {
  display: none;
}

.video-control-dock [data-video-pause][data-state="play"] .icon-play {
  display: block;
}

.project-video:fullscreen,
.project-video:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  aspect-ratio: auto !important;
  border: 0;
  background: #000;
  box-shadow: none !important;
  transform: none !important;
}

.project-video:fullscreen video,
.project-video:-webkit-full-screen video {
  object-fit: contain !important;
  object-position: center !important;
}

.project-video:fullscreen .project-chrome,
.project-video:-webkit-full-screen .project-chrome {
  display: none;
}

.project-video:fullscreen .video-control-dock,
.project-video:-webkit-full-screen .video-control-dock {
  right: 24px;
  bottom: 24px;
}

@media (max-width: 680px) {
  .video-control-dock {
    right: 8px;
    bottom: 9px;
    min-height: 44px;
  }

  .video-control-dock button {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .video-control-dock [data-video-time] {
    min-width: 84px;
    padding-inline: 8px;
    font-size: 10px;
    line-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-control-dock {
    display: none !important;
  }
}

/* Task 10: one service state at a time on desktop. */
@media (min-width: 981px) {
  .service-story {
    grid-template-columns: minmax(330px, 0.8fr) minmax(520px, 1.2fr);
    gap: clamp(58px, 7vw, 112px);
    padding-block: 132px;
  }

  .service-story .service-stack {
    grid-column: 1;
    grid-row: 1;
    gap: 0;
  }

  .service-story .sticky-copy {
    grid-column: 2;
    grid-row: 1;
    top: 96px;
  }

  .service-story .sticky-copy > h2 {
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .service-story.is-enhanced .service-row {
    grid-template-columns: 1fr;
    min-height: 58vh;
    padding: 40px 8px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.38);
    box-shadow: none;
    opacity: 0.5;
    transform: none;
    transition:
      color 280ms var(--ease-settle),
      opacity 280ms var(--ease-settle);
  }

  .service-story.is-enhanced .service-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.23);
  }

  .service-story.is-enhanced .service-row:hover {
    box-shadow: none;
    transform: none;
  }

  .service-story.is-enhanced .service-row.is-active-service {
    color: #fff;
    opacity: 1;
  }

  .service-story.is-enhanced .service-row .service-demo {
    display: none;
  }

  .service-story.is-enhanced .service-row-copy {
    grid-template-columns: 40px minmax(0, 1fr) 48px;
    width: 100%;
    padding: 0;
  }

  .service-story.is-enhanced .service-row-copy > span {
    align-self: start;
    color: currentColor;
  }

  .service-story.is-enhanced .service-row-copy h3 {
    max-width: 8ch;
    color: currentColor;
    font-size: clamp(44px, 4.3vw, 66px);
    line-height: 0.92;
  }

  .service-story.is-enhanced .service-row-copy p {
    max-width: 32ch;
    margin-top: 18px;
    color: currentColor;
    font-size: 16px;
    line-height: 1.5;
  }

  .service-story.is-enhanced .service-row-copy a {
    width: 48px;
    height: 48px;
    border: 1px solid currentColor;
    color: currentColor;
  }

  .service-story.is-enhanced .service-row.is-active-service .service-row-copy a {
    border-color: #fff;
    background: #fff;
    color: var(--ink);
  }

  .service-story .service-stage {
    --service-tone: var(--blue);
    display: grid;
    grid-template-rows: auto minmax(290px, 1fr) auto;
    gap: 18px;
    min-height: min(68vh, 650px);
    margin: 0;
    padding: 18px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    background:
      linear-gradient(135deg, color-mix(in srgb, var(--service-tone) 36%, transparent), transparent 55%),
      rgba(255, 255, 255, 0.08);
    box-shadow:
      9px 9px 0 var(--service-tone),
      16px 16px 0 rgba(255, 255, 255, 0.9);
    transition: background 300ms ease, box-shadow 300ms ease;
  }

  .service-story .service-stage[data-service="02"] { --service-tone: var(--yellow); }
  .service-story .service-stage[data-service="03"] { --service-tone: var(--coral); }
  .service-story .service-stage[data-service="04"] { --service-tone: #71d84a; }
  .service-story .service-stage[data-service="05"] { --service-tone: #25b6c9; }

  .service-stage-head {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    padding: 4px 4px 2px;
  }

  .service-stage-head > span {
    color: var(--service-tone);
    font-size: 12px;
    font-weight: 800;
  }

  .service-stage-head strong {
    display: block;
    max-width: 10ch;
    color: #fff;
    font-size: clamp(36px, 3.5vw, 54px);
    line-height: 0.92;
  }

  .service-stage-head p {
    max-width: 38ch;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.45;
  }

  .service-visual-slot {
    min-height: 290px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.64);
    background: var(--paper);
  }

  .service-visual-slot .service-demo {
    width: 100%;
    height: 100%;
    min-height: 290px;
    border: 0;
    animation: service-panel-in 460ms var(--ease-snap) both;
  }

  .service-visual-slot .service-demo > * {
    min-height: 100%;
  }

  .service-stage .service-demo i {
    position: static;
    right: auto;
    bottom: auto;
  }

  .service-stage .demo-app-nav i,
  .service-stage .demo-calendar i,
  .service-stage .demo-times i,
  .service-stage .demo-tickets i {
    border-radius: 0;
  }

  .service-stage .demo-calendar i,
  .service-stage .demo-tickets i {
    width: auto;
    height: auto;
  }

  .service-stage .demo-times i {
    width: auto;
  }

  .service-stage .demo-app-nav i,
  .service-stage .demo-tickets i,
  .service-stage .demo-site-head i {
    border: 0;
  }

  .service-stage .demo-site-head i {
    border-radius: 50%;
  }

  .service-related {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(11, 11, 12, 0.52);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
  }

  .service-related .ui-icon {
    width: 17px;
    height: 17px;
    color: var(--service-tone);
  }

  .service-related:hover,
  .service-related:focus-visible {
    background: var(--service-tone);
    color: var(--ink);
  }

  .service-related:hover .ui-icon,
  .service-related:focus-visible .ui-icon {
    color: var(--ink);
  }
}

@keyframes service-panel-in {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(16px, 0, 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
  }
}

@media (max-width: 980px) {
  .service-story .service-stage {
    display: none;
  }

  .service-story .service-row {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-visual-slot .service-demo {
    animation: none;
  }

  .service-story.is-enhanced .service-row {
    transition: none;
  }
}

/* Task 07: adaptive WebGL project planes. */
.project-gl-gallery {
  padding-top: 74px;
  padding-bottom: 42px;
}

.project-gl-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
}

.project-gl-head > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-gl-head > span:last-child {
  justify-self: end;
  font-variant-numeric: tabular-nums;
}

.project-gl-head strong {
  font: 700 clamp(24px, 2.8vw, 42px)/0.95 Archivo, sans-serif;
  letter-spacing: -0.045em;
}

.project-gl-stage {
  position: relative;
  height: min(68vh, 700px);
  min-height: 520px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #09090a;
  box-shadow:
    8px 8px 0 var(--blue),
    15px 15px 0 var(--ink);
}

.project-gl-stage canvas {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
}

.project-gl-gallery.is-ready .project-gl-stage canvas {
  display: block;
}

.project-gl-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(120deg, rgba(25, 71, 255, 0.26), transparent 42%),
    #09090a;
}

.project-gl-fallback picture {
  position: absolute;
  width: 52%;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.82);
}

.project-gl-fallback picture:nth-child(1) { z-index: 4; transform: translate(-22%, -5%) rotate(-2deg); }
.project-gl-fallback picture:nth-child(2) { z-index: 3; transform: translate(16%, -13%) rotate(2deg); }
.project-gl-fallback picture:nth-child(3) { z-index: 2; transform: translate(-4%, 13%) rotate(-1deg); }
.project-gl-fallback picture:nth-child(4) { z-index: 1; transform: translate(28%, 8%) rotate(3deg); }

.project-gl-fallback img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.project-gl-gallery.is-ready .project-gl-fallback {
  display: none;
}

.project-gl-selectors {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.project-gl-selectors button {
  display: grid;
  align-content: space-between;
  min-width: 0;
  min-height: 88px;
  padding: 12px 10px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: 800 10px/1 Archivo, sans-serif;
  text-align: left;
  cursor: pointer;
  transition: background-color 170ms linear, color 170ms linear;
}

.project-gl-selectors button:last-child {
  border-right: 0;
}

.project-gl-selectors button span {
  overflow: hidden;
  font-size: 11px;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.project-gl-selectors button.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: inset 0 4px 0 var(--blue);
}

.project-gl-selectors button:hover,
.project-gl-selectors button:focus-visible {
  background: var(--blue);
  color: #fff;
}

@media (max-width: 980px) {
  .project-gl-gallery {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 981px) {
  .project-gl-gallery .project-gl-stage canvas {
    display: none;
  }

  .project-gl-gallery .project-gl-fallback {
    display: grid;
  }
}

/* Task 08: hard-edged cinematic section transitions. */
.cinematic-section {
  position: relative;
  isolation: isolate;
}

.section-wipe {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: min(100vh, 100%);
  overflow: hidden;
  pointer-events: none;
  background: var(--ink);
  clip-path: inset(0);
  transform: translateZ(0);
  transition: clip-path 720ms var(--ease-snap);
}

.cinematic-section-dark .section-wipe {
  background: var(--paper);
}

.is-section-entered > .section-wipe {
  clip-path: inset(0 0 0 100%);
}

.section-wipe-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
}

.section-wipe-mark i {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 5px solid var(--paper);
}

.cinematic-section-dark .section-wipe-mark i {
  border-color: var(--ink);
}

.section-wipe-mark i:nth-child(1) {
  top: 0;
  left: 0;
  border-color: var(--blue);
}

.section-wipe-mark i:nth-child(2) {
  right: 0;
  bottom: 0;
  border-color: var(--paper);
}

.cinematic-section-dark .section-wipe-mark i:nth-child(2) {
  border-color: var(--ink);
}

.section-wipe-mark i:nth-child(3) {
  top: 20px;
  left: 20px;
  border: 0;
  background: var(--blue);
}

.section-wipe-bands {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 0.18fr 0.1fr;
  height: 8px;
}

.section-wipe-bands i:nth-child(1) { background: var(--blue); }
.section-wipe-bands i:nth-child(2) { background: var(--coral); }
.section-wipe-bands i:nth-child(3) { background: var(--yellow); }

@media (max-width: 680px) {
  .section-wipe {
    transition-duration: 520ms;
  }

  .section-wipe-mark {
    width: 52px;
    height: 52px;
  }

  .section-wipe-mark i {
    width: 23px;
    height: 23px;
    border-width: 4px;
  }

  .section-wipe-mark i:nth-child(3) {
    top: 15px;
    left: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-wipe {
    display: none;
    transition: none;
  }
}

/* Task 14: controlled cinematic footer. */
.site-footer {
  --footer-depth: 0;
  --footer-x: 0;
}

.site-footer .project-reel {
  width: min(1320px, calc(100% - 56px));
  margin-inline: auto;
  overflow: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
}

.site-footer .project-reel::before {
  content: "Selected work";
  display: block;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer .project-reel-track {
  display: block;
  width: auto;
  transform: none;
  animation: none;
}

.site-footer .project-reel-group:first-child {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 22px 0 30px;
}

.site-footer .project-reel-copy {
  display: none;
}

.site-footer .project-reel-item {
  width: auto;
  height: auto;
  aspect-ratio: 8 / 5;
  border-color: rgba(255, 255, 255, 0.42);
  background: #111;
  transform: translate3d(
    calc(var(--footer-x) * var(--footer-shift) * 0.5px),
    calc(var(--footer-depth) * var(--footer-shift) * 1px),
    0
  );
  transition: border-color 180ms linear;
  will-change: transform;
}

.site-footer .project-reel-item:hover,
.site-footer .project-reel-item:focus-visible {
  z-index: 2;
  border-color: var(--blue);
}

.site-footer .project-reel-item img {
  transform: scale(1.035);
  transition: transform 280ms var(--ease-snap), filter 180ms linear;
}

.site-footer .project-reel-item:hover img,
.site-footer .project-reel-item:focus-visible img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1);
}

.site-footer .footer-lead {
  position: relative;
  min-height: 360px;
  align-items: center;
  padding-block: 72px;
  overflow: hidden;
}

.site-footer .footer-lead::before,
.site-footer .footer-lead::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-footer .footer-lead::before {
  right: 13%;
  width: 188px;
  height: 188px;
  border: 28px solid var(--blue);
  transform: translate3d(calc(var(--footer-x) * 8px), calc(var(--footer-depth) * -10px), 0);
}

.site-footer .footer-lead::after {
  right: calc(13% - 58px);
  width: 132px;
  height: 132px;
  border: 22px solid #fff;
  transform: translate3d(calc(var(--footer-x) * -6px), calc(var(--footer-depth) * 7px), 0);
}

.site-footer .footer-lead > * {
  position: relative;
  z-index: 1;
}

.site-footer .footer-lead h2 {
  max-width: 7ch;
  font-size: clamp(62px, 8vw, 116px);
  line-height: 0.86;
}

.site-footer .footer-lead .button {
  min-width: 210px;
  min-height: 58px;
}

.site-footer .footer-wordmark {
  overflow: hidden;
  padding: 34px 0 52px;
  color: #fff;
  font-size: clamp(140px, 23vw, 350px);
  line-height: 0.68;
  transform: translate3d(calc(var(--footer-x) * -5px), calc(var(--footer-depth) * 7px), 0);
}

.site-footer .footer-grid {
  grid-template-columns: 1.15fr 1fr 0.85fr;
  align-items: start;
  padding-block: 58px;
}

.site-footer .footer-grid nav a,
.site-footer .footer-contact a {
  min-height: 32px;
}

@media (max-width: 980px) {
  .site-footer .project-reel {
    width: calc(100% - 28px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .site-footer .project-reel::-webkit-scrollbar {
    display: none;
  }

  .site-footer .project-reel-track {
    width: max-content;
  }

  .site-footer .project-reel-group:first-child {
    display: flex;
    width: max-content;
    gap: 12px;
    padding-right: 14px;
  }

  .site-footer .project-reel-item {
    flex: 0 0 min(76vw, 330px);
    width: min(76vw, 330px);
    scroll-snap-align: start;
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-footer .footer-lead {
    min-height: 390px;
    align-content: space-between;
    padding-block: 64px 46px;
  }

  .site-footer .footer-lead::before {
    top: 42px;
    right: -42px;
    width: 152px;
    height: 152px;
    border-width: 23px;
  }

  .site-footer .footer-lead::after {
    top: 94px;
    right: 20px;
    width: 96px;
    height: 96px;
    border-width: 17px;
  }

  .site-footer .footer-lead h2 {
    max-width: 6ch;
    font-size: clamp(56px, 17vw, 72px);
  }

  .site-footer .footer-lead .button {
    width: 100%;
  }

  .site-footer .footer-wordmark {
    padding-block: 30px 38px;
    font-size: 27vw;
    transform: none;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer .project-reel-item,
  .site-footer .footer-lead::before,
  .site-footer .footer-lead::after,
  .site-footer .footer-wordmark {
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* Task 15: native cross-document LUMA transition. */
@view-transition {
  navigation: auto;
}

.site-header > .brand {
  view-transition-name: luma-brand;
}

::view-transition {
  pointer-events: none;
  background: var(--blue);
}

::view-transition-group(root),
::view-transition-image-pair(root) {
  animation-duration: 360ms;
  animation-timing-function: var(--ease-snap);
}

::view-transition-old(root) {
  z-index: 1;
  animation: luma-page-old 280ms var(--ease-snap) both;
}

::view-transition-new(root) {
  z-index: 2;
  animation: luma-page-new 360ms var(--ease-snap) both;
}

::view-transition-group(luma-brand) {
  z-index: 3;
  animation-duration: 360ms;
}

::view-transition-old(luma-brand),
::view-transition-new(luma-brand) {
  mix-blend-mode: normal;
}

@keyframes luma-page-old {
  to {
    clip-path: inset(0 100% 0 0);
    transform: translate3d(-18px, 0, 0);
  }
}

@keyframes luma-page-new {
  from {
    clip-path: inset(47% 48%);
    transform: scale(0.985);
  }
  to {
    clip-path: inset(0);
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(root),
  ::view-transition-image-pair(root),
  ::view-transition-old(root),
  ::view-transition-new(root),
  ::view-transition-group(luma-brand) {
    animation: none;
  }
}

/* Task 17: phone layouts are designed as touch interfaces, not compressed desktop screens. */
:where(a[href], button, input, select, textarea, summary, [role="button"]) {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(25, 71, 255, 0.16);
}

@media (max-width: 980px) {
  /* The native project list is the intentional tablet and phone fallback. */
  .project-gl-gallery {
    display: none !important;
  }

  .site-footer .project-reel,
  .project-grid-home {
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 14px;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 680px) {
  /* Every standalone action has a usable 44px touch area. */
  .text-link,
  .back-link,
  .mobile-menu-bottom > div a,
  .site-footer .footer-grid nav a,
  .site-footer .footer-contact a,
  .footer-bottom button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .project-grid-home .project-link {
    width: 46px;
    height: 46px;
  }

  .text-link,
  .back-link {
    width: fit-content;
    padding-block: 7px;
  }

  .planner > p a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-block: -12px;
    padding-block: 12px;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  .mobile-menu-bottom > div {
    align-items: stretch;
  }

  .mobile-menu-bottom > div a {
    padding-block: 8px;
  }

  .site-footer .footer-grid nav {
    row-gap: 0;
  }

  .site-footer .footer-grid nav a,
  .site-footer .footer-contact a {
    width: fit-content;
  }

  /* Mobile movement covers less distance and settles sooner. */
  .hero-media > picture.hero-depth-subject {
    transition-duration: 280ms;
    transform:
      translate3d(0, calc(var(--hero-scroll) * -5px), 0)
      scale(1.008);
  }

  .hero-depth-back {
    transform: translate3d(0, calc(var(--hero-scroll) * 3px), 0);
  }

  .hero-depth-front {
    transform: translate3d(0, calc(var(--hero-scroll) * -6px), 16px);
  }

  .visual-statement[data-image-depth] > picture > img {
    transform: translate3d(0, calc(var(--image-depth) * -5px), 0) scale(1.018);
  }

  .work-page .project-grid-all .project-video,
  .work-page .project-grid-all .project-card:nth-child(-n + 2) .project-video {
    transform: translate3d(0, calc(var(--project-depth) * -2px), 0);
  }

  .kinetic-heading .kinetic-word {
    transform: translate3d(calc(var(--kinetic-x) * 0.09em), 0.38em, 0);
    transition-duration: 90ms, 360ms, 460ms, 460ms;
  }

  .hero-copy h1.kinetic-heading .kinetic-word {
    transform: translate3d(calc(var(--kinetic-x) * 0.12em), 0.24em, 0);
  }

  .kinetic-heading.is-kinetic-visible .kinetic-word,
  .hero-copy h1.kinetic-heading.is-kinetic-visible .kinetic-word {
    transform: none;
  }

  .section-wipe {
    transition-duration: 420ms;
  }

  /* The dedicated mobile artwork remains framed without stretching. */
  .hero-depth-subject img,
  .studio-layout figure img,
  .project-video .video-poster,
  .project-video video,
  .project-reel-item img {
    max-width: none;
  }

  .hero-depth-subject img,
  .studio-layout figure img {
    object-fit: cover;
  }

  .project-video .video-poster,
  .project-video video,
  .project-reel-item img {
    object-fit: cover;
    object-position: top center;
  }
}

@media (max-width: 370px) {
  .work-page .project-grid-all .project-actions {
    grid-template-columns: 1fr;
  }

  .case-tags {
    gap: 6px;
  }

  .case-tags span {
    padding-inline: 10px;
  }
}

@media (hover: none), (pointer: coarse) {
  /* Touch users never need a sticky desktop hover state to reveal information. */
  .project-card:hover,
  .service-row:hover,
  .sector-card:hover,
  .work-page .project-grid-all .project-card:hover,
  .site-footer .project-reel-item:hover {
    transform: none;
    box-shadow: none;
  }

  .project-card:hover .project-visual img,
  .hero-screen-card:hover .hero-screen-shot img,
  .site-footer .project-reel-item:hover img {
    filter: none;
    transform: none;
  }

  .action-control:hover::before {
    transform: scaleX(0);
  }

  .action-control:hover > .action-label,
  .action-control:hover > .action-icon {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media > picture.hero-depth-subject,
  .hero-depth-back,
  .hero-depth-front,
  .visual-statement[data-image-depth] > picture > img,
  .visual-statement[data-image-depth] > .glass,
  .work-page .project-grid-all .project-video,
  .kinetic-heading .kinetic-word,
  .hero-copy h1.kinetic-heading .kinetic-word {
    transform: none !important;
    transition: none !important;
  }

  .section-wipe {
    transition: none;
  }
}

/* Task 19: continuous motion runs only while its visual is on screen. */
.case-preview img {
  animation-play-state: paused;
}

.case-preview.is-runtime-visible img {
  animation-play-state: running;
}

@media (prefers-reduced-motion: reduce) {
  .case-preview img,
  .case-preview.is-runtime-visible img {
    animation: none;
  }
}
