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

:root {
  --paper: #f3f0ea;
  --paper-bright: #faf8f4;
  --paper-deep: #e7e1d7;
  --ink: #191817;
  --ink-soft: #5d5852;
  --line: #a9a095;
  --line-dark: #6d675f;
  --cobalt: #2347a7;
  --vermilion: #c64a32;
  --rose: #d8a5ae;
  --plum: #6e3e5f;
  --bare: #c98d71;
  --font-display: "Zodiak", Batang, "Noto Serif KR", serif;
  --font-body: "Cabinet Grotesk", "Malgun Gothic", sans-serif;
  --font-korean-display: Batang, "Noto Serif KR", serif;
  --container: 1520px;
  --side: 56px;
  --section: 120px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

body.is-locked {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

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

button {
  cursor: pointer;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-korean-display);
  font-weight: 400;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius-sm);
}

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

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

.micro-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.site-header {
  position: relative;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  padding-inline: var(--side);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

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

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

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

.tray-trigger,
.icon-button {
  border: 0;
  background: transparent;
}

.tray-trigger {
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
}

.tray-trigger span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 4px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
}

.menu-trigger {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 200;
  inset: 0;
  padding: 24px;
  color: var(--paper);
  background: var(--ink);
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu nav {
  display: grid;
  margin-top: 64px;
  border-top: 1px solid #716d67;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  min-height: 84px;
  font-family: var(--font-display);
  font-size: 36px;
  border-bottom: 1px solid #716d67;
}

.swatch-tray {
  position: fixed;
  z-index: 210;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100%;
  padding: 30px;
  background: var(--paper-bright);
  border-left: 1px solid var(--ink);
  overflow-y: auto;
}

.tray-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--ink);
}

.tray-head h2 {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 38px;
}

.tray-list {
  display: grid;
}

.tray-empty {
  padding-block: 40px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.tray-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.tray-item-swatch {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
}

.tray-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
}

.tray-item small {
  display: block;
  color: var(--ink-soft);
}

.tray-remove {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
}

.tray-link {
  margin-top: 30px;
}

.scrim {
  position: fixed;
  z-index: 190;
  inset: 0;
  background: rgb(25 24 23 / 56%);
}

.primary-command,
.secondary-command,
.light-command,
.purchase-command {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease, background-color 180ms ease, transform 120ms ease;
}

.primary-command,
.purchase-command {
  color: var(--paper);
  background: var(--ink);
}

.primary-command:hover,
.purchase-command:hover {
  color: var(--paper);
  background: var(--cobalt);
}

.secondary-command {
  background: transparent;
}

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

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

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

.primary-command:active,
.secondary-command:active,
.light-command:active,
.purchase-command:active {
  transform: scale(0.98);
}

.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 10px;
  font-size: 13px;
  font-weight: 600;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
}

/* Home hero */
.home-hero {
  position: relative;
  height: min(800px, calc(100svh - 112px));
  min-height: 620px;
  overflow: hidden;
  background: var(--paper-deep);
}

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

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

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--side);
  width: 35%;
  max-width: 510px;
  transform: translateY(-50%);
}

.hero-copy h1 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 104px;
  line-height: 0.92;
  white-space: nowrap;
}

.hero-statement {
  margin-top: 28px;
  font-family: var(--font-korean-display);
  font-size: 30px;
  line-height: 1.4;
  word-break: keep-all;
}

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

