:root {
  --bg: #000;
  --bg-2: #0e0e0e;
  --text: #e7e7e7;
  --muted: #8d8d8d;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #c45c28;
  --mark: #e85d1c;
  --btn: #8e2904;
  --display: "Inter Tight", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --page-x: 48px;
  --app-h: 100lvh;
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #c45c28 #070605;
}
html { scroll-behavior: auto; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #070605;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e85d1c 0%, #8e2904 100%);
  border-radius: 999px;
  border: 2px solid #070605;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff8a3c 0%, #c45c28 100%);
  border: 2px solid #070605;
  background-clip: padding-box;
}
::-webkit-scrollbar-corner { background: #000; }
body {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: -0.4px;
  padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
img, video { max-width: 100%; height: auto; display: block; }
img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -1.5px;
  margin: 0;
  overflow-wrap: anywhere;
}
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

html.has-cursor, html.has-cursor body { cursor: none; }
html.has-cursor a, html.has-cursor button { cursor: none; }

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 121;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at center,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(232, 93, 28, 0.32) 18%,
      rgba(232, 93, 28, 0.1) 42%,
      transparent 70%);
  mix-blend-mode: screen;
  filter: blur(4px);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.cursor-trail {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 120;
  mix-blend-mode: screen;
  filter: blur(8px);
  opacity: 1;
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 130;
  background: #fff;
  box-shadow:
    0 0 12px 3px rgba(255, 255, 255, 0.95),
    0 0 32px 10px rgba(232, 93, 28, 0.55);
  transform: translate(-50%, -50%);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.28s ease, box-shadow 0.2s ease;
}
.cursor-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: cursorPulse 1.8s ease-out infinite;
}
html.cursor-hot .cursor-dot {
  box-shadow:
    0 0 16px 4px rgba(255, 255, 255, 1),
    0 0 42px 14px rgba(232, 93, 28, 0.7);
}
html.cursor-hot .cursor-dot::after {
  animation: none;
  width: 42px;
  height: 42px;
  border-color: rgba(255, 255, 255, 0.55);
}
@keyframes cursorPulse {
  0% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.72); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.55); }
}
html.has-cursor .cursor-glow,
html.has-cursor .cursor-dot { opacity: 1; }
html.no-cursor .cursor-glow,
html.no-cursor .cursor-trail,
html.no-cursor .cursor-dot { display: none; }

.glass {
  position: relative;
  isolation: isolate;
  background: rgba(18, 12, 10, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .glass:hover {
    border-color: rgba(232, 93, 28, 0.48);
    box-shadow:
      0 0 0 1px rgba(232, 93, 28, 0.14),
      0 12px 28px rgba(0, 0, 0, 0.28);
    background:
      radial-gradient(180px circle at var(--mx, 50%) var(--my, 40%), rgba(232, 93, 28, 0.1), transparent 70%),
      rgba(22, 14, 11, 0.36);
  }
  .svc-pack.glass:hover {
    border-color: rgba(232, 93, 28, 0.28);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    background: rgba(18, 12, 10, 0.28);
  }
  .svc-pack .svc-card.glass:hover {
    border-color: rgba(232, 93, 28, 0.48);
    box-shadow:
      0 0 0 1px rgba(232, 93, 28, 0.14),
      0 12px 28px rgba(0, 0, 0, 0.28);
    background:
      radial-gradient(160px circle at var(--mx, 50%) var(--my, 40%), rgba(232, 93, 28, 0.1), transparent 70%),
      rgba(22, 14, 11, 0.36);
  }
  .work-card:hover,
  .svc-card:hover,
  .step:hover,
  .reasons article:hover {
    transform: translateY(-6px);
  }
  .work-card:hover .work-visual {
    box-shadow: inset 0 0 0 1px rgba(232, 93, 28, 0.45);
  }
  .work-card:hover .work-visual img {
    transform: none;
  }
  .work-nav:hover {
    background: rgba(232, 93, 28, 0.92);
    border-color: rgba(255, 255, 255, 0.22);
  }
  .work-like:hover {
    transform: scale(1.05);
  }
  .glass:hover .ico-wrap,
  .glass:hover .svc-pack-ico {
    transform: scale(1.05);
    box-shadow: 0 0 0 2px rgba(232, 93, 28, 0.16);
  }
  .logo:hover span { background: var(--mark); }
  .dock a:hover {
    color: #fff;
    background: rgba(232, 93, 28, 0.42);
  }
  .dock a.is-on:hover {
    background: #a33408;
  }
  .dock-action:hover,
  .dock a.dock-action:hover {
    background: #a33408;
    color: #fff;
  }
  .filters a:hover {
    color: #fff;
    border-color: rgba(232, 93, 28, 0.7);
    background: rgba(232, 93, 28, 0.2);
  }
  .text-link:hover {
    color: #fff;
    border-color: var(--mark);
  }
  .btn-all:hover {
    background: #a33408;
    color: #fff;
    transform: translateY(-2px);
  }
  .btn-ghost:hover {
    color: #fff;
    border-color: rgba(232, 93, 28, 0.7);
    background: rgba(232, 93, 28, 0.2);
    transform: translateY(-2px);
  }
  .work-open:hover {
    background: #a33408;
    transform: scale(1.06);
  }
}

.page { overflow-x: hidden; }
.inner .chapter { padding-top: 132px; }

.hero {
  position: relative;
  min-height: var(--app-h, 100lvh);
  background: #0e0e0e;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-liquid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  background: #0e0e0e;
  overflow-anchor: none;
}
.hero-liquid .liquid-gradient,
.hero-liquid canvas.liquid-gradient {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.22) 0%, transparent 24%, transparent 56%, rgba(0,0,0,.62) 100%),
    linear-gradient(to right, rgba(0,0,0,.28), transparent 18%, transparent 82%, rgba(0,0,0,.28));
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-top {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 28px var(--page-x) 0;
}
.logo {
  width: 28px;
  height: 28px;
  position: relative;
  display: block;
}
.logo span {
  position: absolute;
  width: 8px; height: 8px;
  background: #9a9a9a;
  transition: background 0.2s ease;
}
.logo span:nth-child(1) { top: 0; left: 0; }
.logo span:nth-child(2) { bottom: 0; left: 0; }
.logo span:nth-child(3) { bottom: 0; right: 0; }

