:root {
  --ink: #151515;
  --paper: #f7f2ed;
  --white: #ffffff;
  --muted: #69645f;
  --red: #e21a59;
  --orange: #e25d1f;
  --gray: #575757;
  --line: rgba(21, 21, 21, 0.14);
  --shadow: 0 28px 80px rgba(21, 21, 21, 0.16);
  --font-body: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Archivo Black", "Space Grotesk", system-ui, sans-serif;
  --page-scale: 0.9;
  --page-scale-reverse: 1.111111;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: clip;
  zoom: var(--page-scale);
}

html.is-loading,
html.is-loading body {
  overflow: hidden;
}

html.is-loading .site-header,
html.is-loading main,
html.is-loading .footer {
  opacity: 0;
  visibility: hidden;
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(226, 26, 89, 0.2), transparent 40%),
    linear-gradient(315deg, rgba(226, 93, 31, 0.16), transparent 42%),
    var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
  visibility: hidden;
  zoom: var(--page-scale-reverse);
}

html.is-loading .page-loader {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}



.page-loader-mark {
  width: 78px;
  height: 78px;
  border: 4px solid rgba(255, 255, 255, 0.14);
  border-top-color: var(--red);
  border-right-color: var(--orange);
  border-radius: 50%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  animation: loader-spin 900ms linear infinite;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 21, 21, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, auto) 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  padding: 10px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(226, 26, 89, 0.16), transparent 34%),
    rgba(21, 21, 21, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(22px) saturate(1.2);
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(135deg, rgba(226, 26, 89, 0.12), transparent 30%),
    rgba(21, 21, 21, 0.94);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 64px rgba(21, 21, 21, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.stacktrace-trace {
  color: var(--red);
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-logo-footer {
  width: 50px;
  height: 50px;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 46px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(226, 93, 31, 0.28), rgba(226, 26, 89, 0.18)),
    rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-mark img {
  display: block;
  width: 48px;
  height: 38px;
  object-fit: contain;
}

.nav {
  display: inline-flex;
  justify-content: center;
  justify-self: center;
  gap: 4px;
  padding: 5px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 800;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 7px;
  opacity: 0.78;
  touch-action: manipulation;
  transition: opacity 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav a span {
  min-width: 0;
}

.nav a i {
  display: none;
}

.nav .nav-contact {
  display: none;
}

.footer a {
  opacity: 0.78;
  transition: opacity 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  opacity: 1;
}

.nav a.is-active {
  background: var(--red);
  box-shadow: 0 8px 24px rgba(226, 26, 89, 0.32);
}

.footer a:hover {
  color: var(--orange);
  opacity: 1;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  touch-action: manipulation;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.header-action {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 10px 28px rgba(226, 26, 89, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  touch-action: manipulation;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.menu-backdrop {
  display: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(226, 93, 31, 0.72);
  outline-offset: 3px;
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

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

.button-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  filter: blur(18px);
  transform: translateY(34px);
  transition: opacity 700ms ease, filter 800ms ease, transform 800ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

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

.hero {
  --hero-image-opacity: 1;
  --hero-image-size: min(90vw, 78%);
  --hero-parallax: 0px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 126px max(16px, calc((100vw - 1180px) / 2)) 72px;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 22px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      var(--ink) 0%,
      rgba(21, 21, 21, 0.98) 38%,
      rgba(21, 21, 21, 0.064) 62%,
      rgba(21, 21, 21, 0) 100%
    ),
    linear-gradient(180deg, rgba(21, 21, 21, 0.02), rgba(21, 21, 21, 0.58)),
    url("../assets/hero-origami-bear.png") right top / var(--hero-image-size) auto no-repeat;
  opacity: var(--hero-image-opacity);
  pointer-events: none;
  transform: translate3d(0, var(--hero-parallax), 0);
  transform-origin: right top;
  will-change: transform;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

section {
  padding-bottom: 1em;
}

.hero h1,
.section-heading h2,
.split-heading h2,
.contact h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(1.93rem, 4.62vw, 4.62rem);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.14rem, 5.13vw, 5.13rem);
}

.title-mark {
  --title-mark-background: var(--red);
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 0.08em 0.06em;
  color: var(--white);
  background: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  isolation: isolate;
  line-height: 0.98;
}

.title-mark::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--title-mark-background);
  pointer-events: none;
}

.title-mark::after {
  display: inline-block;
  margin-left: 0.04em;
  content: "_";
  font-weight: 800;
  text-shadow: 0.014em 0 currentColor, -0.014em 0 currentColor;
  transform: translateY(-10px);
  animation: title-mark-caret 1s steps(1, end) infinite;
}

@keyframes title-mark-caret {
  50% {
    opacity: 0;
  }
}

.title-mark-orange {
  --title-mark-background: var(--orange);
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.26rem);
  line-height: 1.7;
}

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

.hero-badge {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(280px, 100%);
  padding: 20px;
  color: var(--white);
  background: rgba(21, 21, 21, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-badge strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
}

.hero-badge span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.scroll-panel {
  position: relative;
  display: grid;
  min-height: 112px;
  align-items: center;
  overflow: clip;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(21, 21, 21, 0.24);
}

.scroll-panel-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 1px;
  transform: translate3d(var(--panel-shift, 0px), 0, 0);
  transition: transform 80ms linear;
  will-change: transform;
}

.scroll-panel span {
  flex: 0 0 clamp(132px, 14vw, 210px);
  min-height: 64px;
  display: grid;
  gap: 8px;
  place-items: center;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.045);
  font-size: clamp(0.68rem, 1.1vw, 0.82rem);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}

.services-panel {
  margin-top: clamp(56px, 8vw, 112px);
  padding-bottom: 0;
}

.services-panel span:nth-child(3n + 1) {
  background: var(--red);
}

.services-panel span:nth-child(3n + 2) {
  background: rgba(255, 255, 255, 0.07);
}

.services-panel span:nth-child(3n + 3) {
  background: var(--orange);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 132px) 0;
}

.section-heading,
.split-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 44px;
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 0.95fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  margin-bottom: 44px;
}

