:root {
  --ink: #0c0d0c;
  --ink-soft: #151817;
  --ink-lift: #1d211f;
  --paper: #f3f0ea;
  --paper-soft: #e4ded3;
  --paper-dim: rgba(243, 240, 234, 0.7);
  --muted: #9ca199;
  --line: rgba(243, 240, 234, 0.17);
  --line-dark: rgba(12, 13, 12, 0.14);
  --teal: #164742;
  --teal-soft: #234e49;
  --brass: #b08a4c;
  --signal: #8f2f28;
  --max: 1280px;
  --radius: 8px;
  --header-h: 71px;
  --font-sans: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", "思源黑体",
    "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

figure {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(12, 13, 12, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
}

.brand-logo-tie {
  height: 34px;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(243, 240, 234, 0.45);
  border-radius: 50%;
  color: var(--paper);
  font-size: 0.72rem;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.88rem;
  color: rgba(243, 240, 234, 0.82);
}

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

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--brass);
  content: "";
  transition: width 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.lang-toggle {
  position: relative;
  z-index: 22;
  min-width: 42px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(243, 240, 234, 0.28);
  border-radius: 999px;
  background: rgba(12, 13, 12, 0.28);
  color: rgba(243, 240, 234, 0.82);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  border-color: rgba(176, 138, 76, 0.86);
  background: rgba(176, 138, 76, 0.14);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(243, 240, 234, 0.32);
  border-radius: 50%;
  background: rgba(12, 13, 12, 0.32);
  color: var(--paper);
  cursor: pointer;
}

.toggle-line {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .toggle-line:first-of-type {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .toggle-line:last-of-type {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 44px) max(22px, calc((100vw - var(--max)) / 2)) 42px;
  overflow: hidden;
  isolation: isolate;
}

.hero-gallery,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-gallery {
  z-index: -3;
  overflow: hidden;
}

.hero-slide {
  background-image: url("assets/hero-studio.png");
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.045);
  transition:
    opacity 900ms ease,
    transform 1200ms ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 5, 5, 0.92) 0%, rgba(5, 7, 7, 0.74) 38%, rgba(6, 8, 8, 0.22) 78%),
    linear-gradient(0deg, rgba(12, 13, 12, 0.81), rgba(12, 13, 12, 0.03) 44%);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 5.35rem;
  line-height: 0.96;
  font-weight: 500;
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(243, 240, 234, 0.78);
  font-size: 1.08rem;
}

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

.hero-bg-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.hero-bg-controls button {
  width: 44px;
  height: 34px;
  border: 1px solid rgba(243, 240, 234, 0.18);
  border-radius: 999px;
  background: rgba(12, 13, 12, 0.18);
  color: rgba(243, 240, 234, 0.58);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-bg-controls button:hover,
.hero-bg-controls button:focus-visible,
.hero-bg-controls button.is-active {
  border-color: rgba(176, 138, 76, 0.86);
  background: rgba(176, 138, 76, 0.14);
  color: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--paper);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffffff;
}

.button-ghost {
  border-color: rgba(243, 240, 234, 0.28);
  color: var(--paper);
  background: rgba(243, 240, 234, 0.04);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(176, 138, 76, 0.85);
}

.hero-meta {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 78px;
  border: 1px solid var(--line);
  background: rgba(243, 240, 234, 0.08);
  backdrop-filter: blur(14px);
}

.hero-meta div {
  min-height: 104px;
  padding: 18px;
  background: rgba(12, 13, 12, 0.54);
}

.hero-meta strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 1.9rem;
  font-weight: 500;
}

.hero-meta span {
  display: block;
  margin-top: 4px;
  color: rgba(243, 240, 234, 0.68);
  font-size: 0.84rem;
}

.scroll-cue {
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(243, 240, 234, 0.6);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.scroll-cue::after {
  display: block;
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, var(--brass), transparent);
  content: "";
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.section,
.band {
  padding: 116px max(22px, calc((100vw - var(--max)) / 2));
}

.section[data-home-bg],
.band[data-home-bg],
.contact[data-home-bg] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

[data-home-bg] > * {
  position: relative;
  z-index: 1;
}

.has-home-bg::before,
.has-home-bg::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.has-home-bg::before {
  background-image: var(--home-bg-image);
  background-position: var(--home-bg-position, center);
  background-size: cover;
}

.home-bg-light::after {
  background: linear-gradient(90deg, rgba(243, 240, 234, 0.94), rgba(243, 240, 234, 0.82));
}

.home-bg-dark::after {
  background: linear-gradient(90deg, rgba(12, 13, 12, 0.92), rgba(12, 13, 12, 0.7));
}

.band {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  max-width: var(--max);
  margin: 0 auto 42px;
}

.section-heading h2,
.intro h2,
.principal h2,
.spotlight h2,
.process h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 3.05rem;
  line-height: 1.08;
  font-weight: 500;
}

