@font-face {
  font-family: "Nord";
  src: url("../fonts/NORD-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nord";
  src: url("../fonts/NORD-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nord";
  src: url("../fonts/NORD-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --display-font: "Nord", Arial, sans-serif;
  --text-font: "Helvetica Neue", Arial, sans-serif;
  --ink: #18130d;
  --brown: #3a2513;
  --copper: #a65328;
  --rust: #c66535;
  --cream: #f4eee4;
  --paper: #fbf7ef;
  --sage: #677452;
  --forest: #102a2c;
  --line: rgba(24, 19, 13, 0.14);
  --white-line: rgba(255, 255, 255, 0.22);
  --shadow: 0 28px 80px rgba(23, 17, 11, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--text-font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 36px), 1120px);
  color: #fff;
  transform: translateX(-50%);
  transition: top 240ms ease, width 240ms ease, color 240ms ease;
}

.top-nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 8px 10px 8px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #fff;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, min-height 240ms ease, padding 240ms ease;
}

.site-header.is-scrolled {
  top: 14px;
  width: min(calc(100% - 36px), 980px);
  color: var(--ink);
}

.site-header.is-scrolled .top-nav,
.site-header.menu-active .top-nav {
  min-height: 52px;
  padding: 7px 8px 7px 16px;
  color: var(--ink);
  border-color: var(--line);
  background: rgba(251, 247, 239, 0.78);
  box-shadow: 0 12px 36px rgba(24, 19, 13, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 118px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 240ms ease;
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.site-header.menu-active .brand img {
  filter: none;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display-font);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links a,
.nav-ghost {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 7px;
  transition: background 180ms ease;
}

.nav-links a:hover,
.nav-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-ghost:hover,
.site-header.menu-active .nav-links a:hover,
.site-header.menu-active .nav-ghost:hover {
  background: rgba(24, 19, 13, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display-font);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-cta {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--white-line);
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  isolation: isolate;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  background: var(--cream);
  color: var(--ink);
}

.site-header.is-scrolled .nav-cta,
.site-header.menu-active .nav-cta {
  border-color: var(--line);
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.site-header.menu-active .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.menu-active .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 78px;
  right: 0;
  left: 0;
  display: none;
  height: calc(100svh - 96px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header.menu-active .mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: menuEnter 220ms ease-out;
}

.mobile-menu-links {
  display: grid;
  padding: 18px;
}

.mobile-menu-links a {
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.mobile-menu-actions {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.mobile-menu-actions .btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.hero-scroll {
  height: 260vh;
  background: var(--paper);
}

.hero {
  --hero-progress: 0;
  --hero-image-progress: 0;
  --hero-text-opacity: 1;
  --hero-panel-opacity: 1;
  --hero-reveal-opacity: 0;
  position: relative;
  position: sticky;
  top: 0;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 150px 42px 42px;
  color: #fff;
  background: var(--paper);
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 1;
  top: calc(var(--hero-image-progress) * 22vh);
  right: calc(var(--hero-image-progress) * 58vw);
  bottom: calc(var(--hero-image-progress) * 12vh);
  left: calc(var(--hero-image-progress) * 42px);
  overflow: hidden;
  border-radius: calc(var(--hero-image-progress) * 10px);
  box-shadow: 0 calc(var(--hero-image-progress) * 28px) calc(var(--hero-image-progress) * 80px) rgba(23, 17, 11, calc(var(--hero-image-progress) * 0.28));
  transition: border-radius 60ms linear;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(calc(1.04 - (var(--hero-image-progress) * 0.04)));
  animation: heroSettle 1400ms ease-out forwards;
}

.hero-shade {
  z-index: 2;
  top: calc(var(--hero-image-progress) * 22vh);
  right: calc(var(--hero-image-progress) * 58vw);
  bottom: calc(var(--hero-image-progress) * 12vh);
  left: calc(var(--hero-image-progress) * 42px);
  border-radius: calc(var(--hero-image-progress) * 10px);
  opacity: calc(1 - (var(--hero-image-progress) * 0.95));
  background:
    linear-gradient(90deg, rgba(15, 18, 16, 0.78), rgba(15, 18, 16, 0.3) 52%, rgba(15, 18, 16, 0.56)),
    linear-gradient(0deg, rgba(15, 18, 16, 0.78), rgba(15, 18, 16, 0.08) 52%, rgba(15, 18, 16, 0.5));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 780px;
  padding-bottom: 24px;
  opacity: var(--hero-text-opacity);
  transform: translateY(calc(var(--hero-progress) * -64px));
  pointer-events: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  font-family: var(--display-font);
  font-size: 0.78rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--copper);
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #f5c08e;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display-font);
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 4.05rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

h2 {
  font-size: 2.62rem;
  line-height: 1.06;
  font-weight: 500;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 500;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 32px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.hero-actions,
.center-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
  font-family: var(--display-font);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
  isolation: isolate;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn::before,
.btn::after,
.nav-cta::before,
.nav-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 1;
  width: 72%;
  height: 1px;
  opacity: 0;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(198, 101, 53, 0.95), transparent);
  transition: opacity 500ms ease, width 500ms ease;
  pointer-events: none;
}

.btn::before,
.nav-cta::before {
  top: 0;
}

.btn::after,
.nav-cta::after {
  bottom: 0;
}

.btn:hover::before,
.btn:hover::after,
.nav-cta:hover::before,
.nav-cta:hover::after {
  width: 86%;
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ink);
  background: var(--cream);
}

.btn-secondary {
  color: #fff;
  border-color: var(--white-line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}

.glow-card {
  --spotlight-x: 50%;
  --spotlight-y: 0%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198, 101, 53, 0.22);
  isolation: isolate;
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(
      520px circle at var(--spotlight-x) var(--spotlight-y),
      rgba(198, 101, 53, 0.28),
      rgba(166, 83, 40, 0.1) 32%,
      transparent 64%
    );
  transition: opacity 240ms ease;
  pointer-events: none;
}

.glow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 42%);
  pointer-events: none;
}

.glow-card:hover::before {
  opacity: 1;
}

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

.hero-panel {
  position: relative;
  z-index: 4;
  align-self: end;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(15, 18, 16, 0.28);
  backdrop-filter: blur(16px);
  opacity: var(--hero-panel-opacity);
  transform: translateY(calc(var(--hero-progress) * 48px));
}

.hero-panel span {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--white-line);
  font-family: var(--display-font);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-panel p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.hero-transition-copy {
  position: absolute;
  z-index: 0;
  top: 52%;
  left: min(820px, 48vw);
  width: min(520px, 36vw);
  color: var(--ink);
  opacity: var(--hero-reveal-opacity);
  transform: translate(calc((1 - var(--hero-reveal-opacity)) * -56px), -50%);
  pointer-events: none;
}

.hero-transition-copy .section-kicker {
  margin-bottom: 20px;
}

.hero-transition-copy h2 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 500;
}

.hero-transition-copy div {
  max-width: 500px;
  color: rgba(24, 19, 13, 0.72);
  font-size: 1rem;
  line-height: 1.62;
}

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

.section,
.projects,
.method,
.services,
.proof,
.about,
.faq {
  padding: 104px 42px;
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 80px;
  align-items: start;
}

.intro-grid h2 {
  max-width: 880px;
}

.intro-copy {
  padding-top: 12px;
  font-size: 1.05rem;
  color: rgba(24, 19, 13, 0.72);
}

.intro-copy p + p {
  margin-top: 22px;
}

.section-head {
  max-width: 840px;
  margin-bottom: 52px;
}

.section-lead {
  max-width: 620px;
  font-size: 1rem;
  color: rgba(24, 19, 13, 0.68);
}

.projects {
  background: #efe5d5;
}

.project-feature {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.project-feature img {
  width: 100%;
  height: 76vh;
  object-fit: cover;
}

.project-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 460px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: rgba(15, 18, 16, 0.46);
  backdrop-filter: blur(18px);
}

.project-caption span,
.project-card span,
.proof-item h3 {
  font-family: var(--display-font);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.project-caption h3 {
  margin: 12px 0 12px;
  font-size: 1.55rem;
}

.project-caption p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.project-card {
  overflow: hidden;
  min-height: 420px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(24, 19, 13, 0.12);
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card div {
  padding: 20px;
}

.project-card h3 {
  margin: 10px 0 0;
}

.center-cta {
  justify-content: center;
  margin-top: 42px;
}

.tension {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  background: var(--forest);
  color: #fff;
}

.tension-media {
  overflow: hidden;
  min-height: 720px;
  border-radius: 8px;
}

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

.tension-content {
  align-self: center;
}

.tension-content h2,
.collab h2,
.final-cta h2 {
  color: #fff;
}

.tension-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.tension-item {
  min-height: 210px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.tension-list h3 {
  margin-bottom: 52px;
}

.tension-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.collab {
  padding: 112px 42px;
  color: #fff;
  background: var(--ink);
}

.collab-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.collab h2 {
  max-width: 860px;
}

.collab-lead {
  max-width: 680px;
  margin: 24px 0 52px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.74);
}

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

.collab-columns div {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.collab-columns span {
  display: block;
  margin-bottom: 58px;
  color: #f5c08e;
  font-family: var(--display-font);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.collab-columns p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.method {
  background: var(--paper);
}

.method-steps {
  --timeline-progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 62px;
}

.method-steps::before,
.method-steps::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  height: 2px;
  border-radius: 999px;
}

.method-steps::before {
  right: 0;
  background: rgba(24, 19, 13, 0.14);
}

.method-steps::after {
  width: calc(var(--timeline-progress) * 100%);
  background: linear-gradient(90deg, var(--copper), var(--rust));
  box-shadow: 0 0 28px rgba(198, 101, 53, 0.45);
}

.method-step {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.74);
}

.method-step::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 28px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--rust);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 8px rgba(198, 101, 53, 0.1);
  z-index: 2;
}

.method-step h3 {
  margin: 52px 0 14px;
  font-size: 1.45rem;
}

.method-step p {
  margin-bottom: 0;
  color: rgba(24, 19, 13, 0.67);
}

.services {
  color: #fff;
  background: var(--brown);
}

.services .section-lead,
.services .eyebrow {
  color: #f5c08e;
}

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

.service-item {
  min-height: 260px;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.service-item h3 {
  margin-bottom: 94px;
  font-size: 1.72rem;
}

.service-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  background: #e7dac7;
}

.proof-statement {
  position: sticky;
  top: 110px;
  align-self: start;
}

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

.proof-item {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.72);
  border: 1px solid rgba(24, 19, 13, 0.08);
}

