:root {
  color-scheme: light dark;
  --ink: #101411;
  --muted: #5e635f;
  --white: #ffffff;
  --paper: #f7f7f4;
  --forest: #052f25;
  --forest-deep: #031c16;
  --green: #2d6b55;
  --green-light: #94b5a5;
  --gold: #d7ac62;
  --line: rgba(16, 20, 17, 0.18);
  --dark-line: rgba(255, 255, 255, 0.24);
  --nav-height: 72px;
  --page-gutter: clamp(20px, 4vw, 64px);
  --content-width: 1440px;
  --radius: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: Inter, "SF Pro Display", "SF Pro Text", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--forest-deep);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid #80c7a7;
  outline-offset: 4px;
}

.site-nav {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  min-height: var(--nav-height);
  padding: 10px var(--page-gutter);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 10, 9, 0.38);
  transition: background 240ms ease, border-color 240ms ease;
}

.site-nav.is-scrolled {
  background: rgba(5, 15, 12, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  object-fit: cover;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 17px;
  line-height: 1;
  font-weight: 660;
}

.brand small {
  font-size: 10px;
  line-height: 1;
  font-weight: 560;
  color: rgba(255, 255, 255, 0.66);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 52px);
  font-size: 14px;
  font-weight: 520;
}

.primary-nav a {
  position: relative;
  padding-block: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 50% 5px;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 220ms ease, inset 220ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  inset-inline: 0;
  width: 100%;
}

.nav-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 650;
  background: rgba(255, 255, 255, 0.08);
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  height: 92svh;
  min-height: 640px;
  max-height: 920px;
  overflow: hidden;
  color: var(--white);
  background: #080b0a;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(1, 5, 4, 0.2), rgba(1, 5, 4, 0.08) 52%, rgba(1, 5, 4, 0.58));
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: -14px;
  overflow: hidden;
  background: url("./assets/hero-display.jpg") center / cover no-repeat;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1.045);
}

.hero-content {
  align-self: center;
  justify-self: center;
  width: min(100% - 40px, 900px);
  padding: calc(var(--nav-height) + 34px) 0 110px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 1.08;
  font-weight: 520;
  text-wrap: balance;
}

.hero h1 span,
.translation-section h2 span,
.case-copy h2 span {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-content > p {
  margin: 30px auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.75;
  font-weight: 430;
  text-wrap: pretty;
}

.mobile-break {
  display: none;
}

.hero-actions,
.case-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 650;
  white-space: nowrap;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-primary:hover {
  background: #377b61;
}

.button-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(8, 12, 11, 0.28);
}

.button-glass:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.motion-toggle {
  position: absolute;
  right: var(--page-gutter);
  bottom: 28px;
  min-height: 44px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.next-section {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: grid;
  gap: 7px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  transform: translateX(-50%);
}

.next-section::after {
  content: "";
  width: 1px;
  height: 28px;
  background: currentColor;
  animation: scroll-cue 1.8s var(--ease) infinite;
}

@keyframes scroll-cue {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.45);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.translation-section {
  min-height: 100svh;
  scroll-margin-top: var(--nav-height);
  padding: clamp(82px, 7vw, 108px) var(--page-gutter) clamp(82px, 8vw, 124px);
  background: var(--paper);
}

.section-copy,
.asset-flow,
.case-main,
.case-evidence,
footer {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.section-copy h2 {
  max-width: 1030px;
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.12;
  font-weight: 620;
}

.section-copy h2 span {
  margin-inline: 0;
}

.section-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
}

.asset-flow {
  margin-top: clamp(42px, 4.5vw, 64px);
}

.asset-flow-track {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.05fr 0.82fr 0.78fr;
  gap: clamp(12px, 1.7vw, 28px);
  align-items: center;
  min-height: clamp(300px, 27vw, 390px);
}

.asset-stage {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  opacity: 0.78;
  transform: translateY(10px);
  transition: opacity 360ms ease, transform 480ms var(--ease);
}

.asset-stage.is-active {
  opacity: 1;
  transform: translateY(0);
}

.asset-frame {
  display: grid;
  align-items: center;
  overflow: hidden;
  min-height: 230px;
  background: #eeeeea;
}

.asset-frame img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  transition: transform 600ms var(--ease), filter 360ms ease;
}

.asset-stack {
  position: relative;
  display: block;
  overflow: visible;
  isolation: isolate;
  background: transparent;
}