.section-note {
  max-width: 360px;
  margin: 0;
  color: rgba(243, 240, 234, 0.58);
  font-size: 0.92rem;
}

.band .section-note {
  color: rgba(12, 13, 12, 0.58);
}

.section-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1.8fr);
  gap: 54px;
}

.intro h2 {
  max-width: 900px;
}

.intro-copy p {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(12, 13, 12, 0.68);
  font-size: 1rem;
}

.principal {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.principal-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.principal-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.principal-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.principal-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(243, 240, 234, 0.24);
  border-radius: 8px;
  background: rgba(12, 13, 12, 0.72);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.principal-badge span {
  color: rgba(243, 240, 234, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.principal-badge strong {
  font-size: 0.92rem;
  letter-spacing: 0;
}

.principal-copy {
  max-width: 690px;
}

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

.principal-copy > p {
  margin: 24px 0 0;
  color: rgba(12, 13, 12, 0.68);
  font-size: 1.02rem;
  line-height: 1.9;
}

.principal-quote {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.principal-quote span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.principal-quote p {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: 1.42rem;
  line-height: 1.45;
}

.principal-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 36px 0 0;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.principal-facts div {
  min-height: 142px;
  padding: 18px;
  background: var(--paper);
}

.principal-facts dt {
  margin-bottom: 16px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.principal-facts dd {
  margin: 0;
  color: rgba(12, 13, 12, 0.72);
  line-height: 1.65;
}

.principal-actions {
  margin-top: 34px;
}

.principal-actions .button-primary {
  background: var(--ink);
  color: var(--paper);
}

.principal-actions .button-primary:hover,
.principal-actions .button-primary:focus-visible {
  background: #000;
}

.work {
  background: var(--ink);
}

.case-heading-title {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
}

.case-heading-title h2 {
  flex: 0 0 auto;
}

.filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--max);
  margin: -12px auto 30px;
  padding: 14px 0;
  background: rgba(12, 13, 12, 0.78);
  backdrop-filter: blur(16px);
}

.case-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 1 186px;
  width: 186px;
  min-width: 186px;
  max-width: 186px;
  height: 36px;
  min-height: 36px;
  transform: translateY(5px);
}

.case-search-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 17px;
  height: 17px;
  color: rgba(243, 240, 234, 0.66);
  fill: none;
  pointer-events: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transform: translateY(-50%);
}

.case-search:focus-within .case-search-icon {
  color: rgba(176, 138, 76, 0.92);
}

.case-search input {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 36px;
  min-height: 36px;
  box-sizing: border-box;
  border: 1px solid rgba(243, 240, 234, 0.2);
  border-radius: 999px;
  background: rgba(243, 240, 234, 0.08);
  color: var(--paper);
  padding: 0 44px 0 42px;
  outline: none;
  font: inherit;
  font-size: 0.9rem;
  line-height: normal;
}

.case-search input::placeholder {
  color: rgba(243, 240, 234, 0.46);
}

.case-search input:focus {
  border-color: rgba(176, 138, 76, 0.85);
  background: rgba(176, 138, 76, 0.12);
}

.case-search button {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(243, 240, 234, 0.62);
  cursor: pointer;
  font-size: 1.16rem;
  line-height: 1;
  transform: translateY(-50%);
}

.case-search button:hover,
.case-search button:focus-visible {
  background: rgba(243, 240, 234, 0.1);
  color: var(--paper);
}

.filter-button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(243, 240, 234, 0.18);
  border-radius: 999px;
  background: transparent;
  color: rgba(243, 240, 234, 0.74);
  cursor: pointer;
  font-size: 0.86rem;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: rgba(176, 138, 76, 0.85);
  background: rgba(176, 138, 76, 0.15);
  color: var(--paper);
}