.hero-next {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  min-height: 52px;
  padding-inline: var(--side);
  font-size: 12px;
  font-weight: 600;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-next span:last-child {
  font-size: 20px;
}

/* Weave Table */
.weave-section,
.loom-instrument-section {
  padding-top: var(--section);
  padding-bottom: var(--section);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 72px;
}

.section-intro h2,
.loom-title-row h2,
.making-heading h2,
.lineup-heading h2,
.record-heading h2,
.comparison-heading h2,
.profile-copy h2,
.texture-caption h2,
.application-copy h2,
.layers-heading h2,
.details-section h2 {
  font-size: 54px;
  line-height: 1.12;
}

.section-intro > p:last-child,
.loom-title-row > p,
.comparison-heading > p {
  max-width: 390px;
  color: var(--ink-soft);
}

.weave-table {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.weave-result {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  border-right: 1px solid var(--ink);
  background: var(--paper-deep);
}

.weave-result img {
  width: 100%;
  height: 630px;
  object-fit: cover;
  object-position: center;
}

.weave-result figcaption {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  min-height: 132px;
  padding: 24px;
  background: var(--paper-bright);
  border-top: 1px solid var(--ink);
}

.weave-swatch {
  width: 34px;
  height: 34px;
  margin-top: 5px;
  background: var(--vermilion);
  border: 1px solid var(--ink);
}

.weave-result h3 {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.1;
}

.weave-result figcaption p {
  max-width: 420px;
  margin-top: 6px;
  color: var(--ink-soft);
}

.weave-instrument {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 38px;
}

.shade-axis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-left: 94px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.shade-axis button {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 10px;
  text-align: left;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 11px;
  line-height: 1.35;
}

.shade-axis button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--ink);
}

.axis-color,
.mini-shade {
  display: block;
  background: var(--shade-color);
}

.axis-color {
  width: 12px;
  height: 36px;
  border: 1px solid currentColor;
}

.shade-bare {
  --shade-color: var(--bare);
}

.shade-rose {
  --shade-color: #b97886;
}

.shade-dahlia {
  --shade-color: var(--vermilion);
}

.shade-plum {
  --shade-color: var(--plum);
}

.matrix-frame {
  display: grid;
  grid-template-columns: 94px 1fr;
}

.density-axis {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.density-axis button {
  padding: 8px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 11px;
  font-weight: 600;
}

.density-axis button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--ink);
}

.weave-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, 100px);
  border-top: 1px solid var(--line);
}

