:root {
  color-scheme: dark;
  --ink: #070809;
  --ink-soft: #0c0e10;
  --panel: #111417;
  --panel-light: #171b1f;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --paper: #f2f0eb;
  --muted: #a4a7aa;
  --quiet: #71757a;
  --ember: #ff7417;
  --ember-bright: #ff9a3d;
  --cyan: #61d6ea;
  --shell: min(1280px, calc(100vw - 64px));
  --display: "Bahnschrift SemiCondensed", "Aptos Display", "Segoe UI", Arial, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(6, 7, 8, 0.86), transparent);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled,
.site-header.menu-visible {
  border-color: var(--line);
  background: rgba(7, 8, 9, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: var(--shell);
  height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 116, 23, 0.36);
  border-radius: 50%;
}

.brand-copy { display: grid; line-height: 0.9; }
.brand-copy strong {
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: 0.12em;
}
.brand-copy small {
  margin-top: 5px;
  color: var(--ember);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.42em;
}

.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a {
  position: relative;
  color: #d8d8d6;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -9px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ember);
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 0;
  text-decoration: none;
  text-transform: uppercase;
}
.header-cta span { color: var(--ember); transition: transform 180ms ease; }
.header-cta:hover span { transform: translate(3px, -3px); }

.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #080a0c;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("/assets/spectre-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.98) 0%, rgba(5, 6, 7, 0.78) 35%, rgba(5, 6, 7, 0.2) 68%, rgba(5, 6, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.28), rgba(4, 5, 6, 0.08) 56%, #070809 100%);
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 64%);
}

@keyframes hero-breathe { to { transform: scale(1.045); } }

.hero-shell {
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding: 154px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 70px;
}

.hero-copy { max-width: 880px; }

.eyebrow,
.section-index {
  margin: 0;
  color: var(--ember-bright);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow > span { width: 34px; height: 1px; background: currentColor; }

.hero h1,
.section-heading h2,
.manifesto h2,
.studio h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 960px;
  margin-top: 27px;
  font-size: clamp(4.3rem, 8.5vw, 8.2rem);
}

h1 em,
h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(242, 240, 235, 0.72);
}

