:root {
  --bg: #050505;
  --bg-soft: #0a0a0d;
  --ink: #f4f0ea;
  --muted: #a8a29a;
  --line: rgba(244, 240, 234, 0.16);
  --line-strong: rgba(244, 240, 234, 0.32);
  --violet: #6f36ff;
  --violet-deep: #3611a5;
  --orange: #ff4b26;
  --area-branding: #f19f39;
  --area-web: #57a6f7;
  --area-ui: #9a48f6;
  --area-motion: #e467e5;
  --area-ai: #12f79b;
  --area-growth: #f62541;
  --area-apparel: #ff4b26;
  --area: var(--area-ui);
  --area-rgb: 154, 72, 246;
  --panel: rgba(10, 10, 13, 0.78);
  --max: 1180px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.area-branding {
  --area: var(--area-branding);
  --area-rgb: 241, 159, 57;
}

.area-web {
  --area: var(--area-web);
  --area-rgb: 87, 166, 247;
}

.area-ui {
  --area: var(--area-ui);
  --area-rgb: 154, 72, 246;
}

.area-motion {
  --area: var(--area-motion);
  --area-rgb: 228, 103, 229;
}

.area-ai {
  --area: var(--area-ai);
  --area-rgb: 18, 247, 155;
}

.area-growth {
  --area: var(--area-growth);
  --area-rgb: 246, 37, 65;
}

.area-apparel {
  --area: var(--area-apparel);
  --area-rgb: 255, 75, 38;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(244, 240, 234, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 234, 0.055) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.48;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.12), #050505 84%);
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--area-branding), var(--area-ui), var(--area-apparel), var(--area-ai));
  transform-origin: left;
}

.cursor-follower {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(var(--cursor-rgb, 111, 54, 255), 0.9);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.8);
  transition: opacity 180ms ease, width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease;
  mix-blend-mode: screen;
}

.cursor-follower.active {
  opacity: 1;
}

.cursor-follower.hovering {
  width: 58px;
  height: 58px;
  background: rgba(var(--cursor-rgb, 111, 54, 255), 0.08);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(18px);
  transition: min-height 260ms var(--ease-out), background 260ms var(--ease-out), border-color 260ms var(--ease-out);
}

.site-header.scrolled {
  min-height: 66px;
  border-color: rgba(244, 240, 234, 0.24);
  background: rgba(5, 5, 5, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
}

.brand-mark {
  width: 44px;
  height: 28px;
  object-fit: contain;
  transition: width 260ms var(--ease-out), height 260ms var(--ease-out);
}

.site-header.scrolled .brand-mark {
  width: 38px;
  height: 24px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.site-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.site-footer a:hover {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle,
.menu-toggle {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.language-toggle {
  min-width: 44px;
  height: 38px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 38px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-130%) skewX(-18deg);
  transition: transform 720ms var(--ease-out);
}

.button:hover::before {
  transform: translateX(130%) skewX(-18deg);
}

.button::after {
  content: "↗";
  font-size: 16px;
  z-index: 1;
}

.button > *,
.button {
  z-index: 1;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 240, 234, 0.64);
}

.button-primary {
  border-color: transparent;
  background: var(--violet);
}

.button-primary:hover {
  background: var(--orange);
}

.button-ghost {
  background: rgba(5, 5, 5, 0.44);
}

.button.small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 940px;
  padding: 156px 52px 64px 140px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.92) 26%, rgba(5, 5, 5, 0.58) 56%, #050505 100%),
    url("assets/hero-silhouette.png") 72% 34% / cover no-repeat;
  opacity: 0.96;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  transform-origin: center top;
  will-change: transform;
}

.side-rail {
  position: absolute;
  left: 0;
  top: 76px;
  bottom: 0;
  display: grid;
  width: 92px;
  border-right: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.34);
}

.side-rail span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid var(--area);
  color: var(--area);
  font-size: 12px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-inner {
  width: min(650px, 100%);
  align-self: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.accent-dot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.accent-dot::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--orange);
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-weight: 800;
  line-height: 0.92;
}

.hero h1 {
  max-width: 760px;
  font-size: 96px;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 86px;
  font-weight: 400;
  font-style: italic;
}

.hero-copy {
  max-width: 530px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 50px;
}

.proof-strip span,
.tool-row span {
  padding: 11px 14px;
  border: 1px solid rgba(var(--area-rgb), 0.45);
  background: rgba(var(--area-rgb), 0.07);
  color: var(--area);
  font-size: 13px;
}

.hero-panel {
  position: absolute;
  right: 52px;
  bottom: 70px;
  width: 310px;
  border: 1px solid var(--line);
  background: var(--panel);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.hero-panel p {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.hero-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  box-shadow: inset 3px 0 0 var(--area);
}

.hero-panel li:last-child {
  border-bottom: 0;
}

.hero-panel span {
  color: var(--area);
}

.hero-panel b {
  font-size: 14px;
  text-align: right;
}

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050505;
  color: var(--ink);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee span {
  padding: 14px 26px;
  color: var(--area);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}

.split-heading,
.packages-head,
.work-head,
.about-section,
.uniforms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 64px;
  align-items: start;
}

.section h2,
.contact-section h2 {
  font-size: 64px;
}