.hero-people {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
}
.hero-identity {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-identity img {
  width: 92px; height: 92px;
  object-fit: cover;
  filter: grayscale(1);
}
.hero-identity p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.hero-identity strong {
  display: block;
  font-weight: 400;
  font-size: 15px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding: 0 var(--page-x) 40px;
  max-width: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
}
.hero-kicker {
  margin: 0 0 22px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--accent);
}
.hero-copy h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 400;
  max-width: min(14em, 100%);
  text-align: left;
  text-indent: 0;
  text-transform: lowercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.hero-copy h1 .word {
  white-space: nowrap;
  overflow-wrap: normal;
}
.hero-copy h1 .ch {
  letter-spacing: -0.04em;
}
.word { display: inline-block; white-space: nowrap; }
.ch-gap {
  display: inline;
  white-space: pre;
}
.ch {
  display: inline-block;
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(-16px, 8px, 0);
  animation: glyphIn 0.9s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-play-state: paused;
  animation-delay: calc(var(--d, 0ms) + var(--i) * 28ms);
  will-change: transform, filter, opacity;
  vertical-align: baseline;
}
.assemble.is-playing .ch,
.assemble-line.is-playing .ch {
  animation-play-state: running;
}
.assemble:not([data-assembled="1"]) {
  visibility: hidden;
}
@keyframes glyphIn {
  0% { opacity: 0; filter: blur(14px); transform: translate3d(-16px, 8px, 0); }
  58% { opacity: 1; }
  100% { opacity: 1; filter: blur(0); transform: none; }
}
.lead {
  margin: 28px 0 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}
