@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 700;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-italic-latin.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 300 700;
}

:root {
  --ink: #0b0d0e;
  --ink-soft: #151819;
  --paper: #eeeae1;
  --paper-dark: #d9d3c7;
  --accent: #ff5a36;
  --accent-dark: #d83a1c;
  --white: #f8f6f0;
  --muted: rgba(248, 246, 240, 0.62);
  --line: rgba(248, 246, 240, 0.18);
  --line-dark: rgba(11, 13, 14, 0.18);
  --type-micro: 0.78rem;
  --type-label: 0.875rem;
  --type-small: 0.95rem;
  --header-height: 88px;
  --gutter: clamp(1.25rem, 4vw, 4.75rem);
  --max-width: 1540px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  z-index: 9997;
  inset: -55%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.026;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: film-grain 0.32s steps(2, end) infinite;
}

@keyframes film-grain {
  0% { transform: translate3d(-2%, 1%, 0); }
  25% { transform: translate3d(2%, -3%, 0); }
  50% { transform: translate3d(-3%, 2%, 0); }
  75% { transform: translate3d(3%, 3%, 0); }
  100% { transform: translate3d(1%, -2%, 0); }
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

.js:not(.is-ready) body {
  overflow: hidden;
}

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

svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.25s ease;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: height 0.4s var(--ease), background 0.4s ease, border-color 0.4s ease;
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255, 90, 54, 0.65);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(11, 13, 14, 0.88);
  backdrop-filter: blur(18px);
  content: "";
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: rgba(248, 246, 240, 0.12);
}

.site-header.is-scrolled::before,
.site-header.nav-active::before {
  opacity: 1;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
}

.brand__mark {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.5vw, 3rem);
}

.main-nav a {
  position: relative;
  color: rgba(248, 246, 240, 0.78);
  font-size: var(--type-label);
  font-weight: 650;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta svg {
  width: 1.1rem;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 0.3s var(--ease);
}

.header-cta:hover svg {
  transform: translateX(0.3rem);
}

.nav-toggle {
  justify-self: end;
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  right: 0;
  width: 1.9rem;
  height: 1px;
  background: var(--white);
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}

.nav-toggle span:first-child { top: 1rem; }
.nav-toggle span:last-child { top: 1.65rem; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 1.32rem; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 1.32rem; transform: rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(760px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(350px, 0.68fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 4.5rem);
  max-width: 1920px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 3.2rem) var(--gutter) 5.5rem;
  overflow: hidden;
  background: radial-gradient(circle 30rem at var(--hero-pointer-x, 72%) var(--hero-pointer-y, 28%), rgba(255, 90, 54, 0.12), transparent 72%);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(248, 246, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 246, 240, 0.035) 1px, transparent 1px);
  background-size: 8vw 8vw;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 75%);
  animation: hero-grid-drift 20s linear infinite;
}

@keyframes hero-grid-drift {
  to { background-position: 8vw 8vw; }
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 14%;
  left: 18%;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(255, 90, 54, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 7rem rgba(255, 90, 54, 0.018), 0 0 0 14rem rgba(255, 90, 54, 0.012);
  content: "";
  pointer-events: none;
  animation: hero-ring-pulse 5.8s ease-in-out infinite;
}

@keyframes hero-ring-pulse {
  0%, 100% {
    opacity: 0.52;
    box-shadow: 0 0 0 7rem rgba(255, 90, 54, 0.018), 0 0 0 14rem rgba(255, 90, 54, 0.012);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 8.5rem rgba(255, 90, 54, 0.026), 0 0 0 17rem rgba(255, 90, 54, 0.016);
  }
}

.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  align-self: center;
  padding-top: 1.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.6rem;
  color: var(--accent);
  font-size: var(--type-label);
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.hero__title,
.display-title {
  margin: 0;
  font-size: clamp(3.7rem, 8vw, 9.2rem);
  font-weight: 780;
  letter-spacing: -0.07em;
  line-height: 0.81;
}

.hero__title {
  max-width: 9ch;
  font-size: clamp(4.4rem, 8.7vw, 10.2rem);
  text-transform: uppercase;
}

.hero__line {
  display: block;
  overflow: hidden;
  padding: 0.06em 0 0.02em;
  margin: -0.06em 0 -0.02em;
}

.hero__line > span {
  display: block;
}

.js .hero__line > span {
  opacity: 0;
  transform: translateY(118%) skewY(3deg);
  transform-origin: left bottom;
  transition: opacity 0.15s ease, transform 1.05s var(--ease);
}

.js.is-ready .hero__line > span {
  opacity: 1;
  transform: translateY(0) skewY(0);
}

.js.is-ready .hero__line:nth-child(2) > span { transition-delay: 0.1s; }
.js.is-ready .hero__line:nth-child(3) > span { transition-delay: 0.2s; }

.hero__title em,
.display-title em,
.cinema-quote em {
  color: var(--accent);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
}

.hero__title em,
.display-title em {
  position: relative;
  display: inline-block;
}

.hero__title em::after,
.display-title em::after {
  position: absolute;
  right: 0.04em;
  bottom: -0.04em;
  left: 0.04em;
  height: 0.035em;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s 0.35s var(--ease);
}

.js.is-ready .hero__title em::after,
.js .display-title.reveal.is-visible em::after {
  transform: scaleX(1);
}

.hero__title em {
  display: inline-block;
  margin-right: 0.04em;
  font-size: 1.06em;
  line-height: 0.65;
}

.hero__lead {
  max-width: 39rem;
  margin: 2.2rem 0 0;
  color: rgba(248, 246, 240, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.2rem;
}

.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin: 1.25rem 0 0;
  color: rgba(248, 246, 240, 0.62);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero__assurance span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero__assurance span::before {
  width: 0.35rem;
  height: 0.35rem;
  flex: 0 0 auto;
  background: var(--accent);
  content: "";
  transform: rotate(45deg);
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 3.7rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  min-width: 12.5rem;
  padding: 0.9rem 1.15rem 0.9rem 1.35rem;
  overflow: hidden;
  border: 1px solid transparent;
  font-size: var(--type-label);
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.button.is-magnetic,
.header-cta.is-magnetic {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.18s ease-out;
  will-change: transform;
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--white);
  content: "";
  transform: translateY(102%);
  transition: transform 0.45s var(--ease);
}

.button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 0.35s var(--ease);
}

.button:hover::before { transform: translateY(0); }
.button:hover svg { transform: translateX(0.28rem); }

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

.button--accent:hover { color: var(--ink); }

.button--light {
  background: var(--white);
  color: var(--ink);
}

.button--light::before { background: var(--accent); }

.button--dark {
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.button--dark::before { background: var(--white); }
.button--dark:hover { color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid rgba(248, 246, 240, 0.38);
  padding: 0.35rem 0;
  color: var(--white);
  font-size: var(--type-label);
  font-weight: 680;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.text-link span {
  color: var(--accent);
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}

.text-link:hover {
  border-color: var(--accent);
}

.text-link:hover span {
  transform: translate(0.18rem, 0.18rem);
}

.hero__capabilities {
  display: flex;
  gap: 0;
  max-width: 38rem;
  margin: 2.2rem 0 0;
  border-top: 1px solid var(--line);
}

.hero__capabilities > div {
  flex: 1;
  min-width: 0;
  padding: 1rem 1rem 0 0;
}

.hero__capabilities > div + div {
  border-left: 1px solid var(--line);
  padding-left: 1rem;
}

.hero__capabilities dt {
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-label);
  font-style: italic;
}

.hero__capabilities dd {
  margin: 0;
  color: rgba(248, 246, 240, 0.68);
  font-size: var(--type-micro);
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  justify-self: center;
  width: min(100%, 31rem);
  height: min(76vh, 53rem);
  min-height: 35rem;
  transform: perspective(1200px) translate3d(0, var(--hero-shift, 0), 0) rotateX(var(--hero-tilt-x, 0deg)) rotateY(var(--hero-tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.24s ease-out;
  will-change: transform;
}

.hero__frame {
  position: absolute;
  inset: 1.2rem;
  margin: 0;
  overflow: hidden;
  background: #303333;
}

.hero__frame::before {
  position: absolute;
  z-index: 3;
  top: -20%;
  bottom: -20%;
  left: -45%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(248, 246, 240, 0.14), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-220%) skewX(-18deg);
  animation: film-glint 8s 1.8s var(--ease) infinite;
}

@keyframes film-glint {
  0%, 58% { transform: translateX(-220%) skewX(-18deg); }
  78%, 100% { transform: translateX(690%) skewX(-18deg); }
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.9) contrast(1.01);
  transform: scale(1.015);
  transition: transform 1.2s var(--ease), filter 0.6s ease;
}

.hero__visual:hover .hero__frame img {
  filter: saturate(0.97) contrast(1.01);
  transform: scale(1.04);
}

.hero__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 13, 14, 0.88), transparent 30%, transparent 72%, rgba(11, 13, 14, 0.15));
  pointer-events: none;
}