.split-heading p,
.packages-head p,
.about-section p,
.contact-copy p,
.project-detail p,
.uniforms-copy p,
.uniform-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.project-link {
  width: fit-content;
  margin-top: 28px;
}

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

.service-list article {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(var(--area-rgb), 0.18);
  cursor: pointer;
  transition: padding-left 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-list article:hover,
.service-list article:focus-visible,
.service-list article.active {
  padding-left: 18px;
  background: rgba(var(--area-rgb), 0.055);
  border-color: rgba(var(--area-rgb), 0.5);
  outline: none;
}

.service-list span,
.package-card span,
.process-list span,
.work-card span {
  color: var(--area);
  font-weight: 800;
}

.service-list article h3,
.package-card h3,
.process-list strong {
  color: var(--area);
}

.service-list h3,
.package-card h3,
.project-detail h3 {
  margin: 0;
  font-size: 28px;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-focus {
  display: grid;
  grid-template-columns: 180px minmax(0, 0.8fr) minmax(220px, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(var(--area-rgb), 0.32);
  background:
    linear-gradient(90deg, rgba(var(--area-rgb), 0.12), rgba(255, 255, 255, 0.015) 44%),
    rgba(255, 255, 255, 0.02);
}

.service-focus span {
  color: var(--area);
  font-weight: 800;
  text-transform: uppercase;
}

.service-focus h3 {
  margin: 0;
  font-size: 25px;
}

.service-focus p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.uniforms-section {
  position: relative;
}

.motion-reel-section {
  position: relative;
}

.motion-reel-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}

.motion-copy h2 {
  max-width: 760px;
}

.motion-copy > p:last-of-type {
  max-width: 620px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.motion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.motion-preview,
.reel-player {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(var(--area-rgb), 0.38);
  background:
    linear-gradient(135deg, rgba(var(--area-rgb), 0.14), rgba(255, 255, 255, 0.016)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.motion-preview {
  aspect-ratio: 16 / 9;
}

.motion-preview video,
.reel-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
}

.motion-preview::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.78));
  pointer-events: none;
}

.motion-preview span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--area);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.motion-projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.motion-piece-card {
  display: grid;
  min-height: 170px;
  padding: 22px;
  align-content: space-between;
  border: 1px solid rgba(var(--area-rgb), 0.28);
  background:
    linear-gradient(135deg, rgba(var(--area-rgb), 0.12), transparent 58%),
    rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.motion-piece-card:hover,
.motion-piece-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(var(--area-rgb), 0.72);
  background:
    linear-gradient(135deg, rgba(var(--area-rgb), 0.22), transparent 62%),
    rgba(255, 255, 255, 0.04);
}

.motion-piece-card span,
.motion-piece-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.motion-piece-card span {
  color: var(--area);
  font-weight: 800;
  text-transform: uppercase;
}

.motion-piece-card strong {
  color: var(--area);
  font-size: 25px;
  line-height: 1;
}

.motion-capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.motion-capabilities article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(var(--area-rgb), 0.28);
  background:
    linear-gradient(180deg, rgba(var(--area-rgb), 0.08), rgba(255, 255, 255, 0.012) 55%),
    rgba(255, 255, 255, 0.02);
}

.motion-capabilities span {
  color: var(--area);
  font-weight: 800;
}

.motion-capabilities h3 {
  margin: 58px 0 12px;
  color: var(--area);
  font-size: 26px;
}

.motion-capabilities p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.reel-player {
  aspect-ratio: 16 / 9;
}

.custom-video video {
  cursor: pointer;
}

.video-hit-area {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-center-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(var(--area-rgb), 0.62);
  background:
    linear-gradient(135deg, rgba(var(--area-rgb), 0.22), rgba(255, 255, 255, 0.04)),
    rgba(5, 5, 5, 0.78);
  border-radius: 50%;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 220ms ease, transform 220ms var(--ease-out), border-color 220ms ease;
  pointer-events: none;
  backdrop-filter: blur(14px);
}

.custom-video.is-playing .video-center-mark {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
}

.video-play-shape {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--ink);
}

.video-pause-shape {
  display: none;
  width: 14px;
  height: 18px;
  border-left: 5px solid var(--ink);
  border-right: 5px solid var(--ink);
}

.video-controls {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(var(--area-rgb), 0.38);
  background:
    linear-gradient(90deg, rgba(var(--area-rgb), 0.16), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.video-control-button {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(var(--area-rgb), 0.42);
  background: rgba(var(--area-rgb), 0.12);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.video-control-button:hover,
.video-control-button:focus-visible {
  border-color: var(--area);
  background: rgba(var(--area-rgb), 0.2);
  outline: none;
  transform: translateY(-1px);
}

.custom-video.is-playing .video-play-button .video-play-shape {
  display: none;
}

.custom-video.is-playing .video-play-button .video-pause-shape {
  display: block;
}

.video-progress-shell {
  position: relative;
  z-index: 4;
  display: grid;
  align-items: center;
  min-height: 44px;
}

.video-progress {
  width: 100%;
  height: 5px;
  margin: 0;
  appearance: none;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--area) var(--progress, 0%), rgba(244, 240, 234, 0.18) var(--progress, 0%));
  cursor: pointer;
}

.video-progress:focus-visible {
  outline: 1px solid var(--area);
  outline-offset: 8px;
}

.video-progress::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  appearance: none;
  border: 2px solid var(--ink);
  background: var(--area);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(var(--area-rgb), 0.12);
}

