:root {
  --paper: #fbfaf5;
  --newsprint: #f1efe8;
  --ink: #20211e;
  --ink-soft: #55564f;
  --cobalt: #244fb3;
  --registry: #355c49;
  --file-grey: #d8d4c8;
  --line: #a8a69d;
  --line-soft: #d2cfc5;
  --white: #ffffff;
  --display: "Cabinet Grotesk", "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --editorial: "Gambetta", "Noto Serif KR", Georgia, serif;
  --korean: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --container: 1480px;
  --pad-desktop: 48px;
  --pad-tablet: 32px;
  --pad-mobile: 20px;
  --section-desktop: 120px;
  --section-mobile: 72px;
  --radius-control: 4px;
  --rule: 1px solid var(--line);
  --rule-soft: 1px solid var(--line-soft);
  --shadow-paper: 0 14px 36px rgba(32, 33, 30, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--newsprint);
  color: var(--ink);
  font-family: var(--korean);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body[data-page="product"] {
  background: var(--paper);
}

body.menu-open,
body.panel-open {
  overflow: hidden;
}

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

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

button,
input {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  line-height: 0.92;
}

h2 {
  font-size: 48px;
  line-height: 1;
}

h3 {
  font-size: 32px;
  line-height: 1.08;
}

p {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--cobalt);
  color: var(--white);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: var(--radius-control);
}

.site-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 0 var(--pad-desktop);
  border-bottom: var(--rule);
  background: var(--newsprint);
}

body[data-page="product"] .site-header {
  background: var(--paper);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
}

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

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

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.bag-button {
  border: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
}

.bag-button span {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-left: 5px;
  border: 1px solid var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 10px;
  border: var(--rule);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 64px 0 auto;
  z-index: 48;
  padding: 18px var(--pad-mobile) 30px;
  border-bottom: var(--rule);
  background: var(--paper);
  box-shadow: var(--shadow-paper);
}

.mobile-menu a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 58px;
  border-bottom: var(--rule-soft);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
}

.mobile-menu a span {
  color: var(--registry);
  font-size: 12px;
}

.weekday-tabs {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(calc(100% - 144px), var(--container));
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding-left: 64px;
  background: var(--newsprint);
}

.weekday-tabs a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 20px;
  border-right: var(--rule);
  border-bottom: var(--rule);
  font-family: var(--display);
  font-size: 14px;
}

.weekday-tabs a:first-child {
  border-left: var(--rule);
}

.weekday-tabs a::before {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -7px;
  height: 7px;
  border: var(--rule);
  border-bottom: 0;
  background: var(--newsprint);
  content: "";
}

.weekday-tabs a:nth-child(even)::before {
  top: -3px;
  height: 3px;
}

.weekday-tabs a small {
  color: var(--registry);
  font-size: 10px;
}

.weekday-tabs a.active {
  color: var(--cobalt);
  background: var(--paper);
}

.weekday-tabs-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 0 var(--pad-desktop);
  border-bottom: var(--rule);
}

.weekday-tabs-sticky a::before {
  display: none;
}

.site-frame {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  border-right: var(--rule);
  border-left: var(--rule);
  background: var(--paper);
}

.site-frame > main {
  min-width: 0;
}

.index-rail {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-right: var(--rule);
  color: var(--registry);
}

.rail-title {
  padding: 18px 8px;
  border-bottom: var(--rule);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
}

.index-rail ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.index-rail li {
  height: 32px;
  padding-left: 20px;
  border-bottom: var(--rule-soft);
  font-family: var(--editorial);
  font-size: 13px;
  line-height: 32px;
}

.rail-mark {
  position: sticky;
  top: calc(100vh - 80px);
  display: grid;
  width: 100%;
  height: 64px;
  margin-top: auto;
  place-items: center;
  border-top: var(--rule);
  font-family: var(--editorial);
  font-size: 34px;
}

.file-sheet {
  background: var(--paper);
}

.file-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: var(--rule-soft);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 500;
}

.kicker {
  color: var(--registry);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.home-hero {
  display: grid;
  grid-template-columns: 46% 54%;
  height: max(620px, calc(100svh - 240px));
  min-height: 0;
  border-bottom: var(--rule);
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 44px 54px 32px;
  border-right: var(--rule);
}

.hero-copy .kicker {
  margin-top: 54px;
}

.hero-copy h1 {
  margin-top: 22px;
  font-size: 82px;
}

.hero-ko {
  max-width: 440px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.command {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  transition: background 150ms ease, color 150ms ease;
}

.command:hover {
  background: var(--ink);
  color: var(--paper);
}

.command-primary {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: var(--white);
}

.command-primary:hover {
  background: var(--registry);
  border-color: var(--registry);
}

.hero-register {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  border-top: var(--rule);
  border-bottom: var(--rule);
}

.hero-register div {
  padding: 12px 10px;
  border-right: var(--rule-soft);
}

.hero-register div:last-child {
  border-right: 0;
}

.hero-register dt,
.hero-register dd {
  font-family: var(--display);
  font-size: 9px;
}

.hero-register dt {
  color: var(--ink-soft);
}

.hero-register dd {
  margin-top: 5px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--file-grey);
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual img {
  object-fit: cover;
  object-position: center;
}

.image-file-tag {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  background: rgba(251, 250, 245, 0.94);
  font-family: var(--display);
  font-size: 9px;
}

.image-file-tag span:first-child {
  color: var(--cobalt);
  font-weight: 700;
}

.assembler-section,
.module-section,
.material-section {
  padding: var(--section-desktop) var(--pad-desktop);
  border-bottom: var(--rule);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.section-heading h2 {
  margin-top: 12px;
}

.section-heading > p {
  max-width: 440px;
  color: var(--ink-soft);
}

.ruled-heading {
  padding-bottom: 26px;
  border-bottom: var(--rule);
}

.assembler {
  border: var(--rule);
}

.assembler-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: var(--rule);
}

.assembler-tabs button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 0;
  border-right: var(--rule);
  background: var(--newsprint);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
}

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

.assembler-tabs button span {
  color: var(--registry);
  font-size: 10px;
}

.assembler-tabs button.active {
  background: var(--cobalt);
  color: var(--white);
}

.assembler-tabs button.active span {
  color: var(--white);
}

.assembler-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.15fr 1fr;
  min-height: 580px;
}

