@import url("https://api.fontshare.com/v2/css?f[]=array@400,600&f[]=satoshi@400,500,700&display=swap");

:root {
  --asphalt: #171817;
  --black: #090a09;
  --ticket: #e9e5db;
  --ticket-soft: #f2eee5;
  --amber: #d29a51;
  --ice: #b9ced0;
  --signal: #9e3438;
  --grey: #777a76;
  --line-dark: rgba(233, 229, 219, 0.24);
  --line-paper: rgba(23, 24, 23, 0.24);
  --display: "Array", "Arial Narrow", sans-serif;
  --body: "Satoshi", "Noto Sans KR", Arial, sans-serif;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ticket);
  background: var(--asphalt);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

body.theme-paper {
  color: var(--asphalt);
  background: var(--ticket);
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input {
  color: inherit;
  font: inherit;
  border: 0;
  border-radius: 0;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.88;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--ticket);
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  height: var(--header-height);
  padding: 0 28px;
  color: var(--ticket);
  background: rgba(9, 10, 9, 0.94);
  border-bottom: 1px solid var(--line-dark);
}

.site-header--overlay {
  position: absolute;
  width: 100%;
  background: rgba(9, 10, 9, 0.54);
}

.site-header--paper {
  color: var(--asphalt);
  background: rgba(233, 229, 219, 0.96);
  border-color: var(--line-paper);
}

.wordmark {
  justify-self: start;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a,
.text-button {
  font-size: 11px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  padding: 23px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 18px;
}

.text-button,
.icon-button {
  padding: 0;
  background: transparent;
}

.menu-trigger {
  display: none;
  width: 34px;
  height: 34px;
}

.menu-trigger span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  align-content: start;
  padding: 28px;
  color: var(--ticket);
  background: var(--black);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu .menu-close {
  justify-self: end;
  color: var(--ticket);
  font-size: 34px;
  line-height: 1;
}

.mobile-menu .micro-label {
  margin: 70px 0 22px;
  color: var(--ice);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 18px 0;
  font-family: var(--display);
  font-size: 34px;
  border-top: 1px solid var(--line-dark);
}

.micro-label,
.section-index {
  margin-bottom: 15px;
  font-size: 11px;
  font-weight: 500;
}

.section-index--red {
  color: var(--signal);
}

.line-link,
.solid-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 700;
}

.line-link {
  border-bottom: 1px solid currentColor;
}

.line-link span,
.solid-link span {
  font-size: 16px;
}

.solid-link {
  padding: 14px 16px;
  color: var(--ticket);
  background: var(--asphalt);
}

.line-link--light {
  color: var(--ticket);
}

.home-hero {
  position: relative;
  height: 92svh;
  min-height: 660px;
  max-height: 900px;
  overflow: hidden;
  background: var(--black);
}

.home-hero__media,
.home-hero__media img {
  width: 100%;
  height: 100%;
}

.home-hero__media img {
  object-fit: cover;
  object-position: center;
}

.home-hero__shade {
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  background: rgba(0, 0, 0, 0.54);
}

.home-hero__copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(28px, 6%, 92px);
  width: min(560px, 42vw);
  transform: translateY(-47%);
}

.home-hero__copy h1 {
  margin-bottom: 14px;
  font-size: 104px;
}

.hero-edition {
  margin-bottom: 31px;
  font-family: var(--display);
  font-size: 29px;
}

.hero-edition span {
  color: var(--signal);
}

.hero-proposition {
  color: var(--ice);
  font-size: 13px;
}

.home-hero__copy .line-link {
  margin-top: 20px;
}

.timecode-rail {
  position: absolute;
  z-index: 3;
  top: 92px;
  right: 0;
  bottom: 28px;
  display: grid;
  grid-template-columns: 18px 150px;
  width: 196px;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.7);
  border-left: 1px solid var(--line-dark);
}

.rail-line {
  position: relative;
  display: block;
  width: 1px;
  height: calc(100% - 25px);
  margin: 0 auto;
  background: var(--ticket);
}

.rail-line::after {
  position: absolute;
  right: -3px;
  bottom: -1px;
  content: "";
  border-top: 7px solid var(--ticket);
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
}

.rail-line i {
  position: absolute;
  top: 8%;
  left: -3px;
  width: 7px;
  height: 7px;
  background: var(--signal);
}