.weave-grid button {
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.weave-grid button:nth-child(1) { background: #ead2c5; }
.weave-grid button:nth-child(2) { background: #e5c5cb; }
.weave-grid button:nth-child(3) { background: #e9b7aa; }
.weave-grid button:nth-child(4) { background: #d0b2c5; }
.weave-grid button:nth-child(5) { background: #dcae97; }
.weave-grid button:nth-child(6) { background: #d4a2ac; }
.weave-grid button:nth-child(7) { background: #d77d68; }
.weave-grid button:nth-child(8) { background: #a97898; }
.weave-grid button:nth-child(9) { background: #c98d71; }
.weave-grid button:nth-child(10) { background: #bd7b88; }
.weave-grid button:nth-child(11) { background: #c64a32; }
.weave-grid button:nth-child(12) { background: #6e3e5f; }

.weave-grid button:hover {
  box-shadow: inset 0 0 0 3px var(--paper);
}

.weave-crosshair {
  position: absolute;
  z-index: 3;
  left: calc((var(--shade-index) + 0.5) * 25%);
  top: calc((var(--density-index) + 0.5) * 33.333%);
  width: 18px;
  height: 18px;
  background: var(--paper);
  border: 2px solid var(--ink);
  transform: translate(-50%, -50%);
  transition: left 260ms var(--ease), top 260ms var(--ease);
  pointer-events: none;
}

.weave-crosshair::before,
.weave-crosshair::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.weave-crosshair::before {
  width: 74px;
  height: 1px;
}

.weave-crosshair::after {
  width: 1px;
  height: 74px;
}

.weave-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 24px;
  margin-left: 94px;
  padding-top: 24px;
}

.weave-summary .micro-label {
  grid-column: 1 / -1;
  color: var(--ink-soft);
}

.weave-summary strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

/* Making and campaign */
.making-section {
  padding-top: var(--section);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.making-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  gap: 48px;
  padding-bottom: 72px;
}

.making-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.85fr;
  border-top: 1px solid var(--ink);
}

.making-grid figure {
  min-width: 0;
  border-right: 1px solid var(--ink);
}

.making-grid figure:last-child {
  border-right: 0;
}

.making-grid img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.making-grid figcaption {
  display: grid;
  grid-template-columns: 36px 110px 1fr;
  gap: 14px;
  min-height: 104px;
  padding: 20px 24px;
  background: var(--paper);
  border-top: 1px solid var(--ink);
  font-size: 13px;
}

.making-grid figcaption p {
  color: var(--ink-soft);
}

.cheek-campaign {
  position: relative;
  background: var(--ink);
}

.cheek-campaign > img {
  width: 100%;
  max-height: 940px;
  object-fit: cover;
}

.campaign-note {
  position: absolute;
  right: var(--side);
  bottom: 0;
  width: min(480px, 40%);
  padding: 34px;
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--paper);
  border-left: 1px solid var(--paper);
}

.campaign-note h2 {
  margin-top: 16px;
  font-size: 46px;
  line-height: 1.15;
}

.campaign-note .light-command {
  margin-top: 28px;
}

.lineup-section {
  padding-top: var(--section);
  padding-bottom: var(--section);
}

.lineup-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 64px;
}

.lineup-heading h2 {
  margin-top: 14px;
}

.lineup-image {
  width: 100%;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  object-fit: contain;
}

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

.lineup-ledger a {
  display: grid;
  min-height: 118px;
  padding: 20px;
  border-right: 1px solid var(--ink);
  transition: color 180ms ease, background-color 180ms ease;
}

.lineup-ledger a:hover {
  color: var(--paper);
  background: var(--ink);
}

.lineup-ledger span,
.lineup-ledger small {
  font-size: 11px;
}

.lineup-ledger strong {
  align-self: end;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

/* Shade Loom */
.loom-hero {
  position: relative;
  height: min(680px, calc(100svh - 72px));
  min-height: 540px;
  overflow: hidden;
}

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

.loom-hero-copy {
  position: absolute;
  top: 50%;
  left: var(--side);
  width: 27%;
  transform: translateY(-50%);
}

.loom-hero-copy h1 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 0.92;
  white-space: nowrap;
}

.loom-hero-copy > p:last-child {
  margin-top: 24px;
}

.loom-title-row,
.comparison-heading {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 72px;
}

.loom-title-row h2,
.comparison-heading h2 {
  margin-top: 16px;
}

.weave-table-wide .weave-result img {
  height: 680px;
}

.shade-records {
  border-top: 1px solid var(--ink);
}

.record-heading {
  padding-top: var(--section);
  padding-bottom: 72px;
}

.record-heading h2 {
  margin-top: 16px;
}

.shade-record {
  display: grid;
  grid-template-columns: 7fr 5fr;
  min-height: 720px;
  border-top: 1px solid var(--ink);
}

.shade-record.is-reversed {
  grid-template-columns: 5fr 7fr;
}

.shade-record.is-reversed .shade-record-image {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--ink);
}

.shade-record-image {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 54px;
  background: var(--paper-bright);
  border-right: 1px solid var(--ink);
}

.shade-record-image img {
  width: min(100%, 660px);
  aspect-ratio: 1;
  object-fit: contain;
}

.shade-record-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
}

.shade-record-copy .record-number {
  position: absolute;
  top: 32px;
  right: 36px;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  opacity: 0.35;
}

.shade-record-copy h3 {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 66px;
  line-height: 0.95;
}

.shade-record-copy > p:not(.micro-label) {
  max-width: 560px;
  margin-top: 28px;
  font-size: 18px;
  word-break: keep-all;
}

.shade-record-copy dl {
  margin-top: 40px;
  border-top: 1px solid currentColor;
}

.shade-record-copy dl div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-block: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}

.shade-record-copy .text-button,
.shade-record-copy .primary-command {
  align-self: flex-start;
  margin-top: 38px;
}

.shade-record-01 .shade-record-copy {
  background: #d2b19d;
}

.shade-record-02 .shade-record-copy {
  background: #c99da5;
}

.shade-record-03 .shade-record-copy {
  color: #191817;
  background: #c77866;
}

.shade-record-04 .shade-record-copy {
  color: var(--paper);
  background: var(--plum);
}

.comparison-section {
  padding-top: var(--section);
  padding-bottom: var(--section);
}

.table-scroll {
  overflow-x: auto;
}

.comparison-section table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 13px;
}

.comparison-section th,
.comparison-section td {
  padding: 18px 16px;
  text-align: left;
  border: 1px solid var(--line);
}

.comparison-section thead th {
  color: var(--paper);
  background: var(--ink);
}

.comparison-section tbody th {
  width: 160px;
  background: var(--paper-deep);
}

.loom-cta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  padding: 80px var(--side);
  color: var(--paper);
  background: var(--cobalt);
  border-top: 1px solid var(--ink);
}

.loom-cta h2 {
  margin-top: 16px;
  font-size: 56px;
  line-height: 1.08;
}

/* PDP */
.pdp-opening {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 780px;
  border-bottom: 1px solid var(--ink);
}

.pdp-product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 46px;
  background: var(--paper-deep);
  border-right: 1px solid var(--ink);
}

.pdp-product-stage img {
  width: min(100%, 740px);
  max-height: 840px;
  object-fit: contain;
}

.stage-index {
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-size: 11px;
}

.purchase-ledger {
  position: relative;
}

.purchase-inner {
  position: sticky;
  top: 30px;
  padding: 72px;
}

.product-number {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 84px;
  line-height: 0.9;
}

.purchase-inner h1 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.92;
}

.product-korean {
  margin-top: 18px;
  font-family: var(--font-korean-display);
  font-size: 20px;
}

.product-intro {
  max-width: 520px;
  margin-top: 26px;
  color: var(--ink-soft);
  word-break: keep-all;
}

.purchase-group {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.purchase-label {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
}

.mini-shades {
  display: flex;
  gap: 10px;
}

.mini-shade {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
}

.mini-shade.is-active {
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 4px var(--ink);
}

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

.layer-control button {
  min-height: 46px;
  border: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 12px;
}

.layer-control button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--ink);
}

.layer-note {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13px;
}

.purchase-command {
  width: 100%;
  margin-top: 34px;
}

.purchase-footnote {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 11px;
}

.pdp-next {
  background: var(--paper-deep);
}

.profile-section {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 0;
  padding-top: var(--section);
  padding-bottom: var(--section);
}

.profile-image {
  min-width: 0;
}

.profile-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.profile-copy {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 42px;
  padding: 56px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.vertical-index {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
}

.profile-copy h2 {
  margin-top: 18px;
}

.profile-copy p:last-child {
  max-width: 450px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.texture-section {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.texture-section > img {
  width: 100%;
  max-height: 880px;
  object-fit: cover;
}

.texture-caption {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: start;
  gap: 52px;
  padding-top: 54px;
  padding-bottom: 64px;
  background: var(--paper);
}

.texture-caption > p:last-child {
  color: var(--ink-soft);
}

.application-section {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: stretch;
  padding-top: var(--section);
  padding-bottom: var(--section);
}

.application-copy {
  padding: 62px;
  color: var(--paper);
  background: var(--cobalt);
}

.application-copy h2 {
  margin-top: 18px;
}

.application-copy ol {
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--paper);
}

.application-copy li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding-block: 18px;
  border-bottom: 1px solid var(--paper);
}

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

.layers-section {
  padding-top: var(--section);
  padding-bottom: var(--section);
  background: var(--ink);
}

.layers-heading {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  align-items: end;
  gap: 48px;
  padding-bottom: 64px;
  color: var(--paper);
}

.layers-heading > p:last-child {
  color: #c9c4bc;
}

.layer-panels {
  display: grid;
  grid-template-columns: 31fr 38fr 31fr;
  border-top: 1px solid var(--paper);
}

.layer-panels figure {
  min-width: 0;
  border-right: 1px solid var(--paper);
}

.layer-panels figure:last-child {
  border-right: 0;
}

.layer-panels img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.layer-panels figcaption {
  min-height: 160px;
  padding: 24px;
  color: var(--paper);
  border-top: 1px solid var(--paper);
}

.layer-panels figcaption span {
  display: block;
  font-size: 11px;
}

.layer-panels figcaption strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
}

.layer-panels figcaption p {
  max-width: 360px;
  margin-top: 12px;
  color: #c9c4bc;
}

.details-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--section);
  padding-bottom: var(--section);
}

