:root {
  --chalk: #e8e5de;
  --paper: #f4f1ea;
  --ink: #181917;
  --charcoal: #1c1d1b;
  --sub: #5d605b;
  --line: #9a9a91;
  --line-soft: #c4c1b9;
  --oxide: #a5472a;
  --survey: #526a78;
  --header-h: 76px;
  --page-x: 56px;
  --max: 1680px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--chalk);
  font-family: "General Sans", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.is-locked {
  overflow: hidden;
}

button,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

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

[hidden] {
  display: none !important;
}

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

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

.site-header {
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page-x);
  border-bottom: 1px solid var(--line);
  background: var(--chalk);
  position: relative;
  z-index: 20;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-family: "Panchang", sans-serif;
  font-size: 19px;
  font-weight: 600;
}

.brand-mark__block {
  width: 17px;
  height: 17px;
  border: 1px solid currentColor;
  background: var(--oxide);
  box-shadow: 5px 5px 0 var(--ink);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  height: 100%;
  font-size: 12px;
  font-weight: 600;
}

.desktop-nav a {
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-current {
  border-bottom-color: var(--oxide);
}

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

.text-command {
  border: 0;
  background: transparent;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 700;
}

.text-command span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: 6px;
  border: 1px solid var(--ink);
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: transparent;
}

.menu-button {
  display: none;
  gap: 5px;
  align-content: center;
}

.menu-button span {
  width: 16px;
  height: 1px;
  background: currentColor;
}

.close-button {
  font-size: 27px;
  line-height: 1;
}

.mobile-menu {
  position: fixed;
  z-index: 80;
  inset: 0 0 0 auto;
  width: min(480px, 100%);
  padding: 28px;
  color: var(--paper);
  background: var(--charcoal);
  border-left: 1px solid var(--line);
}

.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 48px;
}

.mobile-menu .close-button {
  border-color: var(--paper);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid #565750;
  font-family: "Panchang", sans-serif;
  font-size: 26px;
}

.mobile-menu nav a:last-child {
  border-bottom: 1px solid #565750;
}

.mobile-menu nav span {
  color: #a7a89f;
  font-family: "General Sans", sans-serif;
  font-size: 11px;
}

.section-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--page-x);
}

.home-hero {
  position: relative;
  height: 780px;
  overflow: hidden;
  background: #dad6ce;
}

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

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

.home-hero__copy {
  position: absolute;
  top: 100px;
  left: var(--page-x);
  width: min(530px, 38vw);
}

.eyebrow,
.section-code,
.index-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--ink);
}

.home-hero h1,
.index-hero h1,
.product-plate h1 {
  margin: 24px 0;
  font-family: "Panchang", sans-serif;
  font-weight: 500;
  line-height: 0.96;
}

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

.hero-korean {
  margin: 0 0 30px;
  color: #343631;
  font-size: 19px;
}

.command {
  min-height: 48px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.command span {
  font-size: 18px;
}

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

.command--light {
  color: var(--paper);
  background: transparent;
  border-color: #777870;
}

.command--oxide {
  color: var(--paper);
  background: var(--oxide);
  border-color: var(--oxide);
}

.command--full {
  width: 100%;
}

.coordinate-rail {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  align-items: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: var(--chalk);
}

.coordinate-rail span {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--page-x);
  border-right: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
}

.coordinate-rail span:last-child {
  border-right: 0;
}

.load-map {
  padding-top: 120px;
  padding-bottom: 124px;
}

.section-intro {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 24px;
  padding-bottom: 58px;
}

.section-intro h2,
.section-heading-row h2,
.fit-profile h2,
.construction-band h2,
.index-route h2 {
  margin: 0;
  font-family: "Panchang", "Malgun Gothic", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
}

.section-intro > div > p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--sub);
}