.timecode-rail ol {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 68%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timecode-rail li {
  display: grid;
  gap: 4px;
  font-size: 9px;
}

.timecode-rail li b {
  font-family: var(--display);
  font-size: 14px;
}

.timecode-rail > a {
  position: absolute;
  right: 16px;
  bottom: 0;
  font-size: 9px;
}

.light-state {
  display: grid;
  grid-template-columns: minmax(250px, 24%) 1fr;
  min-height: 660px;
  color: var(--asphalt);
  background: var(--ticket);
}

.light-state__panel {
  display: flex;
  flex-direction: column;
  padding: 54px 34px 42px;
  border-right: 1px solid var(--line-paper);
}

.light-state__panel h2 {
  margin-bottom: 34px;
  font-size: 65px;
}

.segmented {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--asphalt);
}

.segmented button {
  flex: 1;
  padding: 10px 12px;
  color: var(--asphalt);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  border-right: 1px solid var(--asphalt);
}

.segmented button:last-child {
  border-right: 0;
}

.segmented button.is-active {
  color: var(--ticket);
  background: var(--asphalt);
}

.section-note {
  margin: auto 0 0;
  font-size: 11px;
}

.light-state__stage {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--asphalt);
}

.light-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 260ms ease;
}

.light-image.is-active {
  opacity: 1;
}

.state-stamp {
  position: absolute;
  right: 26px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  min-width: 175px;
  padding: 13px;
  color: var(--ticket);
  background: rgba(9, 10, 9, 0.82);
  border-left: 3px solid var(--signal);
  font-size: 9px;
}

.state-stamp b {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 400;
}

.relay-sequence {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 520px;
  color: var(--asphalt);
  background: var(--ticket);
  border-top: 1px solid var(--line-paper);
  border-bottom: 1px solid var(--line-paper);
}

.paper-heading {
  display: flex;
  flex-direction: column;
  padding: 46px 30px 36px;
  border-right: 1px solid var(--line-paper);
}

.paper-heading h2 {
  margin-bottom: 28px;
  font-size: 57px;
}

.paper-heading > p:not(.section-index) {
  font-size: 11px;
}

.paper-heading .line-link {
  margin-top: auto;
}

.relay-sequence__visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
}

.relay-sequence__visual > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sequence-key {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-paper);
}

.sequence-key li {
  display: flex;
  gap: 8px;
  padding: 13px 16px;
  font-size: 10px;
  border-right: 1px solid var(--line-paper);
}

.sequence-key li:last-child {
  border-right: 0;
}

.sequence-key b {
  color: var(--signal);
}

.second-shift {
  display: grid;
  grid-template-columns: 250px repeat(4, minmax(0, 1fr));
  min-height: 700px;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
}

.second-shift__intro {
  display: flex;
  flex-direction: column;
  padding: 46px 28px;
  border-right: 1px solid var(--line-dark);
}

.second-shift__intro h2 {
  margin-bottom: 26px;
  font-size: 56px;
}

.second-shift__intro > p:not(.section-index) {
  color: var(--grey);
  font-size: 11px;
}

.second-shift__intro ol {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  font-size: 10px;
}

.second-shift__intro li span {
  display: inline-block;
  width: 24px;
  color: var(--signal);
}

.look-panel {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
}

.look-panel:last-child {
  border-right: 0;
}

.look-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.look-panel:hover img {
  transform: scale(1.02);
}

.look-panel span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 10px;
  background: rgba(9, 10, 9, 0.78);
  font-size: 9px;
}

.look-panel--one {
  height: 580px;
  margin-top: 90px;
}

.look-panel--two {
  height: 650px;
  margin-top: 18px;
}

.look-panel--three {
  height: 560px;
  margin-top: 120px;
}

.look-panel--four {
  height: 635px;
  margin-top: 42px;
}

.textile-details {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 430px;
  background: var(--black);
}

.textile-details__copy {
  padding: 42px 28px;
  border-right: 1px solid var(--line-dark);
}

.textile-details__copy h2 {
  margin-bottom: 32px;
  font-size: 54px;
}

.textile-details__copy ul {
  margin: 0;
  padding: 0;
  color: var(--grey);
  list-style: none;
  font-size: 10px;
}

.textile-details__media,
.textile-details__media img {
  width: 100%;
  height: 100%;
}