.services-copy {
  max-width: 760px;
}

.services-copy h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.93rem, 4.62vw, 4.62rem);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.services-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.services-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-evenly;
  margin-top: 28px;
}

.services-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.services-visual {
  --services-image-parallax: 0px;
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.services-visual::before {
  position: absolute;
  inset: 16px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.services-visual img {
  position: absolute;
  inset: -48px 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: calc(100% + 96px);
  object-fit: cover;
  transform: translate3d(0, var(--services-image-parallax), 0);
  will-change: transform;
}

.section-heading h2,
.split-heading h2,
.contact h2 {
  font-size: clamp(1.93rem, 4.62vw, 4.62rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  --service-accent: var(--red);
  --service-accent-soft: rgba(226, 26, 89, 0.13);
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.66)),
    radial-gradient(circle at 92% 8%, var(--service-accent-soft), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(226, 93, 31, 0.1), transparent 34%),
    var(--paper);
  border: 1px solid rgba(21, 21, 21, 0.1);
  box-shadow: 0 18px 54px rgba(21, 21, 21, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(226, 26, 89, 0.08), rgba(226, 93, 31, 0.08)),
    linear-gradient(135deg, transparent 0 58%, rgba(21, 21, 21, 0.036) 58% 100%);
  opacity: 0.24;
  transition: opacity 260ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  border: 2px solid var(--service-accent);
  border-radius: inherit;
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
  transition: clip-path 240ms ease;
}

.service-card:nth-child(even) {
  --service-accent: var(--orange);
  --service-accent-soft: rgba(226, 93, 31, 0.14);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: 0 34px 86px rgba(21, 21, 21, 0.16);
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 0.72;
}

.service-card:hover::after {
  clip-path: inset(0);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  background: var(--service-accent);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(226, 26, 89, 0.22);
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 260ms ease;
}

.service-card-top i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--service-accent);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 21, 21, 0.08);
  font-size: 1.05rem;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease;
}

