:root {
  --bg: #020202;
  --text: #f7f7f7;
  --muted: #a6a8ad;
  --line: rgba(255, 255, 255, 0.22);
  --soft-line: rgba(255, 255, 255, 0.09);
  --font-title: "Neue Machina", "Space Grotesk", Inter, Arial, sans-serif;
  --font-body: Inter, Arial, sans-serif;
  --font-ui: "Space Grotesk", Inter, Arial, sans-serif;
  --page-width: min(88vw, 1720px);
  --page-width-mobile: min(82vw, 680px);
  --fs-hero: clamp(3rem, 4.8vw, 6.2rem);
  --fs-hero-home: var(--fs-hero);
  --fs-section-title: clamp(2.65rem, 3.9vw, 5rem);
  --fs-panel-title: clamp(1.45rem, 1.7vw, 2.35rem);
  --fs-card-title: clamp(1.08rem, 1vw, 1.28rem);
  --fs-body-lg: clamp(1rem, 1.08vw, 1.16rem);
  --fs-body: clamp(0.94rem, 0.9vw, 1.02rem);
  --fs-ui: clamp(0.8rem, 0.76vw, 0.95rem);
  --fs-kicker: 0.86rem;
  --fs-label: clamp(0.76rem, 0.72vw, 0.9rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--bg);
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--soft-line);
  pointer-events: none;
  z-index: 3;
}

.page-shell {
  animation: pageEnter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), transparent 26%),
    rgba(2, 2, 2, 0.92);
  opacity: 0;
  pointer-events: none;
  transform: scaleY(0.96);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-transition::before {
  content: "BKZ";
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.22);
  transform: translateY(10px);
  opacity: 0;
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

body.page-is-leaving .page-transition {
  opacity: 1;
  transform: scaleY(1);
}

body.page-is-leaving .page-transition::before {
  opacity: 1;
  transform: translateY(0);
}

body.page-is-leaving .page-shell {
  filter: blur(5px);
  opacity: 0.45;
  transform: scale(0.985);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    filter 260ms ease;
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 32px;
  width: var(--page-width);
  margin: 0 auto;
  padding: 18px 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.32));
  transition: transform 180ms ease, filter 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.48));
}

.brand img {
  display: block;
  width: clamp(94px, 7.4vw, 138px);
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 70px);
  font-family: var(--font-ui);
  font-size: var(--fs-ui);
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.7);
  transition: color 180ms ease;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--text);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--text);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.talk-link,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  font-family: var(--font-ui);
  font-size: var(--fs-ui);
  font-weight: 900;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.talk-link:hover,
.primary-action:hover {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 22px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.talk-link {
  min-width: 214px;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.14), transparent 24%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
}

.contact-modal-panel {
  position: relative;
  width: min(92vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.96), rgba(2, 2, 2, 0.98));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.68),
    inset 0 0 0 1px rgba(255, 255, 255, 0.045);
  padding: clamp(30px, 4vw, 52px);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.contact-modal.is-open .contact-modal-panel {
  transform: translateY(0) scale(1);
}

.contact-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 34%),
    url("assets/about-page-bkz-contact.png") right center / auto 100% no-repeat;
  opacity: 0.22;
  filter: grayscale(1);
}

.contact-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.contact-modal-close span {
  grid-area: 1 / 1;
  width: 16px;
  height: 2px;
  background: var(--text);
}

.contact-modal-close span:first-child {
  transform: rotate(45deg);
}

.contact-modal-close span:last-child {
  transform: rotate(-45deg);
}

.contact-modal-panel h2 {
  max-width: 500px;
  margin: 14px 0 0;
  font-family: var(--font-title);
  font-size: var(--fs-section-title);
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-modal-panel > p:not(.section-kicker) {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 650;
  line-height: 1.72;
}

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

.contact-modal-actions .primary-action {
  min-width: min(100%, 240px);
}

.contact-modal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-ui);
  font-size: var(--fs-ui);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-modal-meta span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(14px) scale(0.992);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-shell {
    animation: none;
  }

  .page-transition,
  body.page-is-leaving .page-shell {
    transition: none;
  }
}

.hero {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  min-height: calc(100vh - 66px);
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(36px, 5.5vw, 74px) 0 96px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -66px;
  right: calc((100% - 100vw) / 2);
  bottom: 0;
  left: calc((100% - 100vw) / 2);
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.5) 28%, rgba(0, 0, 0, 0.1) 68%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0) 25%);
  background-position:
    center,
    center;
  background-size:
    cover,
    cover;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-video {
  position: absolute;
  top: -66px;
  right: calc((100% - 100vw) / 2);
  bottom: 0;
  left: calc((100% - 100vw) / 2);
  z-index: -1;
  width: 100vw;
  height: calc(100% + 66px);
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.hero-video.is-active {
  opacity: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 clamp(28px, 4vw, 48px);
  font-family: var(--font-ui);
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--fs-ui);
  font-weight: 900;
  letter-spacing: 0.64em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.34);
}

h1 {
  margin: 0;
  max-width: 600px;
  font-family: var(--font-title);
  font-size: var(--fs-hero-home);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.13);
}

.intro {
  font-family: var(--font-body);
  max-width: 395px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.75;
}

.primary-action {
  min-width: 204px;
  padding: 0 28px;
}

.trust-row {
  position: absolute;
  right: 0;
  bottom: 36px;
  left: 0;
  display: none;
  grid-template-columns: minmax(180px, 1.2fr) minmax(0, 5fr);
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.62);
}

