:root {
  color-scheme: light;
  --ink: #161512;
  --muted: rgba(0, 0, 0, 0.66);
  --body-copy: rgba(0, 0, 0, 0.78);
  --secondary-copy: rgba(0, 0, 0, 0.58);
  --paper: #f3efe4;
  --paper-soft: #faf7ef;
  --field: #d8e4c2;
  --moss: #4d623d;
  --clay: #a45d37;
  --red: #ff170f;
  --night: #11100e;
  --line: rgba(22, 21, 18, 0.16);
  --white: #fffaf0;
  --pixel: "Pixelify Sans", "Courier New", monospace;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Archivo", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 13px;
  color: var(--white);
  background: var(--night);
  font-family: var(--pixel);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 20px clamp(18px, 4vw, 48px);
  color: #ffffff;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, text-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(243, 239, 228, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  text-shadow: none;
}

.wordmark {
  --logo-width: 132px;
  --logo-height: 39px;
  display: inline-flex;
  align-items: center;
  width: var(--logo-width);
  height: var(--logo-height);
  overflow: visible;
}

.logo-letter {
  position: relative;
  flex: 0 0 auto;
  display: block;
  height: var(--logo-height);
  background-image: url("assets/obra-logo-transparent.png");
  background-repeat: no-repeat;
  background-size: var(--logo-width) var(--logo-height);
  image-rendering: pixelated;
  cursor: pointer;
  transition: filter 120ms ease;
}

.logo-letter:hover {
  filter: brightness(1.1);
}

.logo-o {
  width: calc(var(--logo-width) * 0.2665);
  background-position: 0 0;
}

.logo-b {
  width: calc(var(--logo-width) * 0.2388);
  background-position: calc(var(--logo-width) * -0.2665) 0;
}

.logo-r {
  width: calc(var(--logo-width) * 0.2172);
  background-position: calc(var(--logo-width) * -0.5053) 0;
}

.logo-a {
  width: calc(var(--logo-width) * 0.2775);
  background-position: calc(var(--logo-width) * -0.7225) 0;
}

.logo-letter.is-breaking {
  animation: letter-break 420ms steps(4, end) forwards;
}

.logo-letter.is-dropping {
  animation: letter-drop 560ms cubic-bezier(0.17, 0.9, 0.3, 1.14);
}

.logo-chip {
  position: fixed;
  z-index: 60;
  width: 6px;
  height: 6px;
  background: var(--red);
  border: 1px solid rgba(17, 16, 14, 0.78);
  box-shadow: inset 1px 1px 0 rgba(255, 250, 240, 0.28);
  pointer-events: none;
  animation: chip-burst 760ms cubic-bezier(0.08, 0.74, 0.22, 1) forwards;
  animation-delay: var(--delay, 0ms);
}

.logo-chip:nth-child(3n) {
  background: #9f261d;
}

.logo-chip:nth-child(4n) {
  background: #2a1815;
}

@keyframes letter-break {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }

  35% {
    opacity: 1;
    transform: translate(-1px, 1px);
  }

  70% {
    opacity: 0.25;
    transform: translate(2px, -2px);
  }

  100% {
    opacity: 0;
    transform: translateY(8px) scale(0.86);
  }
}

@keyframes letter-drop {
  0% {
    opacity: 0;
    transform: translateY(-52px);
  }

  68% {
    opacity: 1;
    transform: translateY(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chip-burst {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }

  42% {
    opacity: 1;
    transform: translate(calc(var(--dx) * 0.62), calc(var(--dy) * -0.72 - 18px)) rotate(180deg);
  }

  100% {
    opacity: 0;
    transform: translate(var(--dx), calc(var(--dy) + 32px)) rotate(360deg);
  }
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 36px);
  font-family: var(--pixel);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links a,
.nav-cta {
  opacity: 0.86;
}

.nav-links a:hover,
.nav-cta:hover {
  opacity: 1;
}

.nav-links a {
  color: inherit;
}

.nav-cta {
  font-family: var(--pixel);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 2px;
  padding: 11px 15px 12px;
  text-transform: uppercase;
}

.mobile-menu-toggle {
  display: none;
}

.overlay-email {
  display: none;
}

.site-header.is-scrolled .nav-cta {
  border-color: currentColor;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background-color: var(--night);
  background-image: url("assets/obra-hero-poster.png");
  background-image: image-set(
    url("assets/obra-hero-poster.webp") type("image/webp"),
    url("assets/obra-hero-poster.png") type("image/png")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  height: 116px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0)
  );
}

.hero-loader {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 23, 15, 0.16), transparent 30%),
    rgba(17, 16, 14, 0.92);
  pointer-events: none;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.hero-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-count {
  color: var(--white);
  font-family: var(--pixel);
  font-size: clamp(34px, 7vw, 72px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 23, 15, 0.36), 0 2px 0 rgba(17, 16, 14, 0.7);
}