.case-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
  align-items: stretch;
}

.case-card {
  grid-column: span 4;
  min-height: 400px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    border-color 200ms ease;
}

.case-card-tall {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 520px;
}

.case-card-wide {
  grid-column: span 8;
  min-height: 450px;
}

.case-card.is-hidden {
  display: none;
}

.case-empty {
  max-width: var(--max);
  margin: 28px auto 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(243, 240, 234, 0.64);
  text-align: center;
}

.case-card:hover,
.case-card:focus-within {
  border-color: rgba(176, 138, 76, 0.42);
}

.case-card a {
  display: grid;
  height: 100%;
  grid-template-rows: minmax(240px, 1fr) auto;
}

.case-media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: var(--ink-lift);
}

.case-card-tall .case-media {
  min-height: 320px;
}

.case-card-wide .case-media {
  min-height: 260px;
}

.case-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 620ms ease;
}

.case-card:hover .case-media img,
.case-card:focus-within .case-media img {
  transform: scale(1.035);
}

.motion-media {
  isolation: isolate;
  min-height: 260px;
  background:
    linear-gradient(90deg, rgba(12, 13, 12, 1), rgba(22, 71, 66, 0.72)),
    #111;
}

.motion-media::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, transparent 0 22%, rgba(243, 240, 234, 0.14) 22% 23%, transparent 23% 100%),
    linear-gradient(0deg, transparent 0 34%, rgba(176, 138, 76, 0.22) 34% 35%, transparent 35% 100%);
  background-size: 150px 100%, 100% 130px;
  content: "";
  opacity: 0.56;
}

