:root {
  --bg: #0a1110;
  --bg-soft: #101a17;
  --bg-strong: #07100d;
  --paper: #f2e7d7;
  --paper-soft: #fbf6ed;
  --paper-alt: #eadbc6;
  --ink: #181511;
  --ink-soft: #5f564a;
  --text: #f4efe5;
  --text-soft: rgba(244, 239, 229, 0.72);
  --line: rgba(244, 239, 229, 0.12);
  --line-strong: rgba(244, 239, 229, 0.22);
  --line-dark: rgba(24, 21, 17, 0.12);
  --accent: #c57038;
  --accent-soft: #e4b58f;
  --accent-deep: #9d4d22;
  --moss: #7f9c8b;
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.32);
  --shadow-light: 0 28px 60px rgba(20, 18, 15, 0.08);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1240px;
  --container-desktop: 1600px;
  --header-height: 5.5rem;
  --progress-height: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Syne", "Arial", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(197, 112, 56, 0.18), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(127, 156, 139, 0.16), transparent 22%),
    linear-gradient(180deg, #0d1412 0%, #08100d 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(228, 181, 143, 0.28);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

ul {
  margin: 0;
  padding: 0;
}

.page-noise,
.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-noise {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: soft-light;
}

.page-grid {
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 79px,
      rgba(255, 255, 255, 0.03) 80px
    ),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 79px,
      rgba(255, 255, 255, 0.03) 80px
    );
  mask-image: radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 1), transparent 72%);
  opacity: 0.2;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.8rem 1rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  z-index: 50;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  padding: 7rem 0;
}

.eyebrow,
.card-label,
.hero-kicker,
.stage-topline,
.service-index,
.work-type,
.terrain-number,
.step-number {
  font-family: "Space Mono", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent-soft);
  font-size: 0.78rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #dd8d55 100%);
  color: #fff8f0;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
  box-shadow: 0 20px 42px rgba(197, 112, 56, 0.28);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(197, 112, 56, 0.32);
}

.button-small {
  min-height: 2.8rem;
  padding: 0.72rem 1.05rem;
  font-size: 0.94rem;
}

.button-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.button-dark {
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}