.asset-stack-card {
  position: absolute;
  inset: 8px 12px 8px 0;
  display: block;
  overflow: hidden;
  width: auto;
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(20, 25, 22, 0.12);
  border-radius: 4px;
  background: #eeeeea;
  box-shadow: 0 12px 28px rgba(18, 24, 21, 0.1);
  cursor: pointer;
  transform-origin: center;
  transition: transform 420ms var(--ease), box-shadow 320ms ease, filter 320ms ease;
}

.asset-stack-card[data-stack-depth="0"] {
  z-index: 3;
  transform: translateY(7px);
  box-shadow: 0 18px 36px rgba(18, 24, 21, 0.17);
}

.asset-stack-card[data-stack-depth="1"] {
  z-index: 2;
  transform: translate(10px, -3px) rotate(1deg);
  filter: saturate(0.72) brightness(0.97);
}

.asset-stack-card[data-stack-depth="2"] {
  z-index: 1;
  transform: translate(17px, -10px) rotate(1.8deg);
  filter: saturate(0.58) brightness(0.94);
}

.asset-stack-card:hover:not([data-stack-depth="0"]) {
  transform: translate(8px, -7px) rotate(0.4deg);
}

.asset-stack-card:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 3px;
}

.asset-stack-card img {
  display: block;
  max-height: none;
  background: #eeeeea;
}

.asset-stack-card > span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 1;
  padding: 5px 7px;
  border-radius: 3px;
  background: rgba(7, 19, 15, 0.82);
  color: #fff;
  font-size: 10px;
  font-weight: 720;
  line-height: 1;
}

.asset-stack-count {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 4;
  padding: 5px 7px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 14px rgba(18, 24, 21, 0.1);
  color: var(--forest);
  font-size: 10px;
  font-weight: 760;
  line-height: 1;
  pointer-events: none;
}

.asset-stage:not(.is-active) img {
  filter: saturate(0.65) contrast(0.93);
}

.asset-stage.is-active img {
  transform: scale(1.025);
}

.asset-frame-original {
  aspect-ratio: 0.9;
}

.asset-frame-archive {
  aspect-ratio: 0.75;
}

.asset-frame-structure,
.asset-frame-model {
  aspect-ratio: 1;
}

.asset-frame-physical {
  aspect-ratio: 0.78;
}

.asset-stage figcaption {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.asset-stage.is-active figcaption {
  color: var(--forest);
  font-weight: 720;
}

.flow-controls {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 44px;
}

.flow-controls::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 8px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: var(--green);
}

.flow-controls button {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 0 8px;
  color: var(--muted);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.flow-controls button::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 4px var(--paper);
}

.flow-controls button[aria-selected="true"] {
  color: var(--ink);
  font-weight: 720;
}

.flow-controls button[aria-selected="true"]::before {
  background: var(--green);
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--green);
}

.flow-note {
  min-height: 58px;
  max-width: 700px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
  text-wrap: pretty;
}

.experience-section {
  background: #ffffff;
  color: var(--ink);
}

.experience-heading,
.experience-story {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.experience-heading {
  padding: clamp(88px, 8vw, 132px) var(--page-gutter) clamp(58px, 6vw, 92px);
}

.experience-heading > p:first-child,
.experience-index {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
}

.experience-heading h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.1;
  font-weight: 600;
}

.experience-heading h2 span {
  display: block;
  width: fit-content;
  max-width: 100%;
  word-break: keep-all;
}

.experience-heading > p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.7;
}

.experience-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
  padding: clamp(76px, 7vw, 112px) var(--page-gutter);
  border-top: 1px solid var(--line);
}

.experience-story.mucha-story {
  color: var(--white);
  background: var(--forest);
  box-shadow: 50vw 0 0 var(--forest), -50vw 0 0 var(--forest);
}