.layer-ledger,
.assembler-note {
  padding: 28px;
}

.layer-ledger {
  border-right: var(--rule);
  background: var(--newsprint);
}

.ledger-label {
  padding-bottom: 16px;
  border-bottom: var(--rule);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
}

.layer-ledger ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.layer-ledger li {
  display: grid;
  grid-template-columns: 64px 1fr 24px;
  gap: 10px;
  align-items: center;
  min-height: 74px;
  border-bottom: var(--rule-soft);
}

.layer-ledger li span,
.layer-ledger li i {
  font-family: var(--display);
  font-size: 9px;
  font-style: normal;
}

.layer-ledger li strong {
  font-family: var(--display);
  font-size: 12px;
}

.layer-ledger li i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--registry);
  color: var(--registry);
}

.assembler-look {
  position: relative;
  min-width: 0;
  border-right: var(--rule);
  background: var(--file-grey);
}

.assembler-look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.assembler-look figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-top: var(--rule);
  background: rgba(251, 250, 245, 0.94);
  font-family: var(--display);
  font-size: 9px;
}

.assembler-note {
  display: flex;
  flex-direction: column;
}

.stamp-box {
  display: grid;
  width: 130px;
  padding: 14px;
  border: 2px solid var(--cobalt);
  color: var(--cobalt);
  font-family: var(--display);
}

.stamp-box span {
  font-size: 10px;
}

.stamp-box strong {
  margin-top: 8px;
  font-size: 34px;
  line-height: 1;
}

.stamp-box small {
  margin-top: 8px;
  font-size: 9px;
}

.assembler-note dl {
  margin-top: 34px;
  border-top: var(--rule);
}

.assembler-note dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  padding: 11px 0;
  border-bottom: var(--rule-soft);
}

.assembler-note dt {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 9px;
}

.assembler-note dd {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.assembler-note > p {
  margin-top: 28px;
  color: var(--ink-soft);
}

.assembler-note > a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  margin-top: auto;
  padding: 12px 0 6px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
}

.passage-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-bottom: var(--rule);
  background: var(--ink);
}

.passage-section > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.passage-copy {
  position: absolute;
  z-index: 2;
  left: 48px;
  top: 48px;
  width: min(380px, calc(100% - 96px));
  padding: 28px;
  border: 1px solid var(--paper);
  background: var(--ink);
  color: var(--paper);
}

.passage-copy .kicker {
  color: #a7b8ec;
}

.passage-copy h2 {
  margin-top: 14px;
  font-size: 38px;
  line-height: 1.08;
}

.passage-copy p:not(.kicker) {
  margin-top: 24px;
  color: #d8d7d0;
}

.passage-copy .text-link {
  margin-top: 26px;
  border-color: var(--paper);
}

.module-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px 48px;
}

.module-copy {
  align-self: start;
  position: sticky;
  top: 100px;
}

.module-copy h2 {
  margin-top: 14px;
  font-size: 56px;
}

.module-copy > p:not(.kicker) {
  max-width: 420px;
  margin-top: 26px;
  color: var(--ink-soft);
}

.module-copy .command {
  margin-top: 34px;
}

.module-flatlay {
  border: var(--rule);
}

.module-flatlay img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.module-flatlay figcaption {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: var(--rule);
  font-family: var(--display);
  font-size: 10px;
}

.module-table {
  grid-column: 1 / -1;
  border-top: var(--rule);
  border-bottom: var(--rule);
}

.module-table > div {
  display: grid;
  grid-template-columns: 100px minmax(160px, 1fr) minmax(160px, 1fr) 100px;
  min-height: 50px;
  align-items: center;
  border-bottom: var(--rule-soft);
}

.module-table > div:last-child {
  border-bottom: 0;
}

.module-table span,
.module-table strong {
  padding: 0 14px;
  border-right: var(--rule-soft);
  font-family: var(--display);
  font-size: 11px;
}

.module-table span:last-child {
  border-right: 0;
  color: var(--registry);
}

.material-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: start;
  gap: 48px;
}

.material-item {
  border-top: var(--rule);
}