.trust-row span {
  font-family: var(--font-ui);
  font-size: var(--fs-ui);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-logos {
  position: relative;
  --logo-gap: clamp(38px, 5vw, 88px);
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.trust-logos-track {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  width: max-content;
  animation: partnerLogoMarquee 20s linear infinite;
}

.trust-logos-set {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  flex: 0 0 auto;
}

.trust-row strong {
  position: relative;
  flex: 0 0 auto;
  font-family: var(--font-ui);
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--fs-panel-title);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  filter: grayscale(1);
  transform-origin: center;
  animation: partnerLogoRotate 7.5s ease-in-out infinite;
  will-change: transform, opacity;
}

.trust-row strong::before {
  content: "";
  position: absolute;
  inset: -12px -18px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  filter: blur(18px);
  opacity: 0.42;
  transform: scale(0.86);
}

.trust-row strong:nth-of-type(2) {
  animation-delay: 0.45s;
}

.trust-row strong:nth-of-type(3) {
  animation-delay: 0.9s;
}

.trust-row strong:nth-of-type(4) {
  animation-delay: 1.35s;
}

.trust-row strong:nth-of-type(5) {
  animation-delay: 1.8s;
}

.trust-row strong:nth-of-type(6) {
  animation-delay: 2.25s;
}

.about-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-top: 1px solid var(--soft-line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 31%, rgba(0, 0, 0, 0.16) 74%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.02) 42%),
    url("assets/about-background.png") center right / cover no-repeat;
}

.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: inherit;
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(88px, 9vw, 140px) 0;
}

.section-kicker {
  margin: 0 0 44px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-ui);
  font-size: var(--fs-kicker);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-section h2 {
  max-width: 550px;
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--fs-section-title);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.about-section p:not(.section-kicker) {
  max-width: 460px;
  margin: 28px 0 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: 600;
  line-height: 1.75;
}

.services-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-top: 1px solid var(--soft-line);
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0) 30%),
    #020202;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.45;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 72%);
  pointer-events: none;
}

.services-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 100vh;
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(86px, 8vw, 132px) 0;
}

.services-section .section-kicker {
  margin-bottom: 28px;
}

.services-section h2 {
  max-width: 760px;
  margin: 0 0 clamp(34px, 4.5vw, 72px);
  font-family: var(--font-title);
  font-size: var(--fs-section-title);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-accordion {
  display: grid;
  grid-template-columns: 2.7fr repeat(3, 0.62fr);
  gap: clamp(12px, 1.1vw, 18px);
  min-height: clamp(420px, 32vw, 560px);
  transition: grid-template-columns 260ms ease;
}

.service-panel {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  overflow: hidden;
  padding: clamp(26px, 2.4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    grid-template-columns 240ms ease,
    border-color 180ms ease,
    background 180ms ease,
    padding 240ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
  cursor: pointer;
}

.service-panel:hover,
.service-panel.is-open {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 60px rgba(0, 0, 0, 0.28);
}

.service-panel:hover {
  transform: translateY(-4px);
}

.service-panel img {
  width: clamp(72px, 7vw, 112px);
  height: clamp(72px, 7vw, 112px);
  object-fit: contain;
  margin: 0 0 clamp(30px, 3vw, 48px);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.72));
  transition: transform 220ms ease, filter 220ms ease;
}

.service-panel:hover img,
.service-panel.is-open img {
  filter:
    drop-shadow(0 16px 28px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.12));
  transform: rotate(-4deg) scale(1.06);
}

.service-panel span {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-panel h3 {
  margin: 28px 0 18px;
  font-family: var(--font-title);
  font-size: var(--fs-panel-title);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  transition: transform 240ms ease, writing-mode 240ms ease;
}

.service-panel p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.65;
  opacity: 1;
  transition: opacity 180ms ease;
}

.service-panel button {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-ui);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.service-panel:not(.is-open) {
  place-items: center;
  padding: 28px 18px;
}

.service-panel:not(.is-open) img {
  width: 66px;
  height: 66px;
  margin: 0;
}

.service-panel:not(.is-open) span,
.service-panel:not(.is-open) p {
  display: none;
}

.service-panel:not(.is-open) h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  margin: 0;
  font-size: var(--fs-card-title);
  writing-mode: vertical-rl;
  transform: translate(-50%, -50%) rotate(180deg);
}

.service-panel:not(.is-open) button {
  display: none;
}

.projects-section {
  min-height: 100vh;
  overflow: hidden;
  border-top: 1px solid var(--soft-line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 34%),
    #020202;
}

.projects-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.9fr);
  align-items: center;
  gap: clamp(34px, 4.6vw, 82px);
  min-height: 100vh;
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(86px, 8vw, 132px) 0;
}

.projects-copy .section-kicker {
  margin-bottom: 54px;
}

.projects-copy h2 {
  max-width: 520px;
  margin: 0 0 42px;
  font-family: var(--font-title);
  font-size: var(--fs-section-title);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.projects-showcase {
  position: relative;
  min-width: 0;
}

.project-controls {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin: 0 4px 44px;
}

.project-controls button {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-ui);
  font-size: 1.35rem;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.project-controls button:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.project-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 420px);
  gap: clamp(22px, 2vw, 34px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 4px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.project-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  min-height: clamp(210px, 15.5vw, 280px);
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #090909;
  scroll-snap-align: start;
  transition: border-color 200ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.project-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  transform: translateY(-8px);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.88));
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08);
  transition: filter 240ms ease, transform 420ms ease;
}

.project-card-bkz img {
  object-position: center;
}

.project-card-sentinel img {
  object-position: center;
}

.project-card-dooubleeat img {
  object-position: 54% center;
}