.hero__scan {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 90, 54, 0.75);
  box-shadow: 0 0 12px rgba(255, 90, 54, 0.7);
  pointer-events: none;
  animation: scan 6s ease-in-out infinite;
}

@keyframes scan {
  0%, 12% { top: 8%; opacity: 0; }
  25% { opacity: 0.8; }
  75% { opacity: 0.8; }
  88%, 100% { top: 90%; opacity: 0; }
}

.hero__frame figcaption {
  position: absolute;
  z-index: 4;
  right: 1.1rem;
  bottom: 1rem;
  left: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(248, 246, 240, 0.78);
  font-size: var(--type-micro);
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.frame-corner {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-color: var(--accent);
  border-style: solid;
  pointer-events: none;
}

.frame-corner--tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.frame-corner--tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.frame-corner--bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.frame-corner--br { right: 0; bottom: 0; border-width: 0 1px 1px 0; }

.hero__vertical {
  position: absolute;
  top: 50%;
  right: -3.8rem;
  margin: 0;
  color: rgba(248, 246, 240, 0.36);
  font-size: var(--type-micro);
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(90deg);
}

.hero__spec {
  position: absolute;
  z-index: 6;
  bottom: 4.2rem;
  left: -1.25rem;
  display: grid;
  width: min(15rem, 72%);
  gap: 0.22rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: rgba(238, 234, 225, 0.95);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.26);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.hero__spec > span {
  color: var(--accent-dark);
  font-size: var(--type-micro);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__spec strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 520;
  line-height: 1.05;
}

.hero__spec small {
  color: rgba(11, 13, 14, 0.58);
  font-size: var(--type-micro);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(248, 246, 240, 0.44);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 0.8rem;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  animation: arrow-bob 1.8s var(--ease) infinite;
}

@keyframes arrow-bob {
  0%, 100% { transform: translateY(-0.15rem); }
  50% { transform: translateY(0.25rem); }
}

.ticker {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--accent);
  color: var(--ink);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.55rem;
  padding: 0.85rem 0;
  animation: ticker 24s linear infinite;
}

.ticker__track span {
  font-size: var(--type-micro);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker__track i {
  width: 0.42rem;
  height: 0.42rem;
  background: var(--ink);
  transform: rotate(45deg);
}

.audience-strip {
  display: grid;
  grid-template-columns: minmax(11rem, 0.72fr) minmax(0, 3.28fr);
  align-items: stretch;
  gap: 2rem;
  padding: 2.2rem var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
  color: var(--white);
}

.audience-strip h2 {
  align-self: center;
  margin: 0;
  color: rgba(248, 246, 240, 0.48);
  font-size: var(--type-micro);
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.audience-strip ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-strip li {
  display: flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 1.2rem;
  border-left: 1px solid var(--line);
  color: rgba(248, 246, 240, 0.76);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(0.95rem, 1.35vw, 1.25rem);
  line-height: 1.15;
}

.audience-strip li span {
  color: var(--accent);
  font-family: "Inter", Arial, sans-serif;
  font-size: var(--type-micro);
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.js .audience-strip.reveal li {
  opacity: 0;
  transform: translateX(-1.1rem);
  transition: opacity 0.5s ease, transform 0.7s var(--ease), color 0.3s ease;
}

.js .audience-strip.reveal.is-visible li {
  opacity: 1;
  transform: translateX(0);
}

.js .audience-strip.reveal.is-visible li:nth-child(2) { transition-delay: 0.08s; }
.js .audience-strip.reveal.is-visible li:nth-child(3) { transition-delay: 0.16s; }
.js .audience-strip.reveal.is-visible li:nth-child(4) { transition-delay: 0.24s; }

.js .audience-strip.reveal.is-visible li:hover,
.audience-strip li:hover {
  color: var(--white);
  transform: translateX(0.28rem);
}

.decision-strip {
  display: grid;
  grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(4.5rem, 7vw, 7rem) var(--gutter);
  border-bottom: 1px solid rgba(248, 246, 240, 0.2);
  background:
    radial-gradient(circle at 12% 22%, rgba(244, 188, 164, 0.13), transparent 36%),
    linear-gradient(115deg, #74453e 0%, #865047 56%, #6f433d 100%);
  color: var(--white);
}

.decision-strip__intro > p {
  margin: 0 0 1.3rem;
  color: rgba(248, 246, 240, 0.88);
  font-size: var(--type-micro);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.decision-strip__intro h2 {
  max-width: 14ch;
  margin: 0 0 2rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.35rem, 4.2vw, 4.9rem);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.decision-strip__intro h2 em {
  color: #f2c8bd;
  font-weight: 400;
}

.decision-strip .text-link {
  border-color: rgba(248, 246, 240, 0.58);
  color: var(--white);
}

.decision-strip .text-link span {
  color: #f2c8bd;
}

.decision-strip ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(248, 246, 240, 0.34);
  border-bottom: 1px solid rgba(248, 246, 240, 0.34);
  list-style: none;
}

.decision-strip li {
  min-width: 0;
  padding: 1.5rem 1.4rem 1.7rem 0;
}

.decision-strip li + li {
  border-left: 1px solid rgba(248, 246, 240, 0.34);
  padding-left: 1.4rem;
}

.decision-strip li > span {
  display: block;
  margin-bottom: 2.5rem;
  color: rgba(248, 246, 240, 0.82);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-label);
  font-style: italic;
}

.decision-strip strong {
  display: block;
  margin-bottom: 0.7rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  font-weight: 540;
  line-height: 1.05;
}

.decision-strip li p {
  margin: 0;
  color: rgba(248, 246, 240, 0.9);
  font-size: 0.95rem;
  line-height: 1.65;
}

.js .decision-strip.reveal li {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.5s ease, transform 0.7s var(--ease);
}

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

.js .decision-strip.reveal.is-visible li:nth-child(2) { transition-delay: 0.1s; }
.js .decision-strip.reveal.is-visible li:nth-child(3) { transition-delay: 0.2s; }

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

.section {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(11, 13, 14, 0.55);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-index span:first-child {
  display: inline-grid;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(11, 13, 14, 0.35);
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-label);
  font-style: italic;
  letter-spacing: 0;
}

.section-index--dark {
  color: rgba(11, 13, 14, 0.64);
}

.display-title {
  font-size: clamp(3.2rem, 6.5vw, 7.7rem);
  font-weight: 690;
  line-height: 0.89;
}

.manifesto {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr minmax(0, 4fr) 1fr;
  align-items: start;
  gap: 2rem;
  background: var(--paper);
  color: var(--ink);
}

.manifesto::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18%;
  width: 1px;
  background: var(--line-dark);
  content: "";
}

.manifesto__content {
  max-width: 74rem;
  margin: 4rem auto 0;
}

.manifesto .display-title em {
  color: var(--accent-dark);
}

.manifesto__body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 7rem);
  max-width: 61rem;
  margin-top: 4rem;
  margin-left: auto;
}

.manifesto__body p {
  margin: 0;
  color: rgba(11, 13, 14, 0.65);
  font-size: clamp(0.98rem, 1.2vw, 1.15rem);
  line-height: 1.75;
}

.manifesto__body .lead-copy {
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.55rem);
  line-height: 1.16;
}

.manifesto__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4rem;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.manifesto__signals article {
  position: relative;
  min-width: 0;
  padding: 1.6rem 1.5rem 1.7rem 0;
  transition: background 0.4s ease, transform 0.55s var(--ease);
}