.service-card:nth-child(even) .service-card-kicker {
  box-shadow: 0 10px 28px rgba(226, 93, 31, 0.22);
}

.service-card h3 {
  max-width: 520px;
  margin: 72px 0 18px;
  font-size: clamp(1.75rem, 2.75vw, 2.85rem);
  line-height: 1.02;
  text-wrap: balance;
  transition: transform 260ms ease;
}

.service-card p,
.project-row p,
.process-grid p {
  margin: 0;
  line-height: 1.72;
}

.service-card p {
  max-width: 520px;
  color: rgba(105, 100, 95, 0.92);
  font-size: clamp(0.96rem, 1.2vw, 1.06rem);
  font-weight: 650;
  transition: color 260ms ease, transform 260ms ease;
}

.service-card:hover .service-card-kicker {
  transform: translateY(-4px);
}

.service-card:hover .service-card-top i {
  color: var(--white);
  background: var(--service-accent);
  transform: translateY(-4px) rotate(-4deg);
}

.service-card:hover h3 {
  transform: translateY(-6px);
}

.service-card:hover p {
  color: var(--muted);
  transform: translateY(-4px);
}

.projects {
  position: relative;
  border-top: 1px solid var(--line);
}

.projects-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.projects-intro h2 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(1.93rem, 4.62vw, 4.62rem);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.projects-intro-note {
  display: grid;
  justify-items: start;
  gap: 16px;
  margin: 0 0 8px;
}

.projects-bear-walk {
  display: flex;
  align-items: end;
  gap: clamp(8px, 1.2vw, 14px);
  min-height: clamp(82px, 9vw, 112px);
}

.projects-walk-frame {
  display: block;
  width: clamp(76px, 8.5vw, 104px);
  aspect-ratio: 1;
  opacity: 0.18;
  animation: projects-bear-loop 3s ease-in-out infinite;
}

.projects-walk-frame:first-child {
  width: clamp(82px, 9.1vw, 112px);
}

.projects-walk-frame:nth-child(2) {
  animation-delay: 1s;
}

.projects-walk-frame:nth-child(3) {
  animation-delay: 2s;
}

@keyframes projects-bear-loop {
  0% {
    opacity: 0.18;
  }

  10%,
  28% {
    opacity: 1;
  }

  43%,
  100% {
    opacity: 0.18;
  }
}

.projects-intro-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(21, 21, 21, 0.2));
  transition: filter 180ms ease, transform 180ms ease;
}

.projects-bear-walk:hover .projects-intro-logo {
  filter: drop-shadow(0 22px 30px rgba(21, 21, 21, 0.28));
  transform: translate(-5px, -5px);
}

.projects-intro-note p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.projects-showcase {
  --projects-showcase-shift: 0px;
  position: relative;
  height: 220px;
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.projects-showcase::before {
  position: absolute;
  inset: 16px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.projects-showcase::after {
  position: absolute;
  inset: -42px 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.2), rgba(21, 21, 21, 0.04)),
    url("../assets/projects-showcase.png") center center / cover no-repeat;
  pointer-events: none;
  transform: translate3d(0, var(--projects-showcase-shift), 0) scale(1.035);
  transform-origin: center center;
  transition: transform 80ms linear;
  will-change: transform;
}

.project-list {
  display: grid;
  gap: 18px;
  border-top: 0;
}