.button-dark:hover,
.button-dark:focus-visible {
  box-shadow: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow: hidden;
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  background: linear-gradient(
    135deg,
    rgba(21, 54, 43, 0.7) 0%,
    rgba(10, 28, 22, 0.6) 100%
  );
  border-bottom: 0;
  box-shadow:
    0 14px 34px rgba(4, 14, 11, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(242, 255, 248, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(circle at 15% 15%, rgba(160, 214, 184, 0.18), transparent 42%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid rgba(236, 240, 233, 0.12);
  background: linear-gradient(
    160deg,
    rgba(15, 30, 24, 0.96) 0%,
    rgba(9, 19, 16, 0.9) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 28px rgba(3, 10, 8, 0.18);
  overflow: hidden;
}

.brand-mark-svg {
  width: 2.02rem;
  height: 2.02rem;
}

.brand-fill {
  fill: rgba(228, 181, 143, 0.12);
}

.brand-stroke,
.brand-accent {
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.brand-stroke {
  stroke: rgba(244, 239, 229, 0.96);
  stroke-width: 2.55;
}

.brand-stroke.brand-faint {
  stroke: rgba(244, 239, 229, 0.62);
  stroke-width: 2.2;
}

.brand-accent {
  stroke: var(--accent-soft);
  stroke-width: 2.35;
}

.brand-text {
  display: grid;
  gap: 0.16rem;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand-text span:last-child {
  color: var(--text-soft);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-call {
  display: inline-grid;
  gap: 0.1rem;
  justify-items: start;
  line-height: 1.05;
  padding-inline: 1rem;
}

.nav-call span {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.nav-call strong {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-nav a:not(.button) {
  position: relative;
  padding-bottom: 0.18rem;
  color: var(--text-soft);
  transition: color 180ms ease;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: var(--accent-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid rgba(197, 232, 212, 0.2);
  border-radius: 12px;
  background: rgba(13, 29, 23, 0.92);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-toggle span {
  width: 1.25rem;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.scroll-progress {
  height: 2px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
}

.hero {
  padding-top: clamp(0.9rem, 3vw, 4rem);
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("./frame-drawing.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.17;
  mix-blend-mode: soft-light;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero::before {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  top: -3rem;
  background: radial-gradient(circle, rgba(228, 181, 143, 0.18), transparent 68%);
}

.hero::after {
  width: 32rem;
  height: 32rem;
  left: -8rem;
  bottom: 8rem;
  background: radial-gradient(circle, rgba(127, 156, 139, 0.14), transparent 70%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
  gap: clamp(1rem, 2vw, 2rem) 3rem;
  align-items: center;
}

.hero-copy {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .eyebrow {
  margin-bottom: clamp(0.6rem, 1vw, 1rem);
}

.hero-kicker {
  margin-bottom: clamp(0.9rem, 1.4vw, 1.4rem);
  color: var(--text-soft);
  font-size: 0.82rem;
}

.hero-title {
  display: grid;
  gap: 0.2rem;
  font-size: clamp(3rem, 8vw, 7.25rem);
}

.hero-title span:first-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 239, 229, 0.44);
}

.hero-title-accent {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22em;
  font-style: italic;
  font-weight: 600;
  line-height: 0.72;
  color: var(--accent-soft);
  letter-spacing: -0.05em;
  margin-left: 0.08em;
}

.hero-title span:last-child {
  max-width: 7ch;
  margin-left: 12%;
}

.hero-intro {
  max-width: 38rem;
  margin-top: clamp(0.95rem, 1.6vw, 1.8rem);
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: clamp(0.95rem, 1.7vw, 1.9rem);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: clamp(1rem, 1.8vw, 2rem);
}

.hero-meta-card {
  min-height: 100%;
  padding: clamp(0.8rem, 1.2vw, 1.15rem) 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-meta-card span {
  display: block;
  margin-bottom: 0.55rem;
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero-stage {
  position: relative;
  min-height: 0;
  max-height: none;
  padding: clamp(0.9rem, 1vw, 1.25rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(135deg, rgba(17, 27, 24, 0.98), rgba(10, 16, 14, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  display: block;
}

@media (min-width: 1025px) {
  .container {
    width: min(calc(100% - 1rem), var(--container-desktop));
  }

  .hero {
    height: calc(100svh - var(--header-height) - var(--progress-height));
    min-height: calc(100svh - var(--header-height) - var(--progress-height));
    padding-bottom: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: stretch;
  }

  .hero-layout {
    height: 100%;
    min-height: 0;
    align-content: center;
    align-items: center;
    gap: clamp(1rem, 2.2svh, 2rem) 4rem;
    transform: translateY(clamp(-1.35rem, -2.2svh, -0.85rem));
  }

  .hero-copy {
    min-height: 0;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .hero .eyebrow {
    margin-bottom: clamp(0.6rem, 1.2svh, 1rem);
  }

  .hero-kicker {
    margin-bottom: clamp(0.9rem, 1.8svh, 1.4rem);
  }

  .hero-title {
    font-size: clamp(3rem, 8.4svh, 7.25rem);
  }

  .hero-intro {
    margin-top: clamp(0.95rem, 1.8svh, 1.8rem);
    font-size: clamp(0.98rem, 1.8svh, 1.06rem);
    max-width: 42rem;
  }

  .hero-actions {
    margin-top: clamp(0.95rem, 1.9svh, 1.9rem);
  }

  .hero-stage {
    height: auto;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    max-height: none;
    padding: clamp(0.9rem, 1.8svh, 1.25rem);
  }

  .hero-meta {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0;
  }

  .hero-meta-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(0.8rem, 1.5svh, 1.15rem) 1rem;
  }

  .wireframe {
    height: clamp(14rem, 36svh, 22rem);
  }

  .marquee {
    margin-top: clamp(0.65rem, 1.6svh, 1.5rem);
  }

  .manifesto-copy {
    max-width: 72rem;
  }

  .manifesto-layout {
    width: min(100%, 84rem);
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 2.4rem 2rem;
  }

  .manifesto-head {
    display: block;
  }

  .manifesto-portrait {
    width: 13rem;
    justify-self: center;
    align-self: start;
    margin-left: 0;
  }

  .manifesto-grid {
    grid-column: 1 / -1;
  }

  .manifesto-copy p,
  .section-intro,
  .services-copy p,
  .process-copy p,
  .faq-copy p {
    max-width: 32rem;
  }

  .section-head {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 1.5rem 3rem;
  }

  .services-layout,
  .process-layout {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  }

  .faq-layout {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  }

  .contact-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2rem 3rem;
  }
}

@media (min-width: 1440px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container-desktop));
  }
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 28%, rgba(197, 112, 56, 0.18), transparent 22%),
    radial-gradient(circle at 25% 80%, rgba(127, 156, 139, 0.12), transparent 26%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 31px,
      rgba(255, 255, 255, 0.03) 32px
    ),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 31px,
      rgba(255, 255, 255, 0.03) 32px
    );
  opacity: 0.9;
}

.stage-topline,
.stage-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding:  1em;
}

.stage-topline {
  color: var(--text-soft);
  font-size: 0.74rem;
}

.stage-visual {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: block;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 8px);
  line-height: 0;
}

.stage-photo {
  display: block;
  width: 100%;
  height: auto;
}

.wireframe {
  position: relative;
  width: min(100%, 30rem);
  height: clamp(14rem, 30vw, 22rem);
}

.wireframe::before,
.wireframe::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
}

.wireframe::before {
  width: 72%;
  height: 72%;
  background: radial-gradient(circle, rgba(197, 112, 56, 0.18), transparent 70%);
  filter: blur(16px);
}

.wireframe::after {
  width: 84%;
  height: 84%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wire {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, #eed4bd, #c57038);
  box-shadow: 0 0 24px rgba(228, 181, 143, 0.24);
}

.roof-left {
  width: 45%;
  height: 2px;
  left: 10%;
  top: 33%;
  transform: rotate(28deg);
  transform-origin: left center;
}

.roof-right {
  width: 45%;
  height: 2px;
  right: 10%;
  top: 33%;
  transform: rotate(-28deg);
  transform-origin: right center;
}

.beam-top {
  width: 58%;
  height: 2px;
  left: 21%;
  top: 43%;
}

.post-left {
  width: 2px;
  height: 46%;
  left: 24%;
  bottom: 10%;
}

.post-mid {
  width: 2px;
  height: 54%;
  left: 50%;
  bottom: 10%;
}

.post-right {
  width: 2px;
  height: 46%;
  right: 24%;
  bottom: 10%;
}

.base-left {
  width: 31%;
  height: 2px;
  left: 24%;
  bottom: 10%;
}

.base-right {
  width: 31%;
  height: 2px;
  right: 24%;
  bottom: 10%;
}

.brace-left {
  width: 2px;
  height: 36%;
  left: 50%;
  bottom: 10%;
  transform: rotate(43deg);
  transform-origin: bottom;
}

.brace-right {
  width: 2px;
  height: 36%;
  left: 50%;
  bottom: 10%;
  transform: rotate(-43deg);
  transform-origin: bottom;
}

.stage-note {
  position: absolute;
  max-width: 14rem;
  padding: 0.9rem 1rem;
  border-radius: 22px;
  background: rgba(242, 231, 215, 0.92);
  color: var(--ink);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.stage-note span {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.stage-note strong {
  font-size: 0.98rem;
  line-height: 1.3;
}

.stage-note-a {
  top: 17%;
  right: 2%;
  animation: drift 7s ease-in-out infinite;
}

.stage-note-b {
  left: 0;
  bottom: 12%;
  animation: drift 8.2s ease-in-out infinite reverse;
}

.stage-footer {
  padding-top: 0.5rem;
}

.stage-footer p {
  color: var(--text-soft);
  max-width: 16rem;
}

.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Space Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.marquee {
  margin-top: clamp(0.65rem, 1.2vw, 1.5rem);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.75rem 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  font-family: "Space Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  white-space: nowrap;
}

.marquee-track span::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

@media (min-width: 1025px) {
  .wireframe {
    height: clamp(14rem, 36svh, 22rem);
  }

  .marquee {
    margin-top: clamp(0.65rem, 1.6svh, 1.5rem);
  }
}

.manifesto-section {
  background:
    radial-gradient(circle at top right, rgba(197, 112, 56, 0.08), transparent 20%),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
  color: var(--ink);
}

.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(0, min(64rem, calc(100% - 18rem))) minmax(14rem, 1fr);
  justify-content: stretch;
  align-items: start;
  gap: 2.4rem 2rem;
}

.manifesto-copy {
  display: grid;
  gap: 1rem;
  max-width: 62rem;
}

.manifesto-head {
  display: block;
}

.manifesto-portrait {
  margin: 0;
  width: 13rem;
  display: block;
  justify-self: center;
  align-self: start;
  margin-top: 0.45rem;
  margin-left: 0;
}

.manifesto-portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  padding: 0.7rem;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.9), transparent 38%),
    linear-gradient(135deg, rgba(197, 112, 56, 0.22), rgba(24, 49, 40, 0.12));
  box-shadow: var(--shadow-light);
}

.manifesto-portrait-frame::before,
.manifesto-portrait-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.manifesto-portrait-frame::before {
  inset: -0.75rem;
  border: 1px solid rgba(197, 112, 56, 0.2);
}

.manifesto-portrait-frame::after {
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.manifesto-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 30%;
  transform: scale(1.07);
  border-radius: 50%;
}

.manifesto-copy .eyebrow {
  color: var(--accent-deep);
}

.manifesto-copy h2,
.section-head h2,
.services-copy h2,
.process-copy h2,
.faq-copy h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.manifesto-copy p {
  max-width: 44rem;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  grid-column: 1 / -1;
}

.manifesto-card {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.56)),
    linear-gradient(135deg, rgba(228, 181, 143, 0.08), transparent);
  border: 1px solid rgba(24, 21, 17, 0.08);
  box-shadow: var(--shadow-light);
}

.card-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-deep);
  font-size: 0.76rem;
}

.manifesto-card h3,
.terrain-card h3,
.service-body h3,
.work-body h3,
.process-step h3,
.faq-aside h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.02;
}

.manifesto-card p,
.section-intro,
.services-copy p,
.service-body p,
.work-body p,
.terrain-card p,
.process-copy p,
.process-step p,
.faq-copy p,
.faq-answer p,
.faq-aside p,
.contact-copy p,
.contact-card span,
.site-footer p {
  color: var(--ink-soft);
}

.services-section {
  background:
    radial-gradient(circle at left top, rgba(197, 112, 56, 0.12), transparent 22%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-strong) 100%);
}

.services-layout,
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem 3rem;
  align-items: start;
}

.services-copy,
.process-copy {
  position: sticky;
  top: 7.2rem;
  align-self: start;
  display: grid;
  gap: 1rem;
}

.services-copy p,
.process-copy p {
  max-width: 28rem;
}

.services-copy p {
  color: var(--text-soft);
}

.process-copy p {
  color: var(--ink-soft);
}

.services-rail {
  display: grid;
  gap: 1rem;
}

.service-tile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: start;
  padding: 1.45rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.12);
}