.textile-details__media img {
  object-fit: cover;
}

.venue-exit {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 500px;
  color: var(--asphalt);
  background: var(--ticket);
}

.venue-exit__copy {
  display: flex;
  flex-direction: column;
  padding: 45px 30px 36px;
  border-right: 1px solid var(--line-paper);
}

.venue-exit__copy h2 {
  margin-bottom: 30px;
  font-size: 60px;
}

.venue-exit__copy > p:not(.section-index) {
  font-size: 11px;
}

.venue-exit__copy .line-link {
  margin-top: auto;
}

.venue-exit > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-notice {
  display: grid;
  grid-template-columns: 260px 1fr 1.4fr;
  align-items: end;
  gap: 36px;
  min-height: 280px;
  padding: 40px 30px;
  color: var(--asphalt);
  background: var(--ticket);
  border-top: 1px solid var(--line-paper);
}

.after-notice h2 {
  margin-bottom: 0;
  font-size: 58px;
}

.after-notice > p {
  margin-bottom: 0;
  font-size: 13px;
}

.notice-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
}

.notice-form > div {
  display: grid;
  grid-template-columns: 1fr 150px;
  border-bottom: 1px solid var(--asphalt);
}

.notice-form input {
  min-width: 0;
  padding: 13px 0;
  color: var(--asphalt);
  background: transparent;
}

.notice-form button {
  color: var(--ticket);
  background: var(--asphalt);
  font-size: 10px;
}

.notice-form button span {
  margin-left: 8px;
  color: var(--signal);
}

.form-status {
  min-height: 18px;
  margin: 8px 0 0;
  font-size: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  min-height: 160px;
  padding: 24px 30px;
  color: var(--ticket);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand b {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.footer-brand span {
  font-size: 9px;
}

.site-footer nav {
  display: grid;
  gap: 6px;
  font-size: 9px;
}

.footer-timetable {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0 30px;
  padding-top: 28px;
}

.footer-timetable a {
  display: grid;
  gap: 4px;
  font-size: 8px;
}

.footer-timetable a b {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 400;
}

.footer-track {
  position: absolute;
  top: 6px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--grey);
}

.footer-track i {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  background: var(--ticket);
}

.footer-track i:nth-child(1) { left: 0; }
.footer-track i:nth-child(2) { left: 33%; }
.footer-track i:nth-child(3) { left: 66%; }
.footer-track i:nth-child(4) { right: 0; background: var(--signal); }

.bag-drawer {
  position: fixed;
  z-index: 240;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(430px, 100%);
  height: 100dvh;
  padding: 24px;
  color: var(--asphalt);
  background: var(--ticket);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.bag-drawer.is-open {
  transform: translateX(0);
}

.bag-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-paper);
}

.bag-drawer__head h2 {
  margin: 0;
  font-size: 32px;
}

.bag-close {
  color: var(--asphalt);
  font-size: 30px;
}

.bag-empty {
  display: grid;
  place-content: center;
  height: 100%;
  text-align: center;
}

.bag-empty p,
.bag-empty a {
  font-size: 12px;
}

.bag-item {
  grid-template-columns: 120px 1fr;
  gap: 18px;
  margin-top: 24px;
}

.bag-item:not([hidden]) {
  display: grid;
}

.bag-item img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--ticket-soft);
}