.motion-surface {
  position: absolute;
  display: block;
  border: 1px solid rgba(243, 240, 234, 0.24);
  background: rgba(243, 240, 234, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.motion-surface-a {
  left: 10%;
  top: 18%;
  width: 52%;
  height: 44%;
  animation: motionSlide 7s ease-in-out infinite;
}

.motion-surface-b {
  right: 12%;
  top: 24%;
  width: 20%;
  height: 58%;
  background: rgba(143, 47, 40, 0.45);
  animation: motionPulse 5.5s ease-in-out infinite;
}

.motion-surface-c {
  left: 28%;
  bottom: 15%;
  width: 34%;
  height: 18%;
  background: rgba(22, 71, 66, 0.62);
  animation: motionSlide 8s ease-in-out infinite reverse;
}

.play-chip {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(243, 240, 234, 0.32);
  border-radius: 999px;
  background: rgba(12, 13, 12, 0.56);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
}

.case-body {
  padding: 22px;
}

.case-meta {
  margin: 0 0 8px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-body h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.58rem;
  line-height: 1.18;
  font-weight: 500;
}

.case-body > p:not(.case-meta) {
  margin: 14px 0 0;
  color: rgba(243, 240, 234, 0.66);
  font-size: 0.93rem;
  line-height: 1.72;
}

.case-body dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.case-body dl div {
  min-width: 0;
}

.case-body dt {
  color: rgba(243, 240, 234, 0.38);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-body dd {
  margin: 4px 0 0;
  color: rgba(243, 240, 234, 0.76);
  font-size: 0.84rem;
  line-height: 1.45;
}

.case-pager {
  display: flex;
  max-width: var(--max);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.case-pager button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(243, 240, 234, 0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(243, 240, 234, 0.78);
  cursor: pointer;
  font-size: 0.88rem;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.case-pager button:hover,
.case-pager button:focus-visible {
  border-color: rgba(176, 138, 76, 0.86);
  background: rgba(176, 138, 76, 0.14);
  color: var(--paper);
}

.case-pager button:disabled {
  cursor: not-allowed;
  opacity: 0.36;
}

.case-pager span {
  color: rgba(243, 240, 234, 0.58);
  font-size: 0.86rem;
}

.spotlight {
  overflow: hidden;
}

.spotlight-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 64px;
  align-items: center;
}

.spotlight-copy p:not(.section-kicker) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(12, 13, 12, 0.68);
}

.spotlight-stack {
  position: relative;
  min-height: 520px;
}

.spotlight-stack img {
  position: absolute;
  width: 70%;
  height: 62%;
  object-fit: cover;
  border: 1px solid rgba(12, 13, 12, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(12, 13, 12, 0.22);
}

.spotlight-stack img:first-child {
  right: 0;
  top: 0;
}

.spotlight-stack img:last-child {
  left: 0;
  bottom: 0;
}

.archive {
  background: var(--ink);
}

.archive-list {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.archive-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  transition:
    background 180ms ease,
    color 180ms ease,
    padding 180ms ease;
}

.archive-row:hover,
.archive-row:focus-visible {
  padding-left: 14px;
  background: rgba(243, 240, 234, 0.04);
}

.archive-row.is-hidden {
  display: none;
}

.archive-row span {
  color: rgba(243, 240, 234, 0.42);
  font-family: var(--font-sans);
}

.archive-row strong {
  font-size: 1rem;
  font-weight: 600;
}

.archive-row em {
  color: rgba(243, 240, 234, 0.54);
  font-size: 0.86rem;
  font-style: normal;
  text-align: right;
}

.services {
  border-top: 1px solid var(--line-dark);
}

.service-list {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}

.service-row {
  display: grid;
  grid-template-columns: 72px minmax(170px, 0.8fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
}

.service-row span,
.process-item span {
  color: var(--brass);
  font-family: var(--font-sans);
}

.service-row h3,
.process-item h3 {
  margin: 0;
  font-size: 1.1rem;
}

.service-row p,
.process-item p {
  margin: 0;
  color: rgba(12, 13, 12, 0.66);
}

.process {
  background:
    linear-gradient(180deg, rgba(22, 71, 66, 0.24), transparent 44%),
    var(--ink);
}

.process .section-grid {
  align-items: start;
}

.process .section-heading {
  display: block;
  margin: 0;
}

.process-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 58px minmax(150px, 0.6fr) minmax(0, 1fr);
  gap: 22px;
  padding: 28px;
  background: rgba(18, 21, 20, 0.92);
}

.process-item p {
  color: rgba(243, 240, 234, 0.66);
}

.contact {
  position: relative;
  padding: 112px max(22px, calc((100vw - var(--max)) / 2)) 34px;
  background: var(--ink);
  color: var(--paper);
}

.contact-inner {
  max-width: 920px;
}

.contact h2 {
  max-width: 820px;
  margin-bottom: 36px;
}

.contact .contact-actions .button-primary {
  background: var(--paper);
  color: var(--ink);
}

.contact .contact-actions .button-primary:hover,
.contact .contact-actions .button-primary:focus-visible {
  background: #ffffff;
}

.contact .contact-actions .button-ghost {
  border-color: rgba(243, 240, 234, 0.28);
  color: var(--paper);
}

.contact-note {
  max-width: var(--max);
  margin: 76px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(243, 240, 234, 0.56);
  font-size: 0.86rem;
}

.detail-page {
  background: var(--ink);
}

.detail-hero {
  padding: calc(var(--header-h) + 70px) max(22px, calc((100vw - var(--max)) / 2)) 64px;
  background:
    linear-gradient(180deg, rgba(22, 71, 66, 0.2), transparent 58%),
    var(--ink);
}

.back-link {
  display: inline-flex;
  margin-bottom: 44px;
  color: rgba(243, 240, 234, 0.62);
  font-size: 0.84rem;
  font-weight: 700;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--paper);
}

.detail-hero-grid,
.detail-info-grid,
.detail-story-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: start;
}

.detail-hero h1 {
  max-width: 960px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 5rem;
  line-height: 0.98;
  font-weight: 500;
}

.detail-lede {
  margin: 38px 0 0;
  color: rgba(243, 240, 234, 0.74);
  font-size: 1.06rem;
}

.detail-cover {
  max-width: none;
  margin: 0;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2)) 116px;
}