.service-tile:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(228, 181, 143, 0.08), transparent),
    rgba(255, 255, 255, 0.03);
}

.service-index {
  color: var(--accent-soft);
  font-size: 0.85rem;
  padding-top: 0.2rem;
}

.service-body p {
  margin-top: 0.8rem;
  color: var(--text-soft);
}

.service-tags {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-end;
}

.service-tags span,
.tag-list li {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.work-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(197, 112, 56, 0.08), transparent 22%),
    linear-gradient(180deg, #f5ecdf 0%, #efe1cf 100%);
  color: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 1.5rem 2rem;
  align-items: end;
  margin-bottom: 2.1rem;
}

.section-head .eyebrow {
  color: var(--accent-deep);
}

.section-head-dark .eyebrow {
  color: var(--accent-soft);
}

.section-intro {
  max-width: 27rem;
  justify-self: end;
}

.section-head-dark .section-intro {
  color: var(--text-soft);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.filter-chip {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(24, 21, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
  background: var(--ink);
  color: var(--paper-soft);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: row dense;
  gap: 1rem;
}

.work-card {
  position: relative;
  display: grid;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #151b19 0%, #0f1412 100%);
  color: var(--text);
  box-shadow: var(--shadow-dark);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.work-card-feature,
.work-card-wide {
  grid-column: span 7;
}

.work-card-tall {
  grid-column: span 5;
}

.work-card-side {
  grid-column: span 5;
}

.work-card.is-hidden {
  display: none;
}

.work-card:hover,
.work-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 36px 74px rgba(0, 0, 0, 0.34);
}

.work-visual {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  background-color: #192420;
}

.work-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.work-card:hover .work-image,
.work-card:focus-within .work-image {
  transform: scale(1.08);
}

.work-card-feature .work-visual {
  min-height: 25rem;
}

.work-card-tall .work-visual {
  min-height: 31rem;
}

.work-card-wide .work-visual {
  min-height: 21rem;
}

.work-card-side .work-visual {
  min-height: 21rem;
}

.work-visual::before,
.work-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.work-visual::before {
  background:
    linear-gradient(180deg, rgba(10, 14, 13, 0.08) 0%, rgba(10, 14, 13, 0.42) 100%),
    radial-gradient(circle at 78% 20%, rgba(228, 181, 143, 0.14), transparent 34%);
}

.work-visual::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  mix-blend-mode: screen;
  opacity: 0.35;
}

.work-visual-one .work-image {
  object-position: center 56%;
}

.work-visual-two .work-image {
  object-position: center 46%;
}

.work-visual-three .work-image {
  object-position: center 58%;
}

.work-visual-four .work-image {
  object-position: center 50%;
}

.work-visual-five .work-image {
  object-position: center 44%;
}

.work-visual-six .work-image {
  object-position: center 54%;
}

.work-visual-seven .work-image {
  object-position: center 52%;
}

.work-body {
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem;
}

.work-type {
  color: var(--accent-soft);
  font-size: 0.78rem;
}

.work-body p:last-of-type {
  color: var(--text-soft);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin-top: 0.2rem;
}

.terrain-section {
  overflow: clip;
}

.terrain-ghost {
  position: absolute;
  right: 2%;
  top: 0.5rem;
  font-size: clamp(6rem, 24vw, 20rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
}

.section-head-dark h2,
.section-head-dark p,
.terrain-card h3 {
  color: var(--text);
}

.terrain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.terrain-card {
  min-height: 100%;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.12);
}

.terrain-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-soft);
  font-size: 0.82rem;
}

