:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0d0d0e;
  --ink: #f7f7f2;
  --muted: #b8b8b2;
  --line: rgba(255, 255, 255, 0.13);
  --cyan: #ffffff;
  --amber: #d8d8d2;
  --rose: #8c8c88;
  --green: #ffffff;
  --accent: #ffffff;
  --max: 1180px;
  --wide: 1540px;
  --header-h: 76px;
  --scroll-progress: 0;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.motion-off {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.1), transparent 24rem),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.06), transparent 28rem),
    radial-gradient(circle at 88% 42%, rgba(255, 255, 255, 0.04), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
}

body::after {
  display: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #000;
  color: var(--ink);
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

.page-loader.is-done {
  visibility: hidden;
  opacity: 0;
}

.page-loader-inner {
  width: min(100% - 56px, 280px);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.page-loader img {
  width: 92px;
  max-height: 64px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.28))
    drop-shadow(0 0 70px rgba(255, 255, 255, 0.14));
}

.page-loader-track {
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.page-loader-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.48);
  transform: scaleX(var(--loader-progress, 0.08));
  transform-origin: left;
  transition: transform 220ms ease;
}

.page-loader p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
canvas {
  max-width: 100%;
}

#light-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
}

.cursor-glow {
  position: fixed;
  left: var(--pointer-x);
  top: var(--pointer-y);
  z-index: 25;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07) 34%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0.72;
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0 max(32px, calc((100vw - var(--wide)) / 2 + 32px));
  border-bottom: 1px solid transparent;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    min-height 240ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.92);
}

.brand,
.site-nav,
.hero-actions,
.contact-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 760;
}

.brand-logo {
  width: 54px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.22));
}

.site-nav {
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.95rem;
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
}

.section-band {
  position: relative;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.hero.section-band {
  width: 100%;
  margin: 0;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72) 38%, rgba(5, 5, 5, 0.26)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.44), rgba(5, 5, 5, 0.86)),
    url("assets/media/hero-straizys.jpg") center / cover;
  opacity: 0.78;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 790px;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.78);
}

.hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.hero-logo-stage {
  position: absolute;
  right: 2%;
  top: 50%;
  z-index: 0;
  width: min(46%, 610px);
  transform: translateY(-50%);
  overflow: visible;
  cursor: crosshair;
}

.hero-logo-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.42) 48%, transparent 62%);
  background-position: -120% 0;
  background-size: 240% 100%;
  opacity: 0;
  -webkit-mask: url("assets/brand/ek-lights-transparent.png") center / contain no-repeat;
  mask: url("assets/brand/ek-lights-transparent.png") center / contain no-repeat;
  mix-blend-mode: screen;
  transition:
    background-position 900ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 260ms ease,
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-logo-stage:hover::after {
  opacity: 0.78;
  background-position: 120% 0;
}

.hero-watermark {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  opacity: 0.74;
  filter: drop-shadow(0 0 34px rgba(255, 255, 255, 0.18));
  pointer-events: none;
  transition:
    opacity 260ms ease,
    filter 260ms ease,
    transform 260ms ease;
}

.hero-logo-stage:hover .hero-watermark {
  opacity: 0.92;
  transform: scale(1.018) rotate(-0.6deg);
  filter: brightness(1.12) drop-shadow(0 0 48px rgba(255, 255, 255, 0.32));
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 4.7rem;
  line-height: 0.93;
  font-weight: 820;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.55rem;
  line-height: 1.02;
  font-weight: 790;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.lead,
.section-intro p:last-child,
.contact-copy p,
.story-panel p,
.service-item p,
.work-card span:last-child,
.case-lead,
.case-body p,
.case-facts li {
  color: var(--muted);
}

.lead {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: 1.14rem;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  font-weight: 720;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.12);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.content-warning {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  gap: 5px;
  width: min(380px, calc(100vw - 36px));
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.9);
  color: var(--ink);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}

.content-warning strong {
  font-size: 0.84rem;
  text-transform: uppercase;
}

.content-warning span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.button-primary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.button-ghost {
  background: rgba(255, 255, 255, 0.035);
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 720;
  text-transform: uppercase;
  animation: marquee 32s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
}

.services,
.work-section,
.contact-section {
  padding: 118px 0;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 34px;
}