.experience-copy h3 {
  min-width: 0;
  max-width: 660px;
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.12;
  font-weight: 590;
  line-break: strict;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.experience-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.mucha-story .experience-index {
  color: var(--gold);
}

.mucha-story .experience-lead {
  color: rgba(255, 255, 255, 0.7);
}

.experience-route {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mucha-story .experience-route {
  border-color: rgba(255, 255, 255, 0.2);
}

.experience-route li {
  min-width: 112px;
  display: grid;
  gap: 5px;
  padding: 16px 18px 16px 0;
}

.experience-route span {
  color: var(--green);
  font-size: 10px;
  font-weight: 760;
}

.mucha-story .experience-route span {
  color: var(--gold);
}

.experience-route strong {
  font-size: 13px;
  font-weight: 680;
}

.experience-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 13px 22px;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
  font-size: 14px;
  font-weight: 680;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.experience-link:hover {
  color: var(--forest);
  background: transparent;
  transform: translateY(-2px);
}

.experience-link-gold {
  color: #10251e;
  border-color: var(--gold);
  background: var(--gold);
}

.experience-link-gold:hover {
  color: var(--gold);
}

.experience-media {
  min-width: 0;
}

.experience-media figure {
  margin: 0;
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.experience-main-image {
  min-height: 420px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.experience-main-image img {
  max-height: 620px;
  background: #f2f1ed;
}

.experience-media-strip {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 18px;
  margin-top: 20px;
}

.experience-media-strip figure {
  display: grid;
  grid-template-rows: 150px auto;
}

.experience-media-strip img {
  background: #f2f1ed;
}

.mucha-media {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.mucha-media .experience-main-image,
.mucha-info-image {
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.mucha-media img {
  background: #143c32;
}

.mucha-media figcaption {
  color: rgba(255, 255, 255, 0.56);
}

.sample-preview-section {
  scroll-margin-top: var(--nav-height);
  padding: clamp(86px, 8vw, 132px) var(--page-gutter) clamp(76px, 7vw, 112px);
  color: var(--ink);
  background: #f3f1eb;
}

.sample-preview-inner {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.sample-preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(44px, 8vw, 124px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.sample-preview-kicker {
  margin: 0 0 18px;
  color: #9a4c39;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.sample-preview-heading h2 {
  margin: 0;
  font-size: clamp(44px, 4.6vw, 72px);
  font-weight: 620;
  line-height: 1.08;
}

.sample-preview-heading h2 span {
  display: block;
}

.sample-preview-summary > p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.sample-preview-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.sample-preview-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
  font-size: 12px;
}

.sample-preview-stats strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1;
}

.sample-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 24px);
}

.sample-preview-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(20, 25, 22, 0.13);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 360ms var(--ease), box-shadow 360ms ease, border-color 260ms ease;
}

.sample-preview-card:hover,
.sample-preview-card:focus-visible {
  z-index: 1;
  transform: translateY(-7px);
  border-color: rgba(22, 67, 55, 0.42);
  box-shadow: 0 22px 46px rgba(19, 31, 26, 0.12);
}

.sample-preview-card:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 3px;
}

.sample-preview-card figure {
  overflow: hidden;
  aspect-ratio: 1.34;
  margin: 0;
  padding: 8px;
  background: #fff;
}

.sample-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 520ms var(--ease);
}

.sample-preview-card:hover img {
  transform: scale(1.018);
}

.sample-preview-card > div {
  display: flex;
  flex-direction: column;
  min-height: 158px;
  padding: 20px 18px 22px;
  border-top: 1px solid var(--line);
}

.sample-preview-card span {
  color: #9a4c39;
  font-size: 11px;
  font-weight: 760;
}

.sample-preview-card h3 {
  margin: 14px 0 12px;
  overflow-wrap: anywhere;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.25;
}

.sample-preview-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.sample-preview-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.sample-preview-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.sample-preview-footer .button-dark {
  color: #fff;
  background: var(--ink);
}

.sample-preview-footer .button-dark:hover {
  background: var(--forest);
}

.case-section {
  scroll-margin-top: var(--nav-height);
  background: var(--forest-deep);
  color: var(--white);
}

.case-main {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  min-height: 82svh;
  padding: clamp(84px, 8vw, 126px) var(--page-gutter);
}

.case-copy h2 {
  margin: 0;
  font-size: clamp(40px, 3.5vw, 56px);
  line-height: 1.16;
  font-weight: 580;
}

.case-copy h2 span {
  margin-inline: 0;
}

.case-copy > i {
  display: block;
  width: 62px;
  height: 3px;
  margin: 34px 0 38px;
  background: var(--gold);
}

.case-copy h3 {
  margin: 0 0 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
}

.case-copy dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.case-copy dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
}

.case-copy dt,
.case-copy dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.case-copy dt {
  color: rgba(255, 255, 255, 0.56);
}

.case-copy dd {
  color: rgba(255, 255, 255, 0.88);
}

.case-actions {
  justify-content: flex-start;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--dark-line);
}

.button-gold {
  color: #10251e;
  background: var(--gold);
}

.button-gold:hover {
  background: #e8c47f;
}

.button-outline-gold {
  color: var(--gold);
  border-color: rgba(215, 172, 98, 0.75);
}

.button-outline-gold:hover {
  color: #10251e;
  background: var(--gold);
}

.case-hero-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.45;
  background: #0d211b;
}

.case-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.case-hero-image:hover img {
  transform: scale(1.025);
}