.video-progress::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 2px solid var(--ink);
  background: var(--area);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(var(--area-rgb), 0.12);
}

.video-time {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 108px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.video-time time:first-child {
  color: var(--ink);
}

.video-volume-shape {
  position: relative;
  display: block;
  width: 26px;
  height: 22px;
}

.video-volume-shape::before {
  position: absolute;
  left: 1px;
  top: 7px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--ink);
  border-radius: 1px;
}

.video-volume-shape::after {
  position: absolute;
  left: 8px;
  top: 3px;
  width: 10px;
  height: 16px;
  content: "";
  background: var(--ink);
  clip-path: polygon(0 36%, 100% 0, 100% 100%, 0 64%);
}

.video-volume-shape > span,
.video-volume-shape > span::after {
  position: absolute;
  display: block;
  content: "";
  border: 2px solid var(--ink);
  border-left: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0 999px 999px 0;
}

.video-volume-shape > span {
  left: 18px;
  top: 6px;
  width: 5px;
  height: 10px;
}

.video-volume-shape > span::after {
  left: 4px;
  top: -6px;
  width: 8px;
  height: 18px;
}

.custom-video.is-muted .video-volume-shape > span {
  display: none;
}

.custom-video.is-muted .video-volume-shape::before,
.custom-video.is-muted .video-volume-shape::after {
  opacity: 0.72;
}

.custom-video.is-muted .video-mute-button::after {
  position: absolute;
  left: 13px;
  top: 21px;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--ink);
  border-radius: 999px;
  transform: rotate(-42deg);
}

.uniforms-layout {
  align-items: center;
}

.uniforms-copy h2 {
  max-width: 760px;
}

.uniforms-copy > p:last-of-type {
  max-width: 620px;
  margin-top: 28px;
}

.uniform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.uniform-showcase {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--area-rgb), 0.36);
  background: rgba(var(--area-rgb), 0.06);
}

.uniform-showcase::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.7));
  pointer-events: none;
}

.uniform-showcase img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  will-change: transform;
}

.uniform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.uniform-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(var(--area-rgb), 0.28);
  background:
    linear-gradient(180deg, rgba(var(--area-rgb), 0.08), rgba(255, 255, 255, 0.012) 55%),
    rgba(255, 255, 255, 0.02);
}

.uniform-card span {
  color: var(--area);
  font-weight: 800;
}

.uniform-card h3 {
  margin: 58px 0 12px;
  color: var(--area);
  font-size: 26px;
}

.work-head {
  align-items: end;
}

.work-head a {
  justify-self: end;
  color: var(--violet);
  font-weight: 800;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.work-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(var(--area-rgb), 0.24);
  background:
    linear-gradient(180deg, rgba(var(--area-rgb), 0.08), rgba(255, 255, 255, 0.015) 36%),
    rgba(255, 255, 255, 0.02);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
  transform-style: preserve-3d;
}

.work-card:hover,
.work-card.active {
  border-color: var(--area);
  background:
    linear-gradient(180deg, rgba(var(--area-rgb), 0.16), rgba(255, 255, 255, 0.02) 45%),
    rgba(255, 255, 255, 0.025);
  transform: translateY(-3px);
}

.work-card strong,
.work-card small,
.work-card b {
  display: block;
}

.work-card strong {
  margin-top: 82px;
  font-size: 24px;
}

.work-card small {
  margin-top: 8px;
  color: var(--muted);
}

.work-card b {
  margin-top: 28px;
  color: var(--area);
  font-size: 28px;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 44px;
  margin-top: 18px;
  padding: 32px;
  border: 1px solid rgba(var(--area-rgb), 0.3);
  background:
    linear-gradient(90deg, rgba(var(--area-rgb), 0.08), rgba(255, 255, 255, 0.02) 42%),
    rgba(255, 255, 255, 0.025);
}

.project-detail dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.project-detail div div,
.project-detail dl div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.project-detail dt {
  margin-bottom: 6px;
  color: var(--area);
  font-weight: 800;
  text-transform: uppercase;
}

.project-detail dd {
  margin: 0;
  color: var(--muted);
}

.brand-case-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: end;
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(var(--area-rgb), 0.3);
  background:
    linear-gradient(110deg, rgba(var(--area-rgb), 0.1), rgba(255, 255, 255, 0.018) 58%),
    rgba(255, 255, 255, 0.02);
}

.brand-case-strip h3 {
  max-width: 620px;
  margin: 0;
  font-size: 34px;
  line-height: 1.04;
}