.load-instrument {
  display: grid;
  grid-template-columns: 5fr 7fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.load-visual {
  position: relative;
  border-right: 1px solid var(--ink);
  background: var(--paper);
  min-width: 0;
}

.load-visual > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-switch {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  background: var(--charcoal);
}

.image-switch button {
  width: 78px;
  height: 38px;
  border: 0;
  border-right: 1px solid #686a64;
  color: #a7a89f;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
}

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

.image-switch button.is-active {
  color: var(--paper);
  background: var(--oxide);
}

.image-switch--light {
  background: var(--paper);
  border: 1px solid var(--ink);
}

.image-switch--light button {
  border-right-color: var(--ink);
  color: var(--sub);
}

.image-switch--light button.is-active {
  color: var(--paper);
  background: var(--ink);
}

.load-ledger {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.load-ledger__head {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.load-coordinate {
  margin: 0;
  color: var(--oxide);
  font-family: "Panchang", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.zone-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.zone-controls button {
  min-height: 58px;
  padding: 10px 12px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  font-size: 11px;
  text-align: left;
}

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

.zone-controls button.is-active {
  color: var(--paper);
  background: var(--oxide);
}

.load-note {
  position: relative;
  padding: 70px 12% 60px;
}

.load-note h3 {
  max-width: 620px;
  margin: 20px 0;
  font-family: "Panchang", "Malgun Gothic", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
}

.load-note > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--sub);
}

.coordinate-cross {
  position: absolute;
  top: 25px;
  right: 8%;
  width: 44px;
  height: 44px;
  border: 1px solid var(--oxide);
}

.coordinate-cross::before,
.coordinate-cross::after {
  content: "";
  position: absolute;
  background: var(--oxide);
}

.coordinate-cross::before {
  width: 64px;
  height: 1px;
  left: -11px;
  top: 21px;
}

.coordinate-cross::after {
  width: 1px;
  height: 64px;
  left: 21px;
  top: -11px;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.spec-strip div {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.spec-strip div:last-child {
  border-right: 0;
}

.spec-strip dt,
.product-specs dt,
.index-record dl dt {
  color: var(--sub);
  font-size: 9px;
  font-weight: 700;
}

.spec-strip dd,
.product-specs dd,
.index-record dl dd {
  margin: 5px 0 0;
  font-size: 11px;
  font-weight: 700;
}

.collection-field {
  padding-top: 112px;
  padding-bottom: 122px;
  border-top: 1px solid var(--line);
}

.section-intro--compact {
  padding-bottom: 48px;
}

.look-tracks {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 12px;
  align-items: start;
}

.look-record {
  min-width: 0;
}

.look-record--narrow {
  padding-top: 124px;
}

.look-record--middle {
  padding-top: 46px;
}

.look-record img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.record-caption {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 3px 14px;
  padding: 15px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.record-caption p,
.record-caption h3,
.record-caption span {
  margin: 0;
}

.record-caption p {
  grid-column: 1 / -1;
  font-size: 9px;
  font-weight: 700;
}

.record-caption h3 {
  font-family: "Panchang", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.record-caption span {
  color: var(--sub);
  font-size: 10px;
}

.ledger-link {
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding: 0 4px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.ledger-link span:last-child {
  font-size: 20px;
}

.making {
  padding-top: 112px;
  padding-bottom: 122px;
  color: var(--paper);
  background: var(--charcoal);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  padding-bottom: 42px;
}

.making .section-code {
  color: #a7a89f;
}

.making-strip {
  display: grid;
  grid-template-columns: 38fr 34fr 28fr;
  align-items: stretch;
  border-top: 1px solid #6b6c66;
}

.making-strip figure {
  margin: 0;
  border-right: 1px solid #6b6c66;
}

.making-strip img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.making-strip figcaption {
  min-height: 88px;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid #6b6c66;
  font-size: 13px;
}

.making-strip figcaption span {
  color: #9fa09a;
  font-family: "Panchang", sans-serif;
  font-size: 11px;
}

.making-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.making-note > p:nth-child(2) {
  max-width: 300px;
  font-family: "Panchang", "Malgun Gothic", sans-serif;
  font-size: 24px;
  line-height: 1.35;
}

.making-note > span {
  color: #9fa09a;
  font-size: 10px;
}

.material-statement > img {
  width: 100%;
  height: min(68vw, 900px);
  object-fit: cover;
}

.material-band {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  gap: 34px;
  padding: 60px var(--page-x) 66px;
  color: var(--paper);
  background: var(--charcoal);
  border-top: 1px solid #666861;
}

.material-band h2 {
  margin: 0;
  font-family: "Panchang", "Malgun Gothic", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
}

.material-band > p:last-child {
  margin: 0;
  color: #b7b7b0;
}

.lineup {
  padding-top: 112px;
  padding-bottom: 124px;
}

.lineup-frame {
  overflow: auto hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.lineup-frame img {
  width: 100%;
  min-width: 760px;
  object-fit: contain;
}

.lineup-ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--ink);
}

.lineup-ledger > * {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-content: center;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  font-style: normal;
}

.lineup-ledger > *:last-child {
  border-right: 0;
}

.lineup-ledger span,
.lineup-ledger em {
  color: var(--sub);
  font-size: 9px;
  font-style: normal;
}

.lineup-ledger strong {
  font-family: "Panchang", sans-serif;
  font-size: 11px;
}

.lineup-ledger em {
  grid-column: 2;
}

.site-footer {
  padding: 74px var(--page-x) 24px;
  color: var(--paper);
  background: var(--charcoal);
  border-top: 1px solid #5d5e59;
}

.footer-wordmark {
  padding-bottom: 48px;
  font-family: "Panchang", sans-serif;
  font-size: 90px;
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid #5d5e59;
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 40px;
  padding: 34px 0 70px;
}

.footer-grid p {
  margin: 0 0 10px;
  color: #a9aaa4;
  font-size: 12px;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 12px;
}

.newsletter label {
  display: block;
  margin-bottom: 13px;
  font-size: 11px;
  font-weight: 700;
}

.newsletter > div {
  display: grid;
  grid-template-columns: 1fr 46px;
  border-bottom: 1px solid #787973;
}

.newsletter input {
  min-width: 0;
  height: 46px;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--paper);
  background: transparent;
}

.newsletter button {
  border: 0;
  color: var(--paper);
  background: transparent;
  font-size: 20px;
}

.newsletter [data-form-status] {
  min-height: 20px;
  margin-top: 9px;
  color: #c4c5bf;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #5d5e59;
  color: #858680;
  font-size: 9px;
}

.field-bag {
  position: fixed;
  z-index: 90;
  inset: 0 0 0 auto;
  width: min(460px, 100%);
  padding: 28px;
  background: var(--paper);
  border-left: 1px solid var(--ink);
}

.field-bag__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink);
}

.field-bag__head h2 {
  margin: 0;
  font-family: "Panchang", sans-serif;
  font-size: 26px;
}

.field-bag > p {
  padding: 30px 0;
  color: var(--sub);
}

[data-field-items] article {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

[data-field-items] h3,
[data-field-items] p {
  margin: 0;
}

[data-field-items] h3 {
  font-family: "Panchang", sans-serif;
  font-size: 14px;
}

[data-field-items] p {
  color: var(--sub);
  font-size: 11px;
}

.field-bag > .command {
  margin-top: 28px;
}

.scrim {
  position: fixed;
  z-index: 70;
  inset: 0;
  background: rgba(24, 25, 23, 0.56);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* FIELD INDEX */
.index-hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #d9d4cb;
}

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

.index-hero__copy {
  position: absolute;
  left: var(--page-x);
  top: 82px;
}

.index-hero__copy > p,
.index-hero__copy > span {
  font-size: 10px;
  font-weight: 700;
}

.index-hero h1 {
  margin: 18px 0 26px;
  font-size: 92px;
}

.role-rail {
  min-height: 52px;
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.role-rail button {
  min-width: 130px;
  padding: 0 22px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

.role-rail button.is-active {
  color: var(--paper);
  background: var(--oxide);
}

.role-rail > span {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 0 var(--page-x);
  color: var(--sub);
  font-size: 10px;
}

.index-records {
  padding-top: 112px;
  padding-bottom: 120px;
}

.index-record {
  display: grid;
  min-height: 760px;
  margin-bottom: 88px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.index-record.is-filtered {
  display: none;
}

.index-record--a {
  grid-template-columns: 7fr 5fr;
}

.index-record--b {
  grid-template-columns: 4fr 8fr;
}

.index-record--c {
  grid-template-columns: 6fr 6fr;
}

.index-record__media {
  min-height: 760px;
}

.index-record__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-record--a .index-record__media,
.index-record--c .index-record__media {
  border-right: 1px solid var(--ink);
}

.index-record--b .index-record__media {
  border-left: 1px solid var(--ink);
}

.index-record__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8%;
}

.index-record__copy h2 {
  margin: 18px 0;
  font-family: "Panchang", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.06;
}

.index-record__copy > p:nth-of-type(2) {
  max-width: 460px;
  color: var(--sub);
}

.index-record dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: auto 0 0;
  border-top: 1px solid var(--line);
}

.index-record dl div {
  padding: 18px 0;
  border-right: 1px solid var(--line);
}

.index-record dl div:last-child {
  padding-left: 18px;
  border-right: 0;
}

.construction-band {
  display: grid;
  grid-template-columns: 8fr 4fr;
  color: var(--paper);
  background: var(--charcoal);
}

.construction-band__media {
  min-height: 680px;
  border-right: 1px solid #62635e;
}

.construction-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.construction-band__spec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12%;
}

.construction-band h2 {
  margin: 20px 0 50px;
  font-size: 36px;
}

.construction-band ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #62635e;
}

.construction-band li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #62635e;
  color: #c3c4bd;
  font-size: 13px;
}

.construction-band li span {
  color: var(--oxide);
  font-family: "Panchang", sans-serif;
  font-size: 10px;
}

.index-route {
  padding-top: 112px;
  padding-bottom: 120px;
}

.index-route h2 {
  margin: 24px 0 38px;
}

/* PRODUCT */
.product-plate {
  display: grid;
  grid-template-columns: 8fr 4fr;
  min-height: calc(100vh - var(--header-h));
  border-bottom: 1px solid var(--ink);
}

.product-plate__media {
  position: relative;
  display: grid;
  place-items: center;
  padding: 48px;
  background: var(--paper);
  border-right: 1px solid var(--ink);
}

.product-plate__media > img {
  width: min(100%, 760px);
  max-height: calc(100vh - 172px);
  object-fit: contain;
}

.product-plate__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 10%;
}

.product-plate h1 {
  margin: 26px 0;
  font-size: 58px;
}

.product-intro {
  margin: 0 0 34px;
  color: var(--sub);
}

.option-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.option-block > span,
.option-block > strong {
  font-size: 10px;
}

.option-block > strong {
  grid-column: 1 / -1;
  color: var(--sub);
}

.swatches,
.size-control {
  display: flex;
}

.swatch {
  width: 26px;
  height: 26px;
  margin-left: 8px;
  border: 1px solid var(--line);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.swatch.is-active {
  outline-color: var(--ink);
}

.swatch--charcoal {
  background: #343633;
}

.swatch--chalk {
  background: #dcd7ca;
}

.swatch--oxide {
  background: var(--oxide);
}

.size-control button {
  width: 38px;
  height: 32px;
  border: 1px solid var(--line);
  border-right: 0;
  background: transparent;
  font-size: 11px;
}

.size-control button:last-child {
  border-right: 1px solid var(--line);
}

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

.product-specs {
  margin: 24px 0 0;
  border-bottom: 1px solid var(--line);
}

.product-specs div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.product-specs dd {
  text-align: right;
}

.zone-ledger {
  padding-top: 120px;
  padding-bottom: 124px;
}

.zone-inspector {
  display: grid;
  grid-template-columns: 4fr 8fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.zone-list {
  border-right: 1px solid var(--ink);
}

.zone-list button {
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 3px 16px;
  align-content: center;
  padding: 13px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
}

.zone-list button:last-child {
  border-bottom: 0;
}

.zone-list button.is-active {
  color: var(--paper);
  background: var(--oxide);
}

.zone-list span {
  grid-row: 1 / 3;
  align-self: center;
  font-family: "Panchang", sans-serif;
  font-size: 10px;
}

.zone-list strong {
  font-family: "Panchang", sans-serif;
  font-size: 13px;
}

.zone-list em {
  color: var(--sub);
  font-size: 10px;
  font-style: normal;
}

.zone-list button.is-active em {
  color: #edcfc5;
}

.zone-detail {
  display: grid;
  grid-template-columns: 7fr 5fr;
}

.zone-detail__media {
  border-right: 1px solid var(--ink);
}

.zone-detail__media img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
}

.zone-detail__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11%;
}

.zone-detail__copy h3 {
  margin: 20px 0;
  font-family: "Panchang", "Malgun Gothic", sans-serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.2;
}

.zone-detail__copy > p:last-child {
  color: var(--sub);
}

.fit-profile {
  display: grid;
  grid-template-columns: 7fr 5fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.fit-profile__media {
  min-height: 850px;
  border-right: 1px solid var(--ink);
}

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

.fit-profile__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10%;
}

.fit-profile h2 {
  margin: 22px 0 50px;
  font-size: 38px;
}

.fit-lines {
  border-top: 1px solid var(--line);
}

.fit-lines p {
  display: grid;
  grid-template-columns: 32px 1fr;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--sub);
}