.material-item img {
  width: 100%;
  aspect-ratio: 7 / 5;
  object-fit: cover;
}

.material-shirt {
  margin-top: 120px;
}

.material-item figcaption {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: var(--rule);
  font-family: var(--display);
  font-size: 10px;
}

.material-item figcaption span {
  color: var(--cobalt);
}

.material-item figcaption small {
  color: var(--ink-soft);
  font-size: 9px;
}

.revision-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 760px;
  border-bottom: var(--rule);
}

.revision-image {
  position: relative;
  min-width: 0;
  border-right: var(--rule);
}

.revision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vertical-file {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: 10px;
}

.revision-copy {
  display: flex;
  flex-direction: column;
  padding: 72px;
}

.revision-copy h2 {
  margin-top: 18px;
  font-size: 52px;
  line-height: 1.08;
}

.editorial-quote {
  margin-top: 52px;
  padding: 32px 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
  font-family: var(--editorial);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.45;
}

.revision-copy > p:not(.kicker):not(.editorial-quote) {
  max-width: 500px;
  margin-top: 30px;
  color: var(--ink-soft);
}

.revision-copy .text-link {
  margin-top: 30px;
}

.revision-signature {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
  border-top: var(--rule);
  font-family: var(--display);
}

.revision-signature span {
  color: var(--cobalt);
  font-size: 9px;
}

.revision-signature strong {
  font-size: 12px;
  line-height: 1.4;
}

.newsletter-section {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 150px;
  align-items: center;
  gap: 48px;
  padding: 68px var(--pad-desktop);
  border-bottom: var(--rule);
}

.newsletter-section h2 {
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.12;
}

.newsletter-form label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 9px;
}

.newsletter-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.newsletter-form input {
  min-width: 0;
  height: 48px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
}

.newsletter-form button {
  min-width: 118px;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: 11px;
}

.newsletter-form button:hover {
  background: var(--ink);
  color: var(--paper);
}

.form-status {
  min-height: 24px;
  margin-top: 8px;
  color: var(--registry);
  font-size: 12px;
}

.newsletter-stamp {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px;
  border: 2px solid var(--cobalt);
  color: var(--cobalt);
}

.newsletter-stamp span {
  font-family: var(--editorial);
  font-size: 42px;
  line-height: 1;
}

.newsletter-stamp small {
  text-align: center;
  font-family: var(--display);
  font-size: 8px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 64px;
  padding: 68px var(--pad-desktop) 96px;
  border-top: 1px solid var(--ink);
  background: var(--newsprint);
}

.footer-brand p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 10px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--cobalt);
}

.footer-file {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--rule);
}

.footer-file span,
.footer-file strong {
  padding: 10px;
  border-right: var(--rule-soft);
  border-bottom: var(--rule-soft);
  font-family: var(--display);
  font-size: 9px;
}

.footer-file strong:nth-child(even) {
  border-right: 0;
}

.copyright {
  position: absolute;
  left: var(--pad-desktop);
  bottom: 28px;
  font-family: var(--display);
  font-size: 9px;
}

.compact-footer {
  grid-template-columns: 1fr 1fr;
}

.compact-footer .footer-links {
  grid-template-columns: repeat(2, 1fr);
}

.bag-panel {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100dvh;
  padding: 72px 36px;
  border-left: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: -18px 0 48px rgba(32, 33, 30, 0.12);
}

.bag-panel h2 {
  margin-top: 12px;
  font-size: 42px;
}

.bag-panel > p:not(.kicker) {
  margin-top: 28px;
  padding: 20px 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
  color: var(--ink-soft);
}

.bag-panel .command {
  margin-top: 32px;
}

.bag-close {
  position: absolute;
  right: 20px;
  top: 20px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: var(--rule);
  background: transparent;
  font-size: 24px;
  line-height: 1;
}

.panel-scrim {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(32, 33, 30, 0.42);
}

/* Week System */

.week-opening {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 720px;
  border-bottom: var(--rule);
}

.week-opening-copy {
  display: flex;
  flex-direction: column;
  padding: 54px var(--pad-desktop) 34px;
  border-right: var(--rule);
  background: var(--paper);
}

.week-opening-copy .kicker {
  margin-top: 52px;
}

.week-opening-copy h1 {
  margin-top: 18px;
  font-size: 104px;
}

.week-opening-copy > p:not(.kicker) {
  max-width: 500px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.week-opening-copy > dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  border-top: var(--rule);
  border-bottom: var(--rule);
}

.week-opening-copy > dl div {
  padding: 14px;
  border-right: var(--rule-soft);
}

.week-opening-copy > dl div:last-child {
  border-right: 0;
}

.week-opening-copy dt {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 9px;
}

.week-opening-copy dd {
  margin-top: 6px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
}

.week-opening-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--file-grey);
}

.week-opening-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.week-opening-image figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: var(--rule);
  background: rgba(251, 250, 245, 0.94);
}

.week-opening-image figcaption span {
  padding: 11px 12px;
  border-right: var(--rule-soft);
  font-family: var(--display);
  font-size: 9px;
}

.week-opening-image figcaption span:last-child {
  border-right: 0;
}

.day-register {
  padding: var(--section-desktop) var(--pad-desktop);
}

