:root {
  --ink: #122a22;
  --night: #0d1915;
  --night-soft: #14251f;
  --paper: #f2ecdf;
  --cream: #fffaf0;
  --mint: #bdd8c2;
  --mint-soft: #dbe8d7;
  --leaf: #41735c;
  --coral: #f06449;
  --gold: #efbd59;
  --line: rgba(18, 42, 34, 0.16);
  --line-light: rgba(255, 250, 240, 0.17);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue", sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--night);
}

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

a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--night);
  background: var(--cream);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.home-page {
  color: var(--cream);
  background: var(--night);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1360px, calc(100% - 64px));
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  transform: translateX(-50%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.wordmark-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(255, 250, 240, 0.32);
  background: var(--coral);
  font-family: var(--display);
  font-size: 21px;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 76% 100%, 0 100%);
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a { transition: color 160ms ease, background 160ms ease; }
nav a:hover { color: var(--coral); }

.nav-contact {
  padding: 11px 15px;
  color: var(--night);
  background: var(--cream);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

nav .nav-contact:hover { color: var(--cream); background: var(--coral); }

.hero {
  position: relative;
  min-height: 820px;
  padding: 132px max(32px, calc((100vw - 1360px) / 2)) 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: clamp(38px, 5vw, 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 43%, rgba(65, 115, 92, 0.22), transparent 32rem),
    radial-gradient(circle at 20% 80%, rgba(240, 100, 73, 0.08), transparent 26rem),
    var(--night);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.21;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

.hero-grid {
  position: absolute;
  inset: 88px 0 0;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, #000 30%, #000 90%, transparent);
}

.hero-copy { position: relative; z-index: 2; }

.system-line,
.section-index,
.project-label,
.stage-meta,
.build-status {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.system-line {
  margin-bottom: 32px;
  color: rgba(255, 250, 240, 0.6);
}

.system-line span {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 8px;
  vertical-align: middle;
  background: var(--coral);
}

.hero h1 { margin-bottom: 27px; }

.display-word {
  display: block;
  margin-left: -0.025em;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(102px, 10.4vw, 166px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-promise {
  display: block;
  margin-top: 38px;
  font-family: var(--serif);
  font-size: clamp(43px, 4.1vw, 66px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-promise em { color: var(--coral); font-weight: 500; }

.hero-intro {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 250, 240, 0.64);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 170ms ease, background 170ms ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--night); background: var(--coral); }
.button-primary:hover { background: var(--gold); }

.build-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 250, 240, 0.5);
}

.build-status i,
.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #82c996;
  box-shadow: 0 0 0 5px rgba(130, 201, 150, 0.12);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-height: 650px;
  border: 1px solid var(--line-light);
  background:
    linear-gradient(135deg, rgba(255,255,255,.05), transparent 38%),
    rgba(19, 36, 30, 0.58);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 46px;
  border: 1px solid rgba(255, 250, 240, 0.07);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(13, 25, 21, 0.94), transparent 45%);
}

.stage-meta { position: absolute; z-index: 4; color: rgba(255, 250, 240, 0.45); }
.stage-meta-top { top: 19px; left: 21px; }
.stage-meta-side { right: 13px; bottom: 24px; writing-mode: vertical-rl; }

.stage-cross {
  position: absolute;
  z-index: 3;
  color: rgba(255, 250, 240, 0.48);
  font-size: 30px;
  font-weight: 200;
}

.stage-cross-one { top: 70px; left: 11%; }
.stage-cross-two { right: 9%; bottom: 22%; }

.card-orbit {
  position: absolute;
  width: 470px;
  height: 470px;
  left: 50%;
  top: 45%;
  border: 1px solid rgba(240, 100, 73, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.card-orbit::before,
.card-orbit::after {
  content: "";
  position: absolute;
  inset: 54px;
  border: 1px solid rgba(255, 250, 240, 0.08);
  border-radius: 50%;
}

.card-orbit::after { inset: 120px; }

.object-card {
  position: absolute;
  z-index: 2;
  width: clamp(145px, 12vw, 190px);
  aspect-ratio: 0.78;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--ink);
  border: 1px solid rgba(18, 42, 34, 0.18);
  background: var(--paper);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.3);
  transition: transform 260ms ease;
  clip-path: polygon(0 0, calc(100% - 17px) 0, 100% 17px, 100% 100%, 0 100%);
}

.object-card:hover { z-index: 5; }
.object-card small { font-size: 8px; font-weight: 850; letter-spacing: 0.14em; }

.sprite {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background-image: url('/assets/storage-solitaire-objects.jpg');
  background-repeat: no-repeat;
  background-size: 300% 800%;
}

.sprite-tea { background-position: 0 0; }
.sprite-teapot { background-position: 100% 0; }
.sprite-whisk { background-position: 50% 14.2857%; }
.sprite-bread { background-position: 0 28.5714%; }
.sprite-jam { background-position: 50% 28.5714%; }
.sprite-soap { background-position: 0 57.1429%; }
.sprite-towel { background-position: 100% 57.1429%; }
.sprite-trowel { background-position: 50% 85.7143%; }
.sprite-shears { background-position: 100% 85.7143%; }
.sprite-stapler { background-position: 50% 100%; }
.sprite-pencil { background-position: 100% 100%; }

.card-tea { left: 12%; top: 17%; transform: rotate(-9deg); }
.card-tea:hover { transform: rotate(-4deg) translateY(-10px); }
.card-bread { right: 11%; top: 12%; transform: rotate(8deg); }
.card-bread:hover { transform: rotate(3deg) translateY(-10px); }
.card-trowel { left: 32%; bottom: 16%; transform: rotate(-3deg); }
.card-trowel:hover { transform: rotate(1deg) translateY(-10px); }
.card-pencil { right: 6%; bottom: 10%; transform: rotate(11deg) scale(0.83); }
.card-pencil:hover { transform: rotate(6deg) scale(0.88) translateY(-10px); }

.stage-title {
  position: absolute;
  z-index: 4;
  left: 22px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  line-height: 0.8;
}

.stage-title span { color: var(--coral); font-size: clamp(24px, 3.1vw, 48px); font-weight: 900; letter-spacing: -0.04em; }
.stage-title strong { font-family: var(--display); font-size: clamp(48px, 6.5vw, 102px); font-weight: 900; letter-spacing: 0.015em; }

.signal-strip {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  color: var(--night);
  background: var(--coral);
  overflow: hidden;
}

.signal-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  animation: ticker 28s linear infinite;
}

