:root {
  --black: #080807;
  --black-soft: #11110f;
  --charcoal: #1c1c19;
  --paper: #f2eee7;
  --paper-deep: #ddd4c8;
  --silver: #a6a49d;
  --muted: #7b786f;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(8, 8, 7, 0.14);
  --green: #c5e803;
  --green-deep: #8da601;
  --font-sans: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --ambient-opacity: 0.92;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  background: var(--green);
  color: var(--black);
}

a {
  color: inherit;
}

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

.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  opacity: var(--ambient-opacity);
  pointer-events: none;
  transition: opacity 420ms ease;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 2px;
  background: rgba(242, 238, 231, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: calc(var(--page-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, rgba(197, 232, 3, 0.3), var(--green));
  box-shadow: 0 0 18px rgba(197, 232, 3, 0.25);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(22px, 4vw, 58px);
  mix-blend-mode: difference;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--green);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--green);
}

.site-nav a.is-active {
  color: var(--green);
}

.site-nav a.is-active::after {
  opacity: 0.85;
  transform: scaleX(1);
}

main {
  position: relative;
  z-index: 1;
}

.section-dark,
.section-light {
  position: relative;
  min-height: 100svh;
  padding: clamp(84px, 13vh, 150px) clamp(22px, 7vw, 112px);
}

.section-dark {
  background: rgba(8, 8, 7, 0.78);
  color: var(--paper);
}

.section-light {
  background: var(--paper);
  color: var(--black);
}