.brand-case-strip p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.brand-case-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.brand-case-links a {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(var(--area-rgb), 0.28);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.brand-case-links a:hover {
  border-color: var(--area);
  background: rgba(var(--area-rgb), 0.08);
  transform: translateY(-2px);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.package-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(var(--area-rgb), 0.28);
  background:
    linear-gradient(180deg, rgba(var(--area-rgb), 0.08), rgba(255, 255, 255, 0.016) 42%),
    rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.package-card.featured {
  border-color: var(--area);
  background:
    linear-gradient(180deg, rgba(var(--area-rgb), 0.18), rgba(255, 255, 255, 0.025) 48%),
    rgba(255, 255, 255, 0.02);
}

.package-card:hover,
.package-card:focus-visible,
.package-card.selected {
  border-color: var(--area);
  outline: none;
  transform: translateY(-4px);
}

.package-card.selected {
  box-shadow: inset 0 -4px 0 var(--area);
}

.package-card h3 {
  margin-top: 54px;
}

.package-card p {
  color: var(--muted);
  line-height: 1.55;
}

.package-card ul {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.package-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 56px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  box-shadow: inset 0 3px 0 var(--area);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list strong {
  display: block;
  margin-top: 54px;
  font-size: 22px;
}

.process-list p {
  color: var(--muted);
  line-height: 1.55;
}

.about-section {
  align-items: center;
}

.portrait-frame {
  min-height: 520px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.15), rgba(5, 5, 5, 0.62)),
    url("assets/about-portrait.jpg") center / cover no-repeat;
  filter: grayscale(1) contrast(1.08);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  align-items: center;
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  padding: 118px 0;
}

.contact-section::before {
  position: absolute;
  inset: 36px auto 36px 50%;
  width: 1px;
  content: "";
  background: var(--line);
}

.contact-copy h2 {
  max-width: 680px;
}

.contact-copy p:last-child {
  max-width: 560px;
  margin-top: 28px;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-actions p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.case-page {
  min-height: 100vh;
}

.case-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: 64px;
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  padding: 156px 0 84px;
  border-bottom: 1px solid var(--line);
}

.case-hero::before {
  position: absolute;
  inset: 112px -36px auto auto;
  width: 40%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--area));
}

.case-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 92px;
  line-height: 0.92;
}

.case-hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.case-meta {
  align-self: end;
  border: 1px solid rgba(var(--area-rgb), 0.35);
  background: rgba(var(--area-rgb), 0.06);
}

.case-meta dl {
  margin: 0;
}

.case-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.case-meta div:last-child {
  border-bottom: 0;
}

.case-meta dt {
  color: var(--area);
  font-weight: 800;
  text-transform: uppercase;
}

.case-meta dd {
  margin: 0;
  color: var(--ink);
}

.case-section {
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 58px;
}

.case-grid h2,
.case-section h2 {
  margin: 0;
  font-size: 52px;
  line-height: 0.98;
}

.case-grid p,
.case-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.case-visual {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(var(--area-rgb), 0.32);
  background:
    linear-gradient(135deg, rgba(var(--area-rgb), 0.1), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.case-visual > svg {
  width: 100% !important;
  height: 100% !important;
}

.case-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  will-change: transform;
}

.case-visual-contain {
  display: grid;
  place-items: center;
  padding: 18px;
}

.case-visual-contain img {
  height: auto;
  object-fit: contain;
  transform: none;
}

.case-visual-tall img {
  object-position: center top;
}

.case-panels,
.project-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.case-panel,
.project-index-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(var(--area-rgb), 0.28);
  background:
    linear-gradient(180deg, rgba(var(--area-rgb), 0.08), rgba(255, 255, 255, 0.012) 55%),
    rgba(255, 255, 255, 0.02);
}

.case-panel span,
.project-index-card span {
  color: var(--area);
  font-weight: 800;
}

.case-panel h3,
.project-index-card h2 {
  margin: 42px 0 12px;
  font-size: 25px;
}

.case-panel p,
.project-index-card p {
  margin: 0;
}

.content-model {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 42px;
  padding: 0;
  list-style: none;
}