.project-card-octopus img {
  object-fit: contain;
  object-position: center;
  padding: clamp(22px, 2vw, 34px);
  background: #ff5a00;
}

.project-card:hover img {
  filter: grayscale(0) contrast(1.06) brightness(1.04);
  transform: scale(1.045);
}

.project-card div {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
}

.project-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: var(--fs-panel-title);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.project-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-ui);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-section {
  position: relative;
  min-height: clamp(360px, 38vw, 520px);
  margin-top: 0;
  overflow: visible;
  border-top: 0;
  background: #020202;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: clamp(-180px, -9vw, -104px) 0 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 0%, rgba(2, 2, 2, 0.38) 18%, rgba(2, 2, 2, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 35%, rgba(0, 0, 0, 0.12) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 46%);
  pointer-events: none;
}

.cta-video {
  position: absolute;
  top: clamp(-180px, -9vw, -104px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: calc(100% + clamp(104px, 9vw, 180px));
  object-fit: cover;
  object-position: center right;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.cta-video.is-active {
  opacity: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: inherit;
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(70px, 7vw, 110px) 0;
}

.cta-section .section-kicker {
  margin-bottom: 30px;
}

.cta-section h2 {
  max-width: 650px;
  margin: 0 0 34px;
  font-family: var(--font-title);
  font-size: var(--fs-section-title);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.cta-section .primary-action {
  justify-self: start;
  width: max-content;
  min-width: 260px;
  padding: 0 34px;
}

.site-footer {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 34px;
  width: var(--page-width);
  margin: 0 auto;
  padding: 34px 0 38px;
  border-top: 1px solid var(--soft-line);
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand {
  display: inline-flex;
  width: max-content;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.24));
  transition: transform 180ms ease, filter 180ms ease;
}

.footer-brand:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.4));
}

.footer-brand img {
  width: clamp(86px, 6vw, 118px);
  height: auto;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer nav {
  display: flex;
  gap: clamp(26px, 4vw, 70px);
}

.site-footer a:hover {
  color: var(--text);
}

.services-page-footer {
  width: var(--page-width);
}

.page-shell-static {
  overflow: hidden;
}

.about-page-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 66px);
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: clamp(80px, 9vw, 150px) 0;
}

.about-page-hero::before {
  content: "";
  position: absolute;
  inset: -66px calc((100% - 100vw) / 2) 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.56) 36%, rgba(0, 0, 0, 0.02) 74%),
    url("assets/about-page-hero-bkz-chip.png") center right / cover no-repeat;
}

.about-page-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.about-page-copy h1 {
  max-width: 760px;
  font-size: var(--fs-hero);
}

.about-page-copy p:not(.section-kicker) {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: var(--fs-body-lg);
  font-weight: 650;
  line-height: 1.75;
}

.services-page-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 66px);
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: clamp(78px, 8vw, 132px) 0 clamp(92px, 8vw, 140px);
}

.services-page-hero::before {
  content: "";
  position: absolute;
  inset: -66px calc((100% - 100vw) / 2) 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.64) 36%, rgba(0, 0, 0, 0.04) 76%),
    url("assets/services-page-hero-bkz-chip.png") center right / cover no-repeat;
  filter: grayscale(1);
  transform: scale(1.03);
  animation: servicesHeroDrift 9s ease-out both;
  pointer-events: none;
}

.services-page-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.services-page-copy h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--fs-hero);
  line-height: 0.92;
  text-transform: uppercase;
}

.services-page-copy p:not(.section-kicker) {
  max-width: 470px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: var(--fs-body-lg);
  font-weight: 650;
  line-height: 1.72;
}

.services-page-copy .primary-action {
  margin-top: 34px;
}

.projects-page-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 66px);
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: clamp(78px, 8vw, 132px) 0 clamp(92px, 8vw, 140px);
}

.projects-page-hero::before {
  content: "";
  position: absolute;
  inset: -66px calc((100% - 100vw) / 2) 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 36%, rgba(0, 0, 0, 0.05) 74%),
    url("assets/about-page-bkz-projects.png") center right / cover no-repeat;
  filter: grayscale(1);
}

.projects-page-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.projects-page-copy h1 {
  max-width: 960px;
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--fs-hero);
  line-height: 0.92;
  text-transform: uppercase;
}

.projects-page-copy p:not(.section-kicker) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: var(--fs-body-lg);
  font-weight: 650;
  line-height: 1.78;
}

.projects-page-copy .primary-action {
  margin-top: 34px;
  min-width: 260px;
  padding: 0 34px;
}

.contact-page-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 66px);
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: clamp(78px, 8vw, 132px) 0 clamp(92px, 8vw, 140px);
  overflow: hidden;
}

.contact-page-hero::before {
  content: "";
  position: absolute;
  inset: -66px calc((100% - 100vw) / 2) 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 35%, rgba(0, 0, 0, 0.08) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.34) 100%),
    url("assets/about-page-bkz-contact.png") center right / cover no-repeat;
  filter: grayscale(1);
  pointer-events: none;
}

.contact-video {
  position: absolute;
  inset: -66px calc((100% - 100vw) / 2) 0;
  z-index: 0;
  width: 100vw;
  height: calc(100% + 66px);
  object-fit: cover;
  object-position: center right;
  filter: grayscale(1) contrast(1.08) brightness(0.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.contact-video.is-active {
  opacity: 1;
}

.contact-page-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.contact-page-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--fs-hero);
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-page-copy p:not(.section-kicker) {
  max-width: 500px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: var(--fs-body-lg);
  font-weight: 650;
  line-height: 1.78;
}

.contact-page-copy .primary-action {
  margin-top: 34px;
  min-width: 230px;
  padding: 0 34px;
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.25fr);
  gap: clamp(56px, 8vw, 150px);
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(92px, 8vw, 150px) 0 clamp(100px, 9vw, 170px);
  border-top: 1px solid var(--soft-line);
}