.day-file {
  display: grid;
  grid-template-columns: 120px minmax(380px, 0.95fr) minmax(340px, 1.05fr);
  min-height: 650px;
  border-top: 1px solid var(--ink);
}

.day-file:last-child {
  border-bottom: 1px solid var(--ink);
}

.day-file:nth-of-type(even) {
  grid-template-columns: 120px minmax(340px, 1.05fr) minmax(380px, 0.95fr);
}

.day-file:nth-of-type(even) figure {
  order: 3;
  border-right: 0;
  border-left: var(--rule);
}

.day-file:nth-of-type(even) .day-copy {
  order: 2;
}

.day-index {
  display: flex;
  flex-direction: column;
  padding: 22px 14px;
  border-right: var(--rule);
  background: var(--newsprint);
}

.day-index strong {
  color: var(--registry);
  font-family: var(--display);
  font-size: 30px;
}

.day-index span {
  margin-top: 4px;
  color: var(--cobalt);
  font-family: var(--editorial);
  font-size: 38px;
}

.day-index small {
  margin-top: auto;
  font-family: var(--display);
  font-size: 9px;
}

.day-file figure {
  min-width: 0;
  overflow: hidden;
  border-right: var(--rule);
  background: var(--file-grey);
}

.day-file figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.day-copy {
  display: flex;
  flex-direction: column;
  padding: 64px;
}

.day-copy h3 {
  margin-top: 16px;
  font-size: 42px;
}

.day-copy > p:not(.kicker) {
  max-width: 500px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.day-copy dl {
  margin-top: 48px;
  border-top: var(--rule);
}

.day-copy dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 13px 0;
  border-bottom: var(--rule-soft);
}

.day-copy dt,
.day-copy dd {
  font-family: var(--display);
  font-size: 10px;
}

.day-copy dt {
  color: var(--ink-soft);
}

.day-copy dd {
  font-weight: 700;
}

.day-copy > a {
  width: max-content;
  margin-top: auto;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 11px;
}

.setlist-section {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.setlist-copy {
  padding: 64px var(--pad-desktop);
  border-right: var(--rule);
}

.setlist-copy h2 {
  margin-top: 16px;
  font-size: 44px;
  line-height: 1.08;
}

.setlist-copy > p:not(.kicker) {
  margin-top: 28px;
  color: var(--ink-soft);
}

.setlist-section > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.setlist-ledger {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: var(--rule);
}

.setlist-ledger span {
  padding: 14px 18px;
  border-right: var(--rule-soft);
  font-family: var(--display);
  font-size: 10px;
}

.setlist-ledger span:last-child {
  border-right: 0;
}

.office-context-section {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 620px;
  border-bottom: var(--rule);
}

.office-context-section > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  border-right: var(--rule);
}

.office-context-section > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  background: var(--registry);
  color: var(--paper);
}

.office-context-section .kicker {
  color: #d5dfd9;
}

.office-context-section h2 {
  margin-top: 18px;
  font-size: 42px;
  line-height: 1.08;
}

.office-context-section p:not(.kicker) {
  margin-top: 28px;
  color: #dfe5e1;
}

.office-context-section .command {
  width: max-content;
  margin-top: 34px;
  border-color: var(--paper);
}

.week-terminal,
.product-terminal {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  padding: 80px var(--pad-desktop);
  background: var(--cobalt);
  color: var(--white);
}

.week-terminal .kicker,
.product-terminal .kicker {
  color: #d8e1fb;
}

.week-terminal h2,
.product-terminal h2 {
  margin-top: 12px;
  font-size: 42px;
}

.week-terminal > a,
.product-terminal > a {
  padding: 12px 0;
  border-bottom: 1px solid var(--white);
  font-family: var(--display);
  font-size: 12px;
}

/* Product */

.product-dossier {
  display: grid;
  grid-template-columns: 0.68fr 1.2fr 0.72fr;
  min-height: 760px;
  border-bottom: 1px solid var(--ink);
}

.product-file-head,
.product-order {
  padding: 48px;
}

.product-file-head {
  display: flex;
  flex-direction: column;
  border-right: var(--rule);
  background: var(--newsprint);
}

.product-file-head .kicker {
  margin-top: 54px;
}

.product-file-head h1 {
  margin-top: 18px;
  font-size: 100px;
}

.product-file-head > p:not(.kicker) {
  margin-top: 28px;
  color: var(--ink-soft);
}

.product-viewer {
  position: relative;
  min-width: 0;
  border-right: var(--rule);
}

.view-tabs {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 240px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.view-tabs button {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 0;
  border-right: var(--rule);
  background: transparent;
  font-family: var(--display);
  font-size: 11px;
}

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

.view-tabs button span {
  color: var(--registry);
  font-size: 9px;
}

.view-tabs button.active {
  background: var(--cobalt);
  color: var(--white);
}

.view-tabs button.active span {
  color: var(--white);
}

.product-viewer figure,
.product-viewer img {
  width: 100%;
  height: 100%;
}

.product-viewer img {
  object-fit: contain;
  padding: 34px;
  background: var(--paper);
}

.product-viewer figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: 9px;
}

.product-order {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 760px;
  background: var(--paper);
}

