:root {
  --ink: #080908;
  --ink-soft: #101110;
  --paper: #e7e7e1;
  --paper-bright: #f4f4ee;
  --grey: #989b96;
  --grey-dark: #4f524e;
  --line: rgba(231, 231, 225, 0.18);
  --line-dark: rgba(8, 9, 8, 0.17);
  --edge: clamp(1.25rem, 3.2vw, 3.5rem);
  --header-height: 5.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

.oauth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: var(--edge);
  background:
    linear-gradient(rgba(8, 9, 8, 0.92), rgba(8, 9, 8, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 13vw, rgba(231, 231, 225, 0.06) 13vw calc(13vw + 1px));
}

.oauth-card {
  width: min(42rem, 100%);
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-top: 0.35rem solid var(--paper);
  background: var(--ink-soft);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.oauth-card.is-success {
  border-top-color: #77a873;
}

.oauth-card.is-error {
  border-top-color: #a84e44;
}

.oauth-kicker {
  margin: 0 0 2.5rem;
  color: var(--grey);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oauth-card h1 {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 5.7rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.oauth-message {
  max-width: 34rem;
  margin: 2rem 0 2.5rem;
  color: var(--grey);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.oauth-message strong {
  color: var(--paper-bright);
}

.oauth-home {
  width: fit-content;
}

.oauth-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  color: var(--grey);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oauth-legal a:hover,
.oauth-legal a:focus-visible {
  color: var(--paper);
}

::selection {
  background: var(--paper);
  color: var(--ink);
}

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

button {
  color: inherit;
  font: inherit;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.042;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  background-size: 180px;
}

.site-frame {
  position: fixed;
  inset: 0;
  z-index: 21;
  border: 1px solid rgba(231, 231, 225, 0.1);
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 15;
  display: flex;
  width: auto;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--edge);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  transition: background 280ms ease, border-color 280ms ease, color 280ms ease;
}

.site-header.is-light {
  border-bottom-color: var(--line-dark);
  background: var(--paper);
  color: var(--ink);
}

.site-header.is-light .brand-name b,
.site-header.is-light .site-nav a {
  color: #4f524e;
}

.site-header.is-light .site-nav a:hover,
.site-header.is-light .site-nav a:focus-visible {
  color: var(--ink);
}

.site-header.is-light .site-nav a::after {
  background: var(--ink);
}

.site-header.is-light .site-nav span {
  color: #777a76;
}

.site-header.is-light .brand-mark img {
  filter: grayscale(1) invert(1) contrast(1.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  flex: none;
}

.brand-mark img {
  width: 2rem;
  max-width: none;
  filter: grayscale(1) contrast(1.3);
}

.brand-name {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-name b {
  color: var(--grey);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
  color: var(--grey);
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--paper);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav span {
  margin-right: 0.55rem;
  color: var(--grey-dark);
  font-size: 0.58rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 2rem) var(--edge) 4rem;
}

.hero-grid,
.hero-grid span {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid .v-line {
  right: auto;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 16%, var(--line) 84%, transparent);
}

.hero-grid .line-a {
  left: 33.333%;
}

.hero-grid .line-b {
  left: 66.666%;
}

.hero-grid .h-line {
  top: 52%;
  bottom: auto;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line) 8%, var(--line) 92%, transparent);
}

.hero-meta {
  position: absolute;
  top: calc(var(--header-height) + 2rem);
  right: var(--edge);
  left: var(--edge);
  display: flex;
  justify-content: space-between;
  color: var(--grey);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta p {
  margin: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
}

.kicker {
  margin: 0 0 1.25rem 0.35vw;
  color: var(--grey);
  font-family: Consolas, "Courier New", monospace;
  font-size: clamp(0.62rem, 0.75vw, 0.78rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker::before {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  margin: 0 0.7rem 0.22rem 0;
  background: var(--grey);
  content: "";
}

.hero-title {
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(5rem, 15.2vw, 14.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-transform: uppercase;
}

.title-line {
  display: block;
  padding-block: 0.025em;
  animation: title-enter 1.15s var(--ease) both;
}

.title-division {
  margin-left: 11.8vw;
  color: transparent;
  -webkit-text-stroke: max(1px, 0.012em) rgba(231, 231, 225, 0.72);
  animation-delay: 120ms;
}

@keyframes title-enter {
  from {
    opacity: 0;
    transform: translateY(45%) skewY(3deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

.hero-bottom {
  display: flex;
  width: min(53rem, 66%);
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin: clamp(2.5rem, 5vw, 5rem) 0 0 auto;
}

.hero-bottom p {
  max-width: 28rem;
  margin: 0;
  color: #b6b8b3;
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  line-height: 1.6;
}

.text-link {
  flex: 0 0 auto;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--grey-dark);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 250ms ease;
}

.text-link span {
  display: inline-block;
  margin-left: 0.7rem;
  transition: transform 300ms var(--ease);
}

.text-link:hover {
  border-color: var(--paper);
}

.text-link:hover span {
  transform: translate(0.2rem, 0.2rem);
}

.hero-emblem {
  position: absolute;
  top: 50%;
  left: 51%;
  width: min(42vw, 42rem);
  opacity: 0.055;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.hero-emblem img,
.stage-mark img {
  filter: grayscale(1) contrast(1.4);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: var(--edge);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--grey);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 3.25rem;
  height: 1px;
  overflow: hidden;
  background: var(--grey-dark);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--paper);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes scroll-line {
  55%, 100% { transform: translateX(100%); }
}

.section {
  position: relative;
  padding: clamp(6rem, 11vw, 11rem) var(--edge);
}

.section-index {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  margin-bottom: clamp(4rem, 7vw, 7rem);
  color: #535651;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-index::after {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  height: 1px;
  margin-left: 8rem;
  background: var(--line-dark);
  content: "";
}

.section-index span,
.section-index p {
  margin: 0;
}

.studio,
.contact {
  background: var(--paper);
  color: var(--ink);
}

.studio-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.6fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
}

.section-heading {
  margin: 0;
  font-size: clamp(3.5rem, 7.8vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.062em;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-heading span {
  color: transparent;
  -webkit-text-stroke: 1px #777a76;
}

.studio-description p {
  margin: 0;
  color: #464844;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.7;
}

.studio-description p + p {
  margin-top: 1.4rem;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(6rem, 11vw, 11rem);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.principle {
  min-height: 12rem;
  padding: 1.5rem 1.5rem 2rem 0;
}

.principle + .principle {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line-dark);
}

.principle span {
  color: #6a6d68;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.61rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.principle p {
  max-width: 20rem;
  margin: 4rem 0 0;
  font-size: 1rem;
}

.project {
  min-height: 100vh;
  background: var(--ink);
}

.section-index-light {
  color: var(--grey);
}

.section-index-light::after {
  background: var(--line);
}

.project-stage {
  position: relative;
  display: flex;
  min-height: min(72vh, 54rem);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(231, 231, 225, 0.23);
  background: #0b0c0b;
}

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25% 50%;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.stage-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(52vw, 43rem);
  opacity: 0.07;
  transform: translate(-50%, -50%);
}

.stage-topline,
.stage-footer {
  position: absolute;
  right: clamp(1.25rem, 2.5vw, 2.5rem);
  left: clamp(1.25rem, 2.5vw, 2.5rem);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: var(--grey);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.61rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-topline {
  top: 1.6rem;
}

.stage-footer {
  bottom: 1.6rem;
}

.stage-topline p,
.stage-footer p {
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: #c7c9c3;
  box-shadow: 0 0 0 0 rgba(231, 231, 225, 0.45);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(231, 231, 225, 0.38); }
  70%, 100% { box-shadow: 0 0 0 0.65rem rgba(231, 231, 225, 0); }
}

.coming-soon {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(5rem, 15vw, 14.8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.83;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-2deg) scale(1.06);
}

.coming-soon span {
  display: block;
}

.coming-soon .outline {
  color: transparent;
  -webkit-text-stroke: max(1px, 0.012em) rgba(231, 231, 225, 0.82);
}

.corner {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-color: var(--paper);
  opacity: 0.8;
}

.corner-tl { top: 0.55rem; left: 0.55rem; border-top: 1px solid; border-left: 1px solid; }
.corner-tr { top: 0.55rem; right: 0.55rem; border-top: 1px solid; border-right: 1px solid; }
.corner-bl { bottom: 0.55rem; left: 0.55rem; border-bottom: 1px solid; border-left: 1px solid; }
.corner-br { right: 0.55rem; bottom: 0.55rem; border-right: 1px solid; border-bottom: 1px solid; }

.contact {
  min-height: 100svh;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: clamp(4rem, 9vw, 9rem);
  align-items: end;
}

.contact-copy {
  padding-bottom: 0.5rem;
}

.contact-copy p {
  margin: 0 0 2rem;
  color: #4b4e49;
  font-size: 1rem;
  line-height: 1.6;
}

.community-links {
  display: grid;
  gap: 0.7rem;
}

.button-link {
  display: flex;
  width: 100%;
  min-width: 13rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(8, 9, 8, 0.6);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 300ms ease, color 300ms ease;
}

.button-link span {
  font-size: 1rem;
  transition: transform 300ms var(--ease);
}

.button-link:hover,
.button-link:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.button-link:hover span {
  transform: translate(0.15rem, -0.15rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2.25rem var(--edge);
  border-top: 1px solid var(--line);
  color: var(--grey);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--grey);
  transition: color 220ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: var(--paper);
}

.footer-brand .brand-name {
  color: var(--paper);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
}

.legal-page {
  background: var(--paper);
  color: var(--ink);
}

.legal-page .site-footer {
  border-top-color: var(--line);
  background: var(--ink);
  color: var(--grey);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 var(--edge);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
}

.legal-header .brand-mark img {
  filter: grayscale(1) invert(1) contrast(1.3);
}

.legal-header .brand-name b {
  color: var(--grey-dark);
}

.legal-back {
  flex: none;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-back:hover,
.legal-back:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.legal-main {
  width: min(100%, 100rem);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 8rem) var(--edge) clamp(6rem, 10vw, 11rem);
}

.legal-eyebrow,
.legal-date,
.legal-aside,
.legal-switcher {
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-eyebrow {
  margin: 0 0 2rem;
  color: #666964;
}

.legal-heading h1 {
  margin: 0;
  font-size: clamp(4.2rem, 10.5vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.91;
  text-transform: uppercase;
}

.legal-heading h1 span {
  color: transparent;
  -webkit-text-stroke: 1px #767a75;
}

.legal-lead {
  max-width: 47rem;
  margin: clamp(2rem, 4vw, 4rem) 0 0;
  color: #424540;
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  line-height: 1.6;
}

.legal-date {
  margin: 2rem 0 0;
  color: #666964;
}

.legal-switcher {
  display: flex;
  width: fit-content;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

.legal-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--line-dark);
  transition: background 220ms ease, color 220ms ease;
}

.legal-switcher a:hover,
.legal-switcher a:focus-visible,
.legal-switcher a[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(10rem, 0.28fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 9vw, 9rem);
  margin-top: clamp(4rem, 7vw, 7rem);
}

.legal-aside {
  align-self: start;
  color: #686b66;
}

.legal-aside span {
  display: block;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-dark);
}

.legal-aside p {
  max-width: 10rem;
  margin: 0.8rem 0 0;
  line-height: 1.7;
}

.legal-content {
  max-width: 54rem;
}

.legal-section {
  padding: 1.75rem 0 2.8rem;
  border-top: 1px solid var(--line-dark);
}

.legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin: 0 0 1.8rem;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.1;
  text-transform: uppercase;
}

.legal-section h2 span {
  flex: none;
  color: #777a76;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.legal-section p,
.legal-section li {
  color: #343732;
  font-size: 1.03rem;
  line-height: 1.75;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p,
.legal-section ul + p {
  margin-top: 1.2rem;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.35rem;
}

.legal-section li + li {
  margin-top: 0.85rem;
}

.legal-section a {
  text-decoration: underline;
  text-decoration-color: #8b8e89;
  text-underline-offset: 0.22rem;
}

.legal-section a:hover,
.legal-section a:focus-visible {
  text-decoration-color: var(--ink);
}

.legal-section code {
  padding: 0.1rem 0.25rem;
  background: #d8dad4;
  font-size: 0.85em;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 800ms ease, transform 900ms var(--ease);
}

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

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-aside p {
    max-width: none;
  }

  .hero-title {
    font-size: clamp(4.5rem, 17vw, 9rem);
    line-height: 0.88;
  }

  .title-division {
    margin-left: 5vw;
  }

  .hero-bottom,
  .studio-copy,
  .contact-layout {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-bottom .text-link {
    justify-self: start;
  }

  .studio-copy,
  .contact-layout {
    display: grid;
    gap: 3rem;
  }

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

  .principle {
    min-height: auto;
    padding: 1.5rem 0 2rem;
  }

  .principle + .principle {
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .principle p {
    margin-top: 2.5rem;
  }

  .project-stage {
    min-height: 65vh;
  }

  .coming-soon {
    font-size: clamp(4.5rem, 18vw, 9rem);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 4.5rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 18;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0;
    cursor: pointer;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .site-header .brand {
    position: relative;
    z-index: 18;
  }

  .menu-toggle i,
  .menu-toggle i::after {
    display: block;
    width: 1.5rem;
    height: 1px;
    background: var(--paper);
    content: "";
    transition: transform 300ms var(--ease);
  }

  .menu-toggle i::after {
    transform: translateY(0.35rem);
  }

  .menu-open .menu-toggle i {
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle i::after {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 17;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    padding: var(--edge);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-light .menu-toggle i,
  .site-header.is-light .menu-toggle i::after {
    background: var(--ink);
  }

  .menu-open .site-header,
  .menu-open .site-header.is-light {
    border-bottom-color: var(--line);
    background: var(--ink);
    color: var(--paper);
  }

  .menu-open .site-header.is-light .brand-name b,
  .menu-open .site-header.is-light .site-nav a {
    color: var(--paper);
  }

  .menu-open .site-header.is-light .brand-mark img {
    filter: grayscale(1) contrast(1.3);
  }

  .menu-open .site-header.is-light .menu-toggle i,
  .menu-open .site-header.is-light .menu-toggle i::after {
    background: var(--paper);
  }

  .site-nav a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--paper);
    font-size: clamp(2rem, 10vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav span {
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
  }

  .hero-meta p:last-child {
    display: none;
  }

  .hero-title {
    font-size: clamp(3.3rem, 16.25vw, 4.4rem);
    line-height: 0.9;
  }

  .hero-content,
  .hero-bottom {
    width: 100%;
    max-width: 100%;
  }

  .title-division {
    margin-top: 0.15em;
    margin-left: 0;
  }

  .hero-emblem {
    left: 50%;
    width: min(78vw, 22rem);
  }

  .hero-bottom {
    margin-top: 3.5rem;
  }

  .scroll-cue {
    display: none;
  }

  .section-index {
    grid-template-columns: 2rem 1fr;
  }

  .section-index::after {
    margin-left: 6rem;
  }

  .section-heading {
    font-size: clamp(3.3rem, 15vw, 5.5rem);
  }

  .project {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .project .section-index {
    margin-right: calc(var(--edge) - 0.75rem);
    margin-left: calc(var(--edge) - 0.75rem);
  }

  .project-stage {
    min-height: 72svh;
  }

  .coming-soon {
    font-size: clamp(3.65rem, 21vw, 6rem);
    line-height: 0.86;
  }

  .stage-footer p:last-child {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .site-footer p:last-child {
    text-align: left;
  }

  .legal-header .brand-name {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .legal-header .brand {
    gap: 0.5rem;
  }

  .legal-back {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }

  .legal-heading h1 {
    font-size: clamp(3.5rem, 15vw, 6rem);
  }

  .legal-section h2 {
    gap: 0.75rem;
  }
}

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

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