.contact-commitment h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--fs-section-title);
  line-height: 0.98;
  text-transform: uppercase;
}

.contact-commitment > p:not(.section-kicker) {
  max-width: 430px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: var(--fs-body-lg);
  font-weight: 650;
  line-height: 1.78;
}

.contact-methods {
  display: grid;
  gap: 28px;
  margin-top: clamp(46px, 5vw, 72px);
}

.contact-methods a,
.contact-methods > div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: clamp(0.98rem, 0.9vw, 1.06rem);
  font-weight: 650;
  line-height: 1.6;
}

.contact-method-icon {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.86);
}

.contact-method-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-methods strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

.contact-form label {
  position: relative;
  display: grid;
}

.contact-form label span {
  position: absolute;
  top: 23px;
  left: 28px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-ui);
  font-size: clamp(0.86rem, 0.78vw, 1rem);
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.045), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 42%),
    rgba(255, 255, 255, 0.018);
  font: 650 1rem/1.5 var(--font-body);
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input {
  min-height: 74px;
  padding: 34px 28px 14px;
}

.contact-form textarea {
  min-height: 250px;
  resize: vertical;
  padding: 54px 28px 18px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 42%),
    rgba(255, 255, 255, 0.03);
}

.contact-form .primary-action {
  width: 100%;
  min-height: 68px;
  justify-content: space-between;
  padding: 0 34px;
  font-size: clamp(0.95rem, 0.95vw, 1.15rem);
}

.contact-form .primary-action:disabled {
  cursor: wait;
  opacity: 0.62;
}

.contact-form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 650;
}

.contact-form-note::before {
  content: "▢";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.featured-projects-section {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(92px, 8vw, 150px) 0 clamp(96px, 8vw, 150px);
  border-top: 1px solid var(--soft-line);
}

.featured-projects-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.9fr) auto;
  gap: clamp(34px, 6vw, 110px);
  align-items: start;
  margin-bottom: clamp(48px, 5vw, 82px);
}

.featured-projects-heading h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--fs-section-title);
  line-height: 0.98;
  text-transform: uppercase;
}

.featured-projects-heading > p {
  margin: clamp(30px, 3vw, 52px) 0 0;
  color: var(--muted);
  font-size: var(--fs-body-lg);
  font-weight: 650;
  line-height: 1.82;
}

.featured-projects-controls {
  display: flex;
  gap: 20px;
  margin-top: clamp(24px, 2.6vw, 46px);
}

.featured-projects-controls button {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.018);
  font-size: 1.25rem;
}

.featured-projects-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 520px);
  gap: clamp(20px, 1.6vw, 28px);
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 calc((100vw - var(--page-width)) / -2) 0 0;
  padding: 0 calc((100vw - var(--page-width)) / 2) 18px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.featured-projects-grid::-webkit-scrollbar {
  display: none;
}

.featured-project-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #050505;
  scroll-snap-align: start;
}

.featured-project-media {
  position: relative;
  height: clamp(260px, 18vw, 340px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: #080808;
}

.featured-project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(0.78);
  transition: transform 220ms ease, filter 220ms ease;
}

.featured-project-bkz .featured-project-media img,
.featured-project-sentinel .featured-project-media img {
  object-position: center;
}

.featured-project-dooubleeat .featured-project-media img {
  object-position: 54% center;
}

.featured-project-octopus .featured-project-media img {
  object-fit: contain;
  object-position: center;
  padding: clamp(24px, 2.2vw, 42px);
  background: #ff5a00;
}

.featured-project-card:hover .featured-project-media img {
  transform: scale(1.035);
  filter: grayscale(0) contrast(1.06) brightness(0.98);
}

.featured-project-media > span {
  position: absolute;
  top: clamp(18px, 1.5vw, 26px);
  left: clamp(18px, 1.5vw, 26px);
  z-index: 1;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.34);
  font-family: var(--font-ui);
  font-size: var(--fs-label);
  font-weight: 900;
  text-transform: uppercase;
}

.featured-project-info {
  padding: clamp(22px, 1.7vw, 30px);
}

.featured-project-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.featured-project-title h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--fs-panel-title);
  line-height: 1;
  text-transform: uppercase;
}

.featured-project-title a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-ui);
  font-size: var(--fs-ui);
  font-weight: 900;
  text-transform: uppercase;
}

.featured-project-info p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-body);
  font-weight: 650;
  line-height: 1.68;
}

.featured-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: clamp(22px, 1.8vw, 30px);
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-ui);
  font-size: var(--fs-label);
  font-weight: 900;
  text-transform: uppercase;
}

.featured-project-tags span::before {
  content: "/";
  margin-right: 9px;
  color: rgba(255, 255, 255, 0.5);
}

.project-principles-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(52px, 5vw, 82px) 0;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.project-principles-section article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(20px, 2vw, 34px);
  align-items: center;
  min-height: 118px;
  padding: 0 clamp(26px, 3vw, 58px);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.project-principles-section article:first-child {
  padding-left: 0;
}

.project-principles-section article:last-child {
  padding-right: 0;
  border-right: 0;
}

.principle-icon {
  display: inline-flex;
  width: clamp(42px, 3.2vw, 62px);
  height: clamp(42px, 3.2vw, 62px);
  color: rgba(255, 255, 255, 0.76);
}

.principle-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-principles-section h2 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: var(--fs-panel-title);
  line-height: 1;
  text-transform: uppercase;
}

