:root {
  color-scheme: dark;
  --bg: #071315;
  --bg-deep: #050e10;
  --surface: #0d1d1f;
  --surface-strong: #122729;
  --ink: #f1f5f1;
  --muted: #a8b6b2;
  --muted-strong: #c5cecb;
  --accent: #83d7ca;
  --accent-deep: #2b8f87;
  --line: rgba(193, 231, 225, 0.15);
  --line-strong: rgba(131, 215, 202, 0.42);
  --shadow: 0 1.8rem 6rem rgba(1, 16, 18, 0.48);
  --radius: 1.75rem;
  --radius-small: 1rem;
  --shell: 82.5rem;
  --nav-height: 4.5rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1.5rem);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(45, 143, 135, 0.11), transparent 26rem),
    var(--bg);
  color: var(--ink);
  font-family: "Geist", "Segoe UI Variable", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  background-image:
    repeating-radial-gradient(circle at 19% 23%, rgba(255, 255, 255, 0.6) 0 0.035rem, transparent 0.045rem 0.2rem),
    repeating-linear-gradient(113deg, rgba(255, 255, 255, 0.12) 0 0.04rem, transparent 0.04rem 0.22rem);
  background-size: 0.5rem 0.5rem, 0.65rem 0.65rem;
  mix-blend-mode: soft-light;
}

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

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--accent);
  color: var(--bg-deep);
}

:focus-visible {
  outline: 0.18rem solid var(--accent);
  outline-offset: 0.28rem;
}

.page-shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 40;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: var(--nav-height);
  padding: 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 14, 16, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(1.25rem) saturate(145%);
  -webkit-backdrop-filter: blur(1.25rem) saturate(145%);
}

.nav-brand,
.nav-links,
.nav-cta {
  min-width: 0;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-brand picture,
.nav-brand img {
  width: 2rem;
  height: 2rem;
}

.nav-brand img {
  filter: invert(1) brightness(1.45);
  opacity: 0.82;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.6vw, 2.4rem);
}

.nav-links a,
.site-footer nav a {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 220ms ease;
}

.nav-links a:hover,
.site-footer nav a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 240ms var(--ease),
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease;
}

.nav-cta,
.button-primary {
  background: var(--accent);
  color: var(--bg-deep);
}

.nav-cta:hover,
.button-primary:hover {
  background: #a3e4da;
  transform: translateY(-0.12rem);
}

.nav-cta:active,
.button:active {
  transform: translateY(0.06rem) scale(0.98);
}

.button-secondary {
  border-color: rgba(241, 245, 241, 0.48);
  background: rgba(5, 14, 16, 0.54);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: rgba(5, 14, 16, 0.76);
  transform: translateY(-0.12rem);
}

.menu-toggle {
  display: none;
  justify-self: end;
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 650;
}

.studio-hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--bg-deep);
}

.studio-hero-media,
.studio-hero-media img,
.studio-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.studio-hero-media img {
  object-fit: cover;
  object-position: 52% center;
}

.studio-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 14, 16, 0.97) 0%, rgba(4, 14, 16, 0.86) 28%, rgba(4, 14, 16, 0.3) 58%, rgba(4, 14, 16, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 14, 16, 0.82) 0%, transparent 35%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 5.5rem;
  padding-bottom: 4.5rem;
}

.hero-copy {
  max-width: 48rem;
}

.hero-brand-mark {
  display: block;
  width: clamp(16rem, 25vw, 23rem);
  margin-bottom: 2rem;
}

.hero-brand-mark img {
  width: 100%;
  height: auto;
  filter: invert(1) brightness(1.15);
  opacity: 0.94;
}