.work-intro {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.service-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-item {
  min-height: 275px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(6, 6, 6, 0.74);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-item:hover {
  transform: translate3d(0, -3px, 0);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.service-number {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 780;
}

.process-cards-section {
  padding: 104px 0 118px;
}

.process-card-stack {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.process-card {
  position: sticky;
  top: calc(var(--header-h) + 24px + (var(--card-index) * 10px));
  min-height: min(72svh, 650px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    #090909;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
  contain: layout paint;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: 0.5;
  mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.9), transparent 70%);
}

.process-card-copy,
.process-card-visual {
  position: relative;
  z-index: 1;
}

.process-card h3 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.process-card p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.process-card-visual {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.16), transparent 10rem),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.process-card-number {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(3.6rem, 8vw, 7.5rem);
  font-weight: 850;
  line-height: 0.86;
}

.process-card-image-wrap {
  position: relative;
  min-height: 150px;
  flex: 1 1 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #070707;
  overflow: hidden;
}

.process-card-image-wrap::before,
.process-card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.process-card-image-wrap::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.24;
}

.process-card-image-wrap::after {
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.16), transparent 11rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
}

.process-card-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  opacity: 0.74;
  filter: grayscale(1) blur(1.3px) contrast(0.82) brightness(0.72);
  transform: scale(1.025) translate3d(0, 0, 0);
}

.process-card-lines {
  display: grid;
  gap: 9px;
}

.process-card-lines span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.process-card-lines span:nth-child(1) {
  width: 72%;
}

.process-card-lines span:nth-child(2) {
  width: 48%;
}

.process-card-lines span:nth-child(3) {
  width: 84%;
}

.process-intro {
  max-width: 760px;
}

.process-intro p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.work-grid {
  align-items: stretch;
}

.work-carousel {
  position: relative;
}

.work-scroller {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-inline: contain;
  overscroll-behavior-y: auto;
  padding: 6px 0 14px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.work-scroller::-webkit-scrollbar {
  display: none;
}

.work-scroller .work-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
}

.work-scroll-button {
  position: absolute;
  top: 43%;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.74);
  color: var(--ink);
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.work-scroll-prev {
  left: -22px;
}

.work-scroll-next {
  right: -22px;
}

.work-scroll-button:hover,
.work-scroll-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
  transform: translateY(-50%) scale(1.04);
}

.work-scroll-button:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.54);
  outline-offset: 4px;
}

.work-scroll-button:disabled {
  opacity: 0.28;
  cursor: default;
  box-shadow: none;
  transform: translateY(-50%);
}

.work-scrollbar {
  position: relative;
  height: 6px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.work-scrollbar span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 28%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.92));
  transition:
    left 120ms ease,
    width 120ms ease;
}

.work-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 440px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
  contain: layout paint;
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.work-card:hover,
.work-card:focus-visible {
  border-color: color-mix(in srgb, var(--accent), white 24%);
  transform: translate3d(0, -1px, 0);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent), white 18%);
}

.work-card::after {
  display: none;
}

.work-card:hover::after,
.work-card:focus-visible::after {
  opacity: 1;
}

.work-visual {
  position: relative;
  display: block;
  aspect-ratio: 1.04;
  border-radius: 6px;
  overflow: hidden;
  background: #090909;
}

.work-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  image-orientation: from-image;
  transform: scale(1.01) translate3d(0, 0, 0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-visual img,
.work-card:focus-visible .work-visual img {
  transform: scale(1.035) translate3d(0, 0, 0);
}

.work-visual::before,
.work-visual::after {
  content: "";
  position: absolute;
  inset: -20%;
  mix-blend-mode: screen;
}

.work-meta {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 780;
  text-transform: uppercase;
}

.work-card strong {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  line-height: 1.12;
}

.work-card span:last-child {
  position: relative;
  z-index: 1;
  font-size: 0.98rem;
}

.work-project-card {
  align-content: start;
}

.work-project-card[data-work-link] {
  cursor: pointer;
}

.work-project-card[data-work-link]:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.7);
  outline-offset: 5px;
}

.work-count {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.work-credit {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 650;
}

.work-credit a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.26);
  text-underline-offset: 3px;
}

.work-credit a:hover,
.work-credit a:focus-visible {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--line);
}

.contact-copy {
  max-width: 760px;
}

.contact-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.contact-item,
.company-details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-item {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-item:hover,
.contact-item:focus-within {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.1);
}

.contact-item span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item small,
.company-list dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
}

.contact-item a {
  overflow-wrap: anywhere;
  font-weight: 760;
}

.copy-button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 760;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.copy-button:hover,
.copy-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.copy-button:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.54);
  outline-offset: 3px;
}

.copy-button.is-copied {
  background: var(--ink);
  color: var(--bg);
}