.signal-track b { font-size: 8px; }

.work {
  padding: 128px max(32px, calc((100vw - 1280px) / 2));
  color: var(--ink);
  background: var(--paper);
}

.section-intro {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.section-index {
  margin: 14px 0 0;
  color: rgba(18, 42, 34, 0.58);
}

.section-intro h2 {
  max-width: 860px;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(58px, 7.8vw, 112px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.065em;
}

.section-intro > div > p {
  max-width: 560px;
  margin: 0;
  color: rgba(18, 42, 34, 0.67);
  font-size: 18px;
  line-height: 1.6;
}

.project-showcase {
  min-height: 660px;
  padding: clamp(20px, 3.2vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(330px, 0.83fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), transparent 35%),
    var(--ink);
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
}

.game-window {
  min-height: 540px;
  border: 1px solid rgba(255, 250, 240, 0.19);
  background: #cddac7;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
}

.window-bar {
  height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--cream);
  background: var(--night);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.window-bar span:first-child { margin-right: auto; }
.window-bar span:nth-child(2) { color: rgba(255, 250, 240, 0.48); }
.window-bar i { width: 6px; height: 6px; border: 1px solid rgba(255,250,240,.5); border-radius: 50%; }

.game-board {
  position: relative;
  min-height: 494px;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.38), transparent 45%),
    linear-gradient(rgba(18,42,34,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,42,34,.04) 1px, transparent 1px),
    var(--mint-soft);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.goal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.goal-bin {
  min-height: 124px;
  padding: 10px;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  border: 1px solid rgba(18,42,34,.16);
  background: rgba(255,250,240,.68);
  box-shadow: inset 0 -6px 0 rgba(18,42,34,.04);
}

.goal-bin small { font-size: 9px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.goal-bin.wild { display: flex; flex-direction: column; justify-content: center; gap: 2px; color: var(--cream); background: var(--leaf); }
.goal-bin.wild strong { font-family: var(--serif); font-size: 52px; font-weight: 500; line-height: .9; }

.table-cards { position: relative; min-height: 310px; margin-top: 25px; }

.mini-card {
  position: absolute;
  width: clamp(105px, 10vw, 145px);
  padding: 7px;
  border: 1px solid rgba(18,42,34,.2);
  background: var(--cream);
  box-shadow: 0 18px 32px rgba(18,42,34,.18);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.mini-one { left: 3%; top: 20px; transform: rotate(-8deg); }
.mini-two { left: 23%; top: 95px; transform: rotate(5deg); }
.mini-three { left: 42%; top: 24px; transform: rotate(-2deg); }
.mini-four { right: 18%; top: 110px; transform: rotate(8deg); }
.mini-five { right: 1%; top: 26px; transform: rotate(4deg); }

.board-caption {
  position: absolute;
  left: 18px;
  bottom: 12px;
  margin: 0;
  color: rgba(18,42,34,.52);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}

.project-copy { max-width: 460px; }
.project-label { margin-bottom: 66px; color: var(--gold); }

.project-copy h3 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(64px, 6.6vw, 100px);
  font-weight: 900;
  line-height: .76;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.project-copy > p:not(.project-label) { color: rgba(255,250,240,.67); font-size: 16px; line-height: 1.65; }

.project-facts {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.project-facts span { padding: 16px 10px 16px 0; font-size: 11px; font-weight: 700; }
.project-facts span + span { padding-left: 14px; border-left: 1px solid var(--line-light); }
.project-facts small { display: block; margin-bottom: 5px; color: rgba(255,250,240,.4); font-size: 7px; letter-spacing: .14em; }

.status {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,250,240,.75);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.studio {
  padding: 128px max(32px, calc((100vw - 1280px) / 2));
  color: var(--ink);
  background: var(--mint-soft);
}

.studio-heading { margin-bottom: 80px; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principles article {
  min-height: 300px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article > span { color: var(--coral); font-size: 10px; font-weight: 900; letter-spacing: .12em; }

.principles h3 {
  margin: auto 0 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.1vw, 45px);
  font-weight: 500;
  letter-spacing: -.045em;
}

.principles p { max-width: 330px; margin-bottom: 0; color: rgba(18,42,34,.65); font-size: 14px; line-height: 1.65; }

footer {
  padding: 64px max(32px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: .85fr 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  color: var(--cream);
  border-top: 1px solid var(--line-light);
  background: var(--night);
}

footer strong { font-size: 13px; letter-spacing: .1em; }
footer p { margin: 7px 0 0; color: rgba(255,250,240,.47); font-size: 10px; line-height: 1.6; }

.footer-mail {
  padding: 21px 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-light);
  transition: border-color 160ms ease, background 160ms ease;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.footer-mail:hover { border-color: var(--coral); background: rgba(240,100,73,.07); }
.footer-mail span { color: rgba(255,250,240,.45); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-mail strong { margin-top: 7px; display: flex; justify-content: space-between; font-family: var(--serif); font-size: 26px; font-weight: 500; letter-spacing: -.03em; }
.footer-mail i { color: var(--coral); font-family: var(--sans); font-style: normal; }

.footer-meta { text-align: right; }
.footer-links { margin-bottom: 12px; display: flex; justify-content: flex-end; gap: 18px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.copyright { white-space: nowrap; }

/* Legal pages intentionally stay quiet and document-like. */
.legal-page {
  min-height: 100vh;
  padding: 0 24px 90px;
  color: var(--ink);
  background: var(--paper);
}

.legal-header {
  width: min(820px, 100%);
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.legal-page .wordmark-mark { color: var(--cream); border-color: transparent; }
.legal-header a:last-child { font-size: 13px; font-weight: 760; }

.legal-content {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 78px 0 0;
}

.legal-content .eyebrow {
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-content h1 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 82px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.055em;
}

.legal-updated { margin-bottom: 56px; color: rgba(18,42,34,.58); font-size: 13px; }
.legal-content section { margin-top: 42px; }
.legal-content h2 { margin-bottom: 12px; font-family: var(--serif); font-size: 29px; font-weight: 500; letter-spacing: -.035em; }
.legal-content p, .legal-content li { color: rgba(18,42,34,.78); font-size: 16px; line-height: 1.75; }
.legal-content ul { padding-left: 20px; }
.legal-content a { text-decoration: underline; text-underline-offset: 3px; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes pulse { 50% { opacity: .45; transform: scale(.82); } }

@media (min-width: 851px) and (max-height: 760px) {
  .site-header { height: 72px; }
  .hero { min-height: 650px; padding-top: 104px; padding-bottom: 34px; }
  .system-line { margin-bottom: 22px; }
  .display-word { font-size: clamp(96px, 9.4vw, 142px); }
  .hero-promise { margin-top: 26px; font-size: clamp(42px, 3.7vw, 56px); }
  .hero h1 { margin-bottom: 20px; }
  .hero-intro { margin-bottom: 20px; font-size: 16px; line-height: 1.5; }
  .hero-stage { min-height: 500px; }
  .object-card { width: clamp(125px, 10.2vw, 158px); }
  .stage-title strong { font-size: clamp(48px, 5.6vw, 84px); }
  .stage-title span { font-size: clamp(22px, 2.5vw, 38px); }
  .card-orbit { width: 400px; height: 400px; }
}

@media (max-width: 1120px) {
  .hero { grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr); }
  .display-word { font-size: clamp(90px, 10.2vw, 122px); }
  .hero-stage { min-height: 590px; }
  .project-showcase { grid-template-columns: 1fr; }
  .project-copy { max-width: 680px; padding: 20px 10px; }
  .project-label { margin-bottom: 36px; }
}

@media (max-width: 850px) {
  .site-header { width: calc(100% - 38px); }
  .hero { min-height: auto; padding-inline: 19px; grid-template-columns: 1fr; }
  .hero-copy { padding: 42px 0 20px; }
  .display-word { font-size: clamp(98px, 22vw, 160px); }
  .hero-promise { font-size: clamp(50px, 9vw, 72px); }
  .hero-stage { min-height: 620px; }
  .section-intro { grid-template-columns: 1fr; gap: 20px; }
  .section-index { margin-top: 0; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 230px; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; text-align: left; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .site-header { height: 72px; }
  .wordmark { font-size: 11px; }
  .wordmark-mark { width: 30px; height: 30px; }
  nav { gap: 0; }
  nav > a:not(.nav-contact) { display: none; }
  .nav-contact { padding: 9px 12px; font-size: 9px; }
  .hero { padding-top: 100px; padding-bottom: 42px; }
  .system-line { margin-bottom: 24px; font-size: 8px; }
  .display-word { font-size: clamp(82px, 27vw, 112px); }
  .hero-promise { margin-top: 28px; font-size: clamp(44px, 14vw, 61px); }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-stage { min-height: 470px; }
  .hero-stage::before { inset: 28px; }
  .object-card { width: 128px; padding: 9px; }
  .object-card small { font-size: 6px; }
  .card-tea { left: 5%; top: 17%; }
  .card-bread { right: 3%; top: 12%; }
  .card-trowel { left: 25%; bottom: 13%; }
  .card-pencil { right: 0; bottom: 7%; }
  .card-orbit { width: 360px; height: 360px; }
  .stage-title strong { font-size: 55px; }
  .stage-title span { font-size: 24px; }
  .stage-meta-side { display: none; }
  .signal-strip { height: 46px; }
  .work, .studio { padding: 86px 18px; }
  .section-intro { margin-bottom: 48px; }
  .section-intro h2 { font-size: clamp(54px, 17vw, 78px); }
  .section-intro > div > p { font-size: 16px; }
  .project-showcase { padding: 14px; clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%); }
  .game-window { min-height: 450px; }
  .window-bar span:nth-child(2) { display: none; }
  .game-board { min-height: 404px; padding: 14px; }
  .goal-row { gap: 7px; }
  .goal-bin { min-height: 92px; padding: 6px; grid-template-columns: 52px 1fr; }
  .goal-bin small { font-size: 7px; }
  .table-cards { min-height: 270px; }
  .mini-card { width: 90px; }
  .mini-one { left: 0; }
  .mini-two { left: 16%; top: 102px; }
  .mini-three { left: 36%; }
  .mini-four { right: 14%; top: 110px; }
  .mini-five { right: 0; }
  .project-copy { padding: 28px 9px 20px; }
  .project-copy h3 { font-size: clamp(65px, 21vw, 89px); }
  .project-facts { grid-template-columns: 1fr; }
  .project-facts span + span { padding-left: 0; border-top: 1px solid var(--line-light); border-left: 0; }
  .principles article { min-height: 215px; padding: 22px; }
  footer { padding: 52px 18px; grid-template-columns: 1fr; gap: 28px; }
  .footer-meta { grid-column: auto; }
  .legal-header { height: 78px; }
  .legal-content { padding-top: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .signal-track, .build-status i, .status i { animation: none; }
  .button, .object-card { transition: none; }
}