.case-evidence {
  display: grid;
  grid-template-columns: 120px 1fr 42px 1fr 42px 1fr 42px 1fr;
  gap: clamp(12px, 1.7vw, 28px);
  align-items: center;
  padding: 28px var(--page-gutter) 34px;
  color: var(--ink);
  background: var(--white);
}

.case-evidence > strong {
  padding-right: 18px;
  font-size: 14px;
  border-right: 1px solid var(--line);
}

.case-evidence > span {
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.case-evidence figure {
  display: grid;
  grid-template-rows: auto 120px;
  gap: 10px;
  min-width: 0;
  margin: 0;
}

.case-evidence figcaption {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.case-evidence img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 24px var(--page-gutter);
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-deep);
  border-top: 1px solid rgba(215, 172, 98, 0.45);
  font-size: 12px;
}

footer > a {
  justify-self: start;
  color: var(--gold);
  font-weight: 700;
}

footer p {
  margin: 0;
}

footer div {
  display: flex;
  gap: 22px;
  justify-self: end;
}

footer div a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  :root {
    --nav-height: 64px;
  }

  .sample-preview-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .sample-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 8px 10px;
    color: var(--white);
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px var(--page-gutter) 18px;
    background: rgba(4, 17, 13, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 44px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .asset-flow-track {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    overflow-x: auto;
    align-items: end;
    padding: 6px 3px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .asset-flow-track,
  .flow-controls {
    scrollbar-width: none;
  }

  .asset-flow-track::-webkit-scrollbar,
  .flow-controls::-webkit-scrollbar {
    display: none;
  }

  .asset-stage {
    scroll-snap-align: center;
  }

  .case-main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .experience-story {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    max-width: 760px;
  }

  .case-copy {
    max-width: 720px;
  }

  .case-evidence {
    grid-template-columns: 90px repeat(4, 1fr);
  }

  .case-evidence > span {
    display: none;
  }

  .case-evidence figure {
    grid-template-rows: auto 96px;
  }
}

@media (max-width: 680px) {
  .sample-preview-section {
    padding-inline: 18px;
  }

  .sample-preview-heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .sample-preview-grid {
    grid-template-columns: 1fr;
  }

  .sample-preview-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav {
    min-height: var(--nav-height);
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 9px;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    width: min(100% - 32px, 580px);
    padding-bottom: 126px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 66px);
  }

  .hero-content > p {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.68;
  }

.desktop-break {
    display: none;
  }

  .mobile-break {
    display: initial;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 330px);
    margin-inline: auto;
  }

  .button {
    width: 100%;
  }

  .motion-toggle {
    right: 12px;
    bottom: 14px;
  }

  .next-section {
    bottom: 18px;
  }

  .translation-section {
    padding-top: 82px;
  }

  .section-copy h2,
  .case-copy h2,
  .experience-heading h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .section-copy h2 span:last-child,
  .case-copy h2 span:last-child {
    width: auto;
  }

  .section-copy > p {
    font-size: 16px;
  }

  .asset-flow {
    margin-top: 40px;
  }

  .experience-story {
    gap: 42px;
  }

  .experience-copy h3 {
    font-size: clamp(34px, 9.5vw, 48px);
  }

  .experience-route {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-route li {
    min-width: 0;
  }

  .experience-link {
    width: 100%;
  }

  .experience-main-image {
    min-height: 300px;
  }

  .experience-media-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .experience-media-strip figure {
    grid-template-rows: 116px auto;
  }

  .mucha-media {
    grid-template-columns: 1fr;
  }

  .mucha-media .experience-main-image,
  .mucha-info-image {
    min-height: 320px;
  }

  .asset-flow-track {
    grid-template-columns: repeat(5, minmax(72vw, 1fr));
    gap: 14px;
  }

  .asset-frame {
    min-height: 300px;
  }

  .asset-stack-card {
    inset: 8px 14px 10px 0;
  }

  .asset-stack-card[data-stack-depth="1"] {
    transform: translate(12px, -3px) rotate(0.8deg);
  }

  .flow-controls {
    grid-template-columns: repeat(5, minmax(112px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .flow-controls::before {
    left: 56px;
    right: 56px;
  }

  .flow-note {
    min-height: 82px;
  }

  .case-main {
    padding-top: 82px;
  }

  .case-copy dl div {
    grid-template-columns: 76px 1fr;
  }

  .case-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .case-hero-image {
    aspect-ratio: 1.05;
  }

  .case-evidence {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
    padding-block: 34px;
  }

  .case-evidence > strong {
    grid-column: 1 / -1;
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-evidence figure {
    grid-template-rows: auto 130px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  footer p {
    line-height: 1.6;
  }

  footer div {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-media video {
    display: none;
  }
}