.lead.is-late {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(8px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}
.lead.is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.hero-order,
.hero-actions .btn-ghost {
  width: max-content;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-transform: lowercase;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.btn-ghost .ico {
  width: 15px;
  height: 15px;
  stroke: var(--mark);
}

.hero-services {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 var(--page-x) calc(40px + 76px);
  width: 100%;
}
.hero-svc {
  display: flex;
  flex-direction: column;
  min-height: 188px;
  padding: 22px 22px 20px;
  border-radius: 22px;
  color: inherit;
  text-decoration: none;
  transform: translateY(16px);
  animation: heroSvcIn 0.7s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(1.05s + var(--i, 0) * 0.12s);
}
.hero-svc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.hero-svc-top b {
  font-weight: 400;
  color: var(--accent);
  font-size: 12px;
}
.hero-svc h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -1px;
  text-transform: none;
  line-height: 1.08;
  margin: 0 0 8px;
  color: #fff;
}
.hero-svc-short { display: none; }
.hero-svc p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  flex: 1;
}
.hero-svc em {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
@keyframes heroSvcIn {
  to { transform: none; }
}

.topnav {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 28px var(--page-x) 0;
}
.topnav.solid {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: linear-gradient(#000, transparent);
  z-index: 20;
  grid-template-columns: 1fr;
}

.dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(18, 12, 10, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  max-width: calc(100% - 20px);
  overflow-x: auto;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.dock a {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #cfcfcf;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.dock .ico {
  width: 14px;
  height: 14px;
}
.dock a,
.work-card,
.filters a,
.text-link,
.hero-svc {
  touch-action: manipulation;
}
.site-foot a {
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.dock a.is-on {
  background: rgba(142, 41, 4, 0.92);
  color: #fff;
}
.dock:has(.dock-action) {
  justify-content: stretch;
  gap: 6px;
  width: min(280px, calc(100% - 20px));
  min-width: min(280px, calc(100% - 20px));
}
.dock a.dock-action {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  background: rgba(142, 41, 4, 0.92);
  color: #fff;
}
.dock-action .ico {
  width: 16px;
  height: 16px;
}

.chapter {
  padding: 128px var(--page-x) 80px;
  max-width: none;
  width: 100%;
  margin: 0;
}
.chapter + .chapter {
  border-top: 1px solid var(--line);
}
.chapter-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 72px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.chapter-head > span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--mark);
  letter-spacing: 1.4px;
  line-height: 1;
  padding-top: 0;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 12px;
  -webkit-text-stroke: 0;
}
.chapter-head > span::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--mark);
  opacity: 0.75;
}
.chapter-lead {
  margin: 16px 0 0;
  max-width: 46ch;
  color: var(--muted);
  line-height: 1.7;
}
.process-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0 8px;
  padding: 16px 20px;
  max-width: 52ch;
  border-radius: 16px;
  background: linear-gradient(135deg, #c45c28 0%, #8e2904 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(142, 41, 4, 0.28);
}
.process-note span {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1.2;
  opacity: 0.7;
}
.process-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.process-note a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  text-underline-offset: 3px;
}
.process-note a:hover {
  border-bottom-color: #fff;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.6px;
  margin: 0 0 10px;
  color: #e7e7e7;
}
.section-label .ico {
  width: 15px;
  height: 15px;
  color: var(--mark);
}
.mark {
  width: 7px; height: 7px;
  background: var(--mark);
  display: inline-block;
  flex: 0 0 7px;
}
.icon-sprite {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.ico {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico-wrap {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--mark);
  border: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ico-wrap .ico { width: 17px; height: 17px; stroke: #fff; }
.section-more { margin-top: 48px; }
.btn-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--btn);
  color: #fff;
  text-transform: lowercase;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(142, 41, 4, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-all .ico { width: 15px; height: 15px; stroke: #fff; transition: transform 0.2s ease; }
.rail-bar { display: none; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: lowercase;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.text-link .ico {
  width: 14px;
  height: 14px;
  color: var(--mark);
}


.work-group { margin-bottom: 80px; }
.work-group .section-more { margin-top: 28px; }
.group-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.group-bar h3 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  flex: 1;
}
.group-bar b {
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.brandbook-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.logos-grid {
  grid-template-columns: 1fr 1fr;
}
.works-grid.is-packed {
  display: block;
  position: relative;
}
.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  color: inherit;
  border-radius: 18px;
  padding: 12px;
  break-inside: avoid;
}
.work-card-link {
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: inherit;
}
.works-grid.is-packed > .work-card {
  position: absolute;
}
.work-visual {
  position: relative;
  background-color: color-mix(in srgb, var(--card-bg, #141414) 40%, transparent);
  background-size: cover;
  background-position: center;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  transition: box-shadow 0.22s ease;
}
.work-visual img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}
.work-visual.has-ratio {
  aspect-ratio: var(--fit-ratio, var(--nat-ratio));
  background-color: color-mix(in srgb, var(--card-bg, #141414) 55%, #000);
}
.work-visual::after,
.case-sheet::after,
.case-stage::after,
.case-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.work-card.is-lazy {
  opacity: 0;
  transform: translateY(18px);
}
.work-card.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.work-card .work-visual img {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.work-card.is-in .work-visual img[src] {
  opacity: 1;
}
.case-sheet:has(img[data-src]:not([src])),
.case-thumb:has(img[data-src]:not([src])) {
  background: rgba(18, 12, 10, 0.45);
}
.case-sheet:has(img[data-src]:not([src])) {
  min-height: min(52vh, 640px);
}
.case-sheet img,
.case-thumb img {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.case-sheet img[src],
.case-thumb img[src] {
  opacity: 1;
}
.work-visual.has-ratio img {
  position: absolute;
  inset: 0;
  height: 100%;
}
.work-visual.is-site-preview {
  aspect-ratio: 16 / 10;
}
.work-visual.is-site-preview img {
  object-fit: cover;
  object-position: center center;
}
.work-visual.is-fit img {
  object-fit: cover;
}
.work-shot {
  position: relative;
  display: block;
}
.work-shot .work-visual {
  width: 100%;
}
.work-shot-bar {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}
.work-shot-bar > * {
  pointer-events: auto;
  flex: 0 0 auto;
}
.work-open {
  width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #8e2904;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  transition: background 0.18s ease, transform 0.18s ease;
}
.work-open .ico {
  width: 11px;
  height: 11px;
  fill: currentColor;
  stroke: none;
  margin-left: 1px;
}
.work-chip {
  position: static;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 4px 4px 4px 12px;
  border-radius: 999px;
  background: #fff;
  color: #1a1412;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  letter-spacing: 0.15px;
  font-variant-numeric: tabular-nums;
}
.case-head .work-chip {
  display: inline-flex;
  margin-top: 28px;
  padding: 5px 5px 5px 14px;
  font-size: 13px;
}
.work-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 10px;
  margin-right: 4px;
  border-right: 1px solid rgba(26, 20, 18, 0.12);
  color: #3a332f;
}
.work-chip .ico {
  width: 15px;
  height: 15px;
}
.work-like {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #8e2904;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.work-like .ico {
  width: 16px;
  height: 16px;
}
.work-like:hover,
.work-like.is-on {
  background: #8e2904;
  color: #fff;
}
.work-like.is-on .ico {
  fill: currentColor;
}
.case-head .work-like {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}
.case-head .work-like .ico {
  width: 18px;
  height: 18px;
}
.work-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}
.work-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(12, 8, 7, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.work-nav.is-prev { left: 10px; }
.work-nav.is-next { right: 10px; }
.work-nav .ico { width: 13px; height: 13px; }
.work-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 5px;
  pointer-events: none;
}
.work-dot {
  pointer-events: auto;
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.38);
  border: 0;
  transition: width 0.2s ease, background 0.2s ease;
}
.work-dot.is-on {
  width: 16px;
  background: var(--mark);
}
.work-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  min-height: 0;
}
.work-meta strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}
.work-meta em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  margin-top: 3px;
}
.work-meta i {
  display: block;
  font-style: normal;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.6px;
  margin-top: 6px;
}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px 10px;
  font-size: 10px;
  text-transform: uppercase;
  color: #cfcfcf;
  letter-spacing: 0.4px;
  max-width: 55%;
}
.case-head .work-tags {
  max-width: 100%;
  justify-content: flex-start;
  margin: 18px 0 0;
  gap: 6px 16px;
  font-size: 11px;
  letter-spacing: 0.6px;
}

.belief h2, .h-soft, .page-h {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.02;
  max-width: 18ch;
  text-transform: lowercase;
}
.belief-text {
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  font-size: 16px;
}
.stat {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.stat span,
.stat small {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.stat span {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 96px);
  letter-spacing: -3px;
  line-height: 0.9;
}
.stat small {
  color: var(--muted);
  max-width: none;
  font-size: 12px;
}

.svc-pack {
  margin-bottom: 72px;
  padding: 36px;
  border-radius: 32px;
}
.svc-pack > header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "num ico"
    "copy copy";
  gap: 8px 16px;
  margin-bottom: 28px;
  align-items: start;
}
.svc-pack > header span {
  grid-area: num;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 1.2px;
  padding-top: 6px;
}
.svc-pack > header > div:not(.svc-pack-ico) {
  grid-area: copy;
  min-width: 0;
}
.svc-pack-ico {
  grid-area: ico;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--mark);
  border: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.svc-pack-ico .ico { width: 24px; height: 24px; stroke: #fff; }
.svc-pack h3 {
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 500;
  letter-spacing: -1.8px;
  text-transform: none;
  color: #fff;
  line-height: 1.05;
}
.svc-pack h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 14px;
  background: var(--mark);
  border-radius: 2px;
}
.svc-pack header p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.65;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.svc-card {
  padding: 24px 22px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 188px;
}
.svc-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.svc-card h4 {
  font-size: 22px;
  letter-spacing: -0.6px;
  text-transform: lowercase;
  margin: 0;
}
.svc-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.svc-card footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
}
.svc-card strong { font-weight: 400; color: var(--accent); }

.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}
.step {
  padding: 28px 26px 24px;
  border-radius: 24px;
  margin: 0;
}
.step-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.step span, .step time {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
}
.step h3 {
  font-size: 28px;
  margin: 8px 0 10px;
  letter-spacing: -0.8px;
  text-transform: lowercase;
}
.step p { margin: 10px 0 0; color: #bdbdbd; line-height: 1.55; max-width: 42ch; }

.trust { margin-top: 96px; }
.reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.reasons article {
  padding: 24px 22px;
  border-radius: 22px;
}
.reasons b {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  margin: 10px 0 0;
}
.reasons h3 {
  font-size: 22px;
  margin: 8px 0;
  letter-spacing: -0.6px;
  text-transform: lowercase;
}
.reasons p { margin: 0; color: var(--muted); line-height: 1.5; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.review {
  padding: 22px 22px 20px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
[data-reviews]:not(.is-open) .review.is-more { display: none; }
.review header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.review header b {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.review time {
  flex: none;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review em {
  color: var(--mark);
  font-style: normal;
  font-size: 12px;
  line-height: 1.4;
}
.review p {
  margin: 0;
  color: #c8c8c8;
  line-height: 1.55;
}
[data-reviews].is-open [data-reviews-more] .ico {
  transform: rotate(90deg);
}

.site-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 56px var(--page-x) 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  max-width: none;
  width: 100%;
  margin: 0;
}
.site-foot > div,
.site-foot a { display: flex; align-items: center; gap: 10px; }
.site-foot .ico { color: var(--mark); width: 14px; height: 14px; }
.sq {
  width: 7px; height: 7px;
  background: #efefef;
  display: block;
}

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }
.filters a {
  color: var(--muted);
  text-transform: lowercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.filters a.is-on {
  color: #fff;
  border-color: rgba(232, 93, 28, 0.7);
  background: rgba(232, 93, 28, 0.22);
}
.filters-wrap {
  position: relative;
  margin: 0 0 36px;
}
.filters-hint { display: none; }
.archive-search {
  position: relative;
  max-width: 560px;
  margin: 0 0 22px;
}
.archive-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(18, 12, 10, 0.55);
}
.archive-search-field .ico {
  width: 16px;
  height: 16px;
  color: var(--mark);
  flex: 0 0 auto;
}
.archive-search-field input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  padding: 12px 0;
  outline: none;
}
.archive-search-field input::placeholder { color: var(--muted); }
.archive-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 8;
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 11, 9, 0.94);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.archive-suggest a,
.archive-suggest button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  background: transparent;
  border: 0;
  font: inherit;
}
.archive-suggest a small,
.archive-suggest button small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}
.archive-suggest a.is-on,
.archive-suggest a:hover,
.archive-suggest button:hover {
  background: rgba(232, 93, 28, 0.16);
}
.archive-suggest .is-similar small { color: var(--accent); }
.work-card.is-out { display: none !important; }