.content-model li {
  padding: 20px;
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.content-model strong {
  display: block;
  margin-bottom: 8px;
  color: var(--area);
}

.content-model li.is-checked {
  border-color: rgba(var(--area-rgb), 0.48);
  background: rgba(var(--area-rgb), 0.08);
  color: var(--ink);
}

.content-model li.is-checked::after {
  display: block;
  margin-top: 14px;
  color: var(--area);
  content: "Marked for upload";
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-next {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.project-index-card {
  color: var(--ink);
}

.project-index-card:hover {
  border-color: var(--area);
}

.project-library-hero h1 {
  max-width: 950px;
}

.project-browser-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.project-browser-head h2 {
  max-width: 760px;
}

.project-filter-status {
  padding: 12px 14px;
  border: 1px solid rgba(var(--area-rgb), 0.28);
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.project-filter-status strong {
  color: var(--area);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.project-filter {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(var(--area-rgb), 0.28);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.project-filter:hover,
.project-filter:focus-visible,
.project-filter.active {
  border-color: var(--area);
  background: rgba(var(--area-rgb), 0.12);
  color: var(--area);
  transform: translateY(-2px);
}

.project-library-grid {
  align-items: stretch;
}

.project-library-card {
  display: grid;
  min-height: 360px;
  align-content: start;
  text-decoration: none;
}

.project-library-card p {
  margin-bottom: 22px;
}

.project-library-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 24px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.project-library-card li::before {
  color: var(--area);
  content: "+ ";
  font-weight: 900;
}

.project-library-card b {
  align-self: end;
  color: var(--area);
  font-size: 13px;
  text-transform: uppercase;
}

.project-library-card[hidden] {
  display: none;
}

.project-empty {
  display: none;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.project-empty.visible {
  display: block;
}

.project-index-grid-compact {
  grid-template-columns: repeat(5, 1fr);
}

.project-index-grid-compact .project-index-card {
  min-height: 260px;
}

.brief-page {
  min-height: 100vh;
}

.brief-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 58px;
  align-items: end;
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  padding: 156px 0 76px;
  border-bottom: 1px solid var(--line);
}

.brief-hero::before {
  position: absolute;
  inset: 112px -34px auto auto;
  width: 42%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--area));
}

.brief-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(62px, 9vw, 112px);
  line-height: 0.9;
}

.brief-hero-copy > p:last-child {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.brief-signal {
  padding: 26px;
  border: 1px solid rgba(var(--area-rgb), 0.34);
  background:
    linear-gradient(145deg, rgba(var(--area-rgb), 0.15), rgba(255, 255, 255, 0.018) 58%),
    rgba(255, 255, 255, 0.02);
}

.brief-signal > span,
.brief-panel-head > span {
  color: var(--area);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-signal strong {
  display: block;
  margin-top: 44px;
  color: var(--area);
  font-size: 34px;
  line-height: 0.95;
}

.brief-signal p {
  color: var(--muted);
  line-height: 1.6;
}

.brief-signal small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

.brief-signal b {
  color: var(--area);
}

.brief-progress {
  overflow: hidden;
  height: 8px;
  margin-top: 24px;
  border: 1px solid rgba(var(--area-rgb), 0.36);
  background: rgba(255, 255, 255, 0.04);
}

.brief-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--area), rgba(255, 255, 255, 0.82));
  transition: width 280ms var(--ease-out);
}

.brief-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.44fr);
  gap: 24px;
  align-items: start;
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  padding: 42px 0 118px;
}

.brief-form {
  display: grid;
  gap: 18px;
}

.brief-panel,
.brief-summary-panel {
  border: 1px solid rgba(var(--area-rgb), 0.28);
  background:
    linear-gradient(180deg, rgba(var(--area-rgb), 0.07), rgba(255, 255, 255, 0.014) 42%),
    rgba(255, 255, 255, 0.02);
}

.brief-panel {
  padding: 28px;
}