.manifesto__signals article::after {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--accent-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.manifesto__signals article + article {
  border-left: 1px solid var(--line-dark);
  padding-left: 1.5rem;
}

.manifesto__signals span {
  color: var(--accent-dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-micro);
  font-style: italic;
}

.manifesto__signals h3 {
  margin: 1.1rem 0 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 520;
  line-height: 1.05;
}

.manifesto__signals p {
  margin: 0.7rem 0 0;
  color: rgba(11, 13, 14, 0.58);
  font-size: var(--type-small);
  line-height: 1.6;
}

.js .manifesto__signals.reveal article {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.55s ease, transform 0.7s var(--ease), background 0.4s ease;
}

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

.js .manifesto__signals.reveal.is-visible article:nth-child(2) { transition-delay: 0.1s; }
.js .manifesto__signals.reveal.is-visible article:nth-child(3) { transition-delay: 0.2s; }

.js .manifesto__signals.reveal.is-visible article:hover,
.manifesto__signals article:hover {
  background: rgba(216, 58, 28, 0.045);
  transform: translateY(-0.35rem);
}

.manifesto__signals article:hover::after { transform: scaleX(1); }

.manifesto__note {
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: rgba(11, 13, 14, 0.58);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.manifesto__note svg {
  width: 4rem;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 0.65;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

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

.work::before {
  position: absolute;
  top: 0;
  right: var(--gutter);
  left: var(--gutter);
  height: 1px;
  background: var(--line);
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto clamp(4rem, 8vw, 7.5rem);
}

.section-heading > div:last-child {
  grid-column: 2 / 4;
}

.work .section-index {
  color: rgba(248, 246, 240, 0.55);
}

.work .section-index span:first-child {
  border-color: rgba(248, 246, 240, 0.3);
  color: var(--white);
}

.section-heading__copy {
  max-width: 30rem;
  margin: 2.2rem 0 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(17, clamp(44px, 4.4vw, 70px));
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.project-card {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #202324;
  color: var(--white);
  cursor: zoom-in;
  text-align: left;
  transform-style: preserve-3d;
  will-change: transform;
}

.project-card::before {
  position: absolute;
  z-index: 2;
  top: -20%;
  bottom: -20%;
  left: -55%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(248, 246, 240, 0.2), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-160%) skewX(-16deg);
}

.project-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 255, 255, 0.2), transparent 38%);
  content: "";
  opacity: var(--glare-opacity, 0);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.project-card:nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 11; }
.project-card:nth-child(2) { grid-column: 7 / 13; grid-row: 1 / 6; }
.project-card:nth-child(3) { grid-column: 7 / 10; grid-row: 6 / 12; }
.project-card:nth-child(4) { grid-column: 10 / 13; grid-row: 6 / 12; }
.project-card:nth-child(5) { grid-column: 1 / 5; grid-row: 11 / 18; }
.project-card:nth-child(6) { grid-column: 5 / 9; grid-row: 12 / 18; }
.project-card:nth-child(7) { grid-column: 9 / 13; grid-row: 12 / 18; }

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: filter 0.55s ease, transform 0.9s var(--ease);
}

.project-card:nth-child(1) img { object-position: 50% 44%; }
.project-card:nth-child(2) img { object-position: center; }
.project-card:nth-child(3) img { object-position: 50% 43%; }
.project-card:nth-child(4) img { object-position: 50% 35%; }
.project-card:nth-child(5) img { object-position: 50% 54%; }
.project-card:nth-child(6) img { object-position: 50% 50%; }
.project-card:nth-child(7) img { object-position: 50% 50%; }

.project-card__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 13, 14, 0.92), transparent 45%);
  transition: background 0.45s ease;
}

.project-card__top {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--type-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card__top b {
  display: grid;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(248, 246, 240, 0.5);
  border-radius: 50%;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  place-items: center;
}

.project-card__top i {
  color: rgba(248, 246, 240, 0.75);
  font-style: normal;
  font-weight: 650;
  opacity: 0;
  transform: translateY(-0.4rem);
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
}

.project-card__caption {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
}

.project-card__caption small,
.project-card__caption strong {
  display: block;
}

.project-card__caption small {
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: var(--type-micro);
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-card__caption strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 2.1rem);
  font-weight: 450;
  line-height: 1;
  transition: letter-spacing 0.5s var(--ease), transform 0.5s var(--ease);
}

.project-card__top b {
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.65s var(--ease);
}

.project-card:hover img,
.project-card:focus-visible img {
  filter: saturate(1.02) contrast(1.01);
  transform: scale(1.065);
}

.project-card:hover .project-card__veil {
  background: linear-gradient(to top, rgba(11, 13, 14, 0.94), rgba(11, 13, 14, 0.02) 60%);
}

.project-card:hover .project-card__top i,
.project-card:focus-visible .project-card__top i {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover::before,
.project-card:focus-visible::before {
  opacity: 1;
  animation: project-scan 0.95s var(--ease) both;
}

.project-card:hover .project-card__top b,
.project-card:focus-visible .project-card__top b {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
  transform: rotate(360deg);
}

.project-card:hover .project-card__caption strong,
.project-card:focus-visible .project-card__caption strong {
  letter-spacing: 0.01em;
  transform: translateY(-0.18rem);
}

@keyframes project-scan {
  from { transform: translateX(-160%) skewX(-16deg); }
  to { transform: translateX(720%) skewX(-16deg); }
}

.project-brief {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: var(--max-width);
  margin: 3.5rem auto 0;
  padding: clamp(1.8rem, 3.5vw, 3.2rem);
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
}

.project-brief::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 25%;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(11, 13, 14, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(11, 13, 14, 0.025), 0 0 0 8rem rgba(11, 13, 14, 0.02);
  content: "";
  transform: translateY(-50%);
  animation: project-brief-pulse 5s ease-in-out infinite;
}

.project-brief::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(112deg, transparent 28%, rgba(248, 246, 240, 0.18) 48%, transparent 67%);
  content: "";
  transform: translateX(-115%);
  animation: project-brief-sweep 6.5s 1s var(--ease) infinite;
}

@keyframes project-brief-pulse {
  0%, 100% { opacity: 0.52; transform: translateY(-50%) scale(0.94); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.08); }
}

@keyframes project-brief-sweep {
  0%, 58% { transform: translateX(-115%); }
  82%, 100% { transform: translateX(115%); }
}

.project-brief__copy > span {
  display: block;
  margin-bottom: 0.65rem;
  font-size: var(--type-micro);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-brief h3 {
  max-width: 14ch;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 510;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.project-brief ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(11, 13, 14, 0.26);
  list-style: none;
}

.project-brief li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(11, 13, 14, 0.26);
  font-size: var(--type-label);
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-brief li span {
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-label);
  font-style: italic;
  font-weight: 400;
}

.project-brief .button--accent {
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}

.project-brief .button--accent::before {
  background: var(--white);
}

.project-brief .button--accent:hover {
  color: var(--ink);
}

.js .project-brief.reveal > * {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.55s ease, transform 0.7s var(--ease);
}

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

.js .project-brief.reveal.is-visible > :nth-child(2) { transition-delay: 0.12s; }
.js .project-brief.reveal.is-visible > :nth-child(3) { transition-delay: 0.24s; }

.services {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--paper);
  color: var(--ink);
}

.services__intro {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
  align-self: start;
  max-width: 37rem;
}

.services__intro .display-title {
  margin-top: 4rem;
  font-size: clamp(3.3rem, 5.6vw, 6.6rem);
}

.services__intro .display-title em {
  color: var(--accent-dark);
}

.services__intro > p {
  max-width: 28rem;
  margin: 2rem 0 0;
  color: rgba(11, 13, 14, 0.6);
  font-size: 1rem;
  line-height: 1.7;
}

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

.service {
  position: relative;
  display: grid;
  grid-template-columns: 2.4rem 4rem 1fr auto;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.4s ease, padding 0.55s var(--ease);
}

.service::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--accent-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}

.service:hover::after { transform: scaleX(1); }

.service__number {
  padding-top: 0.35rem;
  color: rgba(11, 13, 14, 0.42);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-label);
  font-style: italic;
}

.service__icon svg {
  width: 3.3rem;
  fill: none;
  stroke: var(--accent-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.05;
  transition: transform 0.55s var(--ease);
}

.js .service.reveal .service__icon path,
.js .service.reveal .service__icon circle {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  transition: stroke-dashoffset 1.25s 0.18s var(--ease);
}

.js .service.reveal.is-visible .service__icon path,
.js .service.reveal.is-visible .service__icon circle {
  stroke-dashoffset: 0;
}

.service__copy h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  font-weight: 470;
  line-height: 1.05;
  transition: transform 0.45s var(--ease);
}