.case {
  padding: 148px var(--page-x) 80px;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: stretch;
}
.case-head { min-width: 0; }
.case-head .text-link { margin-bottom: 8px; }
.case-head h1 {
  font-size: clamp(40px, 5.4vw, 72px);
  margin-top: 22px;
  max-width: 14ch;
  line-height: 1.02;
}
.case-head .lead {
  margin-top: 18px;
  font-size: 15px;
}
.case-facts {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
  gap: 18px 40px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.case-facts li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  min-width: 120px;
}
.case-facts b {
  color: var(--text);
  font-weight: 400;
  margin-left: 0;
  font-size: 15px;
  letter-spacing: -0.3px;
  text-transform: none;
}
.case-photos {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(168px, 0.55fr);
  align-items: start;
  gap: 12px;
  width: 100%;
  max-width: none;
}
.case-site-wrap {
  width: min(920px, 100%);
  margin: 8px 0 0;
}
.case-site-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  position: sticky;
  top: 64px;
  z-index: 6;
  padding: 6px 0 10px;
  background: linear-gradient(#000 70%, transparent);
}
.case-site-tab {
  appearance: none;
  border: 1px solid var(--line);
  background: #141414;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  width: auto;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.case-site-tab i {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c45c28;
}
.case-site-tab.is-on {
  background: #8e2904;
  border-color: #8e2904;
  color: #fff;
}
.case-site-tab.is-on i { color: #ffd2bc; }
.case-site {
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
}
.case-site-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: #101010;
}
.case-site-chrome i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3a3a;
}
.case-site-chrome i:nth-child(1) { background: #8e2904; }
.case-site-chrome i:nth-child(2) { background: #c45c28; }
.case-site-chrome i:nth-child(3) { background: #8d8d8d; }
.case-site-chrome em {
  margin-left: auto;
  font-style: normal;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.case-site-pdf {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c45c28;
  border-bottom: 1px solid transparent;
}
.case-site-pdf:hover {
  color: #fff;
  border-bottom-color: currentColor;
}
.case-site img {
  display: block;
  width: 100%;
  height: auto;
}
.case-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(82svh, 860px);
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: color-mix(in srgb, var(--card-bg, #141414) 70%, #000);
  cursor: zoom-in;
}
.case-stage .work-nav { display: none; }
.case-main {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}
.case-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(88px, auto);
  align-content: start;
  gap: 8px;
  width: auto;
  max-height: min(82svh, 860px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.case-thumbs::-webkit-scrollbar { width: 4px; }
.case-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  background: #141414;
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.case-thumb.is-on {
  opacity: 1;
  border-color: var(--mark);
}
.case-thumb:hover { opacity: 1; }
.case-book {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin: 0;
}
.case-sheet {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #0a0a0a;
  cursor: zoom-in;
}
.case-sheet img {
  width: 100%;
  height: auto;
  display: block;
}
.brandbook-feature {
  padding: 16px;
  border-radius: 18px;
}
.brandbook-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.brandbook-bar strong {
  display: block;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.4px;
}
.brandbook-bar em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
}
.brandbook-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.brandbook-toggle {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(142, 41, 4, 0.92);
  color: #fff;
  text-transform: lowercase;
  width: auto;
}
.brandbook-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border-radius: 12px;
}
.brandbook-sheet {
  margin: 0;
}
.brandbook-sheet img {
  width: 100%;
  height: auto;
  display: block;
}
.brandbook-feature:not(.is-open) .brandbook-sheet:not(.is-cover) {
  display: none;
}
.brandbook-feature:has(.brandbook-toggle) .brandbook-sheet.is-cover {
  cursor: pointer;
}
.brandbook-more {
  margin-top: 28px;
}
html.has-cursor .case-sheet { cursor: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px 64px;
  background: rgba(4, 3, 2, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.lightbox.is-on {
  display: flex;
}
.lightbox-img {
  max-width: min(92vw, 1080px);
  max-height: min(90svh, 920px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(18, 12, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.lightbox-close { top: 18px; right: 18px; }
.lightbox-nav.is-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.is-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-close .ico,
.lightbox-nav .ico { width: 18px; height: 18px; }
html.has-cursor .case-stage,
html.has-cursor .lightbox-close,
html.has-cursor .lightbox-nav { cursor: none; }
body.is-lightbox { overflow: hidden; }

.svc-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}
.svc-sheet.is-on { pointer-events: auto; }
.svc-sheet-bg {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  width: 100%;
  background: rgba(4, 3, 2, 0.52);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.svc-sheet.is-on .svc-sheet-bg { opacity: 1; }
.svc-sheet-stage {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.svc-sheet-panel {
  pointer-events: auto;
  position: relative;
  width: min(100%, 520px);
  height: min(86dvh, 760px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(232, 93, 28, 0.18), transparent 52%),
    rgba(18, 12, 10, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(112%);
  transition: transform 0.72s cubic-bezier(.16, 1, .3, 1);
}
.svc-sheet.is-on .svc-sheet-panel { transform: none; }
.svc-sheet-grab {
  flex: 0 0 auto;
  padding: 14px 0 10px;
  touch-action: none;
  cursor: grab;
}
.svc-sheet-handle {
  width: 52px;
  height: 5px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}
.svc-sheet-x {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(12, 8, 7, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.svc-sheet-x .ico { width: 16px; height: 16px; }
.svc-sheet-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.svc-sheet-track {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
}
.svc-sheet-track::-webkit-scrollbar { display: none; }
.svc-sheet-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 36px 8px;
  min-width: 0;
}
.svc-sheet-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.svc-sheet-slide .ico-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin-bottom: 16px;
}
.svc-sheet-slide .ico-wrap .ico { width: 26px; height: 26px; }
.svc-sheet-slide h3 {
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 1.08;
  margin: 0 0 12px;
  color: #fff;
  text-transform: none;
}
.svc-sheet-slide > p {
  margin: 0;
  max-width: 34ch;
  color: #c9c3bf;
  font-size: 14px;
  line-height: 1.5;
}
.svc-sheet-slide footer {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin-top: 20px;
  font-size: 13px;
}
.svc-sheet-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 8px;
  max-width: 36ch;
}
.svc-sheet-list li {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d8d2ce;
  font-size: 11px;
  letter-spacing: 0.2px;
  text-transform: lowercase;
}
.svc-sheet-slide time { color: var(--muted); }
.svc-sheet-slide strong {
  color: var(--mark);
  font-weight: 500;
}
.svc-sheet-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 4px 36px 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.4px;
}
.svc-sheet-progress {
  width: min(180px, 46%);
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.svc-sheet-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--mark);
  border-radius: inherit;
  transition: width 0.25s ease;
}
.svc-sheet-playbar {
  flex: 0 0 auto;
  margin: 4px 28px calc(16px + env(safe-area-inset-bottom, 0px));
  padding: 10px;
  border-radius: 999px;
  background: var(--btn);
  display: flex;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(142, 41, 4, 0.45);
}
.svc-sheet-play {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--btn);
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.svc-sheet-play:active { transform: scale(0.94); }
.svc-sheet-play .ico {
  width: 26px;
  height: 26px;
  fill: currentColor;
  stroke: none;
  margin-left: 2px;
}
body.is-svc-sheet {
  overflow: hidden;
}
body.is-svc-sheet .dock {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
}
.case-body {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.35px;
  max-width: 40ch;
  color: #d6d6d6;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.case-body p { margin: 0 0 16px; }
.case-gallery { display: grid; gap: 18px; margin-top: 8px; }
.case-gallery:not(:has(figure)) { display: none; }
.case-gallery img, .case-gallery video { width: 100%; }
.case-video { margin: 8px 0 0; aspect-ratio: 16/9; }
.case-video iframe, .case-video video { width: 100%; height: 100%; border: 0; }
.more-works { padding-top: 48px; }
.inner .chapter.more-works { padding-top: 48px; }
.empty { color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (max-width: 1400px) {
  .works-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .brandbook-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
  :root { --page-x: 24px; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .brandbook-grid { grid-template-columns: 1fr 1fr; }
  .logos-grid { grid-template-columns: 1fr 1fr; }
  .reasons { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .hero-services { grid-template-columns: 1fr 1fr; }
  .case {
    gap: 28px;
  }
  .case-photos {
    grid-template-columns: minmax(0, 1.4fr) minmax(140px, 0.6fr);
  }
  .case-stage {
    max-height: min(72svh, 640px);
  }
}

@media (max-width: 760px) {
  :root { --page-x: 16px; }
  body {
    font-size: 13px;
    padding-bottom: 128px;
  }
  .hero-identity img { width: 64px; height: 64px; }

  .hero {
    min-height: calc(var(--app-h) + 120px);
    height: auto;
    justify-content: flex-start;
    gap: 32px;
    padding-bottom: 128px;
  }
  .hero-top {
    padding-top: 28px;
    gap: 22px;
    flex: 0 0 auto;
  }
  .hero-copy {
    padding-top: 56px;
    padding-bottom: 48px;
    flex: 1 1 auto;
    min-height: 0;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }
  .hero-copy h1 {
    font-size: clamp(28px, 8.6vw, 40px);
    letter-spacing: 0;
    max-width: none;
    overflow-wrap: normal;
    word-break: normal;
    text-align: left;
  }
  .hero-copy h1 .word {
    white-space: nowrap;
    overflow-wrap: normal;
  }
  .hero-kicker { font-size: 11px; margin-bottom: 18px; }
  .lead { max-width: none; font-size: 13px; text-align: left; margin-top: 22px; }
  .hero-actions {
    margin-top: 28px;
    width: 100%;
  }
  .hero-services {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-bottom: 24px;
    margin-bottom: 0;
    flex: 0 0 auto;
  }
  .hero-svc {
    min-height: 0;
    padding: 12px 10px 10px;
    border-radius: 14px;
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-svc-top { margin-bottom: 8px; }
  .hero-svc-top .ico-wrap { width: 28px; height: 28px; border-radius: 8px; }
  .hero-svc-top .ico { width: 14px; height: 14px; }
  .hero-svc h2 { font-size: 15px; font-weight: 500; margin-bottom: 0; color: #fff; }
  .hero-svc-full { display: none; }
  .hero-svc-short { display: inline; }
  .hero-svc p { display: none; }
  .hero-svc em { margin-top: 10px; font-size: 10px; }
  .word {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hero-copy h1 .word {
    white-space: nowrap;
    overflow-wrap: normal;
  }
  .chapter, .site-foot, .case {
    padding-left: var(--page-x);
    padding-right: var(--page-x);
  }
  .chapter {
    padding-top: 64px;
    padding-bottom: 28px;
  }
  .inner .chapter {
    padding-top: 84px;
  }
  .inner .chapter.more-works { padding-top: 32px; }
  .chapter-head {
    gap: 10px;
    margin-bottom: 32px;
    padding-bottom: 20px;
  }
  .chapter-head > span {
    font-size: 11px;
  }
  .chapter-lead { margin-top: 8px; max-width: none; }
  .process-note {
    max-width: none;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .belief h2, .h-soft, .page-h {
    font-size: clamp(26px, 8.2vw, 36px);
    max-width: none;
    letter-spacing: -0.8px;
    overflow-wrap: anywhere;
  }

  .works-grid,
  .timeline,
  .reasons,
  .reviews-grid,
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .works-grid,
  .brandbook-grid,
  .logos-grid,
  .works-grid.is-packed {
    display: grid;
    position: static;
    height: auto !important;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .works-grid.is-packed > .work-card,
  .works-rail .work-card {
    position: static !important;
    left: auto !important;
    top: auto !important;
    flex: none;
    width: auto !important;
    max-width: none;
    scroll-snap-align: none;
  }
  .works-rail .works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    scroll-snap-type: none;
    margin: 0;
    padding: 0;
  }
  .rail-bar { display: none; }
  .rail-bar span { text-align: center; flex: 1; }
  .rail-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(142, 41, 4, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex: 0 0 36px;
    overflow: visible;
  }
  .rail-nav::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    display: block;
  }
  .rail-nav.is-prev::before {
    transform: rotate(-135deg);
    margin-left: 3px;
  }
  .rail-nav.is-next::before {
    transform: rotate(45deg);
    margin-right: 3px;
  }
  .section-more { display: flex; justify-content: center; margin-top: 28px; }
  .btn-all { width: 100%; justify-content: center; }
  .hero-actions .btn-all,
  .hero-actions .btn-ghost {
    width: auto;
    max-width: 100%;
    justify-content: center;
  }
  .work-group { margin-bottom: 36px; }
  .work-card:hover { transform: none; }
  .work-visual {
    border-radius: 10px;
  }
  .work-visual img {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
  }
  .work-visual.has-ratio img {
    height: 100%;
  }
  .work-visual.is-site-preview img {
    object-fit: cover;
    object-position: center center;
  }
  .work-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    min-height: 0;
    margin-bottom: 8px;
  }
  .work-meta strong {
    font-size: 19px;
    letter-spacing: -0.5px;
  }
  .work-tags {
    max-width: 100%;
    justify-content: flex-start;
  }

  .svc-pack {
    padding: 14px;
    border-radius: 18px;
    margin-bottom: 20px;
  }
  .svc-pack > header {
    gap: 6px 10px;
    margin-bottom: 16px;
  }
  .svc-pack > header span { padding-top: 4px; }
  .svc-pack-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .svc-pack-ico .ico { width: 18px; height: 18px; }
  .svc-pack h3 { font-size: 28px; letter-spacing: -1.2px; }
  .svc-pack header p { max-width: none; }
  .svc-card {
    min-height: 0;
    padding: 14px;
    border-radius: 14px;
  }
  .svc-card-top { align-items: flex-start; gap: 10px; }
  .svc-card h4 {
    font-size: 18px;
    overflow-wrap: anywhere;
  }
  .svc-card footer {
    flex-wrap: wrap;
    font-size: 11px;
    gap: 6px 12px;
  }

  .step {
    margin: 0 0 10px;
    padding: 16px;
    border-radius: 16px;
  }
  .step h3 { font-size: 22px; margin: 8px 0; }
  .step p { max-width: none; }
  .trust { margin-top: 40px; }
  .reasons { gap: 10px; }
  .reasons h3 { font-size: 18px; }
  .reviews-grid { gap: 10px; }
  .review { padding: 16px; border-radius: 18px; }
  .review header b { font-size: 18px; }

  .stat {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    text-align: center;
    width: 100%;
  }
  .stat span,
  .stat small {
    display: block;
    width: 100%;
    text-align: center;
  }
  .stat span {
    font-size: clamp(48px, 18vw, 72px);
    letter-spacing: -2px;
  }
  .stat small { max-width: none; }

  .site-foot {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 12px;
    gap: 12px;
  }
  .site-foot > div {
    flex-wrap: wrap;
    line-height: 1.5;
  }

  .dock {
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    max-width: none;
    justify-content: space-between;
    gap: 0;
    border-radius: 22px 22px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
    padding: 10px 8px calc(12px + env(safe-area-inset-bottom, 0px));
    overflow: visible;
    background: rgba(10, 7, 6, 0.88);
    box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.45);
  }
  body.is-svc-sheet .dock {
    transform: translateY(28px);
  }
  .svc-sheet-x { display: none; }
  .svc-sheet-panel {
    width: 100%;
    height: min(90dvh, 820px);
    border-radius: 24px 24px 0 0;
  }
  .svc-sheet-slide { padding-inline: 24px; }
  .svc-sheet-playbar {
    margin-left: 16px;
    margin-right: 16px;
  }
  .dock a {
    flex: 1 1 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    min-width: 0;
    min-height: 48px;
    padding: 7px 2px 6px;
    font-size: 8px;
    letter-spacing: 0.1px;
  }
  .dock a span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .dock .ico { width: 16px; height: 16px; }
  .dock:has(.dock-action) {
    width: 100%;
    min-width: 0;
    justify-content: stretch;
    gap: 6px;
    padding-inline: 10px;
  }
  .dock a.dock-action {
    flex-direction: row;
    gap: 8px;
    min-height: 48px;
    font-size: 12px;
    letter-spacing: 0.4px;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    margin: 0;
    padding: 2px 28px 10px var(--page-x);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filters-wrap {
    margin: 0 calc(0px - var(--page-x)) 24px;
  }
  .filters-wrap::before,
  .filters-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 28px;
    width: 28px;
    z-index: 1;
    pointer-events: none;
  }
  .filters-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
  }
  .filters-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg), transparent);
  }
  .filters-hint {
    display: none;
    margin: 0;
    padding: 0 var(--page-x);
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.3px;
  }
  .filters-wrap.is-scroll .filters-hint { display: block; }
  .filters::-webkit-scrollbar { display: none; }
  .filters a { flex: 0 0 auto; white-space: nowrap; }
  .archive-search { max-width: none; }

  .topnav { padding-top: 16px; }
  .topnav.solid {
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .case {
    padding-top: 96px;
    padding-bottom: 28px;
    gap: 24px;
  }
  .case-site-tabs {
    top: 52px;
  }
  .case-photos {
    grid-template-columns: minmax(0, 1.25fr) minmax(108px, 0.75fr);
    gap: 8px;
  }
  .case-stage {
    max-height: 58svh;
    border-radius: 14px;
  }
  .brandbook-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .brandbook-actions { justify-content: flex-start; }
  .brandbook-toggle { width: auto; }
  .case-thumbs {
    max-height: 58svh;
    grid-auto-rows: minmax(64px, auto);
    gap: 6px;
  }
  .case-thumb {
    border-radius: 8px;
  }
  .lightbox {
    padding: 64px 12px 28px;
  }
  .lightbox-nav.is-prev { left: 8px; }
  .lightbox-nav.is-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-img { max-height: 78svh; }
  .case-head h1 {
    font-size: clamp(28px, 9vw, 40px);
    overflow-wrap: anywhere;
  }
  .case-facts {
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
  }
  .case-facts b { margin-left: 0; }
  .case-body {
    font-size: 17px;
    max-width: none;
    line-height: 1.5;
  }
  .case-gallery { border-radius: 12px; }

  .glass {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(22, 15, 12, 0.92);
  }
  .glass:hover {
    transform: none;
    box-shadow: none;
  }
  .reveal,
  .reveal.is-in,
  .work-card.is-lazy,
  .work-card.is-in {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .ch {
    will-change: auto;
    filter: none;
  }
  @keyframes glyphIn {
    0% { opacity: 0; transform: translate3d(-8px, 6px, 0); }
    100% { opacity: 1; transform: none; }
  }
}

@media (max-width: 400px) {
  .hero-identity img { width: 58px; height: 58px; }
}

@media (hover: none) and (pointer: coarse) {
  .glass:hover,
  .work-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
  }
  .dock {
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    background: rgba(10, 7, 6, 0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ch, .lead, .reveal, .work-card.is-lazy, .work-card.is-in, .cursor-glow, .cursor-trail, .cursor-dot, .hero-svc {
    animation: none !important;
    transition: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: auto !important;
    overflow: visible !important;
  }
  .cursor-glow, .cursor-trail, .cursor-dot { display: none !important; }
  .cursor-dot::after { animation: none !important; }
  .work-track { transition: none; }
  .svc-sheet-bg,
  .svc-sheet-panel,
  .svc-sheet-progress i {
    transition: none !important;
  }
}