.formula-ledger,
.faq-block {
  padding: 56px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.formula-ledger {
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
}

.faq-block {
  border-right: 1px solid var(--ink);
}

.details-section h2 {
  margin-top: 18px;
  margin-bottom: 44px;
}

.formula-ledger dl {
  border-top: 1px solid var(--line);
}

.formula-ledger dl div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}

.formula-ledger dt {
  font-size: 12px;
  font-weight: 600;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 18px 38px 18px 0;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 17px;
  right: 4px;
  content: "+";
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 38px 20px 0;
  color: var(--ink-soft);
}

.next-shade {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--paper);
  background: var(--plum);
}

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

.next-shade > div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 34%;
  padding: 56px var(--side);
  background: var(--plum);
}

.next-shade h2 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 0.92;
}

.next-shade p:not(.micro-label) {
  margin-top: 24px;
}

.next-shade .light-command {
  margin-top: 28px;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 72px;
  padding: 72px var(--side) 26px;
  background: var(--paper-deep);
  border-top: 1px solid var(--ink);
}

.footer-brand p {
  margin-top: 22px;
  color: var(--ink-soft);
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

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

.site-footer nav strong {
  margin-bottom: 8px;
  font-size: 11px;
}

.site-footer nav a:hover {
  text-decoration: underline;
}

.newsletter label {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-korean-display);
  font-size: 18px;
}