.service__copy p {
  max-width: 37rem;
  margin: 0.8rem 0 0;
  color: rgba(11, 13, 14, 0.61);
  font-size: 1rem;
  line-height: 1.65;
}

.service__arrow {
  color: var(--accent-dark);
  font-size: 1.25rem;
  transition: transform 0.35s var(--ease);
}

.service:hover .service__arrow { transform: translate(0.25rem, 0.25rem); }

.service:hover {
  padding-right: 1rem;
  padding-left: 1rem;
  background: rgba(216, 58, 28, 0.045);
}

.service:hover .service__icon svg { transform: rotate(-5deg) scale(1.08); }
.service:hover .service__copy h3 { transform: translateX(0.35rem); }

.material-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(3rem, 6vw, 7.5rem);
  align-items: center;
  min-height: 58rem;
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
  overflow: hidden;
  background: var(--ink-soft);
}

.material-story::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 90, 54, 0.12), transparent 36%);
  content: "";
  pointer-events: none;
}

.material-story__images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
  min-height: 0;
  align-items: stretch;
}

.material-story figure {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  height: auto;
  margin: 0;
  overflow: hidden;
  background: #323535;
  box-shadow: 0 1.35rem 3.2rem rgba(0, 0, 0, 0.28);
}

.material-story__raw,
.material-story__finished {
  --story-rotate: 0deg;
  inset: auto;
  width: auto;
  transform: translate3d(0, var(--story-shift, 0), 0) rotate(var(--story-rotate));
}

.material-story__images::after {
  position: absolute;
  z-index: 5;
  top: 46%;
  left: 50%;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  border: 1px solid rgba(248, 246, 240, 0.35);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
  color: var(--ink);
  content: "→";
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
  place-items: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.material-story figure img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 941 / 1672;
  object-fit: cover;
  transition: filter 0.55s ease, transform 0.9s var(--ease);
}

.material-story__raw img { object-position: 50% 39%; }
.material-story__finished img { object-position: 50% 38%; }

.material-story figure:hover img {
  filter: contrast(1.03) saturate(1.03);
  transform: scale(1.025);
}

.material-story__raw::before {
  position: absolute;
  z-index: 1;
  right: 22%;
  bottom: calc(4.5rem + 9%);
  left: 22%;
  height: 2.2rem;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.32) 42%, transparent 74%);
  content: "";
  filter: blur(0.35rem);
  mix-blend-mode: multiply;
  opacity: 0.82;
  pointer-events: none;
  transform: rotate(1deg);
}

.material-story figure::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(248, 246, 240, 0.18);
  content: "";
  pointer-events: none;
}

.material-story figcaption {
  position: static;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  min-height: 4.5rem;
  align-items: center;
  padding: 0.9rem 1rem;
  background: rgba(11, 13, 14, 0.96);
  color: var(--white);
}

.material-story figcaption span {
  border-radius: 2rem;
  padding: 0.4rem 0.65rem;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.material-story figcaption strong {
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.material-story__copy {
  position: relative;
  z-index: 2;
  max-width: 39rem;
}

.material-story__copy .display-title {
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.material-story__copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 2.2rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.material-story__list {
  margin: 3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.material-story__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: rgba(248, 246, 240, 0.74);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.material-story__list span {
  color: var(--accent);
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
}

.material-story__cta {
  margin-top: 2.35rem;
}

.js .material-story__list.reveal li {
  opacity: 0;
  transform: translateX(1.2rem);
  transition: opacity 0.55s ease, transform 0.65s var(--ease);
}

.js .material-story__list.reveal.is-visible li {
  opacity: 1;
  transform: translateX(0);
}

.js .material-story__list.reveal.is-visible li:nth-child(2) { transition-delay: 0.08s; }
.js .material-story__list.reveal.is-visible li:nth-child(3) { transition-delay: 0.16s; }
.js .material-story__list.reveal.is-visible li:nth-child(4) { transition-delay: 0.24s; }

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 6vw, 7rem);
  background: var(--paper-dark);
  color: var(--ink);
}

.process__intro {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
  align-self: start;
}

.process__intro .display-title {
  margin-top: 4rem;
  font-size: clamp(3.5rem, 6.2vw, 7rem);
}

.process__intro .display-title em { color: var(--accent-dark); }

.process__intro > p {
  max-width: 29rem;
  margin: 2rem 0;
  color: rgba(11, 13, 14, 0.62);
  font-size: 1.05rem;
  line-height: 1.75;
}

.process .text-link {
  border-color: rgba(11, 13, 14, 0.35);
  color: var(--ink);
}

.process__body {
  min-width: 0;
}

.process-gallery {
  margin: 0 0 clamp(4rem, 7vw, 7rem);
}

.process-gallery__label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.1rem;
  color: rgba(11, 13, 14, 0.62);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-gallery__label span {
  width: 2.6rem;
  height: 2px;
  background: var(--accent-dark);
}

.process-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 13, 14, 0.2);
  background: var(--ink);
  box-shadow: 0 1.2rem 2.7rem rgba(11, 13, 14, 0.12);
  color: var(--white);
}

.process-media__visual {
  position: relative;
  overflow: hidden;
  background: #111415;
}

.process-media__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 56%, rgba(11, 13, 14, 0.26));
  content: "";
  pointer-events: none;
}

.process-media img,
.process-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-media img {
  transform: scale(1.005);
  transition: filter 0.55s ease, transform 0.9s var(--ease);
}

.process-media:hover img {
  filter: contrast(1.03) saturate(1.03);
  transform: scale(1.035);
}

.process-film .process-media__visual {
  aspect-ratio: 16 / 9;
}

.process-film video {
  background: #0b0d0e;
  color-scheme: dark;
}

.process-film {
  border-color: rgba(216, 58, 28, 0.5);
  box-shadow: 0 1.6rem 3.6rem rgba(11, 13, 14, 0.2);
}

.process-film figcaption {
  min-height: 8rem;
}

.process-film figcaption strong {
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
}

.process-media figcaption {
  display: grid;
  grid-template-columns: minmax(7.8rem, auto) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0.3rem 1.4rem;
  min-height: 7.2rem;
  align-content: center;
  padding: 1.25rem 1.4rem 1.35rem;
  background: var(--ink);
}

.process-media figcaption span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--accent);
  font-size: var(--type-label);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-media figcaption strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
}

.process-media figcaption small {
  color: rgba(248, 246, 240, 0.58);
  font-size: 0.92rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.process-shot figcaption {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  gap: 0.4rem;
  min-height: 9.2rem;
  align-content: start;
  padding: 1.1rem 1.15rem 1.2rem;
}

.process-shot figcaption span {
  grid-row: auto;
  align-self: start;
  margin-bottom: 0.25rem;
}

.process-shot figcaption strong {
  max-width: 15ch;
  font-size: clamp(1.35rem, 1.65vw, 1.58rem);
  line-height: 1.08;
}

.process-shot figcaption small {
  margin-top: 0.1rem;
  line-height: 1.4;
}

.process-stills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.process-shot--print .process-media__visual {
  aspect-ratio: 16 / 10;
}

.process-shot--finish .process-media__visual {
  aspect-ratio: 16 / 10;
}

.process-shot--print img {
  object-position: 50% 48%;
}

.process-shot--finish img {
  object-position: 50% 43%;
}

.process__steps {
  --process-progress: 0;
  position: relative;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.process__steps::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.35rem;
  width: 2px;
  background: var(--accent-dark);
  content: "";
  transform: scaleY(var(--process-progress));
  transform-origin: top;
  will-change: transform;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 2rem;
  min-height: 13rem;
  align-items: start;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.45s ease, padding 0.55s var(--ease);
}

.process-step::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--accent-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s 0.16s var(--ease);
}

.process-step.is-visible::after {
  transform: scaleX(1);
}

.process-step__number,
.process-step__tag {
  transition: opacity 0.6s ease, transform 0.75s var(--ease);
}

.js .process-step.reveal .process-step__number {
  opacity: 0;
  transform: translateY(1rem) rotate(-18deg);
}

.js .process-step.reveal .process-step__tag {
  opacity: 0;
  transform: translateX(1.2rem);
}

