@font-face {
  font-family: "Barlow Condensed";
  src: url("./assets/fonts/barlow-condensed-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("./assets/fonts/barlow-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("./assets/fonts/barlow-condensed-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-400-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --ink: #0c0d0f;
  --ink-soft: #17181b;
  --paper: #f1eee7;
  --paper-deep: #dcd6cb;
  --white: #fffdf8;
  --muted: #6d6a65;
  --red: #dc3d2f;
  --line-dark: #2d2e31;
  --line-light: #bdb7ad;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: minmax(220px, 1fr) auto;
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--white);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 0 28px;
  text-decoration: none;
}

.brand-symbol {
  width: 41px;
  height: auto;
  flex: 0 0 auto;
}

.brand-wordmark {
  width: 142px;
  height: auto;
  flex: 0 0 auto;
}

.site-nav {
  display: grid;
  grid-auto-flow: column;
  align-self: stretch;
}

.site-nav a {
  display: grid;
  min-width: 132px;
  place-items: center;
  padding: 0 20px;
  border-left: 1px solid var(--line-dark);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

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

#main-content {
  min-height: calc(100svh - var(--header-height));
  outline: none;
}

.eyebrow,
.door-count,
.section-index,
.interface-caption,
.product-number,
.product-kind,
.work-kind,
.playlist-number {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-stage {
  min-height: calc(100svh - var(--header-height));
  background: var(--ink);
  color: var(--white);
}

.home-intro {
  display: flex;
  min-height: 206px;
  align-items: center;
  justify-content: center;
  padding: 26px 24px;
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
}

.home-brand-title {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 22px);
  margin: 0;
}

.home-brand-title__symbol {
  width: min(24vw, 124px);
  height: auto;
  flex: 0 0 auto;
}

.home-brand-title__wordmark {
  width: min(58vw, 500px);
  height: auto;
  flex: 0 1 auto;
}

.home-doors {
  display: grid;
  min-height: calc(100svh - var(--header-height) - 206px);
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  transition: grid-template-columns 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-door {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-left: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.home-door:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: -7px;
}

.home-door--apps,
.home-door--frattura,
.home-door--jukebox {
  grid-template-rows: auto minmax(190px, 1fr);
}

.home-door--apps {
  border-left: 0;
}

.door-media {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-soft);
}

.door-media::after {
  position: absolute;
  inset: 0;
  background: rgb(12 13 15 / 16%);
  content: "";
  pointer-events: none;
}

.apps-preview {
  background: #111;
}

.apps-preview__scene {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.door-media--frattura img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.jukebox-preview {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 34%, rgb(44 139 188 / 24%), transparent 42%),
    linear-gradient(145deg, #07111c, #0d1f2c 58%, #071018);
}

.jukebox-preview__cover {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(118px, 43%, 205px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 24%);
  box-shadow: 0 22px 46px rgb(0 0 0 / 48%);
}

.jukebox-preview__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jukebox-preview__signal {
  position: absolute;
  inset: auto 8% 18%;
  display: flex;
  height: 44%;
  align-items: end;
  justify-content: space-between;
  gap: 4%;
  opacity: 0.56;
}

.jukebox-preview__signal i {
  display: block;
  width: 7%;
  height: 24%;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(#51d9ff, #0b7baf);
}

.jukebox-preview__signal i:nth-child(2),
.jukebox-preview__signal i:nth-child(8) {
  height: 50%;
}

.jukebox-preview__signal i:nth-child(3),
.jukebox-preview__signal i:nth-child(7) {
  height: 76%;
}

.jukebox-preview__signal i:nth-child(4),
.jukebox-preview__signal i:nth-child(6) {
  height: 42%;
}

.jukebox-preview__signal i:nth-child(5) {
  height: 94%;
}

.door-copy {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 2.4vw, 38px);
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.door-copy h2 {
  margin: 10px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(50px, 4.8vw, 78px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.home-door--frattura .door-copy h2,
.home-door--jukebox .door-copy h2 {
  font-size: clamp(40px, 3.2vw, 56px);
}

.door-copy p:last-of-type {
  max-width: 560px;
  margin: 14px 0 0;
  color: #cbc9c3;
  font-size: 16px;
  line-height: 1.55;
}

.door-action {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-door .door-action {
  display: block;
  width: fit-content;
  margin-left: auto;
}

@media (min-width: 1121px) and (hover: hover) {
  .home-doors:has(.home-door--apps:hover),
  .home-doors:has(.home-door--apps:focus-visible) {
    grid-template-columns: minmax(360px, 1.5fr) minmax(240px, 0.75fr) minmax(240px, 0.75fr);
  }

  .home-doors:has(.home-door--frattura:hover),
  .home-doors:has(.home-door--frattura:focus-visible) {
    grid-template-columns: minmax(240px, 0.75fr) minmax(360px, 1.5fr) minmax(240px, 0.75fr);
  }

  .home-doors:has(.home-door--jukebox:hover),
  .home-doors:has(.home-door--jukebox:focus-visible) {
    grid-template-columns: minmax(240px, 0.75fr) minmax(240px, 0.75fr) minmax(360px, 1.5fr);
  }
}

.view-shell {
  min-height: calc(100svh - var(--header-height));
  background: var(--paper);
}

.section-head {
  display: grid;
  min-height: 280px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  align-items: end;
  gap: 44px;
  padding: clamp(42px, 5vw, 78px);
  border-bottom: 1px solid var(--line-light);
  background: var(--paper);
}

.section-head h1 {
  margin: 10px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(72px, 8vw, 118px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-transform: uppercase;
}

.section-head > p:last-child {
  max-width: 520px;
  margin: 0;
  color: #393a3d;
  font-size: 18px;
}

.product-stories {
  border-top: 1px solid var(--line-light);
}

.product-story {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  border-bottom: 1px solid var(--line-light);
  background: var(--paper);
}

.product-story--reverse {
  grid-template-columns: minmax(340px, 480px) minmax(0, 1fr);
}

.product-story--reverse .product-story__media {
  order: -1;
}

.product-story__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px);
  border-top: 5px solid var(--product-accent);
  background: var(--paper);
}

.product-story__head {
  display: flex;
  align-items: center;
  gap: 22px;
}

.product-story__head .product-number {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid var(--ink);
}

.product-titleline {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.product-mark {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  object-fit: contain;
}

.product-mark--sensei {
  width: 54px;
  height: 68px;
  flex-basis: 54px;
}

.product-mark--speso {
  width: 72px;
  height: 72px;
  flex-basis: 72px;
}

.product-story h2 {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.product-titleline h2 {
  font-size: clamp(54px, 5vw, 76px);
}

.product-description {
  max-width: 720px;
  margin: 28px 0 0;
  color: #313236;
  font-size: 18px;
  line-height: 1.65;
}

.product-facts {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.product-facts li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--line-light);
  font-size: 14px;
  font-weight: 700;
}

.product-facts li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--product-accent);
  content: "";
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 34px;
  padding: 10px 0;
  border-bottom: 2px solid var(--product-accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-link:hover,
.product-link:focus-visible {
  color: var(--product-accent);
  outline: 0;
}

.product-story__media {
  display: grid;
  min-width: 0;
  min-height: 0;
  align-self: center;
  place-items: center;
  margin: clamp(30px, 3.4vw, 52px);
  padding: 14px;
  overflow: visible;
  border: 1px solid var(--line-light);
  background: var(--ink);
}

.product-story__media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.fracture-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.45fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
  padding: clamp(24px, 3.2vw, 52px);
  background: var(--ink);
  color: var(--white);
}

.fracture-visual {
  position: relative;
  width: 100%;
  max-width: 1120px;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.fracture-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.fracture-titleband {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: end;
  gap: 30px;
  padding: clamp(26px, 3vw, 50px) 0 clamp(26px, 3vw, 50px) clamp(28px, 3vw, 50px);
  border-left: 1px solid var(--line-dark);
}

.fracture-titleband h1 {
  margin: 10px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(68px, 6vw, 98px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-transform: uppercase;
}

.fracture-titleband > p:last-child {
  max-width: 430px;
  margin: 0;
  color: #cbc9c3;
  font-size: 18px;
}

.fracture-works {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
}

.work {
  min-height: 440px;
  padding: clamp(38px, 6vw, 86px);
}

.work--novel {
  border-right: 1px solid var(--line-light);
  background: var(--paper);
}

.work--game {
  background: var(--ink-soft);
  color: var(--white);
}

.work h2 {
  max-width: 680px;
  margin: 80px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.work p:last-child {
  max-width: 660px;
  margin: 28px 0 0;
  color: inherit;
  font-size: 17px;
  line-height: 1.6;
}

.work--game .work-kind {
  color: var(--red);
}

.jukebox-head {
  display: grid;
  min-height: 280px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  align-items: end;
  gap: 44px;
  padding: clamp(42px, 5vw, 78px);
  background: var(--ink);
  color: var(--white);
}

.jukebox-head h1 {
  margin: 10px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(72px, 8vw, 118px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-transform: uppercase;
}

.jukebox-head > p:last-child {
  max-width: 520px;
  margin: 0;
  color: #cbc9c3;
  font-size: 18px;
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line-dark);
}

.playlist-card {
  display: grid;
  min-width: 0;
  min-height: 156px;
  grid-template-columns: 156px minmax(0, 1fr);
  background: var(--paper);
  transition: background-color 180ms ease;
}

.playlist-card:hover {
  background: #fffdf8;
}

.playlist-card img {
  width: 156px;
  height: 156px;
  object-fit: contain;
}

.playlist-meta {
  display: grid;
  min-width: 0;
  min-height: 156px;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: center;
  gap: 12px;
  padding: 20px;
  border-left: 1px solid var(--line-light);
}

.playlist-name {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1;
}

.playlist-genre {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.route-enter {
  animation: route-in 240ms ease-out both;
}

.noscript {
  padding: 30px;
  background: var(--red);
  color: var(--white);
}

.site-footer {
  display: grid;
  min-height: 150px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  padding: 36px 42px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--white);
}

.site-footer__brand {
  display: block;
  width: fit-content;
  text-decoration: none;
}

.site-footer__brand img {
  display: block;
  width: 160px;
  height: auto;
}

.site-footer p {
  margin: 6px 0 0;
  color: #b8b7b3;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 26px;
}

.site-footer nav a {
  border-bottom: 1px solid currentColor;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--red);
  outline: 0;
}

.project-page {
  min-height: calc(100svh - var(--header-height));
  background: var(--paper);
}

.project-page__hero {
  display: grid;
  min-height: 360px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 80px;
  padding: clamp(56px, 7vw, 110px) clamp(28px, 6vw, 88px);
  border-bottom: 1px solid var(--line-light);
}

.project-page__hero h1 {
  margin: 10px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.8;
  text-transform: uppercase;
}

.project-page__hero > p:last-child {
  max-width: 520px;
  margin: 0;
  font-size: 18px;
}

.project-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-page__grid section {
  min-height: 360px;
  padding: clamp(38px, 5vw, 72px);
  border-right: 1px solid var(--line-light);
}

.project-page__grid section:last-child {
  border-right: 0;
}

.project-page__grid h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.project-page__grid p,
.project-page__grid li {
  font-size: 16px;
  line-height: 1.65;
}

.project-page__grid ul {
  margin: 28px 0 0;
  padding-left: 20px;
}

@keyframes route-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .home-doors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .door-copy h2,
  .home-door--frattura .door-copy h2,
  .home-door--jukebox .door-copy h2 {
    font-size: clamp(42px, 5vw, 62px);
  }

  .product-story {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  }

  .product-story--reverse {
    grid-template-columns: minmax(300px, 400px) minmax(0, 1fr);
  }

  .product-story__copy {
    padding: clamp(42px, 5vw, 68px);
  }

  .product-story__media {
    margin: 32px;
  }

  .playlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 66px;
  }

  .brand {
    padding: 0 18px;
  }

  .site-nav a {
    min-width: 104px;
    padding: 0 14px;
  }

  .home-stage {
    min-height: calc(100svh - var(--header-height));
  }

  .home-intro {
    min-height: 206px;
  }

  .home-doors {
    min-height: calc(100svh - var(--header-height) - 206px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .home-door--apps {
    grid-column: auto;
    grid-row: auto;
  }

  .home-door--frattura,
  .home-door--jukebox {
    grid-row: auto;
  }

  .door-copy,
  .home-door--frattura .door-copy,
  .home-door--jukebox .door-copy {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .section-head,
  .jukebox-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fracture-hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px;
  }

  .fracture-titleband {
    gap: 24px;
    padding: 34px 0 16px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .product-story,
  .product-story--reverse {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-story__copy,
  .product-story--reverse .product-story__copy {
    order: 1;
  }

  .product-story__media,
  .product-story--reverse .product-story__media {
    min-height: 0;
    order: 2;
    margin: 0 36px 36px;
    padding: 12px;
  }

  .product-story__media img {
    max-height: 280px;
  }

  .fracture-works {
    grid-template-columns: 1fr;
  }

  .work--novel {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .playlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .playlist-card {
    min-height: 118px;
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .playlist-card img {
    width: 118px;
    height: 118px;
  }

  .playlist-meta {
    min-height: 118px;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 8px;
    padding: 14px 12px;
  }

  .playlist-meta > div {
    min-width: 0;
  }

  .playlist-name {
    overflow-wrap: anywhere;
  }

  .project-page__hero {
    min-height: 300px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-page__grid {
    grid-template-columns: 1fr;
  }

  .project-page__grid section {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: auto;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    min-height: 58px;
  }

  .brand-symbol {
    width: 36px;
  }

  .brand-wordmark {
    width: 126px;
  }

  .site-nav {
    min-height: 50px;
    border-top: 1px solid var(--line-dark);
  }

  .site-nav a {
    min-width: 0;
    padding: 0 10px;
    border-left: 0;
    border-right: 1px solid var(--line-dark);
    font-size: 15px;
  }

  .site-nav a:last-child {
    border-right: 0;
  }

  #main-content,
  .view-shell {
    min-height: 0;
  }

  .home-stage {
    display: block;
    min-height: 0;
  }

  .home-intro {
    min-height: 150px;
    padding: 22px 16px;
  }

  .home-brand-title {
    gap: 8px;
  }

  .home-doors {
    display: block;
    min-height: 0;
  }

  .home-door {
    min-height: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .home-door--apps,
  .home-door--frattura,
  .home-door--jukebox {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .door-copy {
    padding: 28px 22px 32px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .door-copy h2,
  .home-door--frattura .door-copy h2,
  .home-door--jukebox .door-copy h2 {
    font-size: 52px;
  }

  .door-copy p:last-of-type {
    font-size: 16px;
  }

  .section-head,
  .jukebox-head {
    min-height: 260px;
    padding: 38px 22px;
  }

  .section-head h1,
  .jukebox-head h1 {
    font-size: clamp(68px, 22vw, 94px);
  }

  .section-head > p:last-child,
  .jukebox-head > p:last-child {
    font-size: 16px;
  }

  .product-story__copy {
    padding: 38px 22px;
  }

  .product-titleline {
    display: block;
  }

  .product-mark,
  .product-mark--speso {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    margin-bottom: 18px;
  }

  .product-mark--sensei {
    width: 38px;
    height: 50px;
    flex-basis: 38px;
  }

  .product-story h2 {
    font-size: clamp(52px, 16vw, 70px);
  }

  .product-description {
    font-size: 16px;
  }

  .product-facts li {
    font-size: 13px;
  }

  .product-story__media,
  .product-story--reverse .product-story__media {
    min-height: 0;
    margin: 0 22px 28px;
    padding: 10px;
  }

  .product-story__media img {
    max-height: 250px;
  }

  .fracture-visual {
    min-height: 0;
  }

  .fracture-titleband {
    padding: 32px 0 12px;
  }

  .fracture-titleband h1 {
    font-size: clamp(68px, 21vw, 90px);
  }

  .fracture-titleband > p:last-child {
    font-size: 16px;
  }

  .work {
    min-height: 360px;
    padding: 38px 22px;
  }

  .work h2 {
    margin-top: 64px;
    font-size: clamp(46px, 14vw, 62px);
  }

  .playlist-meta {
    min-height: 96px;
  }

  .playlist-name {
    font-size: clamp(22px, 7vw, 28px);
  }

  .playlist-genre {
    font-size: 12px;
  }

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

  .playlist-card {
    min-height: 96px;
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .playlist-card img {
    width: 96px;
    height: 96px;
  }

  .site-footer {
    min-height: 180px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    padding: 32px 22px;
  }

  .site-footer nav {
    justify-content: space-between;
  }

  .project-page__hero {
    padding: 44px 22px;
  }

  .project-page__hero h1 {
    font-size: clamp(66px, 21vw, 88px);
  }

  .project-page__hero > p:last-child {
    font-size: 16px;
  }

  .project-page__grid section {
    padding: 42px 22px;
  }
}

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

  .route-enter {
    animation: none;
  }

  .apps-preview__scene,
  .product-story__media img {
    transition: none;
  }

  .home-doors {
    transition: none;
  }
}

@media (min-width: 1600px) {
  .playlist-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