.project-row {
  --project-progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  min-height: 220px;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.66)),
    radial-gradient(circle at 92% 10%, rgba(226, 26, 89, 0.15), transparent 28%),
    radial-gradient(circle at 14% 100%, rgba(226, 93, 31, 0.12), transparent 32%),
    var(--paper);
  box-shadow: 0 calc(10px + var(--project-progress) * 18px) 52px
    rgba(21, 21, 21, calc(0.04 + var(--project-progress) * 0.12));
  opacity: calc(0.36 + var(--project-progress) * 0.64);
  filter: blur(calc((1 - var(--project-progress)) * 10px));
  transform:
    translateY(calc((1 - var(--project-progress)) * 44px))
    scale(calc(0.96 + var(--project-progress) * 0.04));
  transition:
    opacity 120ms linear,
    filter 120ms linear,
    transform 120ms linear,
    border-color 120ms linear,
    box-shadow 120ms linear,
    background 160ms ease;
  overflow: hidden;
  isolation: isolate;
}

.project-row > * {
  position: relative;
  z-index: 1;
}

.project-row::before,
.project-row::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.project-row::before {
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(226, 26, 89, 0.08), rgba(226, 93, 31, 0.08)),
    linear-gradient(135deg, transparent 0 56%, rgba(21, 21, 21, 0.035) 56% 100%);
  opacity: calc(0.18 + var(--project-progress) * 0.62);
  transition: opacity 160ms ease;
}

.project-row::after {
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  border: 2px solid transparent;
  clip-path: inset(0 calc((1 - var(--project-progress)) * 100%) 0 0);
  transition: clip-path 120ms linear, border-color 160ms ease;
}

.project-row:nth-child(odd)::after {
  border-color: var(--red);
}

.project-row:nth-child(even)::after {
  border-color: var(--orange);
}

.project-row:hover::after {
  clip-path: inset(0);
}

.project-row:hover {
  border-color: transparent;
  box-shadow: 0 34px 86px rgba(21, 21, 21, 0.18);
}

.project-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(226, 26, 89, 0.22);
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.project-row:nth-child(even) span {
  background: var(--orange);
  box-shadow: 0 10px 28px rgba(226, 93, 31, 0.22);
}

.project-row h3 {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: clamp(1.85rem, 3.3vw, 3.45rem);
  line-height: 1;
  text-wrap: balance;
}

.project-row p,
.process-grid p {
  color: var(--muted);
}

.project-row p {
  max-width: 560px;
  justify-self: end;
  padding-top: 8px;
  color: rgba(105, 100, 95, 0.92);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  font-weight: 650;
  line-height: 1.78;
}

.process {
  --process-progress: 0;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 330vh;
  padding-top: 0;
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  padding-bottom: 0;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  overflow: clip;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(226, 26, 89, 0.18), transparent 38%),
    linear-gradient(245deg, rgba(226, 93, 31, 0.12), transparent 36%),
    linear-gradient(180deg, #151515 0%, #1b1619 48%, #151515 100%);
}

.process::before,
.process::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.process::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 110px 110px;
  opacity: 0.38;
}

.process::after {
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent),
    linear-gradient(180deg, rgba(21, 21, 21, 0), rgba(21, 21, 21, 0.52) 92%);
  opacity: 0.28;
}

.process-stage {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(92px, 11vw, 132px) 0;
  overflow: hidden;
}

.process .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.process .section-heading h2 {
  max-width: 940px;
}

.process .eyebrow {
  color: var(--orange);
}

.process .title-mark-orange {
  --title-mark-background: linear-gradient(135deg, var(--orange), var(--red));
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 32px;
  background: transparent;
}

.process-grid::before,
.process-grid::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  content: "";
  border-radius: 999px;
}

.process-grid::before {
  right: 0;
  background: rgba(255, 255, 255, 0.13);
}

.process-grid::after {
  right: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 0 18px rgba(226, 26, 89, 0.24);
  transform: scaleX(var(--process-progress));
  transform-origin: left center;
  transition: transform 120ms linear;
}