.company-details {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.company-details .eyebrow {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.company-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.company-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
}

.company-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.company-link {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.company-link::after {
  content: " ↗";
}

.company-link:hover,
.company-link:focus-visible {
  color: var(--ink);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.34);
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 40px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-links a,
.site-footer > a {
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.site-footer > a:hover,
.site-footer > a:focus-visible {
  color: var(--ink);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.34);
}

.brand-assets-hero {
  padding-top: 154px;
  padding-bottom: 42px;
}

.brand-assets-section {
  padding-bottom: 120px;
}

.logo-assets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.logo-download-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  align-items: center;
  gap: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 54px 54px;
}

.logo-asset-card {
  grid-template-columns: 1fr;
  gap: 20px;
}

.logo-preview-panel {
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 42%),
    #000;
  overflow: hidden;
}

.logo-asset-card .logo-preview-panel {
  min-height: 340px;
}

.logo-preview-panel img {
  width: min(100%, 520px);
  filter:
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.2))
    drop-shadow(0 0 86px rgba(255, 255, 255, 0.12));
}

.logo-download-copy {
  display: grid;
  gap: 14px;
}

.logo-download-copy h2,
.logo-download-copy p {
  margin: 0;
}

.logo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.case-hero {
  min-height: 72svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 42px;
  padding-top: var(--header-h);
}

.case-lead {
  max-width: 680px;
  font-size: 1.12rem;
}

.case-stage {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.18), transparent 15%),
    linear-gradient(54deg, transparent 28%, rgba(255, 255, 255, 0.28) 44%, transparent 58%),
    linear-gradient(124deg, transparent 24%, rgba(255, 255, 255, 0.16) 41%, transparent 55%),
    #080808;
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.case-stage-dynamic {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.18), transparent 15%),
    var(--case-image);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
  gap: 40px;
  padding: 82px 0 120px;
}

.case-body {
  display: grid;
  gap: 28px;
}

.case-body article {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.case-facts {
  align-self: start;
  position: sticky;
  top: 94px;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.case-facts li {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.case-facts li:last-child {
  border-bottom: 0;
}

.case-facts strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.case-credit {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  font-weight: 650;
}

.case-credit a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 4px;
}

.case-credit a:hover,
.case-credit a:focus-visible {
  text-decoration-color: currentColor;
}

.case-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto 70px;
}

.case-gallery {
  padding-bottom: 110px;
}

.case-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-gallery-grid img,
.case-video,
.case-video-block {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #070707;
}

.case-gallery-grid img {
  aspect-ratio: 1.22;
  object-fit: cover;
  image-orientation: from-image;
  filter: saturate(0.88) contrast(1.04);
  cursor: zoom-in;
}

.case-video-block {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.case-video-block .case-credit {
  margin: 0;
  padding: 0 14px 14px;
}

.case-video-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  width: 100%;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62)),
    var(--video-poster) center / cover;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.case-video-poster::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  filter: drop-shadow(0 0 34px rgba(255, 255, 255, 0.28));
}

.case-video-poster::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid rgba(255, 255, 255, 0.92);
  transform: translateX(4px);
}

.case-video-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.58);
  font-size: 0.82rem;
  font-weight: 780;
  text-transform: uppercase;
}

.case-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 620px;
  border: 0;
  border-radius: 0;
}

.case-youtube {
  height: auto;
  min-height: 420px;
}

.case-video-block.is-short {
  width: min(100%, 520px);
  justify-self: center;
}

.case-video-block.is-short .case-video-poster,
.case-video-block.is-short .case-youtube {
  aspect-ratio: 9 / 16;
  min-height: min(680px, 76vh);
}

.all-work-hero {
  padding-top: 154px;
  padding-bottom: 42px;
}

.all-work-section {
  padding-bottom: 120px;
}

.all-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.94);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1400px);
  max-height: 92svh;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.72);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.case-hero .reveal {
  opacity: 1;
  transform: none;
}

html.motion-off *,
html.motion-off *::before,
html.motion-off *::after {
  animation-duration: 1ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 1ms !important;
}

html.motion-off body {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.05), transparent 28rem),
    radial-gradient(circle at 88% 42%, rgba(255, 255, 255, 0.035), transparent 28rem),
    var(--bg);
}

html.motion-off #light-canvas,
html.motion-off .cursor-glow {
  display: none;
}

html.motion-off .site-header.is-scrolled {
  backdrop-filter: none;
}

html.motion-off .reveal {
  opacity: 1;
  transform: none;
}

html.motion-off .ticker-track {
  animation: none;
  transform: none;
}

html.motion-off .hero-logo-stage::after {
  display: none;
}

html.motion-off .hero-watermark,
html.motion-off .work-card:hover,
html.motion-off .work-card:focus-visible,
html.motion-off .button:hover,
html.motion-off .button:focus-visible {
  transform: none;
}