.loader-bar {
  position: relative;
  width: min(260px, 62vw);
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.42);
  background: rgba(255, 250, 240, 0.12);
}

.loader-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background: var(--red);
  box-shadow: 0 0 22px rgba(255, 23, 15, 0.54);
  transform-origin: left center;
  animation: loader-countdown 3s linear forwards;
}

@keyframes loader-countdown {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 720ms ease;
  z-index: 0;
}

.hero.is-video-ready .hero-video.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-scrim {
  background:
    radial-gradient(circle at 30% 54%, rgba(17, 16, 14, 0.5), rgba(17, 16, 14, 0.08) 36%, transparent 56%),
    linear-gradient(90deg, rgba(17, 16, 14, 0.67), rgba(17, 16, 14, 0.04) 58%, rgba(17, 16, 14, 0.23)),
    linear-gradient(0deg, rgba(17, 16, 14, 0.53), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 clamp(108px, 15vh, 156px);
}

.hero-message {
  width: min(750px, 100%);
  padding: clamp(20px, 3vw, 32px);
  margin-left: -30px;
  background: transparent;
  backdrop-filter: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-family: var(--pixel);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-kicker {
  color: var(--red);
  letter-spacing: 0.18em;
}

.eyebrow {
  color: rgba(255, 250, 240, 0.78);
  text-shadow: 0 1px 8px rgba(17, 16, 14, 0.85);
}

.eyebrow-mobile,
.hero-mobile-only,
.hero-mobile-arrow {
  display: none;
}

.contact-mobile-arrow {
  display: none;
}

.hero h1 {
  margin: 0;
  max-width: 690px;
  color: var(--white);
  font-size: clamp(44px, 6.2vw, 84px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.hero h1 .hero-red-line {
  display: block;
  color: var(--red);
  text-shadow: 0 2px 0 rgba(17, 16, 14, 0.42), 0 0 18px rgba(255, 23, 15, 0.24);
}

.hero-copy {
  width: min(720px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.92);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  font-weight: 600;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.hero-copy-mobile {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 250, 240, 0.72);
  font-family: var(--pixel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.hero-scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 46px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.22);
}

.hero-scroll-cue i::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 1px;
  height: 18px;
  background: var(--red);
  animation: scroll-cue-drop 1.6s ease-in-out infinite;
}

@keyframes scroll-cue-drop {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  22% {
    opacity: 1;
  }

  78% {
    opacity: 1;
  }

  100% {
    transform: translateY(64px);
    opacity: 0;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 2px;
  padding: 14px 24px 15px;
  font-family: var(--pixel);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px) scale(1.01);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  box-shadow: 4px 4px 0 rgba(255, 250, 240, 0.9), 0 0 24px rgba(255, 23, 15, 0.32);
}

.button-primary:hover {
  box-shadow: 5px 5px 0 rgba(255, 250, 240, 0.92), 0 0 32px rgba(255, 23, 15, 0.54);
}

.hero-actions .button-primary,
.hero-actions .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  gap: 16px;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-actions .hero-mobile-arrow,
.hero-secondary-arrow {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.hero-actions .button-primary:hover .hero-mobile-arrow,
.hero-actions .button-primary:active .hero-mobile-arrow,
.hero-actions .button-secondary:hover .hero-secondary-arrow,
.hero-actions .button-secondary:active .hero-secondary-arrow {
  transform: translateX(4px);
}

.hero-secondary-prefix {
  display: none;
}

.hero-actions .hero-mobile-only {
  display: inline-flex;
}

.button-secondary {
  position: relative;
  color: var(--white);
  min-height: 52px;
  padding: 14px 18px 15px;
  border: 1px solid rgba(255, 250, 240, 0.38);
  background: rgba(255, 250, 240, 0.08);
  box-shadow: inset 0 0 0 1px rgba(17, 16, 14, 0.16);
}

.button-secondary::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 160ms ease, transform 180ms ease;
}

.button-secondary:hover {
  border-color: rgba(255, 250, 240, 0.68);
  background: rgba(255, 250, 240, 0.13);
  filter: brightness(1.08);
}

.button-secondary:hover::before {
  opacity: 0.76;
  transform: scaleX(1);
}

.contact .button-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.ticker {
  position: relative;
  z-index: 3;
  left: 0;
  right: 0;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 44px;
  font-family: var(--pixel);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span:nth-child(even) {
  min-width: 70px;
  color: rgba(255, 250, 240, 0.58);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

@keyframes eyebrow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 34, 34, 0.58);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(230, 34, 34, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(230, 34, 34, 0);
  }
}

.intro,
.do-grid,
.visual-break,
.services,
.split-story,
.process,
.proof,
.examples,
.contact {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(28px, 6vw, 92px);
  padding: clamp(74px, 11vw, 138px) 0 clamp(66px, 9vw, 104px);
}

.intro .section-kicker {
  grid-column: 1;
  grid-row: 1;
}

.intro h2 {
  grid-column: 2;
  grid-row: 1;
}

.intro > p:not(.intro-support) {
  grid-column: 1;
  grid-row: 2;
}

.intro-support {
  grid-column: 2;
  grid-row: 2;
  max-width: 780px;
  color: var(--ink);
  font-weight: 700;
  margin: 18px 0 20px;
}

.intro h2,
.services h2,
.split-story h2,
.process h2,
.examples h2,
.contact h2 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
}

.intro p,
.split-story p,
.proof p,
.examples p,
.contact-panel p {
  margin: 0;
  color: var(--body-copy);
  font-size: clamp(18px, 2.3vw, 26px);
  line-height: 1.34;
}

.intro .intro-support {
  color: var(--ink);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.12;
}

.do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.do-grid article {
  min-height: 260px;
  padding: clamp(24px, 4vw, 46px);
  border-right: 1px solid var(--line);
  background: var(--paper-soft);
}

.do-grid article:last-child {
  border-right: 0;
}

.do-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-family: var(--pixel);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.do-grid h3 {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 0.98;
}

.do-grid p {
  margin: 0;
  color: var(--body-copy);
  font-size: 16px;
  line-height: 1.42;
}

.visual-break {
  padding: clamp(56px, 8vw, 92px) 0 0;
}

.visual-break-image {
  min-height: clamp(280px, 42vw, 540px);
  border: 1px solid var(--line);
  background-color: var(--night);
  background-image:
    linear-gradient(90deg, rgba(17, 16, 14, 0.16), rgba(17, 16, 14, 0.02) 44%, rgba(17, 16, 14, 0.18)),
    image-set(
      url("assets/obra-studio-collaboration.webp") type("image/webp"),
      url("assets/obra-studio-collaboration.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.08);
}

.beliefs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.replacement-grid {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.replacement-bridge {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px clamp(24px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
  color: var(--secondary-copy);
  font-size: 16px;
  line-height: 1.42;
}

.beliefs article {
  min-height: 340px;
  padding: clamp(24px, 4vw, 46px);
  border-right: 1px solid var(--line);
  background: var(--paper-soft);
}

.beliefs article:last-child {
  border-right: 0;
}

.beliefs span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 58px;
  font-family: var(--pixel);
  text-transform: uppercase;
}

.beliefs h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1;
}

.beliefs p,
.timeline p,
.service-row span:last-child {
  margin: 0;
  color: var(--body-copy);
  font-size: 16px;
  line-height: 1.42;
}

.services {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  gap: clamp(34px, 7vw, 96px);
  padding: clamp(74px, 10vw, 126px) 0;
}

.services-support {
  margin: 24px 0 0;
  max-width: 420px;
  color: var(--body-copy);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.3;
}

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

.service-row {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 22px;
  min-height: 98px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: color 160ms ease, padding-left 160ms ease;
}

.service-row:hover {
  color: var(--red);
  padding-left: 10px;
}

.service-row span:first-child {
  font-size: clamp(21px, 3vw, 31px);
  line-height: 1.04;
  font-weight: 600;
}

.split-story {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: clamp(32px, 8vw, 110px);
  align-items: end;
  padding: clamp(70px, 10vw, 120px) 0;
  border-top: 1px solid var(--line);
}

.process {
  padding: clamp(70px, 10vw, 120px) 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.timeline div {
  padding: 24px 28px 0;
  border-right: 1px solid var(--line);
}

.timeline div:first-child {
  padding-left: 0;
}

.timeline div:last-child {
  border-right: 0;
}

.timeline span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 21px;
  font-weight: 700;
}

.proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) 1.35fr;
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  padding: clamp(44px, 8vw, 90px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-heading {
  margin: 0;
  max-width: 850px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
}

.proof-kicker {
  margin-bottom: 16px;
  font-size: 11px;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.proof-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.proof-copy p + p {
  margin-top: 18px;
}

.examples {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) 1.35fr;
  gap: clamp(34px, 7vw, 96px);
  padding: clamp(74px, 10vw, 126px) 0;
  border-bottom: 1px solid var(--line);
}

.examples-subtext {
  margin-top: 24px;
  max-width: 420px;
  color: var(--body-copy);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.3;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.example-grid article {
  min-width: 0;
  min-height: 260px;
  padding: clamp(28px, 3.4vw, 42px);
  border-right: 1.5px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.example-grid article:last-child {
  border-right: 0;
}

.example-grid h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.example-grid p {
  font-size: 16px;
  line-height: 1.42;
}

.examples-close {
  margin: 18px 0 0;
  color: var(--secondary-copy);
  font-size: 16px;
  line-height: 1.42;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr;
  gap: clamp(32px, 8vw, 110px);
  align-items: start;
  min-height: 100svh;
  padding: clamp(48px, 7vw, 86px) 0;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.inquiry-form {
  display: grid;
  width: min(100%, 560px);
  gap: 12px;
}

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

.inquiry-form label {
  display: grid;
  gap: 7px;
}

.inquiry-form label span {
  color: var(--ink);
  font-family: var(--pixel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  font: 600 16px/1.35 "DM Sans", "Archivo", Arial, sans-serif;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.inquiry-form textarea {
  min-height: 104px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 23, 15, 0.12);
}

.inquiry-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.44);
}

.inquiry-form .button-primary {
  width: fit-content;
  min-width: 240px;
  margin-top: 4px;
  border-radius: 0;
  cursor: pointer;
}

.form-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-email {
  margin-top: -8px;
  color: var(--muted);
  font-family: var(--pixel);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px clamp(18px, 4vw, 48px);
  color: var(--paper);
  background: var(--night);
  font-size: 13px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.footer-socials a {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: #ffffff;
  opacity: 0.6;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer small {
  color: #ffffff;
  font-family: var(--pixel);
  font-size: 11px;
  font-weight: 700;
  opacity: 0.35;
}

.not-found-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 23, 15, 0.2), transparent 32%),
    linear-gradient(135deg, var(--night), #050504);
}

.not-found {
  display: grid;
  align-content: center;
  min-height: 100vh;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.not-found-logo {
  display: inline-flex;
  width: 132px;
  margin-bottom: 64px;
}

.not-found-logo img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

.not-found h1 {
  margin: 0;
  max-width: 620px;
  color: var(--white);
  font-size: clamp(56px, 11vw, 118px);
  line-height: 0.94;
  letter-spacing: 0;
}

.not-found p:not(.section-kicker) {
  max-width: 460px;
  margin: 28px 0 34px;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.42;
}

.thanks-note {
  display: grid;
  width: min(520px, 100%);
  margin: 0 0 34px;
  border-top: 1px solid rgba(255, 250, 240, 0.16);
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
}

.thanks-note span {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.76);
  font-family: var(--pixel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.thanks-note span:last-child {
  border-bottom: 0;
}

.not-found .section-kicker {
  color: var(--red);
}

.not-found .button {
  width: fit-content;
}

@media (min-width: 861px) {
  .section-kicker {
    letter-spacing: 0.18em;
  }

  .intro,
  .do-grid,
  .services,
  .split-story,
  .process,
  .proof,
  .examples,
  .contact {
    padding-top: max(72px, var(--section-top, 72px));
  }

  .intro {
    --section-top: clamp(74px, 11vw, 138px);
  }

  .services,
  .examples {
    --section-top: clamp(74px, 10vw, 126px);
  }

  .split-story,
  .process {
    --section-top: clamp(72px, 10vw, 120px);
  }

  .proof {
    --section-top: clamp(72px, 8vw, 90px);
    align-items: start;
  }

  .contact {
    --section-top: clamp(74px, 11vw, 138px);
    padding-top: clamp(48px, 7vw, 86px);
  }

  .intro p,
  .split-story p,
  .proof p,
  .examples p,
  .contact-panel p,
  .replacement-bridge,
  .beliefs p,
  .timeline p,
  .service-row span:last-child,
  .services-support,
  .examples-subtext,
  .examples-close {
    font-family: "DM Sans", "Archivo", Arial, sans-serif;
  }

  .hero h1 {
    letter-spacing: -0.03em;
    line-height: 0.95;
  }

  .intro h2,
  .services h2,
  .split-story h2,
  .process h2,
  .examples h2,
  .contact h2 {
    margin-bottom: 16px;
    font-size: clamp(48px, 6.8vw, 88px);
    font-weight: 900;
  }

  .proof-heading {
    font-size: clamp(48px, 6.8vw, 88px);
    font-weight: 900;
  }

  .example-grid {
    display: block;
    border-top: 0;
  }

  .example-grid article {
    min-height: auto;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-right: 0;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
  }

  .example-grid article:last-child {
    border-right: 0;
  }

  .example-grid h3 {
    margin-bottom: 10px;
  }

  .intro .intro-support,
  .services-support,
  .examples-subtext {
    margin-top: 0;
    margin-bottom: 12px;
  }

  .contact-panel .button-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    min-width: 240px;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 0;
  }

  .contact-mobile-arrow {
    display: inline-flex;
    margin-left: 20px;
  }

  .hero-scrim::before,
  .hero-scrim::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: screen;
  }

  .hero-scrim::before {
    background: radial-gradient(
      ellipse at 30% 40%,
      rgba(255, 80, 40, 0.08) 0%,
      rgba(255, 140, 0, 0.05) 30%,
      rgba(0, 0, 0, 0) 70%
    );
  }

  .hero-scrim::after {
    background: radial-gradient(
      ellipse at 70% 60%,
      rgba(80, 0, 255, 0.05) 0%,
      rgba(0, 0, 0, 0) 60%
    );
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
    transition: background 0.3s ease, color 0.3s ease, backdrop-filter 0.3s ease;
  }

  .site-header.is-scrolled {
    color: var(--ink);
    background: rgba(243, 239, 228, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
    text-shadow: none;
  }

  .site-header.is-menu-open {
    color: var(--ink);
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    z-index: 1000;
  }

  .nav-links {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    height: min(420px, 62svh);
    padding: 96px 28px 36px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 46px rgba(17, 16, 14, 0.1);
    opacity: 0;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    transform: translateY(0);
    transition: opacity 0.18s ease, clip-path 0.32s cubic-bezier(0.2, 0.82, 0.2, 1);
  }

  .nav-links::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px),
      radial-gradient(circle at 72% 68%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px);
    background-size: 5px 5px, 7px 7px;
  }

  .site-header.is-menu-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
  }

  .nav-links a {
    position: relative;
    width: fit-content;
    padding: 0;
    color: #1a1a1a;
    font-size: clamp(34px, 10vw, 42px);
    font-weight: 900;
    line-height: 0.95;
    opacity: 0;
    transform: translateY(8px);
    text-shadow: none;
    transition: color 0.18s ease, opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-links a:hover {
    color: #e62222;
  }

  .site-header.is-menu-open .nav-links a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.04s;
  }

  .overlay-email {
    display: block;
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 14px;
    color: rgba(230, 34, 34, 0.78);
    font-family: var(--pixel);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 52px;
    height: 52px;
    padding: 12px;
    color: #ffffff;
    background: transparent;
    border: 0;
  }

  .site-header::after {
    content: "";
    position: fixed;
    z-index: 998;
    inset: 0;
    background: rgba(17, 16, 14, 0.22);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  .site-header.is-menu-open::after {
    opacity: 1;
    pointer-events: none;
  }

  .site-header.is-scrolled:not(.is-menu-open) .mobile-menu-toggle {
    color: var(--ink);
  }

  .site-header:not(.is-scrolled):not(.is-menu-open) .mobile-menu-toggle {
    color: #ffffff;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.95));
  }

  .site-header.is-menu-open .mobile-menu-toggle {
    color: var(--ink);
    filter: none;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    align-items: center;
  }

  .hero-scrim {
    background:
      radial-gradient(
        ellipse at top,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0) 60%
      ),
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.4) 55%,
        rgba(0, 0, 0, 0.1) 80%,
        rgba(0, 0, 0, 0) 100%
      );
    backdrop-filter: blur(1px);
  }

  .hero-video {
    filter: brightness(0.78) saturate(0.9);
    transform: scale(1.015);
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 0;
    transform: translateY(-6vh);
    margin-top: 80px;
  }

  .hero-message {
    margin-left: 0;
    padding: 0 22px;
    background: transparent;
    backdrop-filter: none;
  }

  .hero .eyebrow {
    display: none;
    align-items: center;
    gap: 8px;
    width: auto;
    margin-bottom: 24px;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-family: var(--pixel);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1;
    text-shadow: none;
  }

  .eyebrow-desktop {
    display: none;
  }

  .eyebrow-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .eyebrow-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #e62222;
    box-shadow: 0 0 0 0 rgba(230, 34, 34, 0.58);
    animation: eyebrow-pulse 1.6s ease-out infinite;
  }

  .hero-copy {
    margin-top: 22px;
    max-width: 330px;
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 18px;
    margin-left: -18px;
    background:
      radial-gradient(ellipse at center, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.36) 42%, rgba(0, 0, 0, 0) 74%);
    font-family: var(--pixel);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.35;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 1), 0 0 40px rgba(0, 0, 0, 0.95);
  }

  .hero-copy-desktop {
    display: none;
  }

  .hero-copy-mobile {
    display: inline;
  }

  .hero h1 {
    max-width: 340px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .hero-main-line {
    display: block;
  }

  .hero h1 .hero-red-line {
    color: #e62222;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .hero-actions {
    display: grid;
    width: min(320px, 100%);
    gap: 0;
    margin-top: 30px;
  }

  .hero-actions .button {
    min-height: 56px;
    border-radius: 0;
    font-family: var(--pixel);
    font-size: 12px;
    letter-spacing: 3px;
    transition: all 0.15s ease;
  }

  .hero-actions .button-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: fit-content;
    min-width: 220px;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    color: #ffffff;
    background: #e62222;
    border-color: #e62222;
    box-shadow: none;
  }

  .hero-actions .button-primary:active {
    background: #c01c1c;
    border-color: #c01c1c;
  }

  .hero-actions .button-secondary {
    display: flex;
    align-items: center;
    min-height: 44px;
    width: fit-content;
    margin-right: auto;
    margin-top: 24px;
    margin-bottom: 32px;
    padding: 0 0 3px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.7);
    justify-content: flex-start;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 1);
  }

  .hero-actions .button-secondary:active {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
  }

  .hero-actions .button-secondary::before,
  .hero-actions .button-secondary::after {
    display: none;
  }

  .hero-secondary-prefix {
    display: inline;
  }

  .hero-secondary-arrow {
    display: none;
  }

  .hero-mobile-arrow {
    display: inline;
    margin-left: 8px;
    transition: transform 0.2s ease;
  }

  .hero-actions .button-primary:hover .hero-mobile-arrow,
  .hero-actions .button-primary:active .hero-mobile-arrow {
    transform: translateX(4px);
  }

  .hero-mobile-only {
    display: none;
  }

  .hero-scroll-cue {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 9px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 1);
  }

  .hero-scroll-cue i {
    height: 34px;
    background: rgba(255, 255, 255, 0.38);
  }

  .ticker {
    display: block;
    margin-top: 0;
  }

  .ticker-track {
    animation-duration: 30s;
  }

  .ticker span {
    min-width: 150px;
    height: 36px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .ticker span:nth-child(even) {
    min-width: 46px;
  }

  .intro,
  .do-grid,
  .visual-break,
  .services,
  .split-story,
  .proof,
  .examples,
  .contact {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
  }

  .visual-break {
    padding-top: 36px;
  }

  .visual-break-image {
    min-height: 260px;
    background-position: center;
  }

  .proof {
    padding-top: 48px;
  }

  .contact {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 52px;
    gap: 26px;
  }

  .contact h2 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.92;
  }

  .contact .section-kicker {
    margin-bottom: 14px;
  }

  .contact-panel {
    gap: 16px;
  }

  .contact-panel p {
    font-size: clamp(17px, 5vw, 21px);
    line-height: 1.28;
  }

  .inquiry-form {
    gap: 10px;
  }

  .inquiry-form label {
    gap: 6px;
  }

  .inquiry-form label span {
    font-size: 11px;
  }

  .inquiry-form input,
  .inquiry-form textarea {
    padding: 10px 12px;
  }

  .inquiry-form textarea {
    min-height: 88px;
  }

  .intro .section-kicker,
  .intro h2,
  .proof-heading-block,
  .intro .intro-support,
  .intro > p:not(.intro-support) {
    grid-column: 1;
    grid-row: auto;
  }

  .proof-kicker {
    display: block;
    margin-bottom: 14px;
  }

  .proof-heading {
    margin-bottom: 22px;
  }

  .beliefs,
  .do-grid,
  .example-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .beliefs article,
  .do-grid article,
  .example-grid article,
  .timeline div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .example-grid article {
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
  }

  .timeline div,
  .timeline div:first-child {
    padding: 24px 28px;
  }

  .beliefs article:last-child,
  .do-grid article:last-child,
  .example-grid article:last-child,
  .timeline div:last-child {
    border-bottom: 0;
  }

  .proof .section-kicker {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .contact-panel .button-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    min-width: 240px;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .inquiry-form {
    width: 100%;
  }

  .inquiry-form input,
  .inquiry-form textarea {
    font-size: 16px;
  }

  .contact-mobile-arrow {
    display: inline;
    margin-left: 20px;
  }

  .beliefs span {
    margin-bottom: 36px;
  }

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

  .proof-tags {
    justify-content: flex-start;
  }

  .site-footer {
    padding: 36px 28px 44px;
  }

  .footer-main {
    flex-direction: column;
    gap: 14px;
  }

  .not-found {
    min-height: 100svh;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 16px 18px;
  }

  .wordmark {
    --logo-width: 108px;
    --logo-height: 32px;
  }

  .nav-cta {
    padding: 0;
    font-size: 0;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-primary {
    width: 100%;
  }

  .contact-panel .button-primary {
    width: fit-content;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .logo-letter.is-breaking,
  .logo-letter.is-dropping,
  .logo-chip,
  .loader-bar,
  .hero-scroll-cue i::after,
  .ticker-track {
    animation: none !important;
  }

  .hero-video {
    transition: none;
  }

  .ticker-track {
    transform: none;
  }
}