.process-card {
  --process-card-progress: 0;
  --process-accent: var(--red);
  --process-accent-rgb: 226, 26, 89;
  position: relative;
  display: flex;
  min-height: 318px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 2.5vw, 32px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      145deg,
      rgba(var(--process-accent-rgb), 0.12),
      rgba(255, 255, 255, 0.035) 42%,
      rgba(255, 255, 255, 0.065)
    ),
    rgba(21, 21, 21, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: calc(0.42 + var(--process-card-progress) * 0.58);
  transform:
    translateY(calc((1 - var(--process-card-progress)) * 42px))
    scale(calc(0.96 + var(--process-card-progress) * 0.04));
  transform-origin: center bottom;
  transition:
    opacity 120ms linear,
    transform 120ms linear,
    border-color 120ms linear,
    box-shadow 160ms ease;
  will-change: opacity, transform;
}

.process-card.reveal:not(.is-visible) {
  opacity: 0;
  filter: none;
  transform: translateY(34px);
}

.process-card.reveal.is-visible {
  opacity: calc(0.42 + var(--process-card-progress) * 0.58);
  transform:
    translateY(calc((1 - var(--process-card-progress)) * 42px))
    scale(calc(0.96 + var(--process-card-progress) * 0.04));
}

.process-card:nth-child(2) {
  --process-accent: var(--orange);
  --process-accent-rgb: 226, 93, 31;
}

.process-card:nth-child(3) {
  --process-accent: var(--red);
  --process-accent-rgb: 226, 26, 89;
}

.process-card:nth-child(4) {
  --process-accent: var(--orange);
  --process-accent-rgb: 226, 93, 31;
}

.process-card::before,
.process-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.process-card::before {
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--process-accent), rgba(255, 255, 255, 0.82));
  box-shadow: 0 0 16px rgba(var(--process-accent-rgb), 0.26);
  transform: scaleX(var(--process-card-progress));
  transform-origin: left center;
}

.process-card::after {
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(var(--process-accent-rgb), 0.32);
  border-radius: inherit;
  opacity: 0.36;
  transform: scaleX(var(--process-card-progress));
  transform-origin: left center;
}

.process-card > * {
  position: relative;
  z-index: 2;
}

.process-card strong {
  align-self: flex-start;
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(var(--process-accent-rgb), 0.14);
  border: 1px solid rgba(var(--process-accent-rgb), 0.26);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 34px;
  transition: color 120ms linear, background 120ms linear, border-color 120ms linear;
}

.process-card i {
  position: absolute;
  top: clamp(22px, 2.5vw, 30px);
  right: clamp(22px, 2.5vw, 30px);
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--process-accent);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 1.18rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  opacity: calc(0.42 + var(--process-card-progress) * 0.58);
  transform:
    translateY(calc((1 - var(--process-card-progress)) * 10px));
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    opacity 120ms linear,
    transform 120ms linear;
}

.process-card.is-process-active i {
  color: var(--white);
  background: linear-gradient(135deg, rgba(var(--process-accent-rgb), 0.96), rgba(255, 255, 255, 0.16));
  border-color: rgba(var(--process-accent-rgb), 0.46);
}

.process-card.is-process-active {
  border-color: rgba(var(--process-accent-rgb), 0.42);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.process-card.is-process-active::after {
  opacity: 0.58;
}

.process-card.is-process-active strong {
  background: rgba(var(--process-accent-rgb), 0.24);
  border-color: rgba(var(--process-accent-rgb), 0.42);
}

.process-card h3 {
  margin: auto 0 16px;
  padding-top: 88px;
  color: var(--white);
  font-size: clamp(1.46rem, 2.4vw, 2.16rem);
  line-height: 1.02;
  text-wrap: balance;
  transition: color 120ms linear, transform 120ms linear;
  transform: translateY(calc((1 - var(--process-card-progress)) * 18px));
}

.process-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.94rem, 1.15vw, 1.02rem);
  font-weight: 650;
  transition: color 120ms linear, transform 120ms linear;
  transform: translateY(calc((1 - var(--process-card-progress)) * 12px));
}