.module-stamp {
  display: grid;
  width: 116px;
  padding: 12px;
  border: 2px solid var(--cobalt);
  color: var(--cobalt);
  font-family: var(--display);
}

.module-stamp span,
.module-stamp small {
  font-size: 8px;
}

.module-stamp strong {
  margin: 5px 0;
  font-size: 38px;
  line-height: 1;
}

.product-order h2 {
  margin-top: 34px;
  font-size: 34px;
}

.product-order > p:not(.order-status) {
  margin-top: 18px;
  color: var(--ink-soft);
}

.size-register {
  margin-top: 34px;
  padding: 18px 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
}

.size-register > span {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
}

.size-register > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
}

.size-register button {
  min-height: 44px;
  border: var(--rule);
  border-right: 0;
  background: transparent;
  font-family: var(--display);
}

.size-register button:last-child {
  border-right: var(--rule);
}

.size-register button.active {
  background: var(--ink);
  color: var(--paper);
}

.size-register small {
  display: block;
  min-height: 21px;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 11px;
}

.add-module {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid var(--cobalt);
  background: var(--cobalt);
  color: var(--white);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.add-module:hover {
  border-color: var(--registry);
  background: var(--registry);
}

.order-status {
  min-height: 26px;
  margin-top: 8px;
  color: var(--registry);
  font-size: 12px;
}

.product-register {
  margin-top: 28px;
  border-top: var(--rule);
}

.product-register div {
  display: grid;
  grid-template-columns: 84px 1fr;
  padding: 10px 0;
  border-bottom: var(--rule-soft);
}

.product-register dt,
.product-register dd {
  font-family: var(--display);
  font-size: 9px;
}

.product-register dt {
  color: var(--ink-soft);
}

.product-register dd {
  font-weight: 700;
}

.fold-route-section {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  border-bottom: var(--rule);
}

.fold-route-head {
  padding: 72px var(--pad-desktop);
  border-right: var(--rule);
}

.fold-route-head h2 {
  margin-top: 14px;
  font-size: 64px;
}

.fold-route-head > p {
  margin-top: 30px;
  color: var(--ink-soft);
}

.fold-route-section > img {
  width: 100%;
  min-height: 660px;
  object-fit: cover;
}

.fold-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--rule);
}

.fold-step {
  border-right: var(--rule);
}

.fold-step:last-child {
  border-right: 0;
}

.fold-step button {
  display: grid;
  grid-template-columns: 34px 1fr 20px;
  width: 100%;
  min-height: 58px;
  align-items: center;
  padding: 0 16px;
  border: 0;
  background: var(--newsprint);
  text-align: left;
}

.fold-step button span,
.fold-step button strong,
.fold-step button i {
  font-family: var(--display);
  font-size: 10px;
  font-style: normal;
}

.fold-step button span {
  color: var(--cobalt);
}

.fold-step button i {
  font-size: 18px;
}

.fold-step p {
  display: none;
  min-height: 104px;
  padding: 18px 16px;
  border-top: var(--rule-soft);
  color: var(--ink-soft);
  font-size: 13px;
}

.fold-step.open p {
  display: block;
}

.worn-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 760px;
  border-bottom: var(--rule);
}

.worn-section figure {
  position: relative;
  border-right: var(--rule);
}

.worn-section figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worn-section figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: 9px;
}

.worn-section > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
}

.worn-section h2 {
  margin-top: 18px;
  font-size: 54px;
  line-height: 1.08;
}

.worn-section > div > p:not(.kicker) {
  max-width: 500px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.worn-section dl {
  margin-top: 48px;
  border-top: var(--rule);
}

.worn-section dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 13px 0;
  border-bottom: var(--rule-soft);
}

.worn-section dt,
.worn-section dd {
  font-family: var(--display);
  font-size: 10px;
}

.worn-section dt {
  color: var(--ink-soft);
}

.worn-section dd {
  font-weight: 700;
}

.construction-section {
  padding: var(--section-desktop) var(--pad-desktop);
  border-bottom: var(--rule);
}

.construction-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.construction-grid figure {
  border-top: 1px solid var(--ink);
}

.construction-grid figure:nth-child(2) {
  margin-top: 100px;
}

.construction-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.construction-grid figcaption {
  display: grid;
  grid-template-columns: 72px 1fr;
  padding: 14px 0;
  border-bottom: var(--rule);
  font-family: var(--display);
  font-size: 10px;
}

.construction-grid figcaption span {
  color: var(--cobalt);
}

.related-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  grid-template-rows: 1fr auto;
  min-height: 760px;
  border-bottom: var(--rule);
}

.related-copy {
  padding: 80px var(--pad-desktop);
  border-right: var(--rule);
}

.related-copy h2 {
  margin-top: 14px;
  font-size: 60px;
}

.related-copy > p:not(.kicker) {
  max-width: 460px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.related-copy .command {
  margin-top: 36px;
}

.related-section figure {
  position: relative;
  min-width: 0;
  background: var(--paper);
}

.related-section figure img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: contain;
  padding: 36px;
}

.related-section figure figcaption {
  position: absolute;
  inset: auto 18px 18px;
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border: var(--rule);
  background: var(--paper);
  font-family: var(--display);
  font-size: 9px;
}

.related-register {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule);
}