.hero-copy h1 {
  max-width: 13.5ch;
  margin-bottom: 1.7rem;
  font-size: clamp(4rem, 7vw, 6.4rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.hero-copy > p {
  max-width: 45rem;
  margin-bottom: 2.2rem;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 1.65vw, 1.35rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
}

.text-action {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-block: 0.3rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 650;
  transition: border-color 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.text-action::after {
  margin-left: 0.5rem;
  content: "\2192";
}

.text-action:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(0.18rem);
}

.studio-profile {
  position: relative;
  overflow: hidden;
  padding-block: clamp(7rem, 12vw, 11rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 32%, rgba(125, 224, 207, 0.1), transparent 26rem),
    var(--bg-soft);
}

.studio-profile-inner {
  position: relative;
}

.studio-profile h2 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.9vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.studio-profile-inner > p:not(.section-kicker) {
  max-width: 55ch;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.studio-profile .text-action {
  margin-top: 1.8rem;
}

.project-section {
  padding-top: clamp(8rem, 13vw, 12rem);
  padding-bottom: clamp(9rem, 15vw, 14rem);
}

.project-intro {
  display: block;
  margin-bottom: 4.8rem;
}

.project-intro h2 {
  max-width: 21ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.7vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.project-intro > p {
  max-width: 52ch;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.project-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(17rem, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
  min-height: 44rem;
}

.bento-cell {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.bento-main {
  grid-column: span 7;
  grid-row: span 2;
  background: var(--surface);
}

.bento-main picture,
.bento-main picture img {
  width: 100%;
  height: 100%;
}

.bento-main img {
  object-fit: cover;
  transition: transform 750ms var(--ease), filter 750ms var(--ease);
}

.bento-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 14, 16, 0.94), rgba(5, 14, 16, 0.04) 58%);
}

.bento-main:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.bento-caption {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  gap: 0.25rem;
}

.bento-caption strong {
  font-size: clamp(1.6rem, 2.5vw, 2.45rem);
  letter-spacing: -0.04em;
}

.bento-caption span {
  max-width: 32ch;
  color: var(--muted-strong);
}

.bento-identity,
.bento-facts {
  grid-column: span 5;
  padding: clamp(1.8rem, 3.3vw, 3rem);
}

.bento-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(circle at 85% 10%, rgba(131, 215, 202, 0.12), transparent 18rem),
    var(--surface-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.bento-logo {
  width: min(100%, 28rem);
  margin-bottom: 1.35rem;
}

.bento-identity > p {
  max-width: 40ch;
  margin-bottom: 1rem;
  color: var(--muted-strong);
}

.bento-facts {
  display: grid;
  grid-template-columns: minmax(8rem, 0.85fr) minmax(0, 1.6fr);
  align-items: center;
  gap: 1.5rem;
  background: var(--accent);
  color: var(--bg-deep);
}

.fact-lead {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.bento-facts dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
}

.bento-facts dl div {
  padding: 0.9rem;
  border: 1px solid rgba(5, 14, 16, 0.2);
  border-radius: var(--radius-small);
  background: rgba(241, 245, 241, 0.15);
}

.bento-facts dt {
  font-size: 0.75rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bento-facts dd {
  margin: 0.12rem 0 0;
  font-family: "Geist Mono", monospace;
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 1;
}

.principle-band {
  position: relative;
  overflow: hidden;
  padding-block: 1.05rem;
  background: var(--accent);
  color: var(--bg-deep);
  transform: rotate(-1deg) scale(1.02);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: principle-marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding-right: 2.8rem;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  white-space: nowrap;
}

.marquee-track span::after {
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

@keyframes principle-marquee {
  to { transform: translateX(-50%); }
}

.craft-section {
  display: grid;
  grid-template-columns: minmax(17rem, 4fr) minmax(0, 8fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: clamp(10rem, 16vw, 15rem);
  padding-bottom: clamp(8rem, 13vw, 12rem);
}

.craft-copy {
  align-self: start;
  padding-top: 1rem;
}

@media (min-width: 53.8125rem) {
  .craft-copy {
    position: sticky;
    top: clamp(calc(var(--nav-height) + 2rem), 16vw, 13rem);
  }
}

.section-kicker {
  margin-bottom: 1.4rem;
  color: var(--accent);
  font-family: "Geist Mono", monospace;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.craft-copy h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 4.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.craft-copy > p:not(.section-kicker) {
  max-width: 33ch;
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.craft-list {
  min-width: 0;
}

.craft-frame {
  display: grid;
  align-content: center;
  min-height: 88vh;
  min-height: 88dvh;
  padding-block: 3.2rem;
  border-top: 1px solid var(--line);
}

.craft-frame:last-child {
  border-bottom: 1px solid var(--line);
}

.craft-frame picture {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.craft-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-frame > div {
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) minmax(0, 1fr);
  gap: 2rem;
  padding-top: 1.6rem;
}

.craft-frame strong {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.craft-frame p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
}

.pilot-section {
  padding-top: clamp(8rem, 13vw, 12rem);
  padding-bottom: clamp(10rem, 15vw, 14rem);
  background:
    radial-gradient(circle at 30% 10%, rgba(131, 215, 202, 0.08), transparent 28rem),
    var(--bg-deep);
}

.pilot-heading {
  display: block;
  margin-bottom: 4.5rem;
}

.pilot-heading h2 {
  max-width: 17ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.4vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.pilot-heading p {
  max-width: 48ch;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.pilot-accordion {
  display: flex;
  gap: 0.8rem;
  height: min(72vh, 48rem);
  height: min(72dvh, 48rem);
}

.pilot-slice {
  position: relative;
  flex: 0.72;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: var(--surface);
  background-position: 50% 22%;
  background-size: cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  isolation: isolate;
  transition: flex 700ms var(--ease), border-color 260ms ease, transform 260ms var(--ease);
}

.pilot-slice::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 14, 16, 0.96) 0%, rgba(5, 14, 16, 0.12) 62%);
  content: "";
}

.pilot-slice:hover {
  border-color: var(--line-strong);
  transform: translateY(-0.3rem);
}

.pilot-slice.is-active {
  flex: 3.2;
  border-color: var(--line-strong);
}

.pilot-najko { background-image: url("assets/characters/large/optimized/najko-large-800.webp"); }
.pilot-reina { background-image: url("assets/characters/large/optimized/reina-large-800.webp"); }
.pilot-dawn { background-image: url("assets/characters/large/optimized/dawn-large-800.webp"); }
.pilot-kael { background-image: url("assets/characters/large/optimized/kael-large-800.webp"); }
.pilot-umbra { background-image: url("assets/characters/large/optimized/umbra-large-800.webp"); }

.pilot-copy {
  position: absolute;
  right: 1.6rem;
  bottom: 1.7rem;
  left: 1.6rem;
  display: grid;
  gap: 0.15rem;
  text-align: left;
}

.pilot-copy strong {
  font-size: clamp(1.4rem, 2.4vw, 2.5rem);
  letter-spacing: -0.04em;
}

.pilot-copy span {
  max-width: 24ch;
  color: var(--muted-strong);
  opacity: 0;
  transform: translateY(0.55rem);
  transition: opacity 360ms ease 100ms, transform 460ms var(--ease) 100ms;
}

.pilot-slice.is-active .pilot-copy span {
  opacity: 1;
  transform: translateY(0);
}

.studio-action {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 88vh;
  min-height: 88dvh;
  overflow: hidden;
  background: var(--bg-deep);
}

.action-media,
.action-media img,
.action-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.action-media img {
  object-fit: cover;
  object-position: 62% center;
}

.action-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 14, 16, 0.96) 0%, rgba(5, 14, 16, 0.86) 38%, rgba(5, 14, 16, 0.26) 78%),
    linear-gradient(0deg, rgba(5, 14, 16, 0.72), transparent 45%);
}

.action-inner {
  position: relative;
  z-index: 2;
  padding-block: 7rem;
}

.action-inner h2 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 6.8vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.action-inner > p {
  max-width: 42ch;
  margin-bottom: 2rem;
  color: var(--muted-strong);
  font-size: 1.14rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(14rem, 1fr) auto;
  align-items: end;
  gap: 3rem;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
}

.site-footer > div p,
.site-footer > p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.8rem;
}

@media (max-width: 68rem) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1.5rem;
    display: grid;
    min-width: 15rem;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: rgba(8, 24, 26, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.6rem) scale(0.98);
    transform-origin: top right;
    transition: opacity 220ms ease, transform 300ms var(--ease);
  }

  .nav-links a {
    padding: 0.75rem 0.85rem;
    border-radius: 0.7rem;
  }

  .nav-links a:hover {
    background: var(--surface-strong);
  }

  .site-nav.is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-cta {
    margin-left: 1rem;
  }

  .project-intro,
  .pilot-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-intro > p,
  .pilot-heading p {
    max-width: 45ch;
  }

  .bento-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .fact-lead {
    max-width: none;
  }

  .craft-section {
    grid-template-columns: minmax(14rem, 0.75fr) minmax(0, 1.4fr);
    gap: 3.5rem;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.65fr);
  }

  .site-footer > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 53.75rem) {
  :root {
    --nav-height: 4rem;
    --radius: 1.3rem;
  }

  .page-shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .site-nav {
    padding-inline: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .studio-hero-media img {
    object-position: 66% center;
  }

  .studio-hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 14, 16, 0.94), rgba(4, 14, 16, 0.34)),
      linear-gradient(0deg, rgba(4, 14, 16, 0.96) 0%, rgba(4, 14, 16, 0.22) 65%);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .hero-brand-mark {
    width: min(15rem, 70vw);
    margin-bottom: 1.35rem;
  }

  .hero-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(3.45rem, 15vw, 5.8rem);
  }

  .hero-copy > p {
    max-width: 37ch;
  }

  .project-section {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }

  .studio-profile {
    padding-block: 7rem;
  }

  .studio-profile h2 {
    font-size: clamp(2.9rem, 12vw, 4.8rem);
  }

  .project-intro {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .project-intro h2,
  .pilot-heading h2 {
    font-size: clamp(2.8rem, 11vw, 4.4rem);
  }

  .project-bento {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 0;
  }

  .bento-main,
  .bento-identity,
  .bento-facts {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-main {
    min-height: 32rem;
  }

  .bento-identity,
  .bento-facts {
    min-height: 22rem;
  }

  .principle-band {
    transform: rotate(-1.2deg) scale(1.035);
  }

  .craft-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .craft-copy h2 {
    max-width: 13ch;
  }

  .craft-frame {
    min-height: 0;
    padding-block: 3rem;
  }

  .craft-frame > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
  }

  .pilot-section {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }

  .pilot-heading {
    gap: 1.4rem;
    margin-bottom: 2.8rem;
  }

  .pilot-accordion {
    width: 100%;
    height: auto;
    padding-inline: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .pilot-accordion::-webkit-scrollbar {
    display: none;
  }

  .pilot-slice,
  .pilot-slice.is-active {
    flex: 0 0 min(78vw, 28rem);
    height: 68vh;
    height: 68dvh;
    min-height: 31rem;
    scroll-snap-align: center;
  }

  .pilot-copy span {
    opacity: 1;
    transform: none;
  }

  .studio-action {
    min-height: 82vh;
    min-height: 82dvh;
  }

  .action-media img {
    object-position: 58% center;
  }

  .action-shade {
    background: linear-gradient(90deg, rgba(5, 14, 16, 0.94), rgba(5, 14, 16, 0.46));
  }

  .action-inner h2 {
    font-size: clamp(3.1rem, 13vw, 5.5rem);
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .site-footer > p {
    grid-column: auto;
  }
}

@media (max-width: 32rem) {
  .nav-brand span {
    font-size: 0.92rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .bento-main {
    min-height: 25rem;
  }

  .bento-caption {
    right: 1.35rem;
    bottom: 1.35rem;
    left: 1.35rem;
  }

  .bento-identity,
  .bento-facts {
    min-height: 0;
    padding: 1.5rem;
  }

  .action-inner h2 {
    max-width: 11ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    transform: none !important;
  }

  .marquee-track span:nth-child(n + 5) {
    display: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-nav,
  .button-secondary {
    background: var(--bg-deep);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