html.motion-off .work-card:hover .work-visual img,
html.motion-off .work-card:focus-visible .work-visual img {
  transform: scale(1.01);
}

@keyframes sweep {
  from {
    transform: translateX(-7%) rotate(-2deg);
  }
  to {
    transform: translateX(7%) rotate(3deg);
  }
}

@keyframes pulseLevel {
  0%,
  100% {
    opacity: 0.78;
  }
  50% {
    opacity: 1;
  }
}

@keyframes logoGlow {
  0%,
  100% {
    filter:
      drop-shadow(0 0 24px rgba(255, 255, 255, 0.2))
      drop-shadow(0 0 70px rgba(255, 255, 255, 0.14));
  }

  50% {
    filter:
      drop-shadow(0 0 36px rgba(255, 255, 255, 0.34))
      drop-shadow(0 0 104px rgba(255, 255, 255, 0.22));
  }
}

.proposal-main {
  overflow: hidden;
}

.proposal-hero {
  min-height: 68svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 48px;
  align-items: end;
  padding-top: calc(var(--header-h) + 92px);
  padding-bottom: 72px;
}

.proposal-hero h1 {
  max-width: 980px;
  font-size: 4.35rem;
}

.proposal-facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.proposal-facts div {
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.proposal-facts dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.proposal-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 760;
}

.proposal-viewer-section {
  position: relative;
  width: min(100% - 56px, 1120px);
  margin: 0 auto 112px;
}

.proposal-model-intro {
  margin-bottom: 24px;
}

.proposal-viewer {
  position: relative;
  height: min(620px, 62svh);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.12), transparent 26rem),
    #050505;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  isolation: isolate;
}

.proposal-viewer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

.proposal-canvas-host,
.proposal-canvas-host canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.proposal-canvas-host canvas {
  display: block;
  touch-action: pan-y;
}

.viewer-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(100% - 40px, 520px);
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.8);
  transition:
    opacity 240ms ease,
    visibility 240ms ease;
}

.viewer-loading.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.viewer-loading h2 {
  font-size: 2rem;
}

.viewer-load-copy {
  max-width: 560px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.55;
}

.viewer-load-button {
  min-height: 48px;
  margin-top: 24px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 820;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.viewer-load-button:hover,
.viewer-load-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.2);
}