.newsletter > div {
  display: grid;
  grid-template-columns: 1fr 48px;
  border-bottom: 1px solid var(--ink);
}

.newsletter input,
.newsletter button {
  min-height: 48px;
  border: 0;
  background: transparent;
}

.newsletter button {
  font-size: 22px;
}

.newsletter [data-form-status] {
  min-height: 24px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
}

.footer-base {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 10px;
  border-top: 1px solid var(--line);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

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

@media (max-width: 1200px) {
  :root {
    --side: 36px;
    --section: 96px;
  }

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

  .hero-copy {
    width: 45%;
  }

  .hero-statement {
    font-size: 26px;
  }

  .section-intro h2,
  .loom-title-row h2,
  .making-heading h2,
  .lineup-heading h2,
  .record-heading h2,
  .comparison-heading h2,
  .profile-copy h2,
  .texture-caption h2,
  .application-copy h2,
  .layers-heading h2,
  .details-section h2 {
    font-size: 44px;
  }

  .weave-instrument {
    padding: 26px;
  }

  .shade-axis {
    margin-left: 78px;
  }

  .matrix-frame {
    grid-template-columns: 78px 1fr;
  }

  .weave-summary {
    margin-left: 78px;
  }

  .weave-grid {
    grid-template-rows: repeat(3, 86px);
  }

  .weave-result img,
  .weave-table-wide .weave-result img {
    height: 560px;
  }

  .shade-record-copy {
    padding: 54px;
  }

  .shade-record-copy h3 {
    font-size: 54px;
  }

  .purchase-inner {
    padding: 54px;
  }

  .purchase-inner h1 {
    font-size: 58px;
  }

  .next-shade > div {
    width: 40%;
  }

  .next-shade h2 {
    font-size: 54px;
  }

  .application-copy {
    padding: 44px;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .menu-trigger {
    display: inline-grid;
  }

  .home-hero {
    min-height: 570px;
  }

  .hero-copy {
    width: 46%;
  }

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

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

  .section-intro > p:last-child {
    grid-column: 2;
  }

  .weave-table {
    grid-template-columns: 1fr;
  }

  .weave-result {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .weave-result img,
  .weave-table-wide .weave-result img {
    height: 520px;
  }

  .weave-result figcaption {
    align-content: end;
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

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

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

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

  .making-grid figcaption {
    grid-template-columns: 30px 1fr;
    align-content: center;
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

  .making-grid figcaption p {
    grid-column: 2;
  }

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

  .loom-hero {
    display: grid;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .loom-hero > img {
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    object-position: center;
  }

  .loom-hero-copy {
    position: static;
    width: 100%;
    padding: 40px var(--side) 48px;
    background: var(--paper);
    transform: none;
  }

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

  .shade-record,
  .shade-record.is-reversed {
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
  }

  .shade-record-image {
    padding: 30px;
  }

  .shade-record-copy {
    padding: 38px;
  }

  .shade-record-copy .record-number {
    top: 20px;
    right: 22px;
    font-size: 54px;
  }

  .shade-record-copy h3 {
    font-size: 42px;
  }

  .shade-record-copy > p:not(.micro-label) {
    font-size: 15px;
  }

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

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

  .purchase-inner {
    position: static;
    padding: 72px var(--side);
  }

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

  .profile-copy {
    grid-template-columns: 42px 1fr;
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

  .texture-caption {
    grid-template-columns: 1fr 1.6fr;
  }

  .texture-caption > p:last-child {
    grid-column: 2;
  }

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

  .application-section > img {
    min-height: 0;
    aspect-ratio: 8 / 7;
    order: -1;
  }

  .layers-heading {
    grid-template-columns: 1fr 1.6fr;
  }

  .layers-heading > p:last-child {
    grid-column: 2;
  }

  .layer-panels {
    grid-template-columns: 1fr;
  }

  .layer-panels figure {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--paper);
  }

  .layer-panels figcaption {
    border-top: 0;
    border-left: 1px solid var(--paper);
  }

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

  .faq-block {
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

  .next-shade > div {
    width: 36%;
  }

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

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

@media (max-width: 700px) {
  :root {
    --side: 22px;
    --section: 72px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: 64px;
    padding-inline: var(--side);
  }

  .wordmark {
    font-size: 21px;
  }

  .tray-trigger {
    font-size: 0;
  }

  .tray-trigger::before {
    content: "TRAY";
    font-size: 11px;
  }

  .tray-trigger span {
    font-size: 11px;
  }

  .swatch-tray {
    padding: 22px;
  }

  .home-hero {
    display: grid;
    grid-template-rows: 54svh auto;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .hero-media {
    grid-row: 1;
  }

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

  .hero-copy {
    position: static;
    grid-row: 2;
    width: 100%;
    max-width: none;
    padding: 30px var(--side) 34px;
    background: var(--paper);
    transform: none;
  }

  .hero-copy h1 {
    margin-top: 10px;
    font-size: 56px;
  }

  .hero-statement {
    margin-top: 18px;
    font-size: 23px;
    line-height: 1.42;
  }

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

  .hero-next {
    grid-template-columns: 1fr auto;
    min-height: 62px;
    padding-inline: var(--side);
  }

  .hero-next span:nth-child(2) {
    display: none;
  }

  .section-intro,
  .making-heading,
  .loom-title-row,
  .comparison-heading,
  .texture-caption,
  .layers-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 48px;
  }

  .section-intro > p:last-child,
  .texture-caption > p:last-child,
  .layers-heading > p:last-child {
    grid-column: 1;
  }

  .section-intro h2,
  .loom-title-row h2,
  .making-heading h2,
  .lineup-heading h2,
  .record-heading h2,
  .comparison-heading h2,
  .profile-copy h2,
  .texture-caption h2,
  .application-copy h2,
  .layers-heading h2,
  .details-section h2 {
    font-size: 34px;
    line-height: 1.18;
  }

  .weave-result {
    grid-template-columns: 1fr;
  }

  .weave-result img,
  .weave-table-wide .weave-result img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .weave-result figcaption {
    min-height: 126px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .weave-instrument {
    padding: 24px 0 0;
  }

  .shade-axis {
    display: flex;
    gap: 8px;
    margin-left: 0;
    padding: 0 var(--side) 12px;
    border: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .shade-axis button {
    flex: 0 0 142px;
    border: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .matrix-frame {
    display: block;
    padding-inline: var(--side);
  }

  .density-axis {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
    border-top: 1px solid var(--line);
  }

  .density-axis button {
    min-height: 48px;
  }

  .weave-grid {
    display: none;
  }

  .weave-summary {
    grid-template-columns: 1fr;
    margin-left: 0;
    padding: 22px var(--side) 28px;
    border-top: 1px solid var(--line);
  }

  .weave-summary .secondary-command {
    width: 100%;
    margin-top: 12px;
  }

  .making-heading {
    padding-bottom: 48px;
  }

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

  .making-grid figcaption {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .cheek-campaign > img {
    aspect-ratio: 4 / 5;
    object-position: 42% center;
  }

  .campaign-note {
    position: static;
    width: 100%;
    padding: 30px var(--side);
    border-top: 1px solid var(--paper);
    border-left: 0;
  }

  .campaign-note h2 {
    font-size: 34px;
  }

  .lineup-heading {
    display: grid;
    gap: 24px;
    margin-bottom: 44px;
  }

  .lineup-image {
    aspect-ratio: 5 / 3;
    object-fit: contain;
  }

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

  .lineup-ledger a {
    min-height: 92px;
  }

  .loom-hero {
    display: grid;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .loom-hero > img {
    height: auto;
    aspect-ratio: 2 / 1;
    object-position: center;
  }

  .loom-hero-copy {
    position: static;
    width: 100%;
    padding: 34px var(--side) 42px;
    background: var(--paper);
    transform: none;
  }

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

  .shade-record,
  .shade-record.is-reversed {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .shade-record.is-reversed .shade-record-image {
    order: 0;
    border-left: 0;
  }

  .shade-record-image {
    padding: 36px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .shade-record-copy {
    padding: 52px 24px;
  }

  .shade-record-copy .record-number {
    top: 20px;
    right: 20px;
  }

  .shade-record-copy h3 {
    font-size: 44px;
  }

  .comparison-heading {
    gap: 20px;
  }

  .comparison-section tbody th {
    position: sticky;
    left: 0;
    z-index: 2;
  }

  .loom-cta {
    display: grid;
    padding: 58px var(--side);
  }

  .loom-cta h2 {
    font-size: 38px;
  }

  .pdp-product-stage {
    min-height: 0;
    padding: 28px 18px;
  }

  .pdp-product-stage img {
    width: 100%;
    max-height: none;
  }

  .purchase-inner {
    padding: 56px var(--side);
  }

  .product-number {
    font-size: 64px;
  }

  .purchase-inner h1 {
    font-size: 48px;
  }

  .profile-section {
    padding-inline: 0;
  }

  .profile-image img {
    aspect-ratio: 4 / 5;
    object-position: center;
  }

  .profile-copy {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px var(--side);
    border-right: 0;
    border-left: 0;
  }

  .vertical-index {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .texture-section > img {
    aspect-ratio: 4 / 3;
  }

  .texture-caption {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .application-section {
    padding-inline: 0;
  }

  .application-copy {
    padding: 48px var(--side);
  }

  .layer-panels figure {
    grid-template-columns: 1fr;
  }

  .layer-panels figcaption {
    min-height: 136px;
    border-top: 1px solid var(--paper);
    border-left: 0;
  }

  .details-section {
    padding-inline: 0;
  }

  .formula-ledger,
  .faq-block {
    padding: 46px var(--side);
    border-right: 0;
    border-left: 0;
  }

  .formula-ledger dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .next-shade {
    display: grid;
    min-height: 0;
  }

  .next-shade > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
    object-position: right center;
  }

  .next-shade > div {
    position: static;
    width: 100%;
    padding: 42px var(--side) 50px;
    background: var(--plum);
    transform: none;
  }

  .next-shade h2 {
    font-size: 52px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 56px var(--side) 24px;
  }

  .site-footer nav {
    gap: 24px;
  }

  .newsletter {
    grid-column: auto;
  }

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

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

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

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