.brief-summary-panel {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.brief-panel-head {
  margin-bottom: 24px;
}

.brief-panel-head h2 {
  margin: 18px 0 0;
  font-size: 38px;
  line-height: 1;
}

.brief-panel-head p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.brief-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.brief-service-option {
  display: grid;
  min-height: 148px;
  padding: 18px;
  align-content: space-between;
  border: 1px solid rgba(var(--area-rgb), 0.28);
  background:
    linear-gradient(135deg, rgba(var(--area-rgb), 0.12), transparent 58%),
    rgba(255, 255, 255, 0.018);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.brief-service-option:hover,
.brief-service-option:focus-visible,
.brief-service-option.active {
  border-color: var(--area);
  background:
    linear-gradient(135deg, rgba(var(--area-rgb), 0.22), transparent 60%),
    rgba(255, 255, 255, 0.03);
  outline: none;
  transform: translateY(-3px);
}

.brief-service-option.active {
  box-shadow: inset 0 -3px 0 var(--area);
}

.brief-service-option span {
  color: var(--area);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-service-option strong {
  max-width: 220px;
  font-size: 19px;
  line-height: 1.12;
}

.brief-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.brief-field {
  display: grid;
  gap: 9px;
  margin: 0;
}

.brief-field.full {
  grid-column: 1 / -1;
}

.brief-field > span,
.brief-field legend {
  color: var(--area);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-field input,
.brief-field select,
.brief-field textarea,
.brief-summary {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.48);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.brief-field input,
.brief-field select {
  min-height: 52px;
  padding: 0 14px;
}

.brief-field textarea,
.brief-summary {
  resize: vertical;
  min-height: 132px;
  padding: 14px;
  line-height: 1.55;
}

.brief-field input:focus,
.brief-field select:focus,
.brief-field textarea:focus,
.brief-summary:focus {
  border-color: var(--area);
  background: rgba(var(--area-rgb), 0.08);
  box-shadow: 0 0 0 3px rgba(var(--area-rgb), 0.11);
}

.brief-field select option {
  background: #111114;
  color: var(--ink);
}

.brief-choice-field {
  padding: 0;
  border: 0;
}

.brief-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.brief-choice {
  position: relative;
  cursor: pointer;
}

.brief-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.brief-choice span {
  display: grid;
  min-height: 48px;
  padding: 13px 14px;
  place-items: center start;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.brief-choice:hover span,
.brief-choice input:focus-visible + span,
.brief-choice input:checked + span {
  border-color: var(--area);
  background: rgba(var(--area-rgb), 0.11);
  color: var(--ink);
  transform: translateY(-1px);
}

.brief-summary {
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(var(--area-rgb), 0.06), transparent 32%),
    rgba(5, 5, 5, 0.58);
  color: var(--ink);
  font-size: 14px;
}

.brief-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.brief-copy-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--area);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-flow-page {
  display: grid;
  min-height: 100vh;
  padding: 118px 0 42px;
}

.brief-flow-shell {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  width: min(var(--max), calc(100% - 72px));
  min-height: calc(100vh - 160px);
  margin: 0 auto;
}

.brief-flow-top {
  display: grid;
  grid-template-columns: minmax(190px, auto) minmax(160px, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.brief-flow-top .eyebrow {
  margin: 0;
}

.brief-flow-top .brief-progress {
  margin: 0;
}

.brief-flow-top > span {
  color: var(--area);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-flow {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.brief-flow-meta {
  display: grid;
  align-content: space-between;
  min-height: 560px;
  padding: 28px;
  border: 1px solid rgba(var(--area-rgb), 0.28);
  background:
    linear-gradient(145deg, rgba(var(--area-rgb), 0.15), rgba(255, 255, 255, 0.018) 58%),
    rgba(255, 255, 255, 0.02);
}

.brief-flow-meta > span,
.brief-step-kicker span,
.brief-step-kicker b {
  color: var(--area);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-flow-meta strong {
  display: block;
  color: var(--area);
  font-size: 34px;
  line-height: 0.95;
}

.brief-flow-meta p,
.brief-flow-meta small,
.brief-step-card > p,
.brief-step-hint {
  color: var(--muted);
  line-height: 1.6;
}

.brief-step-card {
  display: grid;
  min-height: 560px;
  padding: clamp(28px, 5vw, 58px);
  align-content: center;
  border: 1px solid rgba(var(--area-rgb), 0.34);
  background:
    radial-gradient(circle at 85% 10%, rgba(var(--area-rgb), 0.16), transparent 28%),
    linear-gradient(180deg, rgba(var(--area-rgb), 0.08), rgba(255, 255, 255, 0.015) 44%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.brief-step-kicker {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.brief-step-card h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.94;
}

.brief-step-card > p {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 18px;
}

.brief-step-field {
  margin-top: 42px;
}

.brief-step-field > * {
  animation: briefStepIn 360ms var(--ease-out);
}

.brief-flow-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brief-flow-service-grid .brief-service-option {
  min-height: 150px;
}

.brief-flow-service-grid .brief-service-option strong {
  max-width: none;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
}

.brief-flow-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.brief-flow-choice-grid.is-multi {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brief-choice-button {
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.42);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.brief-choice-button:hover,
.brief-choice-button:focus-visible,
.brief-choice-button.active {
  border-color: var(--area);
  background: rgba(var(--area-rgb), 0.13);
  color: var(--area);
  outline: none;
  transform: translateY(-2px);
}

.brief-flow-input-wrap {
  display: block;
}

.brief-flow-input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(var(--area-rgb), 0.46);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  outline: none;
}

textarea.brief-flow-input {
  min-height: 180px;
  resize: vertical;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.25;
}

.brief-flow-input::placeholder {
  color: rgba(244, 240, 234, 0.32);
}

.brief-step-error {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--area);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-step-actions,
.brief-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.brief-step-actions .button[disabled] {
  cursor: not-allowed;
  opacity: 0.35;
  transform: none;
}

.brief-step-actions .button[hidden],
.brief-final-actions[hidden] {
  display: none;
}

.brief-step-hint {
  margin: 18px 0 0;
  font-size: 13px;
  text-transform: uppercase;
}

.brief-final-summary {
  max-height: 360px;
  margin: 0;
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(var(--area-rgb), 0.3);
  background:
    linear-gradient(180deg, rgba(var(--area-rgb), 0.08), transparent 36%),
    rgba(5, 5, 5, 0.58);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.brief-summary-store {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.food-case .case-hero h1 {
  max-width: 900px;
}

.food-case .case-section > .eyebrow + h2 {
  max-width: 920px;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brand-story-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid rgba(var(--area-rgb), 0.28);
  background:
    linear-gradient(180deg, rgba(var(--area-rgb), 0.08), rgba(255, 255, 255, 0.012) 58%),
    rgba(255, 255, 255, 0.02);
}

.brand-story-grid span {
  color: var(--area);
  font-weight: 800;
  text-transform: uppercase;
}

.brand-story-grid p {
  margin: 48px 0 0;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.gallery-item {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--area-rgb), 0.28);
  background:
    linear-gradient(135deg, rgba(var(--area-rgb), 0.1), rgba(255, 255, 255, 0.016)),
    rgba(255, 255, 255, 0.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.gallery-item-contain {
  display: grid;
  place-items: center;
  padding: 12px;
}

.gallery-item-contain img {
  height: auto;
  object-fit: contain;
}

.gallery-item-tall {
  grid-column: span 2;
  min-height: 760px;
}

.gallery-item:only-child {
  grid-column: 1 / -1;
}

.gallery-item-tall img {
  min-height: 760px;
  object-position: center top;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  background: rgba(5, 5, 5, 0.76);
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(14px);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--violet);
}

body.motion-ready .hero .eyebrow,
body.motion-ready .hero h1 > *,
body.motion-ready .hero-copy,
body.motion-ready .hero-actions,
body.motion-ready .proof-strip span {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 780ms var(--ease-out),
    filter 780ms var(--ease-out),
    transform 780ms var(--ease-out);
}

body.motion-ready .hero h1 > :nth-child(1) {
  transition-delay: 90ms;
}

body.motion-ready .hero h1 > :nth-child(2) {
  transition-delay: 180ms;
}

body.motion-ready .hero h1 > :nth-child(3) {
  transition-delay: 270ms;
}

body.motion-ready .hero-copy {
  transition-delay: 360ms;
}

body.motion-ready .hero-actions {
  transition-delay: 450ms;
}

body.motion-ready .proof-strip span {
  transition-delay: calc(560ms + var(--hero-stagger, 0ms));
}

.proof-strip span:nth-child(1),
.hero-panel li:nth-child(1),
.side-rail span:nth-child(1) {
  --hero-stagger: 0ms;
}

.proof-strip span:nth-child(2),
.hero-panel li:nth-child(2),
.side-rail span:nth-child(2) {
  --hero-stagger: 70ms;
}

.proof-strip span:nth-child(3),
.hero-panel li:nth-child(3),
.side-rail span:nth-child(3) {
  --hero-stagger: 140ms;
}

.proof-strip span:nth-child(4),
.hero-panel li:nth-child(4),
.side-rail span:nth-child(4) {
  --hero-stagger: 210ms;
}

.proof-strip span:nth-child(5),
.hero-panel li:nth-child(5),
.side-rail span:nth-child(5) {
  --hero-stagger: 280ms;
}

.proof-strip span:nth-child(6),
.hero-panel li:nth-child(6),
.side-rail span:nth-child(6) {
  --hero-stagger: 350ms;
}

body.motion-ready .side-rail span {
  opacity: 0;
  transform: rotate(180deg) translateY(24px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
  transition-delay: calc(220ms + var(--hero-stagger, 0ms));
}

body.motion-ready .hero-panel {
  opacity: 0;
  transform: translate3d(28px, calc(var(--parallax-y, 0px) + 28px), 0);
  transition: opacity 820ms var(--ease-out), transform 820ms var(--ease-out), border-color 220ms ease;
  transition-delay: 520ms;
}

body.motion-ready .hero-panel li {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
  transition-delay: calc(700ms + var(--hero-stagger, 0ms));
}

body.motion-ready.page-loaded .hero .eyebrow,
body.motion-ready.page-loaded .hero h1 > *,
body.motion-ready.page-loaded .hero-copy,
body.motion-ready.page-loaded .hero-actions,
body.motion-ready.page-loaded .proof-strip span {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.motion-ready.page-loaded .side-rail span {
  opacity: 1;
  transform: rotate(180deg) translateY(0);
}

body.motion-ready.page-loaded .hero-panel {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

body.motion-ready.page-loaded .hero-panel li {
  opacity: 1;
  transform: translateX(0);
}

.scroll-section {
  position: relative;
}

.scroll-section::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--area), rgba(244, 240, 234, 0.18), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease-out);
}

.contact-actions.scroll-section::after,
.contact-copy.scroll-section::after {
  display: none;
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out);
}

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

body.motion-ready .reveal.visible::after {
  transform: scaleX(1);
}

body.motion-ready .scroll-title {
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 32px, 0);
  transition:
    clip-path 900ms var(--ease-out),
    transform 900ms var(--ease-out);
  transition-delay: 90ms;
}

body.motion-ready .visible .scroll-title,
body.motion-ready .scroll-title.visible {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0);
}

body.motion-ready .scroll-item {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 30px, 0) scale(0.985);
  transition:
    opacity 720ms var(--ease-out),
    filter 720ms var(--ease-out),
    transform 720ms var(--ease-out),
    border-color 180ms ease,
    background 180ms ease;
  transition-delay: var(--stagger, 0ms);
}

body.motion-ready .visible .scroll-item:not(:hover),
body.motion-ready .scroll-item.visible:not(:hover) {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

body.motion-ready .visible .scroll-item:hover,
body.motion-ready .scroll-item.visible:hover {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

body.motion-ready .visible .work-card.scroll-item:hover,
body.motion-ready .visible .work-card.scroll-item.active:not(:hover),
body.motion-ready .visible .project-index-card.scroll-item:hover {
  transform: translateY(-3px);
}

body.motion-ready .visible .package-card.scroll-item:hover,
body.motion-ready .visible .package-card.scroll-item:focus-visible {
  transform: translateY(-4px);
}

body.motion-ready .portrait-frame {
  opacity: 0;
  clip-path: inset(0 0 22% 0);
  transition:
    opacity 780ms var(--ease-out),
    clip-path 900ms var(--ease-out),
    transform 180ms linear;
  transition-delay: 120ms;
}

body.motion-ready .visible .portrait-frame {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

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

@keyframes briefStepIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .marquee div {
    animation: none;
  }

  body.motion-ready .reveal,
  body.motion-ready .scroll-item,
  body.motion-ready .scroll-title,
  body.motion-ready .hero .eyebrow,
  body.motion-ready .hero h1 > *,
  body.motion-ready .hero-copy,
  body.motion-ready .hero-actions,
  body.motion-ready .proof-strip span,
  body.motion-ready .hero-panel,
  body.motion-ready .hero-panel li,
  body.motion-ready .portrait-frame {
    opacity: 1 !important;
    filter: none !important;
    clip-path: none !important;
    transform: none !important;
  }

  body.motion-ready .side-rail span {
    opacity: 1 !important;
    filter: none !important;
    transform: rotate(180deg) !important;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    padding: 0 22px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    left: 22px;
    right: 22px;
    top: 86px;
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    background: #050505;
  }

  .site-nav.open {
    display: grid;
    gap: 18px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 820px;
    padding: 132px 32px 52px 120px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero h1 em {
    font-size: 68px;
  }

  .hero-panel {
    display: none;
  }

  .split-heading,
  .packages-head,
  .work-head,
  .about-section,
  .uniforms-layout,
  .motion-reel-layout,
  .brand-case-strip,
  .project-detail,
  .contact-section,
  .case-hero,
  .brief-hero,
  .brief-builder,
  .case-grid,
  .case-next {
    grid-template-columns: 1fr;
  }

  .section h2,
  .contact-section h2 {
    font-size: 52px;
  }

  .work-grid,
  .package-grid,
  .process-list,
  .uniform-grid,
  .motion-projects,
  .motion-capabilities,
  .case-panels,
  .project-index-grid,
  .brief-service-grid,
  .brand-story-grid,
  .case-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .brief-summary-panel {
    position: static;
  }

  .brief-flow {
    grid-template-columns: 1fr;
  }

  .brief-flow-meta {
    min-height: auto;
    gap: 18px;
  }

  .brief-flow-choice-grid.is-multi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-case-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-focus {
    grid-template-columns: 1fr;
  }

  .case-hero h1 {
    font-size: 68px;
  }

  .brief-hero h1 {
    font-size: 68px;
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

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

  .contact-section::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 22px 42px;
  }

  .side-rail {
    display: none;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.78), #050505 78%),
      url("assets/hero-silhouette.png") center top / cover no-repeat;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero h1 em {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .proof-strip span,
  .tool-row span {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .section,
  .contact-section,
  .brief-flow-shell {
    width: calc(100% - 36px);
    padding: 78px 0;
  }

  .brief-flow-page {
    padding-top: 92px;
  }

  .brief-flow-shell {
    min-height: auto;
    padding-bottom: 42px;
  }

  .brief-flow-top {
    grid-template-columns: 1fr;
  }

  .section h2,
  .contact-section h2 {
    font-size: 40px;
  }

  .service-list article,
  .work-grid,
  .package-grid,
  .process-list,
  .uniform-grid,
  .motion-projects,
  .motion-capabilities,
  .case-panels,
  .project-index-grid,
  .brief-field-grid,
  .brief-service-grid,
  .brief-choice-grid,
  .brief-flow-service-grid,
  .brief-flow-choice-grid,
  .brief-flow-choice-grid.is-multi,
  .brief-actions,
  .brief-step-actions,
  .brief-final-actions,
  .brand-story-grid,
  .case-gallery,
  .content-model {
    grid-template-columns: 1fr;
  }

  .brand-case-strip {
    padding: 22px;
  }

  .brand-case-strip h3 {
    font-size: 28px;
  }

  .brand-case-links {
    grid-template-columns: 1fr;
  }

  .case-hero,
  .brief-hero,
  .brief-builder,
  .case-section {
    width: calc(100% - 36px);
    padding: 78px 0;
  }

  .brief-builder {
    padding-top: 22px;
  }

  .case-hero h1 {
    font-size: 48px;
  }

  .brief-hero h1 {
    font-size: 46px;
  }

  .case-grid h2,
  .case-section h2,
  .brief-panel-head h2 {
    font-size: 36px;
  }

  .brief-panel,
  .brief-summary-panel,
  .brief-signal,
  .brief-flow-meta,
  .brief-step-card {
    padding: 20px;
  }

  .brief-flow-meta {
    display: none;
  }

  .brief-step-card {
    min-height: auto;
  }

  .brief-step-kicker {
    display: grid;
  }

  .brief-step-card h1 {
    font-size: 42px;
  }

  .brief-flow-input {
    font-size: 32px;
  }

  textarea.brief-flow-input {
    font-size: 26px;
  }

  .brief-service-option {
    min-height: 126px;
  }

  .brief-choice-button {
    min-height: 58px;
  }

  .brief-summary {
    min-height: 330px;
  }

  .case-visual {
    min-height: 320px;
  }

  .uniform-showcase,
  .uniform-showcase img,
  .motion-preview,
  .case-visual img {
    min-height: 320px;
  }

  .video-controls {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 10px;
  }

  .video-time {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .video-mute-button {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .video-progress-shell {
    min-height: 38px;
  }

  .video-control-button {
    width: 40px;
    height: 40px;
  }

  .gallery-item,
  .gallery-item img,
  .gallery-item-tall,
  .gallery-item-tall img {
    min-height: 420px;
  }

  .gallery-item-tall {
    grid-column: 1;
  }

  .service-list article {
    gap: 14px;
  }

  .work-card {
    min-height: 210px;
  }

  .cursor-follower {
    display: none;
  }

  .process-list li,
  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .portrait-frame {
    min-height: 360px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }
}