.viewer-load-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.viewer-topbar {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.viewer-topbar strong {
  color: var(--ink);
}

.viewer-controls {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(100% - 40px, 760px);
  transform: translateX(-50%);
  pointer-events: auto;
}

.viewer-controls[hidden] {
  display: none;
}

.viewer-controls button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(10, 10, 10, 0.68);
  color: rgba(255, 255, 255, 0.74);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 780;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.viewer-controls button:hover,
.viewer-controls button:focus-visible,
.viewer-controls button.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.proposal-renders {
  padding: 104px 0 78px;
}

.proposal-render-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.proposal-render-grid figure {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.proposal-render-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.proposal-render-grid figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes slowPan {
  from {
    translate: -6% 0;
  }
  to {
    translate: 6% 0;
  }
}

@media (min-width: 1800px) {
  .hero.section-band {
    padding-left: max(32px, calc((100vw - var(--wide)) / 2 + 32px));
    padding-right: max(32px, calc((100vw - var(--wide)) / 2 + 32px));
  }

  .hero-logo-stage {
    right: max(32px, calc((100vw - var(--wide)) / 2 + 32px));
    width: clamp(610px, 18vw, 680px);
  }

  .scroll-story {
    grid-template-columns: minmax(560px, 0.92fr) minmax(520px, 0.86fr);
    width: min(100% - 80px, var(--wide));
  }

  .process-sticky {
    height: clamp(560px, 62svh, 760px);
    min-height: 0;
  }

  .story-panel {
    min-height: clamp(420px, 46vh, 620px);
  }

  .process-cards-section {
    width: min(100% - 80px, var(--wide));
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
  }

  .hero,
  .case-hero,
  .contact-section,
  .scroll-story,
  .case-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .proposal-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .proposal-hero h1 {
    font-size: 3.35rem;
  }

  .proposal-viewer {
    height: 520px;
    min-height: 400px;
  }

  .proposal-render-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-stage {
    right: -4%;
    width: min(64%, 480px);
  }

  .hero-watermark {
    opacity: 0.48;
  }

  .service-grid,
  .all-work-grid,
  .case-gallery-grid,
  .logo-download-card {
    grid-template-columns: 1fr;
  }

  .work-intro {
    align-items: start;
    flex-direction: column;
  }

  .work-scroller .work-card {
    flex-basis: min(82vw, 420px);
  }

  .logo-assets-grid {
    grid-template-columns: 1fr;
  }

  .scroll-story {
    padding-top: 64px;
  }

  .process-sticky,
  .case-facts {
    position: relative;
    top: auto;
  }

  .process-sticky {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .process-rail {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: none;
  }

  .process-rail::-webkit-scrollbar {
    display: none;
  }

  .process-rail::before,
  .process-rail button::before {
    display: none;
  }

  .process-rail button {
    flex: 0 0 auto;
    grid-template-columns: auto auto;
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
  }

  .process-rail button:hover,
  .process-rail button:focus-visible,
  .process-rail button.is-active {
    transform: translateY(-2px);
  }

  .story-visual {
    height: 460px;
    min-height: 460px;
  }

  .story-copy {
    padding: 0;
    gap: 36px;
  }

  .story-panel {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 66px;
  }

  .cursor-glow {
    display: none;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
  }

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

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav a {
    padding: 4px 0;
    font-size: 0.88rem;
  }

  .section-band,
  .scroll-story,
  .process-cards-section,
  .site-footer,
  .case-nav {
    width: min(100% - 28px, var(--max));
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    padding-top: 132px;
    padding-bottom: 64px;
  }

  .case-hero {
    padding-top: 136px;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 1.86rem;
  }

  .proposal-hero {
    gap: 22px;
    padding-top: 136px;
    padding-bottom: 56px;
  }

  .proposal-hero h1 {
    font-size: 2.45rem;
    line-height: 0.98;
  }

  .proposal-facts div {
    min-height: auto;
  }

  .proposal-viewer-section {
    width: min(100% - 28px, var(--wide));
    margin-bottom: 78px;
  }

  .proposal-viewer {
    height: 430px;
    min-height: 0;
  }

  .viewer-topbar {
    left: 14px;
    right: 14px;
    top: 14px;
    flex-direction: column;
    gap: 4px;
  }

  .viewer-controls {
    bottom: 14px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: calc(100% - 28px);
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .viewer-controls::-webkit-scrollbar {
    display: none;
  }

  .viewer-controls button {
    flex: 0 0 auto;
    min-height: 40px;
  }

  .proposal-renders {
    padding: 78px 0;
  }

  .lead,
  .case-lead {
    font-size: 1rem;
  }

  .story-visual,
  .case-stage {
    min-height: 200px;
  }

  .story-visual {
    height: 340px;
    min-height: 340px;
  }

  .process-stage {
    inset: 12px;
  }

  .process-topline {
    left: 14px;
    right: 14px;
  }

  .process-step {
    inset: 56px 14px 48px;
  }

  .brief-card {
    width: 42%;
    padding: 14px;
  }

  .brief-card span {
    font-size: 0.6rem;
  }

  .sheet-total {
    display: none;
  }

  .process-rail button {
    min-width: 108px;
  }

  .fixture {
    width: 38px;
    height: 34px;
  }

  .hero-copy {
    order: 1;
    max-width: none;
  }

  .hero-logo-stage {
    position: relative;
    order: 0;
    top: auto;
    right: auto;
    align-self: center;
    width: min(78vw, 300px);
    margin: 0 auto 2px;
    transform: none;
  }

  .hero-watermark {
    opacity: 0.7;
  }

  .process-sticky {
    display: none;
  }

  .process-cards-section {
    padding: 72px 0 84px;
  }

  .process-card-stack {
    gap: 14px;
    margin-top: 26px;
  }

  .process-card {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
    border-radius: 10px;
  }

  .process-card h3 {
    font-size: 2rem;
  }

  .process-card-visual {
    min-height: 190px;
    order: -1;
  }

  .process-card-image-wrap {
    min-height: 120px;
  }

  .process-intro {
    margin-bottom: 20px;
  }

  .story-copy {
    gap: 14px;
  }

  .story-panel {
    display: block;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  }

  .story-panel p:last-child {
    max-width: none;
    font-size: 0.98rem;
  }

  .services,
  .work-section,
  .contact-section {
    padding: 78px 0;
  }

  .service-item,
  .work-card {
    min-height: auto;
  }

  .work-scroller .work-card {
    flex-basis: 86vw;
  }

  .work-scroll-button {
    display: none;
  }

  .contact-item {
    grid-template-columns: 1fr;
  }

  .copy-button {
    justify-self: start;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .logo-preview-panel {
    min-height: 300px;
    padding: 24px;
  }

  .logo-actions {
    flex-direction: column;
  }

  .case-nav {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .cursor-glow {
    display: none;
  }
}