.fit-lines span {
  color: var(--oxide);
  font-family: "Panchang", sans-serif;
  font-size: 11px;
}

.care-section {
  padding-top: 112px;
  padding-bottom: 120px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.care-grid details {
  min-height: 200px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.care-grid details:last-child {
  border-right: 0;
}

.care-grid summary {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: "Panchang", "Malgun Gothic", sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.care-grid summary span {
  color: var(--oxide);
  font-size: 10px;
}

.care-grid details p {
  margin: 28px 0 0 34px;
  color: var(--sub);
}

.next-product {
  position: relative;
  min-height: 680px;
  color: var(--paper);
  background: var(--charcoal);
}

.next-product > img {
  width: 68%;
  min-height: 680px;
  object-fit: cover;
}

.next-product__copy {
  position: absolute;
  inset: 0 0 0 auto;
  width: 32%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5%;
  border-left: 1px solid #686963;
  background: var(--charcoal);
}

.next-product h2 {
  margin: 20px 0;
  font-family: "Panchang", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.05;
}

.next-product__copy > p:nth-of-type(2) {
  margin-bottom: 34px;
  color: #b9bab4;
}

@media (max-width: 1100px) {
  :root {
    --page-x: 34px;
  }

  .home-hero__copy {
    top: 88px;
  }

  .home-hero h1 {
    font-size: 56px;
  }

  .section-intro h2,
  .section-heading-row h2,
  .index-route h2 {
    font-size: 40px;
  }

  .material-band {
    grid-template-columns: 2fr 7fr;
  }

  .material-band > p:last-child {
    grid-column: 2;
  }

  .load-note {
    padding-inline: 8%;
  }

  .load-note h3 {
    font-size: 29px;
  }

  .index-record {
    min-height: 650px;
  }

  .index-record__media {
    min-height: 650px;
  }

  .construction-band__media {
    min-height: 560px;
  }

  .product-plate h1 {
    font-size: 44px;
  }

  .product-plate__info {
    padding-inline: 8%;
  }

  .zone-detail {
    grid-template-columns: 6fr 6fr;
  }
}

@media (max-width: 820px) {
  :root {
    --page-x: 24px;
    --header-h: 64px;
  }

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

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .home-hero {
    height: auto;
    overflow: visible;
  }

  .home-hero__media {
    display: block;
    height: 520px;
  }

  .home-hero__copy {
    position: static;
    width: 100%;
    padding: 34px var(--page-x) 40px;
    background: var(--chalk);
    border-top: 1px solid var(--ink);
  }

  .home-hero h1 {
    margin: 18px 0;
    font-size: 46px;
  }

  .hero-korean {
    font-size: 17px;
  }

  .coordinate-rail {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }

  .coordinate-rail span {
    padding-inline: var(--page-x);
    white-space: nowrap;
  }

  .load-map,
  .zone-ledger {
    padding-top: 90px;
    padding-bottom: 96px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 40px;
  }

  .section-intro h2,
  .section-heading-row h2,
  .index-route h2 {
    font-size: 35px;
  }

  .load-instrument {
    grid-template-columns: 1fr;
  }

  .load-visual {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .zone-controls {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }

  .load-note {
    min-height: 370px;
    padding: 66px var(--page-x) 46px;
  }

  .spec-strip {
    grid-template-columns: 1fr;
  }

  .spec-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .spec-strip div:last-child {
    border-bottom: 0;
  }

  .collection-field,
  .making,
  .lineup,
  .index-records,
  .care-section {
    padding-top: 88px;
    padding-bottom: 94px;
  }

  .look-tracks {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .look-record--narrow,
  .look-record--middle {
    padding-top: 0;
  }

  .making-strip {
    grid-template-columns: 1fr;
  }

  .making-strip figure {
    border-right: 0;
    border-bottom: 1px solid #6b6c66;
  }

  .making-note {
    min-height: 260px;
  }

  .material-statement > img {
    height: 70vw;
  }

  .material-band {
    grid-template-columns: 1fr;
    padding-inline: var(--page-x);
  }

  .material-band h2 {
    font-size: 34px;
  }

  .material-band > p:last-child {
    grid-column: auto;
  }

  .lineup-ledger {
    grid-template-columns: 1fr 1fr;
  }

  .lineup-ledger > *:nth-child(2) {
    border-right: 0;
  }

  .lineup-ledger > *:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-wordmark {
    font-size: 64px;
  }

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

  .newsletter {
    grid-column: 1 / -1;
  }

  .index-hero {
    height: 560px;
  }

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

  .index-hero__copy {
    top: 42px;
  }

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

  .role-rail {
    overflow-x: auto;
  }

  .role-rail > span {
    min-width: 160px;
    padding-inline: 20px;
  }

  .index-record,
  .index-record--a,
  .index-record--b,
  .index-record--c {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-bottom: 64px;
  }

  .index-record--a .index-record__media,
  .index-record--b .index-record__media,
  .index-record--c .index-record__media {
    border: 0;
    border-bottom: 1px solid var(--ink);
  }

  .index-record--b .index-record__copy {
    order: 2;
  }

  .index-record__media {
    min-height: 0;
  }

  .index-record__media img {
    height: auto;
    aspect-ratio: 2 / 3;
  }

  .index-record__copy {
    min-height: 380px;
    padding: 8%;
  }

  .construction-band {
    grid-template-columns: 1fr;
  }

  .construction-band__media {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #62635e;
  }

  .construction-band__media img {
    height: auto;
  }

  .construction-band__spec {
    min-height: 480px;
    padding: 10%;
  }

  .product-plate {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-plate__media {
    min-height: 680px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .product-plate__media > img {
    max-height: 590px;
  }

  .product-plate__info {
    padding: 54px var(--page-x) 70px;
  }

  .zone-inspector {
    grid-template-columns: 1fr;
  }

  .zone-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .zone-list button {
    border-right: 1px solid var(--line);
  }

  .zone-list button:nth-child(even) {
    border-right: 0;
  }

  .zone-list button:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .zone-detail {
    grid-template-columns: 1fr;
  }

  .zone-detail__media {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .zone-detail__media img {
    min-height: 0;
  }

  .zone-detail__copy {
    min-height: 330px;
  }

  .fit-profile {
    grid-template-columns: 1fr;
  }

  .fit-profile__media {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .fit-profile__media img {
    height: auto;
  }

  .fit-profile__copy {
    min-height: 520px;
  }

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

  .care-grid details {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .care-grid details:last-child {
    border-bottom: 0;
  }

  .next-product {
    min-height: 0;
  }

  .next-product > img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .next-product__copy {
    position: static;
    width: 100%;
    min-height: 440px;
    border-left: 0;
    border-top: 1px solid #686963;
    padding: 10%;
  }
}

@media (min-width: 521px) and (max-width: 820px) {
  .home-hero__copy {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .home-hero h1 {
    margin: 12px 0;
    font-size: 38px;
  }

  .hero-korean {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .hero-korean br {
    display: none;
  }

  .home-hero .command {
    min-height: 42px;
  }
}

@media (max-width: 520px) {
  :root {
    --page-x: 20px;
  }

  body {
    font-size: 15px;
  }

  .brand-mark {
    font-size: 16px;
  }

  .brand-mark__block {
    width: 15px;
    height: 15px;
  }

  .home-hero__media {
    height: 420px;
  }

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

  .home-hero__copy {
    min-height: 262px;
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .home-hero h1 {
    font-size: 34px;
  }

  .hero-korean {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .command {
    min-height: 44px;
    gap: 22px;
  }

  .section-intro h2,
  .section-heading-row h2,
  .index-route h2,
  .fit-profile h2 {
    font-size: 29px;
  }

  .section-heading-row {
    display: grid;
  }

  .load-note h3 {
    font-size: 25px;
  }

  .record-caption {
    min-height: 92px;
  }

  .making-note > p:nth-child(2) {
    font-size: 21px;
  }

  .material-statement > img {
    height: 92vw;
  }

  .material-band h2 {
    font-size: 28px;
  }

  .lineup-ledger {
    grid-template-columns: 1fr;
  }

  .lineup-ledger > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lineup-ledger > *:last-child {
    border-bottom: 0;
  }

  .site-footer {
    padding-inline: var(--page-x);
  }

  .footer-wordmark {
    font-size: 45px;
  }

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

  .newsletter {
    grid-column: auto;
  }

  .footer-base {
    display: grid;
    gap: 8px;
  }

  .index-hero {
    height: 510px;
  }

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

  .index-hero__copy {
    left: var(--page-x);
    top: 28px;
  }

  .index-hero h1 {
    font-size: 50px;
  }

  .role-rail button {
    min-width: 104px;
  }

  .index-record__copy {
    min-height: 340px;
    padding: 32px 20px;
  }

  .index-record__copy h2 {
    font-size: 31px;
  }

  .construction-band h2 {
    font-size: 29px;
  }

  .index-route {
    padding-top: 82px;
    padding-bottom: 90px;
  }

  .product-plate__media {
    min-height: 490px;
    padding: 24px;
  }

  .product-plate__media > img {
    max-height: 430px;
  }

  .product-plate h1 {
    font-size: 38px;
  }

  .zone-list {
    display: block;
  }

  .zone-list button,
  .zone-list button:nth-child(even),
  .zone-list button:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .zone-list button:last-child {
    border-bottom: 0;
  }

  .zone-detail__copy h3 {
    font-size: 25px;
  }

  .fit-profile__copy {
    min-height: 460px;
    padding: 56px 20px;
  }

  .care-grid details {
    padding-inline: 0;
  }

  .next-product > img {
    aspect-ratio: 4 / 3;
    object-position: 72% center;
  }

  .next-product h2 {
    font-size: 35px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Brand differentiation tune: reinforce the load-bearing quarry beam. */
.load-instrument {
  border-top: 5px solid var(--oxide);
}

@media (max-width: 767px) {
  .load-instrument {
    border-top-width: 3px;
  }
}