.bag-item div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.bag-item b {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.bag-item span,
.bag-item button {
  font-size: 10px;
}

.bag-item i {
  font-style: normal;
}

.bag-item button {
  justify-self: start;
  padding: 8px 0;
  color: var(--signal);
  background: transparent;
  border-bottom: 1px solid currentColor;
}

.drawer-scrim {
  position: fixed;
  z-index: 230;
  inset: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.drawer-scrim.is-visible {
  visibility: visible;
  opacity: 1;
}

/* Night Index */

.index-hero {
  position: relative;
  height: 76svh;
  min-height: 610px;
  max-height: 820px;
  overflow: hidden;
  background: var(--black);
}

.index-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.index-hero::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  content: "";
  background: rgba(0, 0, 0, 0.58);
}

.index-hero__copy {
  position: absolute;
  z-index: 2;
  bottom: 60px;
  left: 30px;
}

.index-hero__copy h1 {
  margin-bottom: 22px;
  font-size: 90px;
}

.index-hero__copy > p:last-child {
  color: var(--ice);
  font-size: 11px;
}

.index-hero__down {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  font-size: 9px;
}

.time-filter {
  position: sticky;
  z-index: 60;
  top: var(--header-height);
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: stretch;
  min-height: 78px;
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.time-filter > div:first-child {
  display: grid;
  align-content: center;
  padding: 12px 24px;
  border-right: 1px solid var(--line-dark);
}

.time-filter > div:first-child span {
  font-size: 8px;
}

.time-filter > div:first-child b {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
}

.time-filter__buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.time-filter__buttons button {
  color: var(--ticket);
  background: transparent;
  font-family: var(--display);
  font-size: 16px;
  border-right: 1px solid var(--line-dark);
}

.time-filter__buttons button:last-child {
  border-right: 0;
}

.time-filter__buttons button.is-active {
  color: var(--asphalt);
  background: var(--ice);
}

.time-zones {
  background: var(--black);
}

.time-zone {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 250px;
  min-height: 680px;
  border-bottom: 1px solid var(--line-dark);
}

.time-zone[hidden] {
  display: none;
}

.time-zone__stamp {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  border-right: 1px solid var(--line-dark);
}

.time-zone__stamp span {
  color: var(--signal);
  font-size: 9px;
}

.time-zone__stamp strong {
  margin: 15px 0 24px;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 400;
}

.time-zone__stamp p {
  margin: auto 0 0;
  color: var(--grey);
  font-size: 10px;
}

.time-zone__media {
  position: relative;
  overflow: hidden;
  background: var(--ticket);
}

.time-zone__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 320ms ease;
}

a.time-zone__media:hover img {
  transform: scale(1.015);
}

.time-zone__media span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 11px;
  color: var(--ticket);
  background: var(--asphalt);
  font-size: 9px;
}

.time-zone__note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  border-left: 1px solid var(--line-dark);
}

.time-zone__note b {
  color: var(--amber);
  font-size: 10px;
}

.time-zone__note p {
  margin: 14px 0 0;
  color: var(--grey);
  font-size: 12px;
}

.time-zone--0040 {
  grid-template-columns: 250px minmax(0, 0.78fr) minmax(250px, 0.42fr);
  min-height: 760px;
}

.time-zone--0040 .time-zone__stamp {
  order: 3;
  border-right: 0;
  border-left: 1px solid var(--line-dark);
}

.time-zone--0040 .time-zone__media {
  order: 1;
}

.time-zone--0040 .time-zone__note {
  order: 2;
  justify-content: center;
  border-left: 1px solid var(--line-dark);
}

.time-zone--0215 {
  grid-template-columns: 190px minmax(0, 0.72fr) minmax(280px, 0.5fr);
  min-height: 640px;
}

.time-zone--0420 {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.78fr) 190px;
  min-height: 780px;
}

.time-zone--0420 .time-zone__stamp {
  order: 3;
  border-right: 0;
  border-left: 1px solid var(--line-dark);
}

.time-zone--0420 .time-zone__media {
  order: 2;
}

.time-zone--0420 .time-zone__note {
  order: 1;
  justify-content: center;
  border: 0;
  border-right: 1px solid var(--line-dark);
}

.set-list {
  padding: 42px 28px 30px;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
}

.set-list__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.set-list__head h2 {
  margin-bottom: 0;
  font-size: 58px;
}

.set-list__head > p {
  color: var(--grey);
  font-size: 10px;
}

.set-list > img {
  aspect-ratio: 11 / 5;
  object-fit: cover;
}

.relay-route {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1fr auto;
  align-items: end;
  gap: 30px;
  min-height: 290px;
  padding: 38px 28px;
  color: var(--asphalt);
  background: var(--ice);
}

.relay-route h2 {
  margin-bottom: 0;
  font-size: 70px;
}

.relay-route > p:not(.micro-label) {
  margin-bottom: 8px;
  font-size: 12px;
}

.site-footer--simple > p {
  margin: 0;
  text-align: center;
  font-family: var(--display);
  font-size: 16px;
}

/* Product */

.product-stage {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(450px, 1.55fr) minmax(280px, 0.72fr);
  min-height: 780px;
  background: var(--ticket);
  border-bottom: 1px solid var(--line-paper);
}