.project-principles-section p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: var(--fs-ui);
  font-weight: 850;
  line-height: 1.45;
  text-transform: uppercase;
}

.services-catalog-section {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(96px, 8vw, 150px) 0 clamp(94px, 8vw, 140px);
  border-top: 1px solid var(--soft-line);
}

.services-catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
  gap: clamp(44px, 11vw, 210px);
  align-items: start;
  margin-bottom: clamp(54px, 5vw, 82px);
}

.services-catalog-heading h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--fs-section-title);
  line-height: 0.94;
  text-transform: uppercase;
}

.services-catalog-heading > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--fs-body-lg);
  font-weight: 650;
  line-height: 1.85;
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 34px);
}

.services-catalog-card {
  position: relative;
  display: flex;
  min-height: clamp(360px, 21vw, 430px);
  padding: clamp(34px, 2.2vw, 44px) clamp(34px, 2.4vw, 48px);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.13), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    #050505;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.services-catalog-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.18), transparent 33%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    #060606;
}

.services-catalog-card img {
  align-self: center;
  width: clamp(170px, 10vw, 220px);
  height: clamp(170px, 10vw, 220px);
  object-fit: cover;
  margin: 0 0 auto;
  mix-blend-mode: screen;
  filter: contrast(1.04) brightness(1.04);
}

.services-catalog-card h3 {
  margin: clamp(28px, 2.5vw, 52px) 0 14px;
  font-family: var(--font-ui);
  font-size: var(--fs-card-title);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.services-catalog-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-body);
  font-weight: 650;
  line-height: 1.72;
}

.services-catalog-card span {
  position: absolute;
  right: clamp(24px, 2vw, 36px);
  bottom: clamp(22px, 2vw, 34px);
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--fs-panel-title);
  transition: transform 180ms ease, color 180ms ease;
}

.services-catalog-card:hover span {
  color: var(--text);
  transform: translateX(4px);
}

.services-catalog-card.reveal-ready,
.process-steps article.reveal-ready,
.why-grid article.reveal-ready {
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    background 180ms ease;
}

.services-catalog-card.reveal-ready {
  transform: translateY(34px) scale(0.98);
}

.services-catalog-card.reveal-ready.is-visible {
  transform: translateY(0) scale(1);
}

.services-catalog-card.reveal-ready:nth-child(2),
.process-steps article.reveal-ready:nth-child(2),
.why-grid article.reveal-ready:nth-child(2) {
  transition-delay: 80ms;
}

.services-catalog-card.reveal-ready:nth-child(3),
.process-steps article.reveal-ready:nth-child(3),
.why-grid article.reveal-ready:nth-child(3) {
  transition-delay: 160ms;
}

.services-catalog-card.reveal-ready:nth-child(4),
.process-steps article.reveal-ready:nth-child(4),
.why-grid article.reveal-ready:nth-child(4) {
  transition-delay: 240ms;
}

.services-catalog-card.reveal-ready:nth-child(5),
.why-grid article.reveal-ready:nth-child(5) {
  transition-delay: 320ms;
}

.services-catalog-card.reveal-ready:nth-child(6) {
  transition-delay: 400ms;
}

.process-section {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(82px, 6.4vw, 118px) 0 clamp(78px, 6.8vw, 124px);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 2.2fr);
  gap: clamp(56px, 8vw, 150px);
  align-items: start;
}

.process-heading h2 {
  max-width: 610px;
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--fs-section-title);
  line-height: 0.94;
  text-transform: uppercase;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 76px);
  align-items: start;
  padding-top: 0;
}

.process-steps article {
  position: relative;
  padding-top: 42px;
}

.process-steps article::before {
  content: "";
  position: absolute;
  top: 13px;
  right: 0;
  left: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.process-steps span,
.process-steps h3 {
  font-family: var(--font-ui);
  font-weight: 900;
  text-transform: uppercase;
}

.process-steps span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--fs-card-title);
  line-height: 1;
}

.process-steps span::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: #020202;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
}

.process-steps span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
}

.process-steps h3 {
  margin: 0 0 16px;
  font-size: var(--fs-ui);
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-body);
  font-weight: 650;
  line-height: 1.72;
}

.why-section {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(70px, 6vw, 104px) 0 clamp(46px, 5vw, 76px);
  border-top: 1px solid var(--soft-line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 42px);
  margin-top: 30px;
}

.why-grid article {
  min-height: 118px;
  padding-right: clamp(16px, 1.8vw, 32px);
  border-right: 1px solid var(--soft-line);
}

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

.why-icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.why-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-grid h2 {
  max-width: 220px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--fs-ui);
  font-weight: 750;
  line-height: 1.55;
}

.services-page-cta {
  position: relative;
  isolation: isolate;
  width: var(--page-width);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.18) 100%),
    url("assets/services-page-hero-bkz-chip.png") 118% 56% / 74% auto no-repeat,
    #050505;
  background-blend-mode: normal, luminosity, normal;
}

.services-page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 74% 50%, rgba(255, 255, 255, 0.16), transparent 20%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.services-page-cta > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: clamp(150px, 14vw, 220px);
  padding: clamp(34px, 4vw, 64px);
}

.services-page-cta h2 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--fs-section-title);
  line-height: 0.98;
  text-transform: uppercase;
}

.services-page-cta .primary-action {
  flex: 0 0 auto;
  min-width: 230px;
  padding: 0 30px;
}

.about-page-section {
  border-top: 1px solid var(--soft-line);
  background: #020202;
}

.about-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.7vw, 28px);
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(80px, 8vw, 130px) 0;
}