.hero-lede {
  max-width: 650px;
  margin: 31px 0 0;
  color: #c1c2c0;
  font-size: clamp(1.03rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 13px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--ember); background: var(--ember); color: #08090a; }
.button-primary:hover { background: var(--ember-bright); }
.button-quiet { background: rgba(10, 12, 14, 0.52); backdrop-filter: blur(8px); }
.button-quiet:hover { border-color: rgba(255, 255, 255, 0.52); background: rgba(20, 22, 24, 0.76); }

.hero-side { align-self: end; margin-bottom: 42px; }
.signal-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(7, 9, 11, 0.48);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.signal-label {
  color: var(--quiet);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.signal-line { height: 32px; margin: 13px 0 16px; display: flex; align-items: end; gap: 5px; }
.signal-line i { width: 100%; background: var(--ember); animation: signal 1.8s ease-in-out infinite alternate; }
.signal-line i:nth-child(1) { height: 20%; }
.signal-line i:nth-child(2) { height: 54%; animation-delay: -.3s; }
.signal-line i:nth-child(3) { height: 34%; animation-delay: -.6s; }
.signal-line i:nth-child(4) { height: 82%; animation-delay: -.9s; }
.signal-line i:nth-child(5) { height: 45%; animation-delay: -1.2s; }
.signal-line i:nth-child(6) { height: 100%; animation-delay: -1.5s; }
.signal-line i:nth-child(7) { height: 66%; animation-delay: -1.8s; }
@keyframes signal { to { height: 16%; opacity: .45; } }
.signal-card strong { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 700; line-height: 1.08; text-transform: uppercase; }
.signal-card p { margin: 15px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.65; }

.hero-foot {
  position: absolute;
  inset: auto 32px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255,255,255,.52);
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.hero-foot i { height: 1px; flex: 1; background: rgba(255,255,255,.19); }

.section-shell { width: var(--shell); margin: 0 auto; }

.manifesto { padding: 128px 0 0; background: var(--ink); }
.manifesto-grid {
  display: grid;
  grid-template-columns: .45fr 1.2fr .8fr;
  gap: 56px;
  align-items: start;
}
.section-index { color: var(--quiet); }
.manifesto-copy .eyebrow { margin-bottom: 20px; }
.manifesto h2 { font-size: clamp(2.9rem, 5vw, 5.4rem); }
.manifesto-body { padding-top: 44px; color: var(--muted); }
.manifesto-body p { margin: 0; }
.manifesto-body p + p { margin-top: 20px; }

.studio-facts {
  width: var(--shell);
  margin: 94px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.studio-facts div { min-height: 145px; padding: 30px 26px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line); }
.studio-facts div:first-child { border-left: 0; }
.studio-facts strong { font-family: var(--display); font-size: clamp(2rem, 3vw, 3.25rem); font-weight: 700; line-height: 1; text-transform: uppercase; }
.studio-facts span { margin-top: 10px; color: var(--quiet); font-size: .66rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }

.projects { padding: 145px 0; background: #090b0d; }
.section-heading { margin-bottom: 70px; display: grid; grid-template-columns: 1.2fr .65fr; gap: 60px; align-items: end; }
.section-heading .section-index { margin-bottom: 18px; }
.section-heading h2 { font-size: clamp(3.2rem, 6vw, 6.2rem); }
.section-heading > p { max-width: 480px; margin: 0 0 8px; color: var(--muted); }

.project {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(420px, .84fr);
  min-height: 610px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.project + .project { margin-top: 44px; }
.project-reverse { grid-template-columns: minmax(420px, .84fr) minmax(0, 1.16fr); }
.project-reverse .project-visual { order: 2; }

.project-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  text-decoration: none;
  isolation: isolate;
}
.project-reverse .project-visual { border-right: 0; border-left: 1px solid var(--line); }
.galaxies-visual {
  background:
    radial-gradient(circle at 50% 46%, rgba(38, 195, 224, .2), transparent 25%),
    radial-gradient(circle at 50% 52%, rgba(255, 116, 23, .16), transparent 48%),
    linear-gradient(145deg, #07141c, #090a0c 70%);
}
.galaxies-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .24;
  background-image:
    linear-gradient(rgba(97,214,234,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97,214,234,.2) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
}
.galaxies-visual img { width: min(58%, 430px); mix-blend-mode: screen; filter: contrast(1.08) saturate(1.05); transition: transform 450ms cubic-bezier(.2,.7,.2,1); }

.evolve-visual { align-items: stretch; }
.evolve-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,8,15,.1), rgba(1,7,14,.76));
}
.evolve-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms cubic-bezier(.2,.7,.2,1); }
.evolve-wordmark {
  position: absolute;
  z-index: 2;
  left: 8%;
  bottom: 9%;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: .8;
  text-shadow: 0 4px 30px rgba(0,0,0,.72);
}
.project-visual:hover img { transform: scale(1.035); }
.visual-number { position: absolute; top: 24px; left: 27px; z-index: 3; color: rgba(255,255,255,.52); font-size: .63rem; font-weight: 900; letter-spacing: .15em; }
.visual-arrow { position: absolute; top: 19px; right: 22px; z-index: 3; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: rgba(4,5,6,.38); transition: transform 180ms ease, background 180ms ease; }
.project-visual:hover .visual-arrow { transform: rotate(45deg); background: var(--ember); color: var(--ink); }