.js .process-step.reveal.is-visible .process-step__number,
.js .process-step.reveal.is-visible .process-step__tag {
  opacity: 1;
  transform: none;
}

.process-step__number {
  color: var(--accent-dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
}

.process-step h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 470;
  line-height: 1;
  transition: color 0.35s ease, transform 0.55s var(--ease);
}

.process-step p {
  max-width: 37rem;
  margin: 1rem 0 0;
  color: rgba(11, 13, 14, 0.62);
  font-size: 1.05rem;
  line-height: 1.72;
}

.process-step__tag {
  border: 1px solid rgba(11, 13, 14, 0.3);
  border-radius: 2rem;
  padding: 0.45rem 0.75rem;
  color: rgba(11, 13, 14, 0.55);
  font-size: var(--type-micro);
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, opacity 0.6s ease, transform 0.75s var(--ease);
}

.process-step.is-current {
  padding-right: 1rem;
  padding-left: 1rem;
  background: rgba(216, 58, 28, 0.055);
}

.process-step.is-current h3 {
  color: var(--accent-dark);
  transform: translateX(0.35rem);
}

.js .process-step.reveal.is-visible.is-current .process-step__number,
.process-step.is-current .process-step__number { transform: scale(1.18) rotate(-8deg); }

.js .process-step.reveal.is-visible.is-current .process-step__tag,
.process-step.is-current .process-step__tag {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: var(--white);
  transform: translateX(-0.25rem);
}

.cinema-quote {
  position: relative;
  isolation: isolate;
  min-height: min(56rem, 88vh);
  display: grid;
  align-items: center;
  padding: 6rem var(--gutter);
  overflow: hidden;
  background: #2a2926;
}

.cinema-quote__image {
  position: absolute;
  z-index: -3;
  inset: -8%;
  background: url("assets/images/armas-atrezzo-natural.webp") center / cover no-repeat;
  filter: saturate(0.72) contrast(1.03);
  transform: translate3d(0, var(--quote-shift, 0), 0) scale(1.1);
  will-change: transform;
}

.cinema-quote::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 13, 14, 0.96) 0%, rgba(11, 13, 14, 0.78) 45%, rgba(11, 13, 14, 0.25) 100%);
  content: "";
}

.cinema-quote__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(248, 246, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 246, 240, 0.08) 1px, transparent 1px);
  background-size: 12.5vw 100%;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  animation: quote-grid-drift 14s linear infinite;
}

@keyframes quote-grid-drift {
  to { background-position: 12.5vw 0; }
}

.cinema-quote__content {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

.cinema-quote__kicker {
  color: var(--accent);
  font-size: var(--type-micro);
  font-weight: 750;
  letter-spacing: 0.2em;
}

.cinema-quote p {
  max-width: 11ch;
  margin: 2.3rem 0 3rem;
  font-size: clamp(3.8rem, 8vw, 9.5rem);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--paper);
  color: var(--ink);
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
  align-self: start;
}

.faq__intro .display-title {
  margin-top: 4rem;
  font-size: clamp(3.3rem, 5.5vw, 6.4rem);
}

.faq__intro .display-title em {
  color: var(--accent-dark);
}

.faq__intro > p {
  max-width: 30rem;
  margin: 2rem 0;
  color: rgba(11, 13, 14, 0.62);
  line-height: 1.7;
}

.faq .text-link {
  border-color: rgba(11, 13, 14, 0.35);
  color: var(--ink);
}

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

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) 2.5rem;
  align-items: center;
  gap: 1.3rem;
  min-height: 7.5rem;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  transition: background 0.35s ease, padding 0.45s var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span {
  color: var(--accent-dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-label);
  font-style: italic;
}

.faq-item summary strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  font-weight: 480;
  line-height: 1.08;
  transition: color 0.35s ease, transform 0.45s var(--ease);
}

.faq-item summary i {
  position: relative;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(11, 13, 14, 0.28);
  border-radius: 50%;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.55s var(--ease);
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 1px;
  background: var(--accent-dark);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item summary:hover {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  background: rgba(216, 58, 28, 0.045);
}

.faq-item summary:hover strong { transform: translateX(0.3rem); }

.faq-item summary:hover i,
.faq-item[open] summary i {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  transform: rotate(90deg);
}

.faq-item summary:hover i::before,
.faq-item summary:hover i::after,
.faq-item[open] summary i::before,
.faq-item[open] summary i::after { background: var(--white); }

.faq-item > div {
  padding: 0 3.8rem 2.2rem;
}

.faq-item p {
  max-width: 42rem;
  margin: 0;
  color: rgba(11, 13, 14, 0.62);
  font-size: 1rem;
  line-height: 1.75;
  animation: faq-answer-in 0.45s var(--ease) both;
}

@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-0.45rem); }
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--accent);
  color: var(--ink);
}

.contact__intro .display-title {
  margin-top: 4rem;
  font-size: clamp(3.5rem, 5.5vw, 6.6rem);
}

.contact__intro .display-title em {
  color: var(--white);
}

.contact__intro > p {
  max-width: 36rem;
  margin: 2.2rem 0 0;
  color: rgba(11, 13, 14, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

.brief-list {
  max-width: 31rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(11, 13, 14, 0.34);
  padding-top: 1.4rem;
}

.brief-list > p {
  margin: 0 0 1rem;
  font-size: var(--type-micro);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brief-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.brief-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.2rem;
  color: rgba(11, 13, 14, 0.68);
  font-size: 0.95rem;
}

.brief-list li::before {
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--ink);
  content: "";
  transform: rotate(45deg);
}

.js .brief-list.reveal li {
  opacity: 0;
  transform: translateX(-0.8rem);
  transition: opacity 0.45s ease, transform 0.6s var(--ease);
}

.js .brief-list.reveal.is-visible li {
  opacity: 1;
  transform: translateX(0);
}

.js .brief-list.reveal.is-visible li:nth-child(2) { transition-delay: 0.08s; }
.js .brief-list.reveal.is-visible li:nth-child(3) { transition-delay: 0.16s; }
.js .brief-list.reveal.is-visible li:nth-child(4) { transition-delay: 0.24s; }
.js .brief-list.reveal.is-visible li:nth-child(5) { transition-delay: 0.32s; }

.contact-form {
  align-self: start;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--paper);
  box-shadow: 1.5rem 1.5rem 0 rgba(11, 13, 14, 0.13);
}

.contact-form__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.3rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(11, 13, 14, 0.2);
}

.contact-form__heading span {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 520;
}

.contact-form__heading p {
  max-width: 17rem;
  margin: 0;
  color: rgba(11, 13, 14, 0.5);
  font-size: var(--type-label);
  line-height: 1.5;
  text-align: right;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.field {
  position: relative;
  display: block;
  margin-bottom: 1.35rem;
}

.field::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s var(--ease);
}

.field > span {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(11, 13, 14, 0.63);
  font-size: var(--type-micro);
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.4s var(--ease);
}