.about-page-grid article {
  min-height: 320px;
  padding: clamp(28px, 2.8vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.018);
}

.about-page-grid span {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-ui);
  font-weight: 900;
}

.about-page-grid h2 {
  margin: 42px 0 18px;
  font-family: var(--font-title);
  font-size: var(--fs-panel-title);
  line-height: 1;
  text-transform: uppercase;
}

.about-page-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.75;
}

.journey-section {
  position: relative;
  min-height: 860px;
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(96px, 8vw, 140px) 0 clamp(120px, 10vw, 170px);
  border: 1px solid var(--soft-line);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.86) 100%),
    url("assets/journey-timeline-mountains.png") center 16% / cover no-repeat,
    #020202;
}

.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 78%, #020202 100%);
  pointer-events: none;
}

.journey-heading {
  position: relative;
  z-index: 2;
  padding: 0 clamp(30px, 5vw, 72px);
}

.journey-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.35rem, 3vw, 3.75rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.journey-timeline {
  position: absolute;
  right: clamp(30px, 5vw, 72px);
  bottom: clamp(92px, 8vw, 130px);
  left: clamp(30px, 5vw, 72px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 72px);
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
}

.journey-timeline article {
  position: relative;
  padding-top: 42px;
}

.journey-timeline article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: #020202;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.journey-timeline span,
.journey-timeline h3 {
  font-family: var(--font-ui);
  font-weight: 900;
  text-transform: uppercase;
}

.journey-timeline span {
  color: rgba(255, 255, 255, 0.58);
}

.journey-timeline h3 {
  margin: 14px 0 14px;
  font-size: var(--fs-ui);
}

.journey-timeline p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.65;
}

.about-page-stack {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(80px, 8vw, 130px) 0;
}

.about-page-stack div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.about-page-stack span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 13px 20px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--font-ui);
  font-weight: 900;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    background-position:
      center,
      center;
  }

  to {
    background-position:
      center,
      center;
  }
}

@keyframes servicesHeroDrift {
  from {
    opacity: 0.72;
    transform: scale(1.07) translateX(18px);
  }

  to {
    opacity: 1;
    transform: scale(1.03) translateX(0);
  }
}

@keyframes partnerLogoRotate {
  0%,
  100% {
    opacity: 0.58;
    transform: perspective(420px) rotateY(0deg) translateY(0);
  }

  42% {
    opacity: 0.82;
    transform: perspective(420px) rotateY(13deg) translateY(-1px);
  }

  58% {
    opacity: 0.72;
    transform: perspective(420px) rotateY(-9deg) translateY(0);
  }
}

@keyframes partnerLogoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--logo-gap) / 2)));
  }
}