.detail-cover img {
  width: 100%;
  max-height: 820px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-info {
  padding-top: 94px;
  padding-bottom: 94px;
}

.detail-facts {
  border-top: 1px solid var(--line-dark);
}

.detail-facts dl {
  margin: 0;
}

.detail-facts div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.detail-facts dt {
  color: rgba(12, 13, 12, 0.48);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-facts dd {
  margin: 0;
  color: rgba(12, 13, 12, 0.76);
}

.detail-copy h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 2.7rem;
  line-height: 1.12;
  font-weight: 500;
}

.detail-copy p:not(.section-kicker) {
  margin: 24px 0 0;
  color: rgba(12, 13, 12, 0.68);
}

.detail-story {
  background: var(--ink);
}

.detail-story-grid {
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
}

.detail-story .detail-copy p:not(.section-kicker) {
  color: rgba(243, 240, 234, 0.66);
}

.detail-inline-image img,
.detail-image-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.detail-inline-image img {
  min-height: 520px;
  max-height: 720px;
}

.detail-inline-image figcaption,
.detail-image-grid figcaption {
  margin-top: 12px;
  color: rgba(243, 240, 234, 0.5);
  font-size: 0.84rem;
}

.detail-gallery .detail-image-grid figcaption {
  color: rgba(12, 13, 12, 0.58);
}

.detail-image-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-gallery-wide {
  grid-column: 1 / -1;
}

.detail-image-grid img {
  aspect-ratio: 4 / 3;
}

.detail-gallery-wide img {
  aspect-ratio: 16 / 9;
}

.detail-gallery-tall img {
  aspect-ratio: 3 / 4;
}

.detail-nav {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-nav-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(243, 240, 234, 0.04);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.detail-nav-card:hover,
.detail-nav-card:focus-visible {
  border-color: rgba(176, 138, 76, 0.52);
  background: rgba(176, 138, 76, 0.08);
  transform: translateY(-2px);
}

.detail-nav-card span {
  display: block;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-nav-card strong {
  display: block;
  max-width: 440px;
  margin-top: 26px;
  font-family: var(--font-sans);
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 500;
}

.about-page .detail-hero {
  background:
    linear-gradient(180deg, rgba(176, 138, 76, 0.18), transparent 58%),
    var(--ink);
}

.about-cover img {
  min-height: 620px;
}

.about-story {
  background:
    linear-gradient(180deg, rgba(22, 71, 66, 0.22), transparent 48%),
    var(--ink);
}

.about-editorial-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(220px, 0.82fr) minmax(220px, 0.82fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: end;
}

.about-editorial figure {
  margin: 0;
}

.about-editorial img {
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
}

.about-editorial figure:nth-child(2) img {
  min-height: 520px;
}

.about-videos {
  background: var(--ink);
}

.contact-page .detail-hero {
  background:
    linear-gradient(180deg, rgba(176, 138, 76, 0.2), transparent 58%),
    var(--ink);
}

.contact-cover img {
  min-height: 620px;
}

.contact-methods .detail-facts a {
  color: var(--ink);
  font-weight: 700;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact-actions .button-primary {
  background: var(--ink);
  color: var(--paper);
}

.contact-actions .button-primary:hover,
.contact-actions .button-primary:focus-visible {
  background: #000;
}

.contact-actions .button-ghost {
  border-color: rgba(12, 13, 12, 0.22);
  color: var(--ink);
}

.contact-story {
  background:
    linear-gradient(180deg, rgba(22, 71, 66, 0.18), transparent 48%),
    var(--ink);
}

.contact-brief-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
}

.contact-brief-card {
  min-height: 300px;
  padding: 24px;
  background: var(--paper);
}

.contact-brief-card span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-brief-card h3 {
  margin: 82px 0 0;
  font-family: var(--font-sans);
  font-size: 1.72rem;
  line-height: 1.12;
  font-weight: 500;
}

.contact-brief-card p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(12, 13, 12, 0.62);
}

.video-list {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-soft);
  color: var(--paper);
  text-decoration: none;
}

.video-card figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  background:
    linear-gradient(180deg, transparent, rgba(12, 13, 12, 0.42)),
    var(--video-thumb) center / cover;
}

.video-play {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(243, 240, 234, 0.38);
  border-radius: 50%;
  background: rgba(12, 13, 12, 0.46);
  backdrop-filter: blur(12px);
}

.video-play::after {
  position: absolute;
  left: 18px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid var(--paper);
  content: "";
}

.video-card div {
  padding: 22px;
}