.terrain-card p {
  margin-top: 0.85rem;
  color: var(--text-soft);
}

.process-section {
  background:
    radial-gradient(circle at left top, rgba(228, 181, 143, 0.12), transparent 24%),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper-alt) 100%);
  color: var(--ink);
}

.process-copy .eyebrow {
  color: var(--accent-deep);
}

.process-list {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1.35rem;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(24, 21, 17, 0.14);
}

.process-step {
  position: relative;
  padding: 1.45rem 1.45rem 1.45rem 4.4rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(24, 21, 17, 0.08);
  box-shadow: var(--shadow-light);
}

.process-step::before {
  content: "";
  position: absolute;
  left: -0.02rem;
  top: 1.7rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(197, 112, 56, 0.14);
}

.step-number {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent-deep);
  font-size: 0.78rem;
}

.process-step p {
  margin-top: 0.85rem;
}

.faq-section {
  background:
    radial-gradient(circle at right top, rgba(197, 112, 56, 0.12), transparent 22%),
    linear-gradient(180deg, #121b18 0%, #0a1110 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem 3rem;
  align-items: start;
}

.faq-copy {
  display: grid;
  gap: 1rem;
}

.faq-copy p {
  max-width: 28rem;
  color: var(--text-soft);
}

.faq-aside {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.faq-aside h3 {
  margin-bottom: 0.9rem;
}

.faq-aside p {
  color: var(--text-soft);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.35rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 700;
}

.faq-question::after {
  content: "+";
  color: var(--accent-soft);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.35rem 1.25rem;
}

.faq-answer p {
  color: var(--text-soft);
}

.contact-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(197, 112, 56, 0.08), transparent 20%),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
  color: var(--ink);
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem 2rem;
  padding: 2rem;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.34)),
    linear-gradient(135deg, rgba(228, 181, 143, 0.18), transparent 60%);
  border: 1px solid rgba(24, 21, 17, 0.1);
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.contact-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(127, 156, 139, 0.12), transparent 22%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 37px,
      rgba(24, 21, 17, 0.03) 37px,
      rgba(24, 21, 17, 0.03) 38px
    );
  pointer-events: none;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-copy .eyebrow {
  color: var(--accent-deep);
}