@keyframes servicePanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  :root {
    --fs-hero: clamp(2.05rem, 8vw, 4.8rem);
    --fs-hero-home: var(--fs-hero);
    --fs-section-title: clamp(2.1rem, 9.2vw, 3.5rem);
    --fs-panel-title: clamp(1.2rem, 5.8vw, 1.85rem);
    --fs-card-title: clamp(1rem, 4.8vw, 1.35rem);
    --fs-body-lg: 0.92rem;
    --fs-body: 0.9rem;
    --fs-ui: 0.78rem;
    --fs-kicker: 0.78rem;
  }

  .page-shell {
    background: #020202;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    width: var(--page-width-mobile);
    padding-top: 22px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.24);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
  }

  .main-nav,
  .talk-link {
    display: none;
  }

  .main-nav.open {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--soft-line);
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(16px);
  }

  .hero {
    width: var(--page-width-mobile);
    min-height: calc(100vh - 68px);
    padding-top: clamp(340px, 58vh, 460px);
    padding-bottom: 74px;
  }

  .hero::before {
    top: 0;
    right: calc((100% - 100vw) / 2);
    bottom: auto;
    left: calc((100% - 100vw) / 2);
    height: clamp(300px, 51vh, 420px);
    border: 0;
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.42) 100%);
    background-position:
      42% center;
    background-size:
      cover;
    background-repeat:
      no-repeat;
  }

  .hero-video {
    top: 0;
    right: calc((100% - 100vw) / 2);
    bottom: auto;
    left: calc((100% - 100vw) / 2);
    width: 100vw;
    height: clamp(300px, 51vh, 420px);
    object-position: 100% center;
  }

  .eyebrow {
    margin-bottom: 14px;
    letter-spacing: 0.42em;
  }

  h1 {
    font-size: var(--fs-hero-home);
  }

  .intro {
    max-width: 470px;
    margin: 14px 0 18px;
    font-size: var(--fs-body);
    line-height: 1.55;
  }

  .primary-action {
    min-height: 42px;
  }

  .trust-row {
    bottom: 18px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
  }

  .trust-row span {
    flex: 0 0 auto;
    font-size: var(--fs-ui);
  }

  .trust-logos-track {
    animation-duration: 16s;
  }

  .trust-logos {
    --logo-gap: 28px;
  }

  .trust-row strong {
    flex: 0 0 auto;
    font-size: 1.02rem;
    text-align: left;
  }

  .about-section {
    min-height: 100vh;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.94) 52%),
      url("assets/about-background.png") 82% top / auto 56vh no-repeat,
      #020202;
  }

  .about-inner {
    width: var(--page-width-mobile);
    align-content: end;
    padding: 36vh 0 52px;
  }

  .section-kicker {
    margin-bottom: 22px;
  }

  .about-section h2 {
    font-size: var(--fs-section-title);
  }

  .about-section p:not(.section-kicker) {
    margin-top: 20px;
    font-size: var(--fs-body-lg);
    line-height: 1.6;
  }

  .services-inner {
    width: var(--page-width-mobile);
    align-content: start;
    padding: 72px 0;
  }

  .services-section h2 {
    font-size: var(--fs-section-title);
  }

  .services-accordion {
    display: grid;
    grid-template-columns: none;
    gap: 12px;
    width: 100%;
    margin-left: 0;
    min-height: auto;
    overflow: visible;
    padding: 0;
  }

  .service-panel,
  .service-panel:not(.is-open) {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    min-height: 82px;
    max-height: 82px;
    padding: 18px;
    place-items: initial;
    transition:
      max-height 360ms ease,
      min-height 360ms ease,
      padding 260ms ease,
      border-color 180ms ease,
      background 180ms ease,
      transform 220ms ease;
  }

  .service-panel img,
  .service-panel:not(.is-open) img {
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .service-panel.is-open {
    grid-template-columns: 1fr auto;
    min-height: 310px;
    max-height: 420px;
    align-content: start;
    padding: 26px;
  }

  .service-panel.is-open img {
    grid-column: 1 / -1;
    width: 82px;
    height: 82px;
    margin: 0 0 30px;
  }

  .service-panel:not(.is-open) span,
  .service-panel:not(.is-open) p,
  .service-panel:not(.is-open) button {
    display: none;
  }

  .service-panel:not(.is-open) h3 {
    position: static;
    display: block !important;
    width: auto;
    margin: 0;
    font-size: var(--fs-card-title);
    line-height: 1;
    text-align: center;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .service-panel.is-open h3 {
    position: static;
    grid-column: 1 / -1;
    width: auto;
    margin: 28px 0 18px;
    font-size: var(--fs-panel-title);
    writing-mode: horizontal-tb;
    transform: none;
  }

  .service-panel.is-open span,
  .service-panel.is-open h3,
  .service-panel.is-open p,
  .service-panel.is-open button,
  .service-panel.is-open img {
    animation: servicePanelIn 360ms ease both;
  }

  .service-panel.is-open span,
  .service-panel.is-open p {
    grid-column: 1 / -1;
    display: block;
  }

  .service-panel.is-open button {
    display: inline-grid;
  }

  .projects-inner {
    grid-template-columns: 1fr;
    width: var(--page-width-mobile);
    align-content: start;
    gap: 26px;
    padding: 72px 0;
  }

  .projects-copy .section-kicker {
    margin-bottom: 24px;
  }

  .projects-copy h2 {
    margin-bottom: 28px;
    font-size: var(--fs-section-title);
  }

  .project-controls {
    justify-content: flex-start;
    margin-bottom: 18px;
  }

  .project-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(76vw, 320px);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .project-card {
    min-height: 240px;
    scroll-snap-align: start;
  }

  .cta-section {
    min-height: 520px;
    margin-top: 0;
    background: #020202;
  }

  .cta-section::before {
    inset: -86px 0 0;
    background:
      linear-gradient(180deg, transparent 0%, rgba(2, 2, 2, 0.42) 18%, rgba(2, 2, 2, 0.96) 66%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.96) 60%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 70%);
  }

  .cta-video {
    top: -86px;
    height: calc(58% + 86px);
    object-position: top right;
  }

  .cta-inner {
    width: var(--page-width-mobile);
    align-content: end;
    padding: 170px 0 86px;
  }

  .cta-section h2 {
    font-size: var(--fs-section-title);
  }

  .cta-section .primary-action {
    width: max-content;
    min-width: 230px;
    padding: 0 34px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    width: var(--page-width-mobile);
    gap: 22px;
  }

  .site-footer p {
    text-align: left;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 20px 34px;
  }

  .about-page-hero {
    width: var(--page-width-mobile);
    min-height: calc(100vh - 68px);
    padding: 46vh 0 72px;
  }

  .about-page-hero::before {
    inset: -68px calc((100% - 100vw) / 2) 0;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.96) 56%),
      url("assets/about-page-hero-bkz-chip.png") 70% top / auto 56vh no-repeat,
      #020202;
  }

  .services-page-hero {
    width: var(--page-width-mobile);
    min-height: calc(100vh - 68px);
    padding: 46vh 0 72px;
  }

  .services-page-hero::before {
    inset: -68px calc((100% - 100vw) / 2) 0;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.96) 58%),
      url("assets/services-page-hero-bkz-chip.png") 72% top / auto 56vh no-repeat,
      #020202;
  }

  .services-page-copy h1 {
    font-size: var(--fs-hero);
  }

  .projects-page-hero {
    align-content: start;
    width: var(--page-width-mobile);
    min-height: calc(100vh - 68px);
    padding: 34vh 0 64px;
  }

  .projects-page-hero::before {
    inset: -68px calc((100% - 100vw) / 2) 0;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.96) 58%),
      url("assets/about-page-bkz-projects.png") 72% top / auto 56vh no-repeat,
      #020202;
  }

  .projects-page-copy h1 {
    font-size: var(--fs-hero);
  }

  .projects-page-copy p:not(.section-kicker) {
    margin-top: 22px;
    line-height: 1.68;
  }

  .projects-page-copy .primary-action {
    margin-top: 28px;
    min-width: min(100%, 260px);
  }

  .contact-page-hero {
    align-content: start;
    width: var(--page-width-mobile);
    min-height: calc(100vh - 68px);
    padding: 40vh 0 64px;
  }

  .contact-page-hero::before {
    inset: -68px calc((100% - 100vw) / 2) 0;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.96) 58%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 72%),
      url("assets/about-page-bkz-contact.png") 68% top / auto 56vh no-repeat,
      #020202;
  }

  .contact-video {
    inset: -68px calc((100% - 100vw) / 2) 0;
    height: calc(100% + 68px);
    object-position: 68% top;
  }

  .contact-page-copy h1 {
    font-size: var(--fs-hero);
  }

  .contact-page-copy p:not(.section-kicker) {
    margin-top: 24px;
    line-height: 1.68;
  }

  .contact-page-copy .primary-action {
    margin-top: 30px;
  }

  .contact-form-section {
    width: var(--page-width-mobile);
    grid-template-columns: 1fr;
    gap: 70px;
  }

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

  .featured-projects-section {
    width: var(--page-width-mobile);
  }

  .featured-projects-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-projects-heading > p,
  .featured-projects-controls {
    margin-top: 0;
  }

  .featured-projects-grid {
    grid-template-columns: none;
    grid-auto-columns: minmax(320px, 78vw);
    margin-right: calc((100vw - var(--page-width-mobile)) / -2);
    padding-right: calc((100vw - var(--page-width-mobile)) / 2);
  }

  .featured-project-media {
    height: 340px;
  }

  .project-principles-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: var(--page-width-mobile);
  }

  .project-principles-section article {
    padding: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .project-principles-section article:nth-child(2n) {
    border-right: 0;
  }

  .project-principles-section article:first-child,
  .project-principles-section article:nth-child(2) {
    border-top: 0;
  }

  .process-section {
    width: var(--page-width-mobile);
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 72px 0;
  }

  .services-catalog-section {
    width: var(--page-width-mobile);
  }

  .services-catalog-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .services-catalog-card {
    min-height: 350px;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 64px;
  }

  .why-section,
  .services-page-cta {
    width: var(--page-width-mobile);
  }

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

  .why-grid article {
    border-right: 0;
    border-top: 1px solid var(--soft-line);
    padding-top: 22px;
  }

  .services-page-cta {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.96) 100%),
      url("assets/services-page-hero-bkz-chip.png") 70% top / auto 100% no-repeat,
      #050505;
  }

  .services-page-cta > div {
    display: grid;
    justify-items: start;
    min-height: 360px;
    align-content: end;
  }

  .about-page-grid,
  .journey-section,
  .about-page-stack {
    width: var(--page-width-mobile);
  }

  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .about-page-grid article {
    min-height: 260px;
  }

  .journey-section {
    min-height: auto;
    padding: 72px 0;
  }

  .journey-section::before {
    inset: 0;
  }