.project-copy { padding: clamp(42px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.project-meta { margin-bottom: 42px; display: flex; justify-content: space-between; gap: 14px; color: var(--quiet); font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.status { display: inline-flex; align-items: center; gap: 8px; color: #d2d5d6; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 12px rgba(255,116,23,.72); }
.status-live i { background: #49da8c; box-shadow: 0 0 12px rgba(73,218,140,.72); }
.project-copy > .eyebrow { margin-bottom: 12px; }
.project h3 { margin: 0; font-family: var(--display); font-size: clamp(2.8rem, 4.4vw, 5rem); font-weight: 750; letter-spacing: -.02em; line-height: 1; text-transform: uppercase; }
.project-lede { margin: 28px 0 14px; color: #d6d6d2; font-size: 1.03rem; line-height: 1.72; }
.project-copy > p:not(.eyebrow):not(.project-lede) { margin: 0; color: var(--muted); }
.feature-list { margin: 31px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; list-style: none; }
.feature-list li { position: relative; padding-left: 16px; color: #c5c6c4; font-size: .78rem; }
.feature-list li::before { content: ""; position: absolute; top: .68em; left: 0; width: 5px; height: 5px; background: var(--ember); transform: rotate(45deg); }
.text-link { width: fit-content; display: inline-flex; gap: 12px; border-bottom: 1px solid var(--line-strong); padding-bottom: 5px; font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.text-link span { color: var(--ember); transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.studio { display: grid; grid-template-columns: minmax(0, 1fr) minmax(540px, 1fr); background: #060708; }
.studio-image { position: relative; min-height: 850px; overflow: hidden; }
.studio-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 58%, #060708), linear-gradient(180deg, transparent 68%, rgba(6,7,8,.9)); }
.studio-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.08); }
.image-caption { position: absolute; z-index: 2; left: 30px; bottom: 28px; color: rgba(255,255,255,.62); font-size: .62rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.studio-content { padding: 122px max(6vw, 70px); }
.studio-content > .section-index { margin-bottom: 38px; }
.studio h2 { font-size: clamp(3.2rem, 5.5vw, 6rem); }
.studio-intro { max-width: 620px; margin: 35px 0 60px; color: var(--muted); font-size: 1.03rem; }
.principles { border-top: 1px solid var(--line); }
.principle { padding: 27px 0; display: grid; grid-template-columns: 50px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.principle > span { color: var(--ember); font-size: .65rem; font-weight: 900; }
.principle h3 { margin: 0; font-family: var(--display); font-size: 1.35rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
.principle p { margin: 6px 0 0; color: var(--quiet); font-size: .86rem; }

.contact { position: relative; overflow: hidden; padding: 150px 0; background: var(--ember); color: #0a0a0a; }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(rgba(0,0,0,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.25) 1px, transparent 1px); background-size: 72px 72px; }
.contact-glow { position: absolute; right: -10%; bottom: -100%; width: 70%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,213,164,.34); filter: blur(90px); }
.contact-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.contact .section-index { margin-bottom: 25px; color: rgba(0,0,0,.55); }
.contact h2 { max-width: 820px; font-size: clamp(3.5rem, 7vw, 7.5rem); }
.contact-action { padding-bottom: 8px; }
.contact-action p { max-width: 480px; margin: 0 0 33px; color: rgba(0,0,0,.7); }
.contact-action a { display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(0,0,0,.42); border-bottom: 1px solid rgba(0,0,0,.42); padding: 22px 2px; font-family: var(--display); font-size: clamp(1rem, 1.8vw, 1.45rem); font-weight: 700; letter-spacing: .015em; text-decoration: none; text-transform: uppercase; }
.contact-action a span { transition: transform 180ms ease; }
.contact-action a:hover span { transform: translate(4px, -4px); }

.site-footer { width: var(--shell); margin: 0 auto; padding: 80px 0 32px; }
.footer-main { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.footer-brand img { width: 48px; height: 48px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; }
.footer-links > div { display: flex; flex-direction: column; gap: 9px; }
.footer-links span { margin-bottom: 8px; color: var(--quiet); font-size: .62rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.footer-links a { width: fit-content; color: #c2c4c4; font-size: .82rem; text-decoration: none; }
.footer-links a:hover { color: var(--ember-bright); }
.footer-meta { margin-top: 70px; padding-top: 22px; display: flex; justify-content: space-between; gap: 40px; border-top: 1px solid var(--line); color: var(--quiet); font-size: .67rem; }
.footer-meta p { margin: 0; }
.footer-meta p:last-child { max-width: 620px; text-align: right; }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(12px);
  background: rgba(13,15,17,.78);
  color: var(--paper);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--ember); color: var(--ink); }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.72,.25,1); }
.js .reveal[data-delay="1"] { transition-delay: 110ms; }
.js .reveal[data-delay="2"] { transition-delay: 220ms; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 40px, 960px); }
  .header-shell { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { justify-self: end; width: 45px; height: 45px; display: grid; place-content: center; gap: 7px; border: 1px solid var(--line-strong); background: rgba(7,8,9,.36); cursor: pointer; }
  .menu-toggle span { width: 19px; height: 1px; background: var(--paper); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav { width: 100%; height: calc(100svh - 82px); padding: 40px max(20px, calc((100vw - min(100% - 40px, 960px)) / 2)); display: flex; flex-direction: column; gap: 0; visibility: hidden; opacity: 0; transform: translateY(-12px); border-top: 1px solid var(--line); background: rgba(7,8,9,.98); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; pointer-events: none; }
  .mobile-nav.visible { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-nav a { padding: 20px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 2rem; font-weight: 700; text-decoration: none; text-transform: uppercase; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .hero-copy { max-width: 760px; }
  .manifesto-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-grid > .section-index { grid-column: 1 / -1; }
  .project, .project-reverse { grid-template-columns: 1fr; }
  .project-reverse .project-visual { order: 0; }
  .project-visual, .project-reverse .project-visual { min-height: 520px; border: 0; border-bottom: 1px solid var(--line); }
  .studio { grid-template-columns: 42% 58%; }
  .studio-content { padding: 100px 45px; }
  .footer-main { grid-template-columns: .7fr 1.3fr; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 28px); }
  .header-shell { height: 70px; }
  .brand-copy strong { font-size: 1rem; }
  .brand img { width: 38px; height: 38px; }
  .mobile-nav { height: calc(100svh - 70px); }
  .hero-shell { min-height: 100svh; padding: 130px 0 108px; align-items: end; }
  .hero-backdrop { background-position: 63% center; }
  .hero::before { background: linear-gradient(90deg, rgba(5,6,7,.9), rgba(5,6,7,.24)), linear-gradient(180deg, rgba(5,6,7,.16), rgba(5,6,7,.38) 46%, #070809 98%); }
  .hero h1 { font-size: clamp(3.65rem, 17vw, 5.6rem); }
  .hero-lede { font-size: .98rem; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-foot { inset: auto 14px 18px; }
  .hero-foot span:last-child { display: none; }
  .manifesto { padding-top: 90px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 30px; }
  .manifesto-grid > .section-index { grid-column: auto; }
  .manifesto-body { padding-top: 4px; }
  .studio-facts { margin-top: 64px; grid-template-columns: 1fr 1fr; }
  .studio-facts div { min-height: 112px; padding: 22px 18px; }
  .studio-facts div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .studio-facts div:nth-child(4) { border-top: 1px solid var(--line); }
  .projects { padding: 96px 0; }
  .section-heading { margin-bottom: 46px; grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { margin: 0; }
  .project { min-height: 0; }
  .project + .project { margin-top: 24px; }
  .project-visual, .project-reverse .project-visual { min-height: 360px; }
  .galaxies-visual img { width: 72%; }
  .project-copy { padding: 34px 24px 42px; }
  .project-meta { margin-bottom: 32px; flex-direction: column; gap: 7px; }
  .project h3 { font-size: 3rem; }
  .feature-list { grid-template-columns: 1fr; }
  .studio { grid-template-columns: 1fr; }
  .studio-image { min-height: 520px; }
  .studio-image::after { background: linear-gradient(180deg, transparent 66%, #060708); }
  .studio-content { padding: 80px 14px 94px; }
  .studio h2 { font-size: clamp(3.1rem, 15vw, 4.5rem); }
  .contact { padding: 96px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .contact h2 { font-size: clamp(3.25rem, 15vw, 5rem); }
  .contact-action a { font-size: .92rem; overflow-wrap: anywhere; }
  .site-footer { padding-top: 60px; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .footer-meta { margin-top: 54px; flex-direction: column; gap: 12px; }
  .footer-meta p:last-child { text-align: left; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 3.35rem; }
  .project-visual, .project-reverse .project-visual { min-height: 310px; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