.contact-meta {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
  min-width: 0;
}

.contact-card {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(24, 21, 17, 0.08);
  min-width: 0;
}

.contact-card span {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Space Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.contact-card a,
.contact-card strong {
  font-weight: 700;
  color: var(--ink);
  overflow-wrap: break-word;
  word-break: normal;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.45rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(180deg, #161d1a 0%, #101714 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a7166;
}

.contact-form select:required:invalid {
  color: #7a7166;
}

.contact-form .full-width,
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 1.4rem;
  color: rgba(244, 239, 229, 0.78);
}

.site-footer {
  padding: 2rem 0 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer p {
  color: var(--text-soft);
}

.footer-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  text-align: right;
}

.footer-meta a {
  color: var(--accent-soft);
}

.reveal {
  --reveal-y: 42px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  opacity: 0;
  transform:
    translate3d(0, var(--reveal-y), 0)
    perspective(1200px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(var(--card-lift));
  transform-style: preserve-3d;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  --reveal-y: 0px;
}

[data-tilt]:hover {
  --card-lift: -8px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1180px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card,
  .work-card-feature,
  .work-card-tall,
  .work-card-wide,
  .work-card-side {
    grid-column: span 1;
  }

  .terrain-grid,
  .manifesto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-layout,
  .services-layout,
  .process-layout,
  .faq-layout,
  .contact-shell,
  .section-head {
    grid-template-columns: 1fr;
  }

  .services-copy,
  .process-copy {
    position: static;
  }

  .hero-layout {
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(0.75rem, 2vw, 1.4rem);
  }

  .hero-copy {
    justify-content: flex-start;
  }

  .hero-stage {
    height: auto;
    max-height: none;
  }

  .section-intro {
    justify-self: start;
    max-width: 36rem;
  }

  .wireframe {
    width: min(100%, 22rem);
    height: clamp(10rem, 22vw, 15rem);
  }

  .service-tile {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .service-tags {
    grid-column: 2;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .contact-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    /* Let the mobile drawer extend below the sticky header container. */
    overflow: visible;
  }

  .hero-backdrop {
    opacity: 0.2;
    background-size: min(50vw, 13.5rem);
    background-position: right 4.25rem top 13.4rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text span:last-child {
    font-size: 0.50rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 26px;
    background: linear-gradient(
      160deg,
      rgba(20, 53, 42, 0.78) 0%,
      rgba(9, 24, 19, 0.72) 100%
    );
    border: 1px solid rgba(194, 228, 210, 0.18);
    backdrop-filter: blur(26px) saturate(145%);
    -webkit-backdrop-filter: blur(26px) saturate(145%);
    box-shadow:
      0 28px 54px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .nav-call {
    justify-items: center;
    text-align: center;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .hero {
    padding-top: clamp(1.3rem, 4vw, 2.2rem);
  }

  .manifesto-portrait {
    width: min(100%, 13rem);
  }

  .hero-title span:last-child {
    margin-left: 0;
  }

  .terrain-grid,
  .contact-meta {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.35rem, 8.2vw, 3.9rem);
  }

  .hero .eyebrow {
    font-size: 0.68rem;
  }

  .hero-kicker {
    font-size: 0.74rem;
  }

  .hero-intro {
    font-size: 0.94rem;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 0.7rem;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 3rem;
    font-size: 0.92rem;
    padding-inline: 0.9rem;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    overflow: visible;
  }

  .hero-meta-card {
    padding: 0.65rem 0.7rem;
    border-radius: 16px;
  }

  .hero-meta-card span {
    margin-bottom: 0.35rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .hero-meta-card strong {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .hero-stage {
    max-height: none;
    min-height: 0;
  }

  .stage-visual {
    min-height: 0;
  }

  .stage-note {
    display: none;
  }

  .stage-note-a {
    right: 1rem;
  }

  .stage-note-b {
    left: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: start;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .hero-backdrop {
    background-size: min(40vw, 10.5rem);
    background-position: right 2.4rem top 7.25rem;
  }

  .section {
    padding: 5rem 0;
  }

  .manifesto-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .manifesto-head {
    display: grid;
    gap: 1rem;
  }

  .manifesto-portrait {
    width: min(100%, 13rem);
    justify-self: center;
    align-self: auto;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .contact-shell {
    padding: 1.2rem;
    border-radius: 30px;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder,
  .contact-form select:required:invalid {
    font-size: 0.9rem;
  }

  .brand-text strong {
    font-size: 0.84rem;
  }

  .brand-text span:last-child {
    font-size: 0.45rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 8.8vw, 3rem);
  }

  .hero .eyebrow {
    font-size: 0.62rem;
  }

  .hero-kicker {
    font-size: 0.7rem;
  }

  .hero-intro {
    font-size: 0.88rem;
  }

  .hero-actions .button {
    min-height: 2.85rem;
    font-size: 0.82rem;
    padding-inline: 0.7rem;
  }

  .hero {
    padding-top: clamp(1.1rem, 5.5vw, 1.8rem);
    padding-bottom: 0;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-meta-card {
    padding: 0.6rem 0.65rem;
  }

  .hero-meta-card strong {
    font-size: 0.74rem;
  }

  .hero-stage {
    max-height: none;
    min-height: 0;
    padding: 0.95rem;
  }

  .stage-visual {
    min-height: 0;
  }

  .wireframe {
    height: clamp(6rem, 18vw, 8.5rem);
  }

  .stage-note {
    position: static;
    max-width: none;
  }

  .stage-visual {
    gap: 1rem;
    align-content: center;
  }

  .stage-footer {
    flex-direction: column;
    align-items: start;
  }

  .marquee {
    display: block;
    margin-top: 0.9rem;
  }

  .marquee-track {
    gap: 1.35rem;
    padding: 0.6rem 0;
  }

  .marquee-track span {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .manifesto-grid,
  .terrain-grid,
  .work-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.1rem;
  }

  .service-tile {
    grid-template-columns: 1fr;
  }

  .service-tags {
    grid-column: auto;
  }

  .process-step {
    padding-left: 3.7rem;
  }
}

@media (min-width: 1025px) and (max-height: 900px) {
  .hero-title {
    font-size: clamp(2.8rem, 7.2svh, 5.75rem);
  }

  .hero-stage {
    max-height: none;
  }
}

@media (min-width: 1025px) and (max-height: 760px) {
  .hero-kicker,
  .marquee {
    display: none;
  }

  .hero-intro {
    max-width: 34rem;
  }

  .hero-stage {
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }
}