.field > span small {
  margin-left: 0.35rem;
  color: rgba(11, 13, 14, 0.44);
  font-size: 1em;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.field:focus-within::after { transform: scaleX(1); }

.field:focus-within > span {
  color: var(--accent-dark);
  transform: translateX(0.25rem);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(11, 13, 14, 0.28);
  border-radius: 0;
  padding: 0.78rem 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  outline: 0;
  transition: border-color 0.25s ease;
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-optional {
  margin: 0.3rem 0 1.6rem;
  border-top: 1px solid rgba(11, 13, 14, 0.2);
  border-bottom: 1px solid rgba(11, 13, 14, 0.2);
}

.form-optional summary {
  display: flex;
  min-height: 3.7rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: rgba(11, 13, 14, 0.72);
  font-size: var(--type-label);
  font-weight: 780;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.form-optional summary::-webkit-details-marker {
  display: none;
}

.form-optional summary i {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(11, 13, 14, 0.25);
  border-radius: 50%;
}

.form-optional summary i::before,
.form-optional summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65rem;
  height: 1px;
  background: var(--accent-dark);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}

.form-optional summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.form-optional[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.form-optional__fields {
  padding-top: 0.8rem;
  animation: optional-fields-in 0.42s var(--ease) both;
}

@keyframes optional-fields-in {
  from { opacity: 0; transform: translateY(-0.55rem); }
}

.field select {
  cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(11, 13, 14, 0.4);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-dark);
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
}

.form-submit > p {
  max-width: 20rem;
  margin: 0;
  color: rgba(11, 13, 14, 0.5);
  font-size: var(--type-label);
  line-height: 1.55;
}

.form-submit > p a {
  color: rgba(11, 13, 14, 0.78);
  font-weight: 700;
  text-underline-offset: 0.18em;
}

.form-submit > p a:hover {
  color: var(--accent-dark);
}

.form-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1.15rem 0 0;
  color: rgba(11, 13, 14, 0.58);
  font-size: var(--type-micro);
  font-weight: 720;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.form-assurance span::before {
  width: 0.28rem;
  height: 0.28rem;
  background: var(--accent-dark);
  content: "";
  transform: rotate(45deg);
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.form-status {
  min-height: 1.3rem;
  margin: 1rem 0 0;
  color: #315f39;
  font-size: var(--type-label);
  font-weight: 650;
}

.form-status.is-error {
  color: #8a281b;
}

.site-footer {
  padding: 4rem var(--gutter) 2rem;
  background: var(--ink);
  color: var(--white);
}

.site-footer__top,
.site-footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 2rem;
  padding-bottom: 4rem;
}

.brand--footer {
  align-self: start;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
}

.brand--footer .brand__mark {
  width: 2.8rem;
  height: 2.8rem;
}

.site-footer__top p {
  margin: 0;
  color: var(--muted);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.4;
}

.back-to-top {
  display: inline-flex;
  gap: 0.7rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.35rem;
  color: rgba(248, 246, 240, 0.68);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.35rem;
}

.site-footer__legal a {
  color: rgba(248, 246, 240, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--white);
}

.back-to-top span { color: var(--accent); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: rgba(248, 246, 240, 0.62);
  font-size: var(--type-micro);
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mobile-project-cta {
  display: none;
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: rgba(7, 8, 8, 0.97);
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(7, 8, 8, 0.95);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) 5rem;
  align-items: center;
  animation: lightbox-in 0.35s ease both;
}

@keyframes lightbox-in { from { opacity: 0; } }

.lightbox__figure {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 4.5rem 2rem 8.5rem;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: calc(100vh - 13rem);
  object-fit: contain;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.5);
}

.lightbox.is-switching .lightbox__figure img {
  animation: lightbox-image-in 0.58s var(--ease) both;
}

.lightbox.is-switching .lightbox__figure figcaption > div {
  animation: lightbox-caption-in 0.62s 0.1s var(--ease) both;
}

.lightbox.is-switching .lightbox__project-cta {
  animation: lightbox-caption-in 0.62s 0.18s var(--ease) both;
}

@keyframes lightbox-image-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes lightbox-caption-in {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
}

.lightbox__figure figcaption {
  position: absolute;
  right: 2rem;
  bottom: 1.6rem;
  left: 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.lightbox__figure figcaption > div {
  display: grid;
  gap: 0.35rem;
}

.lightbox__figure [data-lightbox-meta] {
  color: var(--accent);
  font-size: var(--type-micro);
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lightbox__figure figcaption strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 2.3rem);
  font-weight: 450;
}

.lightbox__figure figcaption p {
  max-width: 42rem;
  margin: 0.2rem 0 0;
  color: rgba(248, 246, 240, 0.55);
  font-size: var(--type-small);
  line-height: 1.55;
}

.lightbox__project-cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(248, 246, 240, 0.35);
  padding-bottom: 0.35rem;
  color: var(--white);
  font-size: var(--type-label);
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.lightbox__project-cta span {
  color: var(--accent);
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease);
}

.lightbox__project-cta:hover span {
  transform: translate(0.15rem, 0.15rem);
}

.lightbox__close {
  position: fixed;
  z-index: 2;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(248, 246, 240, 0.3);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.lightbox__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: var(--white);
}