.product-title {
  display: flex;
  flex-direction: column;
  padding: 36px 26px;
  border-right: 1px solid var(--line-paper);
}

.product-title h1 {
  margin-bottom: 32px;
  font-size: 72px;
}

.product-title > p:last-child {
  margin-top: auto;
  font-size: 12px;
}

.product-view {
  position: relative;
  min-width: 0;
  padding: 28px 26px 76px;
  background: var(--ticket-soft);
}

.product-view__images {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-view__images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-view__images img.is-active {
  opacity: 1;
}

.product-view__toggle {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 180px;
}

.segmented--ink {
  border-color: var(--asphalt);
}

.door-list {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  border-left: 1px solid var(--line-paper);
}

.door-list__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--asphalt);
}

.door-list__head span {
  font-size: 9px;
}

.door-list__head b {
  color: var(--signal);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}

.door-list dl {
  margin: 0;
}

.door-list dl > div {
  display: grid;
  grid-template-columns: 42% 58%;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-paper);
}

.door-list dt,
.door-list dd {
  margin: 0;
  font-size: 9px;
}

.door-list dd {
  font-weight: 700;
}

.size-selector {
  margin: auto 0 16px;
  padding: 0;
  border: 0;
}

.size-selector legend {
  margin-bottom: 8px;
  font-size: 9px;
}

.size-selector > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--asphalt);
  border-left: 1px solid var(--asphalt);
}

.size-selector button {
  aspect-ratio: 1;
  color: var(--asphalt);
  background: transparent;
  font-size: 9px;
  border-right: 1px solid var(--asphalt);
  border-bottom: 1px solid var(--asphalt);
}

.size-selector button.is-active {
  color: var(--ticket);
  background: var(--asphalt);
}

.add-bag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: var(--ticket);
  background: var(--asphalt);
  font-size: 10px;
  font-weight: 700;
}

.add-bag span {
  font-size: 16px;
}

.selection-status {
  min-height: 15px;
  margin: 8px 0 0;
  color: var(--grey);
  font-size: 9px;
}

.zip-route {
  padding: 42px 28px 30px;
  color: var(--ticket);
  background: var(--black);
}

.zip-route__head {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: end;
  margin-bottom: 24px;
}

.zip-route__head h2 {
  margin-bottom: 0;
  font-size: 58px;
}

.zip-route__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.zip-route__tabs button {
  min-height: 52px;
  color: var(--ticket);
  background: transparent;
  font-size: 10px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.zip-route__tabs button.is-active {
  color: var(--asphalt);
  background: var(--ice);
}

.zip-route__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 11 / 6;
}

.zip-route__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zip-route__focus {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 25%;
  border: 3px solid var(--signal);
  pointer-events: none;
  transition: transform 220ms ease;
}

.zip-route[data-zip-route="body"] .zip-route__focus { transform: translateX(100%); }
.zip-route[data-zip-route="pocket"] .zip-route__focus { transform: translateX(200%); }
.zip-route[data-zip-route="hem"] .zip-route__focus { transform: translateX(300%); }

.zip-route__copy {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  padding: 18px 0 0;
}

.zip-route__copy b {
  color: var(--amber);
  font-size: 10px;
}

.zip-route__copy p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--grey);
  font-size: 12px;
}

.worn-state {
  position: relative;
  min-height: 700px;
  color: var(--ticket);
  background: var(--asphalt);
}

.worn-state > img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.worn-state__copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(410px, calc(100% - 56px));
  padding: 25px;
  background: rgba(9, 10, 9, 0.84);
  border-left: 3px solid var(--signal);
}

.worn-state__copy h2 {
  margin-bottom: 22px;
  font-size: 58px;
}

.worn-state__copy > p:last-child {
  margin-bottom: 0;
  color: var(--ice);
  font-size: 11px;
}

.product-notes {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 390px;
  color: var(--asphalt);
  background: var(--ticket);
}

.product-notes__intro {
  padding: 42px 28px;
  border-right: 1px solid var(--line-paper);
}

.product-notes__intro h2 {
  margin-bottom: 0;
  font-size: 60px;
}

.disclosures {
  padding: 42px 28px;
}

.disclosures details {
  border-top: 1px solid var(--line-paper);
}

.disclosures details:last-child {
  border-bottom: 1px solid var(--line-paper);
}

.disclosures summary {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  list-style: none;
}