.related-register div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 14px 18px;
  border-right: var(--rule);
  font-family: var(--display);
  font-size: 10px;
}

.related-register div:last-child {
  border-right: 0;
}

.related-register span {
  color: var(--ink-soft);
}

@media (max-width: 1180px) {
  :root {
    --pad-desktop: 36px;
  }

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

  .desktop-nav {
    gap: 24px;
  }

  .weekday-tabs {
    width: calc(100% - 48px);
  }

  .hero-copy {
    padding: 36px;
  }

  .hero-copy h1 {
    font-size: 66px;
  }

  .assembler-grid {
    grid-template-columns: 0.78fr 1.1fr 1fr;
  }

  .layer-ledger,
  .assembler-note {
    padding: 22px;
  }

  .module-copy h2 {
    font-size: 48px;
  }

  .revision-copy {
    padding: 56px;
  }

  .week-opening-copy h1 {
    font-size: 82px;
  }

  .day-file,
  .day-file:nth-of-type(even) {
    grid-template-columns: 92px minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  }

  .day-copy {
    padding: 44px;
  }

  .product-dossier {
    grid-template-columns: 0.64fr 1.12fr 0.74fr;
  }

  .product-file-head,
  .product-order {
    padding: 34px;
  }

  .product-file-head h1 {
    font-size: 74px;
  }

  .worn-section > div {
    padding: 54px;
  }
}