.proof-item h3 {
  color: var(--copper);
}

.proof-item p {
  margin-top: 58px;
  margin-bottom: 0;
  color: rgba(24, 19, 13, 0.7);
}

.about {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
  background: var(--paper);
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.about-copy p:not(.eyebrow) {
  color: rgba(24, 19, 13, 0.7);
  font-size: 1.02rem;
}

.faq {
  background: #f1e7d8;
  text-align: center;
}

.faq .section-head {
  margin-right: auto;
  margin-left: auto;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.8);
}

summary {
  cursor: pointer;
  padding: 24px;
  font-size: 1.15rem;
  text-align: center;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 24px;
  color: rgba(24, 19, 13, 0.68);
  text-align: center;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 104px 42px;
  color: #fff;
  background: var(--ink);
  isolation: isolate;
}

.final-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.72;
}

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

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(16, 13, 9, 0.48);
}

.final-content {
  max-width: 760px;
  text-align: center;
}

.final-content h2 {
  margin-bottom: 24px;
}

.final-content p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.final-content span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 34px 42px;
  background: var(--paper);
}

.site-footer img {
  width: 142px;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(24, 19, 13, 0.68);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-footer div a {
  display: flex;
  align-items: center;
  color: rgba(24, 19, 13, 0.6);
  transition: color 200ms ease;
}

.site-footer div a:hover {
  color: var(--ink);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

@keyframes heroSettle {
  to {
    transform: scale(1);
  }
}

@keyframes menuEnter {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 3.24rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-transition-copy {
    left: min(620px, 48vw);
    width: min(460px, 39vw);
  }

  .hero-transition-copy h2 {
    font-size: 2.22rem;
  }

  .hero,
  .intro-grid,
  .tension,
  .proof,
  .about {
    grid-template-columns: 1fr;
  }

  .proof-statement {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .site-header.is-scrolled {
    top: 12px;
    width: calc(100% - 24px);
  }

  .top-nav {
    grid-template-columns: auto 1fr auto;
    min-height: 56px;
    padding: 8px 10px 8px 16px;
  }

  .brand img {
    width: 112px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  .hero-scroll {
    height: 230svh;
  }

  .hero {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 100svh;
    display: block;
    gap: 24px;
    padding: 112px 18px 20px;
  }

  .hero-bg {
    top: calc(var(--hero-image-progress) * 92px);
    right: calc(var(--hero-image-progress) * 18px);
    bottom: calc(var(--hero-image-progress) * 52svh);
    left: calc(var(--hero-image-progress) * 18px);
    border-radius: calc(var(--hero-image-progress) * 8px);
    box-shadow: 0 calc(var(--hero-image-progress) * 18px) calc(var(--hero-image-progress) * 48px) rgba(23, 17, 11, calc(var(--hero-image-progress) * 0.2));
  }

  .hero-shade {
    top: calc(var(--hero-image-progress) * 92px);
    right: calc(var(--hero-image-progress) * 18px);
    bottom: calc(var(--hero-image-progress) * 52svh);
    left: calc(var(--hero-image-progress) * 18px);
    border-radius: calc(var(--hero-image-progress) * 8px);
    opacity: calc(1 - (var(--hero-image-progress) * 0.86));
  }

  .hero-content {
    position: absolute;
    right: 18px;
    bottom: 42px;
    left: 18px;
    max-width: none;
    padding-bottom: 0;
    opacity: var(--hero-text-opacity);
    transform: translateY(calc(var(--hero-progress) * -46px));
  }

  .hero-transition-copy {
    display: block;
    z-index: 3;
    top: 52svh;
    right: 18px;
    left: 18px;
    width: auto;
    color: var(--ink);
    opacity: var(--hero-reveal-opacity);
    transform: translateY(calc((1 - var(--hero-reveal-opacity)) * 36px));
    pointer-events: none;
  }

  .hero-transition-copy .section-kicker {
    margin-bottom: 16px;
  }

  .hero-transition-copy h2 {
    max-width: 13ch;
    margin-bottom: 22px;
    font-size: 1.92rem;
    line-height: 1.08;
  }

  .hero-transition-copy div {
    max-width: 34rem;
    color: rgba(24, 19, 13, 0.72);
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-transition-copy p + p {
    margin-top: 14px;
  }

  h1 {
    font-size: 2.22rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 1.88rem;
  }

  .hero-copy,
  .section-lead,
  .collab-lead,
  .final-content p {
    font-size: 1rem;
  }

  .hero-copy {
    margin-bottom: 22px;
  }

  .section,
  .projects,
  .method,
  .services,
  .proof,
  .about,
  .faq,
  .collab,
  .final-cta {
    padding: 82px 18px;
  }

  .intro-grid,
  .tension,
  .about,
  .proof {
    gap: 42px;
  }

  .collab-columns,
  .tension-list,
  .service-list,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .method-outer {
    position: relative;
  }

  .method.h-scroll-active {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--paper);
  }

  .method-steps {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .method-steps.h-scroll-active {
    overflow-x: hidden;
    scroll-snap-type: none;
  }

  .method-step {
    scroll-snap-align: start;
  }

  .project-card {
    min-height: auto;
  }

  .service-item {
    min-height: 220px;
  }

  .tension-media,
  .about-image img {
    min-height: 460px;
    height: 460px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 1.92rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-transition-copy h2 {
    font-size: 1.78rem;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
  }

  .hero-actions,
  .center-cta {
    width: 100%;
  }

  .hero-panel span {
    font-size: 0.72rem;
  }

  .project-card img {
    height: 240px;
  }

  .method-step {
    min-height: 260px;
  }

  .method-step h3 {
    margin-top: 56px;
  }
}

/* ── Contact Form ────────────────────────────────────── */

.contact-form {
  width: 100%;
  max-width: 520px;
  margin: 44px auto 0;
  padding: 36px 40px 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  text-align: left;
}

.form-progress {
  display: flex;
  gap: 7px;
  margin-bottom: 30px;
}

.form-progress-dot {
  height: 3px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: background 400ms ease;
}

.form-progress-dot.is-active {
  background: var(--copper);
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
  animation: stepIn 380ms ease forwards;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.form-field {
  margin-bottom: 20px;
}

.form-field label,
.form-question {
  display: block;
  margin: 0 0 8px;
  font-family: var(--display-font);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.55);
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: var(--text-font);
  font-size: 0.98rem;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease;
  box-sizing: border-box;
}

.form-field input:focus {
  border-color: rgba(198, 101, 53, 0.7);
  background: rgba(255, 255, 255, 0.11);
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-field input.has-error {
  border-color: rgba(220, 80, 60, 0.7);
}

.form-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.toggle-option {
  display: block;
  cursor: pointer;
}

.toggle-option input[type="radio"] {
  display: none;
}

.toggle-option span {
  display: block;
  padding: 13px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  text-align: center;
  font-family: var(--display-font);
  font-size: 0.82rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.toggle-option input:checked + span {
  border-color: var(--copper);
  background: rgba(198, 101, 53, 0.18);
  color: #fff;
}

.toggle-option:hover span {
  border-color: rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.9);
}

.form-btn {
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 820px) {
  .contact-form {
    padding: 28px 22px 32px;
  }
}

/* ── Project Categories ─────────────────────────────── */

.project-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.project-category {
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(24, 19, 13, 0.12);
}

/* ── Carousel ────────────────────────────────────────── */

.carousel {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: var(--ink);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 220ms ease, width 220ms ease, border-radius 220ms ease;
}

.carousel-dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: #fff;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 220ms ease, background 220ms ease;
}

.project-category:hover .carousel-prev,
.project-category:hover .carousel-next {
  opacity: 1;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(0, 0, 0, 0.5);
}

.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }

/* ── Category info ───────────────────────────────────── */

.project-category-info {
  padding: 22px 24px 28px;
}

.project-category-info > span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--display-font);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--copper);
}

.project-category-info h3 {
  margin: 0 0 10px;
  font-size: 1.52rem;
}

.project-category-info p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(24, 19, 13, 0.65);
}

/* ── Coming Soon card ────────────────────────────────── */

.carousel-placeholder {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.32);
}

.coming-soon-label span {
  font-family: var(--display-font);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 820px) {
  .project-categories {
    grid-template-columns: 1fr;
  }

  .carousel {
    height: 380px;
  }

  .carousel-prev,
  .carousel-next {
    opacity: 1;
  }
}

@media (max-width: 520px) {
  .carousel {
    height: 280px;
  }
}

/* ── Reduced motion ──────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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

  .carousel-track {
    transition: none;
  }
}