.disclosures summary::-webkit-details-marker {
  display: none;
}

.disclosures details[open] summary span {
  transform: rotate(45deg);
}

.disclosures summary span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.disclosures details p {
  max-width: 680px;
  padding: 0 0 20px;
  color: #4d4f4c;
  font-size: 12px;
}

.related-product {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  min-height: 620px;
  color: var(--asphalt);
  background: var(--ticket-soft);
  border-top: 1px solid var(--line-paper);
}

.related-product__copy {
  display: flex;
  flex-direction: column;
  padding: 46px 28px;
  border-right: 1px solid var(--line-paper);
}

.related-product__copy h2 {
  margin-bottom: 30px;
  font-size: 64px;
}

.related-product__copy > p:not(.section-index) {
  font-size: 12px;
}

.related-product__copy .line-link {
  margin-top: auto;
}

.related-product > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer--paper {
  color: var(--asphalt);
  background: var(--ticket);
  border-color: var(--line-paper);
}

.site-footer--paper > p {
  margin: 0;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(150px, 1fr) auto minmax(120px, 1fr);
    padding: 0 20px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .home-hero__copy h1 {
    font-size: 82px;
  }

  .timecode-rail {
    width: 174px;
  }

  .second-shift {
    grid-template-columns: 210px repeat(4, minmax(0, 1fr));
  }

  .second-shift__intro {
    padding: 38px 20px;
  }

  .second-shift__intro h2 {
    font-size: 47px;
  }

  .look-panel--one { height: 520px; }
  .look-panel--two { height: 590px; }
  .look-panel--three { height: 510px; }
  .look-panel--four { height: 570px; }

  .product-stage {
    grid-template-columns: 210px minmax(390px, 1fr) 270px;
  }

  .product-title h1 {
    font-size: 50px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-trigger {
    display: block;
  }

  .header-actions {
    grid-column: 2;
  }

  .home-hero__copy {
    width: 54vw;
  }

  .home-hero__copy h1 {
    font-size: 68px;
  }

  .timecode-rail {
    width: 154px;
  }

  .light-state {
    grid-template-columns: 220px 1fr;
  }

  .light-state__panel h2 {
    font-size: 52px;
  }

  .relay-sequence {
    grid-template-columns: 220px 1fr;
  }

  .paper-heading h2 {
    font-size: 48px;
  }

  .second-shift {
    grid-template-columns: repeat(2, 1fr);
    min-height: 0;
  }

  .second-shift__intro {
    min-height: 460px;
  }

  .look-panel,
  .look-panel--one,
  .look-panel--two,
  .look-panel--three,
  .look-panel--four {
    height: 560px;
    margin-top: 0;
  }

  .textile-details,
  .venue-exit {
    grid-template-columns: 220px 1fr;
  }

  .textile-details__copy h2 {
    font-size: 42px;
  }

  .after-notice {
    grid-template-columns: 220px 1fr;
  }

  .notice-form {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 160px 1fr;
    gap: 24px;
  }

  .site-footer > nav {
    display: none;
  }

  .footer-timetable {
    margin: 0;
  }

  .time-zone,
  .time-zone--0040,
  .time-zone--0215,
  .time-zone--0420 {
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 650px;
  }

  .time-zone__stamp,
  .time-zone--0040 .time-zone__stamp,
  .time-zone--0420 .time-zone__stamp {
    order: 1;
    border: 0;
    border-right: 1px solid var(--line-dark);
  }

  .time-zone__media,
  .time-zone--0040 .time-zone__media,
  .time-zone--0420 .time-zone__media {
    order: 2;
  }

  .time-zone__note,
  .time-zone--0040 .time-zone__note,
  .time-zone--0420 .time-zone__note {
    display: none;
  }

  .relay-route {
    grid-template-columns: 1fr 1fr;
  }

  .relay-route .solid-link {
    justify-self: end;
  }

  .product-stage {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .product-title {
    grid-row: 1;
  }

  .product-view {
    grid-row: 1;
    min-height: 680px;
  }

  .door-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    border-top: 1px solid var(--line-paper);
    border-left: 0;
  }

  .door-list__head,
  .door-list dl {
    grid-column: 1;
  }

  .size-selector,
  .add-bag,
  .selection-status {
    grid-column: 2;
  }

  .size-selector {
    align-self: end;
    margin-top: 0;
  }

  .zip-route__head {
    grid-template-columns: 200px 1fr;
  }

  .zip-route__copy {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 54px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: var(--header-height);
    padding: 0 15px;
  }

  .wordmark {
    font-size: 19px;
  }

  .header-actions {
    gap: 13px;
  }

  .text-button {
    font-size: 9px;
  }

  .home-hero {
    height: calc(100svh - 28px);
    min-height: 0;
    max-height: none;
  }

  .home-hero__media img {
    object-position: center center;
  }

  .home-hero__shade {
    inset: auto 0 0;
    width: 100%;
    height: 48%;
    background: rgba(0, 0, 0, 0.62);
  }

  .home-hero__copy {
    top: auto;
    right: 16px;
    bottom: 74px;
    left: 16px;
    width: auto;
    transform: none;
  }

  .home-hero__copy .micro-label,
  .hero-proposition {
    display: none;
  }

  .home-hero__copy h1 {
    margin-bottom: 5px;
    font-size: 56px;
  }

  .hero-edition {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .home-hero__copy .line-link {
    min-width: 180px;
    margin-top: 10px;
  }

  .timecode-rail {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .timecode-rail .rail-line,
  .timecode-rail > a {
    display: none;
  }

  .timecode-rail ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
  }

  .timecode-rail li {
    align-content: center;
    padding: 0 8px;
    border-right: 1px solid var(--line-dark);
  }

  .timecode-rail li:first-child {
    padding-left: 0;
  }

  .timecode-rail li:last-child {
    border-right: 0;
  }

  .timecode-rail li b {
    font-size: 11px;
  }

  .timecode-rail li span {
    overflow: hidden;
    font-size: 7px;
    white-space: nowrap;
  }

  .light-state {
    display: block;
    min-height: 0;
  }

  .light-state__panel {
    padding: 30px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-paper);
  }

  .light-state__panel h2 {
    margin-bottom: 22px;
    font-size: 47px;
  }

  .light-state__panel .section-note {
    margin: 22px 0 0;
  }

  .light-state__stage {
    min-height: 490px;
  }

  .state-stamp {
    right: 12px;
    bottom: 12px;
  }

  .relay-sequence {
    display: block;
    min-height: 0;
  }

  .paper-heading {
    padding: 30px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-paper);
  }

  .paper-heading h2 {
    font-size: 47px;
  }

  .paper-heading .line-link {
    margin-top: 24px;
  }

  .relay-sequence__visual {
    min-height: 310px;
  }

  .sequence-key {
    grid-template-columns: repeat(2, 1fr);
  }

  .sequence-key li:nth-child(2) {
    border-right: 0;
  }

  .sequence-key li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-paper);
  }

  .second-shift {
    display: grid;
    grid-template-columns: 1fr;
  }

  .second-shift__intro {
    min-height: 380px;
    padding: 30px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .second-shift__intro h2 {
    font-size: 48px;
  }

  .look-panel,
  .look-panel--one,
  .look-panel--two,
  .look-panel--three,
  .look-panel--four {
    height: auto;
    aspect-ratio: 7 / 9;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .look-panel img {
    object-fit: cover;
  }

  .textile-details,
  .venue-exit {
    display: block;
  }

  .textile-details__copy,
  .venue-exit__copy {
    padding: 30px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .textile-details__copy h2,
  .venue-exit__copy h2 {
    font-size: 48px;
  }

  .textile-details__media {
    height: 300px;
  }

  .venue-exit > img {
    aspect-ratio: 2 / 1;
    object-position: center;
  }

  .venue-exit__copy .line-link {
    margin-top: 24px;
  }

  .after-notice {
    display: block;
    min-height: 0;
    padding: 30px 16px;
  }

  .after-notice h2 {
    font-size: 48px;
  }

  .after-notice > p {
    margin: 24px 0;
  }

  .notice-form > div {
    grid-template-columns: 1fr 100px;
  }

  .site-footer {
    display: block;
    min-height: 0;
    padding: 30px 16px;
  }

  .footer-timetable {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
    padding-top: 0;
  }

  .footer-track {
    display: none;
  }

  .index-hero {
    height: calc(100svh - var(--header-height) - 28px);
    min-height: 0;
    max-height: none;
  }

  .index-hero > img {
    object-position: 62% center;
  }

  .index-hero::after {
    inset: auto 0 0;
    width: 100%;
    height: 45%;
  }

  .index-hero__copy {
    right: 16px;
    bottom: 38px;
    left: 16px;
  }

  .index-hero__copy h1 {
    font-size: 58px;
  }

  .index-hero__down {
    right: 16px;
    bottom: 14px;
  }

  .time-filter {
    top: var(--header-height);
    display: block;
  }

  .time-filter > div:first-child {
    display: none;
  }

  .time-filter__buttons {
    overflow-x: auto;
    grid-template-columns: repeat(5, 86px);
    min-height: 56px;
  }

  .time-filter__buttons button {
    font-size: 13px;
  }

  .time-zone,
  .time-zone--0040,
  .time-zone--0215,
  .time-zone--0420 {
    display: block;
    min-height: 0;
  }

  .time-zone[hidden] {
    display: none;
  }

  .time-zone__stamp,
  .time-zone--0040 .time-zone__stamp,
  .time-zone--0420 .time-zone__stamp {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 128px;
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .time-zone__stamp strong {
    grid-row: 1 / 3;
    grid-column: 2;
    margin: 0;
    font-size: 38px;
  }

  .time-zone__stamp p {
    margin: auto 0 0;
  }

  .time-zone__media,
  .time-zone--0040 .time-zone__media,
  .time-zone--0420 .time-zone__media {
    display: block;
    aspect-ratio: 4 / 5;
  }

  .set-list {
    padding: 30px 16px 20px;
  }

  .set-list__head {
    display: block;
  }

  .set-list__head h2 {
    font-size: 48px;
  }

  .set-list__head > p {
    margin-top: 20px;
  }

  .relay-route {
    display: block;
    min-height: 0;
    padding: 32px 16px;
  }

  .relay-route h2 {
    margin: 20px 0 28px;
    font-size: 58px;
  }

  .relay-route .solid-link {
    width: 100%;
    margin-top: 24px;
  }

  .site-footer--simple > p,
  .site-footer--paper > p {
    margin: 24px 0;
    text-align: left;
  }

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

  .product-title {
    min-height: 280px;
    padding: 28px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-paper);
  }

  .product-title h1 {
    margin-bottom: 24px;
    font-size: 56px;
  }

  .product-title > p:last-child {
    margin-top: 0;
  }

  .product-view {
    height: 620px;
    min-height: 0;
    padding: 18px 12px 68px;
  }

  .product-view__toggle {
    right: 12px;
    bottom: 14px;
  }

  .door-list {
    display: block;
    padding: 24px 16px 30px;
  }

  .size-selector {
    margin: 28px 0 16px;
  }

  .zip-route {
    padding: 30px 16px 22px;
  }

  .zip-route__head {
    display: block;
  }

  .zip-route__head h2 {
    margin-bottom: 22px;
    font-size: 48px;
  }

  .zip-route__tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .zip-route__visual {
    margin-top: 16px;
    aspect-ratio: 11 / 8;
  }

  .zip-route__copy {
    display: block;
  }

  .zip-route__copy p {
    margin-top: 9px;
  }

  .worn-state,
  .worn-state > img {
    min-height: 0;
    height: 560px;
  }

  .worn-state > img {
    object-position: 45% center;
  }

  .worn-state__copy {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 18px;
  }

  .worn-state__copy h2 {
    font-size: 46px;
  }

  .product-notes {
    display: block;
    min-height: 0;
  }

  .product-notes__intro {
    padding: 30px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-paper);
  }

  .product-notes__intro h2 {
    font-size: 48px;
  }

  .disclosures {
    padding: 12px 16px 30px;
  }

  .related-product {
    display: block;
    min-height: 0;
  }

  .related-product__copy {
    min-height: 370px;
    padding: 30px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-paper);
  }

  .related-product__copy h2 {
    font-size: 49px;
  }

  .related-product > img {
    aspect-ratio: 8 / 9;
  }
}

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

/* Brand differentiation tune: keep the signal track continuous after midnight. */
.relay-sequence,
.second-shift,
.time-zones {
  box-shadow: inset 4px 0 0 var(--signal);
}

@media (max-width: 767px) {
  .relay-sequence,
  .second-shift,
  .time-zones {
    box-shadow: inset 0 3px 0 var(--signal);
  }
}