.lightbox__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.lightbox__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.lightbox__nav {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  margin: auto;
  border: 1px solid rgba(248, 246, 240, 0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  place-items: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.lightbox__nav:hover {
  background: var(--accent);
  color: var(--ink);
}

.lightbox__counter {
  position: fixed;
  top: 2.35rem;
  left: 1.8rem;
  color: rgba(248, 246, 240, 0.48);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(2.2rem);
  transition: opacity 0.8s ease, transform 0.9s var(--ease);
}

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

.js .display-title.reveal {
  filter: blur(8px);
  transition: opacity 0.8s ease, transform 0.9s var(--ease), filter 1s var(--ease);
}

.js .display-title.reveal.is-visible {
  filter: blur(0);
}

.js .section-index.reveal span:first-child {
  opacity: 0;
  transform: scale(0.35) rotate(-90deg);
  transition: opacity 0.45s ease, transform 0.75s var(--ease);
}

.js .section-index.reveal.is-visible span:first-child {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.js .hero__visual.reveal {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transform: perspective(1200px) translate3d(0, calc(var(--hero-shift, 0px) + 2.5rem), 0) rotateX(var(--hero-tilt-x, 0deg)) rotateY(var(--hero-tilt-y, 0deg));
  transition: opacity 0.35s ease, clip-path 1.15s var(--ease), transform 1.15s var(--ease);
}

.js.is-ready .hero__visual.reveal.is-visible {
  clip-path: inset(0);
  opacity: 1;
  transform: perspective(1200px) translate3d(0, var(--hero-shift, 0px), 0) rotateX(var(--hero-tilt-x, 0deg)) rotateY(var(--hero-tilt-y, 0deg));
}

.js.is-ready .hero__visual.reveal.is-visible.is-tilting {
  transition: opacity 0.2s ease, clip-path 0.2s ease, transform 0.18s ease-out;
}

.js .frame-corner {
  transform: scale(0);
  transition: transform 0.72s 0.48s var(--ease);
}

.js.is-ready .frame-corner { transform: scale(1); }
.frame-corner--tl { transform-origin: top left; }
.frame-corner--tr { transform-origin: top right; }
.frame-corner--bl { transform-origin: bottom left; }
.frame-corner--br { transform-origin: bottom right; }

.js .project-card.reveal {
  clip-path: inset(14% 0 14% 0);
  opacity: 0;
  transform: perspective(1100px) translateY(3.2rem) rotateX(4deg) rotateY(0);
  transition: opacity 0.72s ease, clip-path 0.95s var(--ease), transform 0.95s var(--ease);
}

.js .project-card.reveal.is-visible {
  clip-path: inset(0);
  opacity: 1;
  transform: perspective(1100px) translateY(0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.js .project-card.reveal.is-visible.is-tilting {
  transition: opacity 0.2s ease, clip-path 0.2s ease, transform 0.16s ease-out;
}

.js .material-story figure.reveal {
  clip-path: inset(100% 0 0 0);
  opacity: 0;
  transform: translate3d(0, calc(var(--story-shift, 0px) + 4rem), 0) rotate(var(--story-rotate));
  transition: opacity 0.65s ease, clip-path 1.05s var(--ease), transform 1.05s var(--ease);
}

.js .material-story figure.reveal.is-visible {
  clip-path: inset(0);
  opacity: 1;
  transform: translate3d(0, var(--story-shift, 0px), 0) rotate(var(--story-rotate));
}

.project-grid .reveal:nth-child(2),
.service-list .reveal:nth-child(2),
.process__steps .reveal:nth-child(2) { transition-delay: 0.08s; }

.project-grid .reveal:nth-child(3),
.service-list .reveal:nth-child(3),
.process__steps .reveal:nth-child(3) { transition-delay: 0.14s; }

.project-grid .reveal:nth-child(4),
.service-list .reveal:nth-child(4),
.process__steps .reveal:nth-child(4) { transition-delay: 0.2s; }

.thanks-page {
  min-height: 100svh;
  display: grid;
  background: var(--ink);
  color: var(--white);
  place-items: center;
}

.thanks {
  position: relative;
  width: min(90vw, 58rem);
  padding: clamp(3rem, 8vw, 7rem);
  border: 1px solid var(--line);
  text-align: center;
}

.thanks::before,
.thanks::after {
  position: absolute;
  width: 4rem;
  height: 4rem;
  border-color: var(--accent);
  border-style: solid;
  content: "";
}

.thanks::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.thanks::after { right: -1px; bottom: -1px; border-width: 0 1px 1px 0; }

.thanks .brand {
  justify-content: center;
  margin-bottom: 4rem;
}

.thanks h1 {
  margin: 0;
  font-size: clamp(3.6rem, 9vw, 8rem);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.85;
  text-transform: uppercase;
}

.thanks h1 em {
  color: var(--accent);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  text-transform: none;
}

.thanks > p {
  max-width: 32rem;
  margin: 2rem auto 2.5rem;
  color: var(--muted);
}

@media (max-width: 1180px) {
  :root { --header-height: 78px; }

  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .main-nav { justify-self: end; }

  .hero {
    min-height: max(820px, 100svh);
    grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
    align-items: start;
    gap: clamp(1.5rem, 2.5vw, 2.6rem);
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 4.5rem;
  }

  .hero__copy {
    align-self: start;
    padding-top: 0;
  }

  .hero__title {
    max-width: 8.7ch;
    font-size: clamp(4rem, 7.25vw, 5.55rem);
    line-height: 0.85;
  }

  .hero__title em {
    line-height: 0.72;
  }

  .hero__lead {
    max-width: 34rem;
    margin-top: 1.8rem;
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    line-height: 1.6;
  }

  .hero__actions {
    flex-wrap: wrap;
    gap: 1.2rem 1.5rem;
    margin-top: 1.8rem;
  }

  .hero__assurance {
    margin-top: 1.1rem;
  }

  .hero__capabilities {
    margin-top: 1.7rem;
  }

  .hero__visual {
    align-self: start;
    height: min(72vh, 46rem);
    min-height: 32rem;
  }

  .hero__spec {
    bottom: 4.8rem;
    left: 1.2rem;
    width: min(13.75rem, calc(100% - 2.4rem));
    padding: 0.9rem 1rem;
  }

  .hero__spec > span {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .hero__spec strong {
    font-size: 1.22rem;
  }

  .hero__spec small {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .hero__frame figcaption {
    right: 0.85rem;
    left: 0.85rem;
    gap: 0.7rem;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .hero__vertical { display: none; }

  .manifesto {
    grid-template-columns: 0.8fr 4fr;
    min-height: auto;
  }

  .manifesto__note { display: none; }
  .manifesto__content { margin-top: 5rem; }

  .services,
  .process,
  .contact {
    gap: clamp(3rem, 6vw, 5rem);
  }

  .material-story__images { min-height: 0; }

  .project-brief {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  }

  .project-brief .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }

  .site-header { gap: 1rem; }
  .site-header .brand,
  .nav-toggle { position: relative; z-index: 2; }
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100vw;
    height: 100svh;
    justify-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 6rem var(--gutter) 3rem;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 0.35s ease, transform 0.45s var(--ease);
  }

  .main-nav::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(248, 246, 240, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(248, 246, 240, 0.04) 1px, transparent 1px);
    background-size: 18vw 18vw;
    content: "";
    pointer-events: none;
  }

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

  .main-nav a {
    width: 100%;
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(2.2rem, 9vw, 4rem);
    font-weight: 420;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .main-nav a::after { display: none; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 4.5rem);
  }

  .hero::after { left: -10rem; }
  .hero__copy { padding-top: 0; }
  .hero__lead { max-width: 34rem; }

  .hero__visual {
    width: min(100%, 34rem);
    height: min(75vh, 47rem);
    margin: 2rem auto 1rem;
  }

  .hero__spec {
    bottom: 3.5rem;
    left: 0;
  }

  .hero__capabilities { max-width: none; }
  .scroll-cue { display: none; }

  .audience-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .audience-strip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-strip li:nth-child(3),
  .audience-strip li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .decision-strip {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .decision-strip__intro h2 {
    max-width: 18ch;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .manifesto::before { display: none; }
  .manifesto__content { margin: 0; }
  .manifesto__body { grid-template-columns: 1fr 1fr; margin-left: 0; }

  .manifesto__signals { margin-top: 3rem; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-heading > div:last-child { grid-column: auto; }
  .section-heading__copy { margin-left: 0; }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 26rem;
  }

  .project-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  .project-card:nth-child(1),
  .project-card:nth-child(2),
  .project-card:nth-child(7) { grid-column: 1 / -1; }

  .project-card:nth-child(1) { min-height: 40rem; }
  .project-card:nth-child(2),
  .project-card:nth-child(7) { min-height: 25rem; }

  .project-brief {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  }

  .project-brief .button {
    justify-self: start;
  }

  .services,
  .process,
  .contact,
  .material-story,
  .faq {
    grid-template-columns: 1fr;
  }

  .services__intro,
  .process__intro,
  .faq__intro {
    position: static;
  }

  .services__intro .display-title,
  .process__intro .display-title,
  .contact__intro .display-title,
  .faq__intro .display-title { margin-top: 3rem; }

  .material-story { min-height: auto; }
  .material-story__images { min-height: 0; }
  .material-story__copy { max-width: 44rem; }

  .contact-form { box-shadow: 0.8rem 0.8rem 0 rgba(11, 13, 14, 0.13); }

  .mobile-project-cta {
    position: fixed;
    z-index: 900;
    right: 1.25rem;
    bottom: 1.25rem;
    display: inline-flex;
    min-height: 3.4rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.8rem 1rem 0.8rem 1.15rem;
    background: var(--accent);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.34);
    color: var(--ink);
    font-size: var(--type-label);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s ease, transform 0.4s var(--ease);
  }

  .mobile-project-cta svg {
    width: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .mobile-project-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 2rem));
  }
}

@media (max-width: 620px) {
  :root { --gutter: 1.15rem; }

  .site-header { padding: 0 var(--gutter); }
  .brand { font-size: var(--type-label); }
  .brand__mark { width: 1.8rem; height: 1.8rem; }

  .hero {
    gap: 1.5rem;
    padding-bottom: 3.5rem;
  }

  .hero__title { font-size: clamp(3.35rem, 16.5vw, 5.2rem); }
  .hero__lead { margin-top: 1.7rem; font-size: 0.98rem; }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero__assurance {
    display: grid;
    gap: 0.55rem;
    margin-top: 1.4rem;
  }

  .hero__capabilities { margin-top: 2.5rem; }
  .hero__capabilities > div { padding-right: 0.45rem; }
  .hero__capabilities > div + div { padding-left: 0.55rem; }
  .hero__capabilities dd { font-size: var(--type-micro); letter-spacing: 0.06em; }

  .hero__visual {
    min-height: 31rem;
    height: 70svh;
    margin-top: 1rem;
  }

  .hero__frame { inset: 0.7rem; }

  .hero__spec {
    bottom: 2.8rem;
    left: -0.2rem;
    width: min(14rem, 78%);
  }

  .ticker__track { padding: 0.7rem 0; }
  .ticker__track span { font-size: var(--type-micro); }

  .audience-strip {
    padding-right: 0;
  }

  .audience-strip ul {
    display: flex;
    overflow-x: auto;
    padding-right: var(--gutter);
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .audience-strip ul::-webkit-scrollbar { display: none; }

  .audience-strip li {
    flex: 0 0 12.5rem;
    border-top: 0 !important;
    scroll-snap-align: start;
  }

  .decision-strip {
    gap: 2.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .decision-strip__intro h2 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .decision-strip ul {
    grid-template-columns: 1fr;
  }

  .decision-strip li {
    padding: 1.35rem 0;
  }

  .decision-strip li + li {
    border-top: 1px solid rgba(248, 246, 240, 0.34);
    border-left: 0;
    padding-left: 0;
  }

  .decision-strip li > span {
    margin-bottom: 1rem;
  }

  .section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .display-title { font-size: clamp(2.9rem, 15vw, 4.6rem); }

  .manifesto__body {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .manifesto__body .lead-copy { font-size: 1.65rem; }

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

  .manifesto__signals article {
    padding: 1.4rem 0;
  }

  .manifesto__signals article + article {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
    padding-left: 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 31rem;
    gap: 0.8rem;
  }

  .project-card:nth-child(n) { grid-column: auto; min-height: 0; }
  .project-card:nth-child(2) { min-height: 21rem; }
  .project-card:nth-child(7) { min-height: 31rem; }
  .project-card__top i { display: none; }

  .project-brief {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 1.5rem;
  }

  .project-brief h3 { max-width: 16ch; }
  .project-brief .button { width: 100%; }

  .service {
    grid-template-columns: 2rem 3.2rem 1fr;
    gap: 0.8rem;
    padding: 2rem 0;
  }

  .service__icon svg { width: 2.7rem; }
  .service__arrow { display: none; }
  .service__copy h3 { font-size: 1.65rem; }

  .material-story { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .material-story__images { min-height: 0; }
  .material-story__raw,
  .material-story__finished { width: auto; height: auto; }
  .material-story__copy .display-title { font-size: clamp(3rem, 15vw, 4.7rem); }

  .material-story figcaption {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    min-height: 7.2rem;
    align-content: start;
    padding: 0.8rem;
  }

  .material-story figcaption span {
    justify-self: start;
    font-size: 0.8rem;
  }

  .material-story figcaption strong {
    font-size: 0.92rem;
  }

  .material-story__cta {
    width: 100%;
    min-width: 0;
    gap: 0.8rem;
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }

  .material-story__images::after {
    top: 42%;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.3rem;
  }

  .process-gallery {
    margin-bottom: 4rem;
  }

  .process-stills {
    grid-template-columns: 1fr;
  }

  .process-shot--print .process-media__visual {
    aspect-ratio: 16 / 10;
  }

  .process-shot--finish .process-media__visual {
    aspect-ratio: 16 / 10;
  }

  .process-media figcaption {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.4rem;
    min-height: 0;
    padding: 1.1rem 1.15rem 1.25rem;
  }

  .process-media figcaption span {
    grid-row: auto;
    margin-bottom: 0.2rem;
  }

  .process-media figcaption strong {
    font-size: 1.55rem;
  }

  .process-step {
    grid-template-columns: 2.2rem 1fr;
    gap: 1rem;
    min-height: 0;
  }

  .process-step__tag { display: none; }
  .process-step h3 { font-size: 2rem; }

  .cinema-quote {
    min-height: 42rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .cinema-quote p { font-size: clamp(3.25rem, 17vw, 5rem); }
  .cinema-quote::before { background: rgba(11, 13, 14, 0.76); }

  .faq-item summary {
    grid-template-columns: 1.8rem minmax(0, 1fr) 2.2rem;
    gap: 0.65rem;
    min-height: 6.5rem;
  }

  .faq-item summary strong { font-size: 1.45rem; }
  .faq-item summary i { width: 2.1rem; height: 2.1rem; }
  .faq-item > div { padding: 0 0 1.8rem 2.45rem; }

  .contact { gap: 4rem; }
  .contact-form { padding: 1.3rem; }

  .contact-form__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .contact-form__heading p { text-align: left; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .form-assurance { display: grid; gap: 0.45rem; }

  .site-footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 0.5rem; }

  .lightbox[open] { grid-template-columns: 3.4rem minmax(0, 1fr) 3.4rem; }
  .lightbox__figure { padding: 4.5rem 0.4rem 10.5rem; }
  .lightbox__figure figcaption { align-items: flex-start; flex-direction: column; gap: 0.4rem; }
  .lightbox__nav { width: 2.6rem; height: 2.6rem; }
  .lightbox__close { top: 1rem; right: 1rem; }
  .lightbox__counter { top: 1.9rem; left: 1rem; }

  .mobile-project-cta {
    right: var(--gutter);
    bottom: var(--gutter);
    left: var(--gutter);
  }

  .thanks { padding: 3rem 1.4rem; }
  .thanks .brand { margin-bottom: 3rem; }
}

@media (max-width: 900px) {
  body::after {
    animation: none;
  }

  .js .hero__line > span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

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

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

  .js .hero__line > span,
  .js .section-index.reveal span:first-child,
  .js .material-story__list.reveal li {
    opacity: 1;
    transform: none;
  }

  .js .hero__visual.reveal,
  .js .project-card.reveal {
    clip-path: none;
    opacity: 1;
    transform: none !important;
  }

  .js .material-story figure.reveal {
    clip-path: none;
    opacity: 1;
    transform: rotate(var(--story-rotate)) !important;
  }

  .js .frame-corner { transform: scale(1); }

  .js .service.reveal .service__icon path,
  .js .service.reveal .service__icon circle {
    stroke-dashoffset: 0;
  }

  .cinema-quote__image { transform: scale(1.1) !important; }
}

/* Legal */
.legal-page {
  background: var(--paper);
  color: var(--ink);
}

.legal-page .site-header {
  background: rgba(11, 13, 14, 0.96);
}

.legal-page .main-nav a[aria-current="page"] {
  color: var(--white);
}

.legal-main {
  padding-top: var(--header-height);
  background: var(--paper);
}

.legal-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(15rem, 0.9fr);
  align-items: end;
  gap: clamp(2.5rem, 8vw, 9rem);
  min-height: clamp(28rem, 58vh, 42rem);
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter) clamp(4rem, 7vw, 6.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 90, 54, 0.18), transparent 30%),
    linear-gradient(128deg, #171a1b 0%, #0b0d0e 64%, #25201e 100%);
  color: var(--white);
}

.legal-hero::after {
  position: absolute;
  right: clamp(-7rem, -2vw, -2rem);
  bottom: clamp(-12rem, -10vw, -5rem);
  width: clamp(18rem, 36vw, 34rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 90, 54, 0.26);
  content: "";
  transform: rotate(45deg);
}

.legal-hero__copy,
.legal-hero__intro {
  position: relative;
  z-index: 1;
}

.legal-hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
  color: rgba(248, 246, 240, 0.72);
  font-size: var(--type-micro);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-hero__kicker::before {
  width: 2.2rem;
  height: 1px;
  background: var(--accent);
  content: "";
}

.legal-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3.25rem, 7vw, 7.5rem);
  font-weight: 480;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.legal-hero h1 em {
  color: var(--accent);
  font-weight: 400;
}

.legal-hero__intro {
  max-width: 34rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(248, 246, 240, 0.24);
}

.legal-hero__intro > p {
  margin: 0;
  color: rgba(248, 246, 240, 0.75);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
}

.legal-hero__updated {
  display: block;
  margin-top: 1.4rem;
  color: rgba(248, 246, 240, 0.5);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.32fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) var(--gutter) clamp(6rem, 10vw, 10rem);
}

.legal-nav {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.legal-nav > span {
  display: block;
  margin-bottom: 1.15rem;
  color: rgba(11, 13, 14, 0.48);
  font-size: var(--type-micro);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-nav ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.legal-nav a {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.7rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(11, 13, 14, 0.66);
  font-size: var(--type-label);
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a span {
  color: var(--accent-dark);
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
}

.legal-nav a:hover {
  color: var(--ink);
}

.legal-article {
  max-width: 66rem;
}

.legal-section {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: 0 0 clamp(3rem, 6vw, 5.5rem);
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.legal-section + .legal-section {
  padding-top: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line-dark);
}

.legal-section__number {
  padding-top: 0.35rem;
  color: var(--accent-dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

.legal-section h2 {
  margin: 0 0 1.25rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.legal-section p,
.legal-section li {
  color: rgba(11, 13, 14, 0.72);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.78;
}

.legal-section p {
  margin: 0 0 1rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.legal-section a,
.legal-contact a {
  color: var(--accent-dark);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.legal-status {
  margin: 0 0 clamp(3.5rem, 7vw, 6rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-left: 3px solid var(--accent);
  background: #e2ddd3;
}

.legal-status strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 560;
}

.legal-status p {
  margin: 0;
  color: rgba(11, 13, 14, 0.7);
  line-height: 1.65;
}

.legal-contact {
  margin-top: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--ink);
  color: var(--white);
}

.legal-contact strong {
  display: block;
  margin-bottom: 0.7rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 520;
}

.legal-contact p {
  margin: 0;
  color: rgba(248, 246, 240, 0.7);
}

.legal-contact a {
  color: #ff9a83;
}

.site-footer__legal a[aria-current="page"] {
  color: var(--white);
}

.thanks__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  margin-top: 2rem;
  color: rgba(248, 246, 240, 0.62);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thanks__legal a {
  text-underline-offset: 0.2em;
}

@media (max-width: 820px) {
  .legal-hero {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 3rem;
    min-height: auto;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .legal-nav ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav li:nth-child(odd) a {
    padding-right: 1rem;
  }
}

@media (max-width: 560px) {
  .legal-hero {
    padding-top: 4rem;
  }

  .legal-nav ol {
    grid-template-columns: 1fr;
  }

  .legal-section {
    grid-template-columns: 2.1rem minmax(0, 1fr);
  }
}