.stack-band {
  background: var(--red);
}

.stack-band span {
  flex-basis: clamp(160px, 18vw, 250px);
  color: var(--white);
  background: rgba(21, 21, 21, 0.16);
}

.stack-band span:nth-child(even) {
  background: rgba(21, 21, 21, 0.34);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 132px) 0;
}

.contact h2 {
  max-width: 1000px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  position: relative;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(226, 26, 89, 0.2), transparent 44%),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  outline: none;
  font: inherit;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 142px;
  padding-top: 15px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form select {
  appearance: none;
}

.contact-form option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(226, 26, 89, 0.18);
}

.contact-form .button {
  margin-top: 34px;
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  margin: 4px 0 0;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.form-status[hidden] {
  display: none;
}

.form-status[data-state="success"] {
  color: #e8fff0;
  background: rgba(50, 168, 82, 0.16);
  border-color: rgba(96, 210, 127, 0.34);
}

.form-status[data-state="error"] {
  color: #fff0f4;
  background: rgba(226, 26, 89, 0.18);
  border-color: rgba(226, 26, 89, 0.42);
}

.footer {
  margin: 0 auto;
  padding: 54px clamp(18px, 3vw, 34px) 38px;
  color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(135deg, rgba(226, 26, 89, 0.14), transparent 35%),
    var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(28px, 7vw, 120px);
  align-items: start;
  padding-bottom: 42px;
}

.footer-brand {
  max-width: 430px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.7;
}

.footer-nav,
.footer-social {
  display: grid;
  gap: 12px;
  min-width: 130px;
}

.footer-nav strong,
.footer-social strong {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 1rem;
  opacity: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.social-links a:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
    min-height: 72px;
    padding: 12px;
  }

  body.is-menu-open .site-header {
    background:
      linear-gradient(135deg, rgba(226, 26, 89, 0.18), transparent 34%),
      rgba(21, 21, 21, 0.96);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 64px rgba(21, 21, 21, 0.34);
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 18;
    display: block;
    background: rgba(21, 21, 21, 0.46);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, visibility 200ms ease;
    visibility: hidden;
  }

  body.is-menu-open .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-height: calc(100vh - 116px);
    max-height: calc(100dvh - 116px);
    padding: 16px;
    overflow-y: auto;
    color: var(--white);
    background:
      linear-gradient(135deg, rgba(226, 26, 89, 0.18), transparent 34%),
      linear-gradient(315deg, rgba(226, 93, 31, 0.12), transparent 42%),
      rgba(21, 21, 21, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
    opacity: 0;
    pointer-events: none;
    overscroll-behavior: contain;
    transform: translateY(-14px) scale(0.98);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    visibility: hidden;
  }

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

  .nav a,
  .nav a.is-active {
    justify-content: space-between;
    min-height: 52px;
    padding: 0 14px 0 18px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 180ms ease,
      color 160ms ease,
      background 160ms ease,
      border-color 160ms ease,
      transform 180ms ease;
  }

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

  .site-header.is-menu-open .nav a:nth-child(1) {
    transition-delay: 40ms;
  }

  .site-header.is-menu-open .nav a:nth-child(2) {
    transition-delay: 70ms;
  }

  .site-header.is-menu-open .nav a:nth-child(3) {
    transition-delay: 100ms;
  }

  .site-header.is-menu-open .nav a:nth-child(4) {
    transition-delay: 130ms;
  }

  .site-header.is-menu-open .nav a:nth-child(5) {
    transition-delay: 160ms;
  }

  .nav a.is-active {
    color: var(--white);
    background: var(--red);
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(226, 26, 89, 0.28);
  }

  .nav a i {
    display: grid;
    order: initial;
    width: 38px;
    height: 38px;
    place-items: center;
    margin-right: 0;
    margin-left: 14px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 0.86rem;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  }

  .nav a:hover i,
  .nav a.is-active i {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    transform: translateX(2px);
  }

  .nav .nav-contact {
    display: flex;
    min-height: 62px;
    margin-top: 4px;
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--orange));
    border-color: transparent;
    box-shadow: 0 16px 42px rgba(226, 26, 89, 0.32);
    font-weight: 900;
  }

  .nav .nav-contact i {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    font-size: 1.06rem;
  }

  .site-header.is-menu-open .menu-toggle {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 10px 28px rgba(226, 26, 89, 0.3);
  }

  .header-action {
    grid-column: 3;
    justify-self: end;
  }

  .menu-toggle {
    grid-column: 4;
    justify-self: end;
  }

  .hero {
    --hero-image-size: min(72vw, 680px);
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-badge {
    justify-self: start;
  }

  .service-grid,
  .services-intro,
  .section-heading,
  .split-heading,
  .projects-intro,
  .project-row,
  .process-grid,
  .contact,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
  }

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

  .services-visual,
  .services-visual img {
    min-height: 430px;
  }

  .service-card h3,
  .process-grid h3 {
    margin-top: 64px;
  }

  .process {
    min-height: auto;
    padding: 78px max(16px, calc((100vw - 1180px) / 2));
  }

  .process .section-heading {
    margin-bottom: 34px;
  }

  .process-stage {
    position: relative;
    top: auto;
    display: block;
    min-height: auto;
    padding: 0;
    overflow: visible;
  }

  .process-grid {
    gap: 12px;
    padding-top: 26px;
    background: transparent;
    perspective: none;
  }

  .process-card {
    min-height: 220px;
    filter: none;
    transform:
      translateY(calc((1 - var(--process-card-progress)) * 30px))
      scale(calc(0.97 + var(--process-card-progress) * 0.03));
    background:
      linear-gradient(135deg, rgba(var(--process-accent-rgb), 0.18), rgba(255, 255, 255, 0.045)),
      rgba(21, 21, 21, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
    opacity: calc(0.46 + var(--process-card-progress) * 0.54);
  }

  .process-card.reveal,
  .process-card.reveal:not(.is-visible),
  .process-card.reveal.is-visible {
    opacity: calc(0.46 + var(--process-card-progress) * 0.54);
    filter: none;
    transform:
      translateY(calc((1 - var(--process-card-progress)) * 30px))
      scale(calc(0.97 + var(--process-card-progress) * 0.03));
  }

  .process-card::before {
    width: 100%;
    transform: scaleX(var(--process-card-progress));
  }

  .process-card::after {
    opacity: calc(0.26 + var(--process-card-progress) * 0.4);
    transform: scaleX(var(--process-card-progress));
  }

  .process-card strong {
    color: var(--white);
    background: rgba(var(--process-accent-rgb), 0.2);
    border-color: rgba(var(--process-accent-rgb), 0.36);
    opacity: 1;
  }

  .process-card i {
    opacity: calc(0.5 + var(--process-card-progress) * 0.5);
    transform: translateY(calc((1 - var(--process-card-progress)) * 10px));
  }

  .process-card h3 {
    margin: 52px 0 14px;
    padding-top: 0;
    color: var(--white);
    transform: translateY(calc((1 - var(--process-card-progress)) * 16px));
  }

  .process-card p {
    color: rgba(255, 255, 255, 0.68);
    transform: translateY(calc((1 - var(--process-card-progress)) * 12px));
  }

  .project-row {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .project-row p {
    max-width: 100%;
    justify-self: start;
  }

  .project-row::after {
    clip-path: inset(0);
  }

  .scroll-panel {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .scroll-panel::-webkit-scrollbar {
    display: none;
  }

  .scroll-panel-track {
    transform: none;
    transition: none;
    will-change: auto;
  }

  .scroll-panel span {
    scroll-snap-align: start;
  }

  .projects-intro-note,
  .projects-bear-walk {
    width: 100%;
  }

  .projects-bear-walk {
    justify-content: space-between;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 0;
    width: 100%;
    min-height: 66px;
    padding: 10px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .brand {
    gap: 9px;
    font-size: 0.84rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .header-action {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .nav {
    grid-template-columns: 1fr;
    top: calc(100% + 10px);
    right: 0;
    left: 10px;
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
    padding: 14px;
  }

  .nav a {
    min-height: 58px;
  }

  .hero {
    --hero-image-opacity: 0.34;
    min-height: 100vh;
    min-height: 100svh;
    padding: 112px 14px 54px;
    background: var(--ink);
  }

  .hero::after {
    background: url("../assets/hero-origami-bear.png") center center / cover no-repeat;
    transform: none;
  }

  .hero::before {
    inset: 10px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.3rem);
    line-height: 0.94;
  }

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

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-badge {
    width: 100%;
  }

  .scroll-panel {
    min-height: 96px;
  }

  .scroll-panel span {
    flex-basis: 116px;
    min-height: 58px;
  }

  .section,
  .contact,
  .footer {
    width: 100%;
  }

  .section {
    padding: 70px 14px;
  }

  .services-copy h2,
  .projects-intro h2,
  .section-heading h2,
  .split-heading h2,
  .contact h2 {
    font-size: clamp(1.8rem, 9.9vw, 2.93rem);
    line-height: 0.96;
  }

  .title-mark::after {
    transform: none;
  }

  .section-heading,
  .split-heading {
    gap: 18px;
    margin-bottom: 30px;
  }

  .services-intro {
    gap: 26px;
    margin-bottom: 30px;
  }

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

  .services-visual,
  .services-visual img {
    min-height: 300px;
  }

  .service-card,
  .process-card {
    padding: 22px;
  }

  .service-card {
    min-height: 240px;
  }

  .service-card h3 {
    margin-top: 44px;
  }

  .project-row {
    min-height: 0;
    padding: 24px;
  }

  .projects-intro {
    gap: 18px;
    margin-bottom: 24px;
  }

  .projects-showcase {
    height: 210px;
    margin-bottom: 18px;
  }

  .project-row {
    padding: 22px;
  }

  .project-row span {
    min-height: 30px;
    padding: 0 10px;
  }

  .project-row h3 {
    margin-top: 18px;
    font-size: clamp(1.7rem, 9vw, 2.65rem);
    line-height: 1.02;
  }

  .project-row p {
    justify-self: start;
    padding-top: 2px;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .process {
    width: 100%;
    max-width: none;
    padding: 70px 14px;
  }

  .process-card h3 {
    margin: 42px 0 14px;
    padding-top: 0;
  }

  .process-card i {
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    font-size: 1.02rem;
  }

  .process-card::before {
    margin: 0;
  }

  .contact {
    padding: 70px 14px;
  }

  .contact-form {
    padding: 22px;
  }

  .footer {
    align-items: flex-start;
    padding-right: 14px;
    padding-left: 14px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .page-loader,
  .page-loader-mark {
    animation: none;
    transition: none;
  }

  .title-mark::after {
    animation: none;
    opacity: 1;
  }

  .hero::after {
    transform: none;
  }

  .services-visual img {
    transform: none;
  }

  .projects-walk-frame {
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .projects-intro-logo {
    transform: none;
    transition: none;
  }

  .projects-showcase::after {
    transform: none;
    transition: none;
  }

  .process-card,
  .process-card::before,
  .process-card::after,
  .process-card i,
  .process-card h3,
  .process-card p,
  .process-grid::after {
    filter: none;
    transform: none;
    transition: none;
  }

  .process-card {
    opacity: 1;
  }

  .process-card.reveal,
  .process-card.reveal:not(.is-visible),
  .process-card.reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