.video-card span {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-card h3 {
  margin: 12px 0 0;
  font-size: 1.18rem;
  line-height: 1.28;
}

.video-card p {
  margin: 14px 0 0;
  color: rgba(243, 240, 234, 0.62);
  line-height: 1.7;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes motionSlide {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(18px, -10px, 0);
  }
}

@keyframes motionPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 0.92;
    transform: scale(1.05);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.68);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 1100px) {
  .case-card,
  .case-card-wide,
  .case-card-tall {
    grid-column: span 6;
  }

  .case-card-tall {
    grid-row: auto;
    min-height: 500px;
  }

  .case-card-wide {
    min-height: 430px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 63px;
  }

  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: grid;
    place-content: center;
    gap: 24px;
    background: rgba(12, 13, 12, 0.96);
    font-size: 1.45rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 84svh;
    padding: calc(var(--header-h) + 34px) 18px 34px;
  }

  .hero-slide {
    background-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 6, 6, 0.91), rgba(5, 6, 6, 0.63)),
      linear-gradient(0deg, rgba(12, 13, 12, 0.77), transparent 44%);
  }

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

  .hero-copy {
    font-size: 1rem;
  }

  .hero-meta {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section,
  .band {
    padding: 76px 18px;
  }

  .section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .intro h2,
  .principal h2,
  .spotlight h2,
  .process h2,
  .contact h2 {
    font-size: 2.3rem;
  }

  .section-note {
    max-width: none;
    margin-top: 14px;
  }

  .section-grid,
  .principal-grid,
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .principal-media,
  .principal-media img {
    min-height: 380px;
  }

  .principal-badge {
    align-items: flex-start;
    flex-direction: column;
  }

  .principal-quote p {
    font-size: 1.18rem;
  }

  .principal-facts {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    position: sticky;
    top: var(--header-h);
    z-index: 10;
    margin-top: 0;
    padding: 12px 0 18px;
    background: rgba(12, 13, 12, 0.82);
    backdrop-filter: blur(16px);
  }

  .case-heading-title {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .case-search {
    flex: 0 0 186px;
    width: 186px;
    min-width: 186px;
    max-width: 186px;
    transform: translateY(3px);
  }

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

  .case-card,
  .case-card-wide,
  .case-card-tall {
    grid-column: auto;
    min-height: auto;
  }

  .case-card a {
    grid-template-rows: auto auto;
  }

  .case-media,
  .case-card-wide .case-media,
  .case-card-tall .case-media,
  .motion-media {
    min-height: 260px;
  }

  .case-body {
    padding: 22px;
  }

  .case-pager {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .case-pager span {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .spotlight-stack {
    min-height: 420px;
  }

  .archive-row {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0;
  }

  .archive-row em {
    grid-column: 2;
    text-align: left;
  }

  .service-row,
  .process-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detail-hero {
    padding: calc(var(--header-h) + 50px) 18px 48px;
  }

  .detail-hero-grid,
  .detail-info-grid,
  .detail-story-grid,
  .detail-image-grid,
  .detail-nav,
  .about-editorial-grid,
  .contact-brief-grid,
  .video-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .detail-hero h1 {
    font-size: 3.2rem;
  }

  .detail-lede {
    margin-top: 0;
  }

  .detail-cover {
    max-width: var(--max);
    padding: 0 18px 76px;
  }

  .detail-cover img,
  .detail-inline-image img,
  .about-cover img,
  .contact-cover img,
  .about-editorial img,
  .about-editorial figure:nth-child(2) img {
    max-height: none;
    min-height: 340px;
  }

  .contact-brief-card {
    min-height: 220px;
  }

  .contact-brief-card h3 {
    margin-top: 52px;
  }

  .detail-info {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .detail-copy h2 {
    font-size: 2.1rem;
  }

  .detail-nav-card {
    min-height: 150px;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 10px;
  }

  .brand-logo {
    height: 36px;
  }

  .brand-logo-tie {
    height: 26px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero h1 {
    font-size: 2.62rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-bg-controls {
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .filter-button {
    min-height: 36px;
    padding: 0 13px;
  }

  .case-media,
  .case-card-wide .case-media,
  .case-card-tall .case-media,
  .motion-media {
    min-height: 220px;
  }

  .case-body h3 {
    font-size: 1.48rem;
  }

  .case-body dl {
    grid-template-columns: 1fr;
  }

  .case-pager {
    gap: 10px;
  }

  .case-pager button {
    padding: 0 12px;
  }

  .spotlight-stack {
    min-height: 330px;
  }

  .spotlight-stack img {
    width: 78%;
    height: 58%;
  }

  .detail-hero h1 {
    font-size: 2.6rem;
  }

  .detail-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .detail-nav-card strong {
    font-size: 1.56rem;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}