.section-kicker,
.eyebrow {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-light .section-kicker {
  color: var(--green-deep);
}

.hero {
  min-height: 175svh;
  padding: 0;
  overflow: visible;
  background: rgba(8, 8, 7, 0.36);
}

.hero__pin {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(84px, 13vh, 150px) clamp(22px, 7vw, 112px);
  overflow: hidden;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 38%, rgba(197, 232, 3, 0.18), transparent 30vw),
    linear-gradient(110deg, rgba(8, 8, 7, 0.12), rgba(8, 8, 7, 0.48) 54%, rgba(8, 8, 7, 0.24)),
    radial-gradient(circle at 20% 80%, rgba(242, 238, 231, 0.07), transparent 32vw);
  opacity: calc(1 - var(--hero-progress, 0) * 0.34);
  transform: scale(calc(1 + var(--hero-progress, 0) * 0.16));
  will-change: opacity, transform;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding-top: 8vh;
  transform: translate3d(0, calc(var(--hero-progress, 0) * -170px), 0) scale(calc(1 - var(--hero-progress, 0) * 0.18));
  opacity: calc(1 - var(--hero-progress, 0) * 0.96);
  transform-origin: left center;
  will-change: transform, opacity;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(64px, 12vw, 180px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero__lead {
  max-width: 620px;
  margin: 36px 0 0;
  color: rgba(242, 238, 231, 0.72);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 300;
  line-height: 1.5;
}

.hero__footer {
  position: absolute;
  left: clamp(22px, 7vw, 112px);
  right: clamp(22px, 7vw, 112px);
  bottom: 34px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
  color: rgba(242, 238, 231, 0.45);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: calc(1 - var(--hero-progress, 0));
}

.make {
  overflow: hidden;
}

.make__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.make__copy h2,
.method__copy h2,
.works__intro h2,
.lab__heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(40px, 6.4vw, 92px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.make__copy p,
.method__copy p,
.works__intro p,
.contact p {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 300;
  line-height: 1.8;
}

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

.service-item {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.service-item span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.service-item strong {
  font-size: clamp(24px, 3.4vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.service-item.is-active strong,
.service-item:hover strong {
  color: var(--green-deep);
}

.method {
  overflow: visible;
  min-height: 330vh;
  padding: 0 clamp(22px, 7vw, 112px);
  background: rgba(8, 8, 7, 0.9);
}

.method__pin {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: clamp(58px, 7vh, 78px) 0 clamp(24px, 4vh, 42px);
}

.method__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(420px, 1.05fr);
  gap: clamp(36px, 5vw, 82px);
  align-items: center;
}

.method__text {
  display: grid;
  gap: clamp(14px, 2vh, 22px);
  min-width: 0;
}

.method .method__copy h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.method .method__copy p {
  max-width: 560px;
  margin-top: 14px;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.58;
}

.method__copy p {
  color: rgba(242, 238, 231, 0.62);
}

.method-stage {
  display: grid;
  gap: 8px;
}

.stage-card {
  border: 1px solid var(--line-dark);
  padding: clamp(12px, 1.2vw, 17px);
  background: rgba(255, 255, 255, 0.03);
  opacity: 0.42;
  transform: translateX(0);
  transition: opacity 360ms ease, background 360ms ease, border-color 360ms ease, transform 360ms ease;
}

.stage-card.is-active {
  border-color: rgba(197, 232, 3, 0.5);
  background: rgba(197, 232, 3, 0.07);
  opacity: 1;
  transform: translateX(-10px);
}

.stage-card span,
.work-meta span,
.lab-link span,
.contact-list span:first-child {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stage-card h3 {
  margin: 7px 0 5px;
  font-size: clamp(20px, 1.52vw, 25px);
  font-weight: 400;
  line-height: 1.2;
}

.stage-card p {
  margin: 0;
  color: rgba(242, 238, 231, 0.6);
  font-size: 13px;
  line-height: 1.48;
}

.method__visual {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin: 0;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  background: #030303;
}

.method__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.72) contrast(1.08);
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 520ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease;
}

.method__visual img.is-active {
  opacity: 1;
  transform: scale(calc(1.04 - var(--method-local-progress, 0) * 0.04));
  filter: saturate(0.9) contrast(1.08);
}

.method__visual img[data-stage-image] {
  object-fit: contain;
}

.method__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(rgba(197, 232, 3, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 232, 3, 0.1) 1px, transparent 1px);
  background-size: 7.5% 12.5%;
  mix-blend-mode: screen;
  opacity: calc(var(--method-ai-grid, 0) * 0.65);
  pointer-events: none;
  transition: opacity 320ms ease;
}

.method__scan {
  position: absolute;
  inset: -18%;
  z-index: 2;
  background:
    linear-gradient(105deg, transparent 30%, rgba(197, 232, 3, 0.18) 47%, rgba(242, 238, 231, 0.13) 50%, transparent 66%),
    radial-gradient(circle at 62% 38%, rgba(197, 232, 3, 0.12), transparent 24%);
  mix-blend-mode: screen;
  opacity: calc(var(--method-ai-grid, 0) * 0.72);
  transform: translate3d(calc((var(--method-local-progress, 0) - 0.5) * 18%), 0, 0) rotate(-6deg);
  pointer-events: none;
  transition: opacity 320ms ease;
}

.method__progress {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  height: 1px;
  background: rgba(242, 238, 231, 0.22);
}

.method__progress span {
  display: block;
  width: calc(var(--method-progress, 0) * 100%);
  height: 100%;
  background: var(--green);
}

.works {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
  background: rgba(8, 8, 7, 0.9);
}

.works__intro {
  padding: 0 clamp(22px, 7vw, 112px) clamp(46px, 8vw, 90px);
}

.works__intro p {
  color: rgba(242, 238, 231, 0.55);
}

.work-strip {
  display: grid;
  gap: 0;
  counter-reset: work;
}

.work-panel {
  --work-active: 0;
  --work-shift: 0;
  counter-increment: work;
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: clamp(22px, 4vw, 62px);
  align-items: center;
  padding: clamp(90px, 12vh, 140px) clamp(22px, 7vw, 112px);
  background:
    radial-gradient(circle at 70% 45%, rgba(197, 232, 3, 0.05), transparent 32vw),
    var(--black);
  isolation: isolate;
  overflow: hidden;
}

.work-panel::before {
  content: counter(work, decimal-leading-zero);
  position: absolute;
  left: clamp(22px, 7vw, 112px);
  top: clamp(86px, 11vh, 132px);
  z-index: -1;
  color: rgba(242, 238, 231, 0.035);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.78;
  transform: translate3d(0, calc(var(--work-shift, 0) * -24px), 0);
  pointer-events: none;
}

.work-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 7.5vw 100%, 100% 8vh;
  opacity: calc(0.18 + var(--work-active, 0) * 0.32);
  pointer-events: none;
}

.work-panel:nth-child(even) {
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
}

.work-panel:nth-child(even) figure {
  grid-column: 2;
}

.work-panel:nth-child(even) .work-meta {
  grid-column: 1;
  grid-row: 1;
}

.work-panel figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-dark);
  clip-path: inset(calc((1 - var(--work-active, 0)) * 7%) calc((1 - var(--work-active, 0)) * 5%));
  transition: clip-path 700ms cubic-bezier(0.16, 1, 0.3, 1), border-color 420ms ease;
}