@media (max-width: 900px) {
  :root {
    --pad-desktop: var(--pad-tablet);
    --section-desktop: 92px;
  }

  html {
    scroll-padding-top: 116px;
  }

  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 0 var(--pad-tablet);
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .weekday-tabs {
    width: 100%;
    padding-left: 0;
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    scrollbar-width: thin;
  }

  .weekday-tabs-sticky {
    top: 64px;
    padding: 0;
  }

  .site-frame {
    grid-template-columns: 1fr;
    width: 100%;
    border: 0;
  }

  .index-rail {
    display: none;
  }

  .home-hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    height: max(620px, calc(100svh - 170px));
    min-height: 0;
  }

  .hero-copy {
    min-height: 0;
    padding: 30px;
    border-right: var(--rule);
    border-bottom: 0;
  }

  .hero-copy .kicker {
    margin-top: 24px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

  .hero-register {
    margin-top: auto;
  }

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

  .hero-visual img {
    object-position: center;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .assembler-grid {
    grid-template-columns: 0.76fr 1.24fr;
  }

  .layer-ledger {
    grid-row: 2;
    border-top: var(--rule);
  }

  .assembler-look {
    grid-column: 1 / -1;
    min-height: 780px;
    border-right: 0;
  }

  .assembler-note {
    grid-row: 2;
    border-top: var(--rule);
  }

  .passage-section,
  .passage-section > img {
    min-height: 540px;
    height: 540px;
  }

  .passage-copy {
    left: 32px;
    top: 32px;
  }

  .module-section {
    grid-template-columns: 1fr;
  }

  .module-copy {
    position: static;
  }

  .module-table {
    grid-column: auto;
  }

  .module-table > div {
    grid-template-columns: 76px 1.2fr 1fr;
  }

  .module-table > div span:last-child {
    display: none;
  }

  .material-grid {
    gap: 32px;
  }

  .material-shirt {
    margin-top: 72px;
  }

  .material-item figcaption {
    grid-template-columns: 70px 1fr;
  }

  .material-item figcaption small {
    display: none;
  }

  .revision-section {
    grid-template-columns: 1fr;
  }

  .revision-image {
    min-height: 760px;
    border-right: 0;
    border-bottom: var(--rule);
  }

  .revision-copy {
    min-height: 680px;
  }

  .newsletter-section {
    grid-template-columns: 1fr 1.25fr;
  }

  .newsletter-stamp {
    display: none;
  }

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

  .footer-file {
    grid-column: 1 / -1;
  }

  .week-opening {
    grid-template-columns: 1fr;
  }

  .week-opening-copy {
    min-height: 560px;
    border-right: 0;
    border-bottom: var(--rule);
  }

  .week-opening-image {
    min-height: 520px;
  }

  .day-file,
  .day-file:nth-of-type(even) {
    grid-template-columns: 86px minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 540px;
  }

  .day-file:nth-of-type(even) figure {
    order: initial;
    border-left: 0;
    border-right: var(--rule);
  }

  .day-file:nth-of-type(even) .day-copy {
    order: initial;
  }

  .day-copy {
    padding: 34px;
  }

  .day-copy h3 {
    font-size: 32px;
  }

  .day-copy dl {
    margin-top: 30px;
  }

  .setlist-section {
    grid-template-columns: 1fr;
  }

  .setlist-copy {
    border-right: 0;
    border-bottom: var(--rule);
  }

  .setlist-section > img {
    min-height: 420px;
  }

  .office-context-section {
    grid-template-columns: 1fr;
  }

  .office-context-section > img {
    min-height: 500px;
    border-right: 0;
    border-bottom: var(--rule);
  }

  .office-context-section > div {
    min-height: 480px;
  }

  .product-dossier {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .product-file-head {
    min-height: 540px;
  }

  .product-viewer {
    min-height: 700px;
    border-right: 0;
  }

  .product-order {
    position: static;
    grid-column: 1 / -1;
    min-height: 0;
    border-top: var(--rule);
  }

  .product-order {
    display: grid;
    grid-template-columns: 140px 1fr 1fr;
    gap: 22px 30px;
  }

  .product-order h2,
  .product-order > p:not(.order-status) {
    grid-column: 2 / -1;
  }

  .size-register,
  .add-module,
  .order-status {
    grid-column: 2;
  }

  .product-register {
    grid-column: 3;
    grid-row: 3 / span 3;
    margin-top: 34px;
  }

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

  .fold-route-head {
    border-right: 0;
    border-bottom: var(--rule);
  }

  .fold-route-section > img {
    min-height: 560px;
  }

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

  .fold-step:nth-child(2) {
    border-right: 0;
  }

  .fold-step:nth-child(-n+2) {
    border-bottom: var(--rule);
  }

  .worn-section {
    grid-template-columns: 1fr;
  }

  .worn-section figure {
    min-height: 760px;
    border-right: 0;
    border-bottom: var(--rule);
  }

  .worn-section > div {
    min-height: 580px;
  }

  .related-section {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 640px) {
  :root {
    --pad-desktop: var(--pad-mobile);
    --section-desktop: var(--section-mobile);
  }

  body {
    font-size: 15px;
  }

  h2 {
    font-size: 38px;
  }

  .site-header {
    padding: 0 var(--pad-mobile);
  }

  .wordmark {
    font-size: 21px;
  }

  .header-actions {
    gap: 8px;
  }

  .bag-button {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    white-space: nowrap;
  }

  .bag-button span {
    width: 21px;
    height: 21px;
    margin-left: 4px;
  }

  .weekday-tabs {
    overflow-x: visible;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .weekday-tabs a {
    min-height: 42px;
    padding: 0 9px;
    font-size: 11px;
  }

  .home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    min-height: 0;
  }

  .hero-copy {
    min-height: 0;
    padding: 20px var(--pad-mobile);
    border-right: 0;
    border-bottom: var(--rule);
  }

  .hero-copy .kicker {
    margin-top: 18px;
  }

  .hero-copy h1 {
    margin-top: 10px;
    font-size: 46px;
    line-height: 0.92;
  }

  .hero-ko {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .hero-actions .command {
    min-height: 44px;
    gap: 8px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero-register {
    margin-top: 16px;
  }

  .hero-register div {
    padding: 10px 6px;
  }

  .hero-register dd {
    font-size: 8px;
  }

  .hero-visual {
    min-height: 0;
    height: 240px;
    background: var(--paper);
  }

  .hero-visual picture,
  .hero-visual img {
    height: 100%;
  }

  .hero-visual img {
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 28%;
  }

  .image-file-tag {
    right: 10px;
    bottom: 10px;
  }

  .assembler-section,
  .module-section,
  .material-section,
  .construction-section,
  .day-register {
    padding-right: var(--pad-mobile);
    padding-left: var(--pad-mobile);
  }

  .assembler-section {
    padding-top: 28px;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 42px;
  }

  .ruled-heading {
    padding-bottom: 20px;
  }

  .assembler {
    margin-right: calc(var(--pad-mobile) * -1);
    margin-left: calc(var(--pad-mobile) * -1);
    border-right: 0;
    border-left: 0;
  }

  .assembler-tabs {
    overflow-x: visible;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .assembler-tabs button {
    min-height: 46px;
    padding: 0 8px;
    font-size: 10px;
  }

  .assembler-grid {
    display: flex;
    flex-direction: column;
  }

  .assembler-look {
    order: 1;
    min-height: 0;
    border-bottom: var(--rule);
  }

  .assembler-look img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background: var(--paper);
  }

  .assembler-note {
    order: 2;
    border-top: 0;
  }

  .layer-ledger {
    order: 3;
    border-right: 0;
  }

  .assembler-note > a {
    margin-top: 30px;
  }

  .passage-section {
    display: flex;
    min-height: 0;
    flex-direction: column-reverse;
  }

  .passage-section > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
  }

  .passage-copy {
    position: static;
    width: 100%;
    padding: 34px var(--pad-mobile);
    border: 0;
  }

  .passage-copy h2 {
    font-size: 34px;
  }

  .module-section {
    gap: 40px;
  }

  .module-copy h2 {
    font-size: 42px;
  }

  .module-flatlay {
    margin-right: calc(var(--pad-mobile) * -1);
    margin-left: calc(var(--pad-mobile) * -1);
    border-right: 0;
    border-left: 0;
  }

  .module-table > div {
    grid-template-columns: 60px 1fr;
  }

  .module-table > div span:nth-child(3) {
    display: none;
  }

  .module-table span,
  .module-table strong {
    font-size: 10px;
  }

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

  .material-shirt {
    margin-top: 0;
  }

  .revision-image {
    min-height: 0;
  }

  .revision-image img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
  }

  .revision-copy {
    min-height: 0;
    padding: var(--section-mobile) var(--pad-mobile);
  }

  .revision-copy h2 {
    font-size: 40px;
  }

  .editorial-quote {
    margin-top: 38px;
    font-size: 22px;
  }

  .revision-signature {
    margin-top: 52px;
  }

  .newsletter-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px var(--pad-mobile);
  }

  .newsletter-section h2 {
    font-size: 30px;
  }

  .newsletter-form > div {
    grid-template-columns: 1fr 90px;
  }

  .newsletter-form button {
    min-width: 0;
  }

  .site-footer,
  .compact-footer {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 52px var(--pad-mobile) 84px;
  }

  .footer-links,
  .compact-footer .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-file {
    grid-column: auto;
  }

  .copyright {
    left: var(--pad-mobile);
  }

  .bag-panel {
    padding: 68px var(--pad-mobile);
  }

  .week-opening {
    display: flex;
    flex-direction: column;
  }

  .week-opening-copy {
    min-height: 0;
    padding: 28px var(--pad-mobile) 32px;
  }

  .week-opening-copy .kicker {
    margin-top: 34px;
  }

  .week-opening-copy h1 {
    font-size: 62px;
  }

  .week-opening-copy > dl {
    margin-top: 40px;
  }

  .week-opening-image {
    min-height: 0;
  }

  .week-opening-image img {
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  .week-opening-image figcaption {
    position: static;
  }

  .week-opening-image figcaption span {
    overflow: hidden;
    padding: 8px 4px;
    text-align: center;
    font-size: 7px;
  }

  .day-file,
  .day-file:nth-of-type(even) {
    display: grid;
    grid-template-columns: 66px 1fr;
    min-height: 0;
  }

  .day-file .day-index {
    grid-row: 1 / span 2;
  }

  .day-file figure,
  .day-file:nth-of-type(even) figure {
    order: initial;
    border-right: 0;
    border-bottom: var(--rule);
  }

  .day-file figure img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background: var(--paper);
  }

  .day-copy,
  .day-file:nth-of-type(even) .day-copy {
    order: initial;
    padding: 32px 24px;
  }

  .day-copy h3 {
    font-size: 30px;
  }

  .day-copy > a {
    margin-top: 32px;
  }

  .setlist-copy {
    padding: 50px var(--pad-mobile);
  }

  .setlist-copy h2 {
    font-size: 38px;
  }

  .setlist-section > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  .setlist-ledger {
    overflow-x: auto;
    grid-template-columns: repeat(5, 130px);
  }

  .office-context-section > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .office-context-section > div {
    min-height: 0;
    padding: 58px var(--pad-mobile);
  }

  .office-context-section h2 {
    font-size: 36px;
  }

  .week-terminal,
  .product-terminal {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 58px var(--pad-mobile);
  }

  .week-terminal h2,
  .product-terminal h2 {
    font-size: 36px;
  }

  .week-terminal > a,
  .product-terminal > a {
    width: max-content;
  }

  .product-dossier {
    display: flex;
    flex-direction: column;
  }

  .product-file-head {
    min-height: 0;
    padding: 28px var(--pad-mobile) 34px;
    border-right: 0;
    border-bottom: var(--rule);
  }

  .product-file-head .kicker {
    margin-top: 34px;
  }

  .product-file-head h1 {
    font-size: 60px;
  }

  .product-viewer {
    min-height: 0;
    border-bottom: var(--rule);
  }

  .view-tabs {
    left: 10px;
    top: 10px;
    width: 210px;
  }

  .product-viewer figure,
  .product-viewer img {
    height: auto;
  }

  .product-viewer img {
    aspect-ratio: 4 / 5;
    padding: 18px;
  }

  .product-viewer figcaption {
    left: 10px;
    bottom: 10px;
  }

  .product-order {
    display: block;
    padding: 42px var(--pad-mobile);
  }

  .product-order h2 {
    font-size: 30px;
  }

  .product-register {
    margin-top: 30px;
  }

  .fold-route-head {
    padding: 58px var(--pad-mobile);
  }

  .fold-route-head h2 {
    font-size: 48px;
  }

  .fold-route-section > img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .fold-steps {
    grid-template-columns: 1fr;
  }

  .fold-step,
  .fold-step:nth-child(2) {
    border-right: 0;
    border-bottom: var(--rule);
  }

  .fold-step:last-child {
    border-bottom: 0;
  }

  .fold-step p {
    min-height: 0;
  }

  .worn-section figure {
    min-height: 0;
  }

  .worn-section figure img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background: var(--paper);
  }

  .worn-section > div {
    min-height: 0;
    padding: 58px var(--pad-mobile);
  }

  .worn-section h2 {
    font-size: 42px;
  }

  .construction-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .construction-grid figure:nth-child(2) {
    margin-top: 0;
  }

  .related-section {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .related-copy {
    padding: 58px var(--pad-mobile);
    border-right: 0;
    border-bottom: var(--rule);
  }

  .related-copy h2 {
    font-size: 46px;
  }

  .related-section figure img {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
    padding: 20px;
  }

  .related-register {
    display: block;
  }

  .related-register div {
    border-right: 0;
    border-bottom: var(--rule-soft);
  }
}

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

/* Brand differentiation tune: give every dossier a visible registry edge. */
.file-meta {
  padding-top: 10px;
  border-top: 3px solid var(--cobalt);
}

@media (max-width: 767px) {
  .file-meta {
    padding-top: 8px;
    border-top-width: 2px;
  }
}