.journey-heading h2 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .journey-timeline {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 80px;
    padding: 0 30px;
  }

  .journey-timeline::before {
    top: 0;
    bottom: 0;
    left: 40px;
    width: 1px;
    height: auto;
  }

  .journey-timeline article {
    padding-top: 0;
    padding-left: 42px;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero {
    width: min(80vw, 420px);
  }

  .hero {
    padding-top: clamp(330px, 56vh, 430px);
  }

  .about-inner {
    width: min(80vw, 420px);
    padding-top: 230px;
  }

  .services-inner {
    width: min(80vw, 420px);
  }

  .services-accordion {
    grid-template-columns: none;
  }

  .service-panel,
  .service-panel:not(.is-open) {
    min-height: 78px;
    max-height: 78px;
  }

  .service-panel.is-open {
    min-height: 300px;
    max-height: 430px;
  }

  .projects-inner {
    width: min(80vw, 420px);
  }

  .cta-inner,
  .site-footer,
  .about-page-hero,
  .services-page-hero,
  .projects-page-hero,
  .contact-page-hero,
  .contact-form-section,
  .featured-projects-section,
  .project-principles-section,
  .services-catalog-section,
  .process-section,
  .why-section,
  .services-page-cta,
  .about-page-grid,
  .journey-section,
  .about-page-stack {
    width: min(80vw, 420px);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 0;
  }

  .process-steps article {
    padding-top: 0;
    padding-left: 42px;
  }

  .process-steps article::before {
    top: 0;
    bottom: 0;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .process-steps span {
    position: relative;
    margin-bottom: 30px;
  }

  .process-steps span::before {
    position: absolute;
    left: -42px;
  }

  .process-steps span::after {
    left: -42px;
    bottom: -14px;
    width: 28px;
  }

  .services-catalog-grid {
    grid-template-columns: 1fr;
  }

  .services-catalog-card {
    min-height: 330px;
    padding: 30px;
  }

  .services-catalog-card img {
    width: 160px;
    height: 160px;
  }

.featured-projects-heading h2 {
    font-size: var(--fs-section-title);
  }

  .featured-projects-controls {
    display: none;
  }

  .featured-project-media {
    height: 300px;
  }

  .featured-project-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .contact-methods a,
  .contact-methods > div {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
  }

  .contact-method-icon {
    width: 58px;
    height: 58px;
  }

  .contact-method-icon svg {
    width: 27px;
    height: 27px;
  }

  .contact-form input {
    min-height: 68px;
  }

  .contact-form textarea {
    min-height: 220px;
  }

  .project-principles-section {
    grid-template-columns: 1fr;
  }

  .project-principles-section article,
  .project-principles-section article:first-child,
  .project-principles-section article:last-child {
    padding: 26px 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .project-principles-section article:first-child {
    border-top: 0;
  }

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

  .why-grid h2 {
    max-width: 100%;
  }

  .services-page-cta > div {
    padding: 30px;
  }

  .services-page-cta .primary-action {
    width: 100%;
    min-width: 0;
  }


  .intro {
    margin-top: 22px;
  }

  .primary-action {
    width: 100%;
  }

  .cta-section .primary-action {
    width: max-content;
    max-width: 100%;
  }
}