.work-panel figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 42%, transparent 42%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 26%, transparent 74%, rgba(0, 0, 0, 0.38));
  opacity: calc(0.72 - var(--work-active, 0) * 0.28);
  pointer-events: none;
}

.work-panel figure::after {
  content: "View Work";
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  border: 1px solid rgba(197, 232, 3, 0.45);
  padding: 9px 12px;
  color: var(--green);
  background: rgba(8, 8, 7, 0.48);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.work-media video,
.work-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transform: translate3d(0, calc(var(--work-shift, 0) * -28px), 0) scale(calc(1.08 - var(--work-active, 0) * 0.055));
  transition: transform 700ms ease, filter 700ms ease, opacity 520ms ease;
}

.work-media video {
  z-index: 1;
  opacity: 0;
}

.work-media.has-video video {
  opacity: calc(0.55 + var(--work-active, 0) * 0.45);
}

.work-media img {
  z-index: 0;
  opacity: calc(0.55 + var(--work-active, 0) * 0.45);
}

.work-media.has-video img {
  opacity: 0;
}

.work-panel:hover .work-media video,
.work-panel:hover .work-media img {
  transform: translate3d(0, calc(var(--work-shift, 0) * -28px), 0) scale(1.035);
  filter: saturate(0.95) contrast(1.08);
}

.work-panel:hover figure::after {
  opacity: 1;
  transform: translateY(0);
}

.work-meta {
  padding-bottom: 12px;
  opacity: calc(0.42 + var(--work-active, 0) * 0.58);
  transform: translate3d(calc((1 - var(--work-active, 0)) * 28px), calc(var(--work-shift, 0) * -12px), 0);
  transition: opacity 420ms ease, transform 420ms ease;
}

.work-meta h3 {
  margin: 20px 0 14px;
  font-size: clamp(34px, 5vw, 78px);
  font-weight: 400;
  line-height: 1;
}

.work-meta h3::after {
  content: "";
  display: block;
  width: calc(42px + var(--work-active, 0) * 82px);
  height: 1px;
  margin-top: 22px;
  background: var(--green);
  opacity: calc(0.28 + var(--work-active, 0) * 0.55);
  transition: width 520ms ease, opacity 420ms ease;
}

.work-meta p {
  margin: 0;
  color: rgba(242, 238, 231, 0.58);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.7;
}

.lab {
  overflow: hidden;
  isolation: isolate;
}

.lab__network {
  position: absolute;
  inset: clamp(42px, 7vw, 96px);
  z-index: -1;
  opacity: 0.72;
  background:
    linear-gradient(105deg, transparent 9%, rgba(8, 8, 7, 0.11) 9.1%, transparent 9.25%),
    linear-gradient(150deg, transparent 18%, rgba(8, 8, 7, 0.08) 18.08%, transparent 18.22%),
    linear-gradient(22deg, transparent 42%, rgba(141, 166, 1, 0.14) 42.08%, transparent 42.2%),
    linear-gradient(162deg, transparent 58%, rgba(8, 8, 7, 0.08) 58.08%, transparent 58.22%),
    linear-gradient(rgba(8, 8, 7, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 7, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 64px 64px, 64px 64px;
  pointer-events: none;
}

.node {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(8, 8, 7, 0.36);
  background: var(--paper);
  box-shadow: 0 0 0 7px rgba(197, 232, 3, 0.08);
}

.node::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--green-deep);
}

.node-a { left: 8%; top: 18%; }
.node-b { left: 28%; top: 52%; }
.node-c { left: 48%; top: 25%; }
.node-d { left: 68%; top: 68%; }
.node-e { left: 84%; top: 34%; }
.node-f { left: 57%; top: 82%; }

.lab__heading {
  max-width: 980px;
}

.lab__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(50px, 8vw, 104px);
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.lab-link {
  min-height: 240px;
  padding: clamp(26px, 4vw, 52px);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.02)),
    var(--paper);
  color: var(--black);
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}

.lab-link span {
  color: var(--green-deep);
}

.lab-link strong {
  display: block;
  max-width: 460px;
  margin-top: 80px;
  font-size: clamp(26px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
}

.lab-link em {
  display: block;
  max-width: 480px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(14px, 1.02vw, 17px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.7;
  transition: color 220ms ease;
}

.lab-link small {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  border: 1px solid rgba(141, 166, 1, 0.5);
  padding: 9px 13px;
  color: var(--green-deep);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 220ms ease, color 220ms ease, background 220ms ease, transform 220ms ease;
}

.lab-link small::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: width 220ms ease;
}

.lab-link:hover {
  background: var(--black);
  color: var(--paper);
}

.lab-link:hover em {
  color: rgba(242, 238, 231, 0.62);
}

.lab-link:hover small {
  border-color: rgba(197, 232, 3, 0.72);
  background: rgba(197, 232, 3, 0.08);
  color: var(--green);
  transform: translateX(4px);
}

.lab-link:hover small::after {
  width: 46px;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.86), rgba(8, 8, 7, 0.98)),
    radial-gradient(circle at 84% 20%, rgba(197, 232, 3, 0.08), transparent 28vw);
}

.contact__inner {
  max-width: 1050px;
}

.contact p {
  color: rgba(242, 238, 231, 0.62);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1120px;
  margin: clamp(48px, 8vw, 96px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  list-style: none;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 138px;
  border-bottom: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  padding: 22px;
}

.contact-list a {
  color: var(--paper);
  text-decoration: none;
  text-underline-offset: 6px;
}

.contact-list a:hover,
.social-links a:hover {
  color: var(--green);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  font-size: 15px;
}

.social-links a {
  color: rgba(242, 238, 231, 0.66);
  text-decoration: none;
  text-underline-offset: 6px;
}

.footer-mark {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 90px;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  color: rgba(242, 238, 231, 0.44);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero__content.reveal.is-visible {
  transform: translate3d(0, calc(var(--hero-progress, 0) * -170px), 0) scale(calc(1 - var(--hero-progress, 0) * 0.18));
  opacity: calc(1 - var(--hero-progress, 0) * 0.96);
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

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

  .method,
  .work-panel,
  .method__pin,
  .method__grid,
  .method__visual {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .method__visual img {
    position: relative;
    opacity: 1;
  }
}

@media (min-width: 901px) and (max-height: 860px) {
  .method__pin {
    padding-top: 48px;
    padding-bottom: 28px;
  }

  .method__text {
    gap: 12px;
  }

  .method .method__copy h2 {
    font-size: clamp(32px, 3.55vw, 50px);
  }

  .method .method__copy p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .method-stage {
    gap: 7px;
  }

  .stage-card {
    padding: 11px 15px;
  }

  .stage-card h3 {
    margin: 6px 0 4px;
    font-size: clamp(19px, 1.35vw, 23px);
  }

  .stage-card p {
    font-size: 12px;
    line-height: 1.42;
  }
}

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

  .site-nav {
    gap: 14px;
    font-size: 11px;
  }

  .brand {
    width: 36px;
    height: 36px;
  }

  .section-dark,
  .section-light {
    padding: 92px 20px;
  }

  .hero {
    min-height: 100svh;
    padding: 0;
  }

  .hero__pin {
    position: relative;
    min-height: 100svh;
    padding: 120px 20px 92px;
  }

  .hero h1 {
    font-size: clamp(56px, 18vw, 104px);
  }

  .hero__footer {
    left: 20px;
    right: 20px;
  }

  .hero__footer span:last-child {
    display: none;
  }

  .make__grid,
  .method__grid,
  .work-panel,
  .work-panel:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .work-panel:nth-child(even) figure,
  .work-panel:nth-child(even) .work-meta {
    grid-column: auto;
    grid-row: auto;
  }

  .method {
    min-height: auto;
    padding: 0 20px 92px;
  }

  .method__pin,
  .method__grid,
  .method__visual {
    position: relative;
    top: auto;
  }

  .method__pin {
    min-height: auto;
    padding: 92px 0 0;
  }

  .method__visual {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .method__visual img {
    aspect-ratio: 16 / 9;
  }

  .work-panel,
  .work-panel:nth-child(even) {
    position: relative;
    min-height: auto;
  }

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

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

  .contact-list li {
    min-height: 112px;
  }

  .footer-mark {
    flex-direction: column;
  }
}

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

  .brand {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .site-nav {
    flex: 1;
    justify-content: flex-end;
    gap: clamp(9px, 3vw, 15px);
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .site-nav a::after {
    bottom: -6px;
  }

  .service-item {
    grid-template-columns: 34px 1fr;
    min-height: 70px;
  }

  .work-strip {
    gap: 84px;
  }

  .lab-link {
    min-height: 210px;
  }
}
