:root {
  --paper: #f2efe7;
  --paper-bright: #fcfbf7;
  --ink: #11100e;
  --graphite: #74736d;
  --rule: rgba(17, 16, 14, 0.28);
  --red: #c93022;
  --blue: #496f86;
  --header-h: 68px;
  --page-x: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

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

h1,
h2,
h3,
.wordmark,
.footer-brand strong,
.room-route a,
.related-proof h2 {
  font-family: "Array", Georgia, serif;
  font-weight: 400;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 var(--page-x);
  border-bottom: 1px solid var(--ink);
  background: rgba(242, 239, 231, 0.96);
}

.wordmark {
  justify-self: start;
  font-size: 30px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 11px;
  font-weight: 700;
}

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

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  background: var(--red);
  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: 20px;
}

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

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

.menu-command {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 9px;
  border: 1px solid var(--ink);
  background: transparent;
}

.menu-command > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 22px var(--page-x) 26px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  font-weight: 700;
}

.proof-kicker,
.section-number {
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-kicker span {
  color: var(--red);
}

.text-command {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

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

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

.text-command--dark:hover {
  background: var(--red);
}

.proof-section {
  border-top: 1px solid var(--ink);
  padding: 76px var(--page-x);
}

.section-proof-head {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.section-proof-head h2,
.section-inline-head h2,
.revision-intro h2,
.journal-copy h2,
.newsletter h2,
.correction-log > header h2,
.product-care h2 {
  margin-top: 14px;
  font-size: 58px;
  line-height: 0.96;
}

.section-proof-head > p {
  max-width: 480px;
  align-self: end;
  font-size: 15px;
}

.section-inline-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

/* Home hero */

.home-hero {
  position: relative;
  height: 760px;
  overflow: hidden;
  background: var(--paper-bright);
}

.home-hero picture,
.home-hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero picture img {
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  top: 112px;
  left: var(--page-x);
  z-index: 2;
  width: 52%;
}

.hero-copy h1 {
  margin-top: 34px;
  font-size: 142px;
  line-height: 0.78;
}

.hero-line {
  margin-top: 30px;
  font-size: 22px;
  line-height: 1.06;
}

.hero-ko {
  margin-top: 18px;
  color: #302e2a;
  font-size: 14px;
}

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

.hero-folio {
  position: absolute;
  top: 110px;
  right: 18px;
  z-index: 2;
  display: grid;
  gap: 10px;
  justify-items: end;
  font-size: 9px;
  font-weight: 700;
}

.register-mark {
  position: absolute;
  z-index: 2;
  color: var(--graphite);
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 300;
}

.register-mark--a {
  top: 18px;
  left: 16px;
}

.register-mark--b {
  right: 16px;
  bottom: 18px;
}

.proof-tab {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 44px;
  align-items: center;
  min-height: 58px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
}

.proof-tab > * {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--rule);
}

.proof-tab strong {
  font-size: 13px;
}

.proof-tab a {
  justify-content: center;
  padding: 0;
  border-right: 0;
  font-size: 20px;
}

/* CUT MAP */

.cut-map-stage {
  display: grid;
  grid-template-columns: 8fr 4fr;
  border: 1px solid var(--ink);
}

.cut-map-visual {
  display: grid;
  grid-template-rows: minmax(480px, 1fr) auto;
  min-width: 0;
  border-right: 1px solid var(--ink);
  background: var(--paper-bright);
}

.cut-map-visual img {
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.cut-map-visual figcaption {
  display: grid;
  grid-template-columns: 46px 180px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 112px;
  padding: 18px;
  border-top: 1px solid var(--ink);
}

.cut-map-visual figcaption > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.cut-map-visual figcaption strong {
  font-size: 15px;
}

.cut-map-visual figcaption p {
  max-width: 520px;
  color: #393731;
  font-size: 13px;
}

.cut-map-controls {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}

.cut-control {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  gap: 5px 10px;
  align-content: center;
  min-height: 132px;
  padding: 18px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
}

.cut-control:last-child {
  border-bottom: 0;
}

.cut-control > span {
  grid-row: 1 / 3;
  color: var(--red);
  font-size: 11px;
}

.cut-control strong {
  font-size: 15px;
}

.cut-control small {
  color: var(--graphite);
  font-size: 11px;
}

.cut-control:hover,
.cut-control.is-active {
  background: var(--ink);
  color: var(--paper-bright);
}

.cut-control.is-active small {
  color: #c9c5bb;
}

/* Revision */

.revision {
  display: grid;
  grid-template-columns: 3fr 9fr;
  padding-right: 0;
  padding-left: 0;
}

.revision-intro {
  padding: 0 var(--page-x);
}

.revision-intro h2 {
  font-size: 42px;
}

.revision-intro > p:last-child {
  max-width: 300px;
  margin-top: 28px;
  color: #383630;
  font-size: 14px;
}

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

.revision-sequence article {
  min-width: 0;
  border-right: 1px solid var(--ink);
}

.revision-label {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.revision-label span {
  color: var(--red);
  font-size: 10px;
}

.revision-label strong {
  font-size: 12px;
}

.revision-sequence img {
  aspect-ratio: 4 / 3;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  object-fit: cover;
}

.revision-sequence article > p {
  min-height: 82px;
  padding: 14px 16px;
  color: #3b3933;
  font-size: 12px;
}

/* Material proof */

.proof-pair {
  display: grid;
  grid-template-columns: 8fr 4fr;
  padding: 0;
}

.proof-pair__material {
  padding: 72px var(--page-x);
  border-right: 1px solid var(--ink);
}

.proof-pair__material img {
  margin-top: 34px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-notes {
  display: grid;
  align-content: space-between;
  min-width: 0;
  padding: 72px 28px 32px;
}

.proof-notes .blue-note {
  color: var(--blue);
  font-family: "Array", Georgia, serif;
  font-size: 32px;
  line-height: 1.05;
}

.proof-notes ol {
  padding: 0;
  margin: 60px 0;
  list-style: none;
}

.proof-notes li {
  display: grid;
  grid-template-columns: 36px 1fr;
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  font-weight: 700;
}

.proof-notes li:last-child {
  border-bottom: 1px solid var(--rule);
}

.proof-notes li span {
  color: var(--red);
}

.proof-notes > p:last-child {
  color: var(--graphite);
  font-size: 11px;
}

/* Lineup */

.section-inline-head--lineup {
  align-items: center;
}

.lineup {
  padding-right: 0;
  padding-left: 0;
}

.lineup .section-inline-head {
  padding: 0 var(--page-x);
}

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

.lineup-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.lineup-index span {
  min-height: 48px;
  padding: 16px;
  border-right: 1px solid var(--rule);
  font-size: 10px;
  font-weight: 700;
}

.lineup-index span:last-child {
  border-right: 0;
}

/* Journal */

.journal {
  display: grid;
  grid-template-columns: 7fr 5fr;
  padding: 0;
}

.journal-image {
  min-width: 0;
  border-right: 1px solid var(--ink);
}

.journal-image img {
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.journal-copy {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 11%;
}

.journal-copy h2 {
  font-size: 70px;
}

.journal-copy > p:not(.section-number) {
  max-width: 420px;
  margin: 34px 0;
}

.journal-date {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}

/* Newsletter */

.newsletter {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: end;
}

.newsletter h2 {
  font-size: 38px;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--ink);
}

.newsletter input {
  min-width: 0;
  min-height: 56px;
  padding: 0 16px;
  border: 0;
  background: transparent;
}

.newsletter button {
  min-width: 130px;
  border: 0;
  border-left: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
  font-size: 11px;
  font-weight: 700;
}

.newsletter [data-form-status] {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 0 16px;
  border-top: 0;
  font-size: 11px;
}

.newsletter [data-form-status]:not(:empty) {
  min-height: 38px;
  padding-top: 10px;
  border-top: 1px solid var(--ink);
}

/* Cut Room */

.room-hero {
  position: relative;
  height: 650px;
  overflow: hidden;
  background: var(--paper-bright);
}

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

.room-hero__copy {
  position: absolute;
  top: 70px;
  left: var(--page-x);
  width: 33%;
}

.room-hero__copy h1 {
  margin: 28px 0;
  font-size: 118px;
  line-height: 0.76;
}

.room-hero__copy > p:last-child {
  max-width: 360px;
  font-size: 13px;
}

.room-hero__legend {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 7px;
  font-size: 9px;
  font-weight: 700;
}

.legend-black::before,
.legend-red::before,
.legend-blue::before {
  display: inline-block;
  width: 26px;
  height: 1px;
  margin-right: 8px;
  vertical-align: middle;
  background: var(--ink);
  content: "";
}

.legend-red::before {
  background: var(--red);
}

.legend-blue::before {
  background: var(--blue);
}

.room-filter {
  display: grid;
  grid-template-columns: 3fr 9fr;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.room-filter > div {
  display: flex;
  border: 1px solid var(--ink);
}

.room-filter__button {
  flex: 1;
  min-height: 44px;
  border: 0;
  border-right: 1px solid var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

.room-filter__button:last-child {
  border-right: 0;
}

.room-filter__button:hover,
.room-filter__button.is-active {
  background: var(--ink);
  color: var(--paper-bright);
}

.look-wall {
  border-top: 1px solid var(--ink);
}

.look-band {
  position: relative;
  display: grid;
  min-height: 720px;
  border-bottom: 1px solid var(--ink);
}

.look-band--offset {
  grid-template-columns: 4fr 8fr;
}

.look-band--open {
  grid-template-columns: 7fr 5fr;
}

.look-band--reverse {
  grid-template-columns: 5fr 7fr;
}

.look-band--expose {
  grid-template-columns: 8fr 4fr;
}

.look-band > img {
  width: 100%;
  height: 100%;
  max-height: 940px;
  min-height: 720px;
  background: var(--paper-bright);
  object-fit: contain;
}

.look-band--offset > img,
.look-band--reverse > img {
  border-left: 1px solid var(--ink);
}

.look-band--open > img,
.look-band--expose > img {
  border-right: 1px solid var(--ink);
}

.look-note {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 11%;
}

.look-note h2 {
  margin: 22px 0 30px;
  font-size: 64px;
  line-height: 0.88;
}

.look-note > p:not(.section-number) {
  max-width: 360px;
}

.look-note dl {
  width: 100%;
  margin: 42px 0;
  border-top: 1px solid var(--rule);
}

.look-note dl div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 10px;
}

.look-note dd {
  text-align: right;
}

.look-proof {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
}

.construction-interlude {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  gap: 30px;
  align-items: center;
  min-height: 190px;
  padding: 36px var(--page-x);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
}

.construction-interlude blockquote {
  margin: 0;
  font-family: "Array", Georgia, serif;
  font-size: 34px;
  line-height: 1.08;
}

.construction-interlude > div {
  display: grid;
  gap: 16px;
}

.construction-interlude > div span {
  display: block;
  height: 1px;
  background: var(--red);
}

.construction-interlude > div span:nth-child(2) {
  width: 72%;
  background: var(--blue);
}

.construction-interlude > div span:nth-child(3) {
  width: 46%;
  background: var(--paper-bright);
}

.stitch-atlas {
  padding-right: 0;
  padding-left: 0;
}

.stitch-atlas .section-inline-head {
  padding: 0 var(--page-x);
}

.stitch-atlas .section-inline-head > p {
  max-width: 260px;
  color: var(--graphite);
  font-size: 12px;
}

.stitch-atlas img {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

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

.stitch-labels span {
  min-height: 46px;
  padding: 14px;
  border-right: 1px solid var(--rule);
  font-size: 10px;
  font-weight: 700;
}

.room-route {
  padding-top: 38px;
  padding-bottom: 38px;
}

.room-route a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 86px;
  line-height: 1;
}

.room-route a span:last-child {
  color: var(--red);
  font-family: "Satoshi", Arial, sans-serif;
}

/* Product page */

.breadcrumb {
  display: flex;
  gap: 10px;
  min-height: 48px;
  align-items: center;
  padding: 0 var(--page-x);
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue);
}

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

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

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

.product-view__switch {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  border: 1px solid var(--ink);
}

.product-view__switch button {
  min-width: 68px;
  min-height: 40px;
  border: 0;
  border-right: 1px solid var(--ink);
  background: var(--paper);
  font-size: 10px;
  font-weight: 700;
}

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

.product-view__switch button.is-active {
  background: var(--ink);
  color: var(--paper-bright);
}

.product-folio {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
}

.product-info {
  display: flex;
  min-height: 840px;
  flex-direction: column;
  justify-content: center;
  padding: 50px 10%;
}

.product-info h1 {
  margin: 28px 0 24px;
  font-size: 88px;
  line-height: 0.82;
}

.product-thesis {
  max-width: 430px;
  font-size: 15px;
}

.product-register {
  margin: 36px 0;
  border-top: 1px solid var(--rule);
}

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

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

.size-selector,
.color-selector {
  padding: 0;
  margin: 0 0 24px;
  border: 0;
}

.size-selector legend,
.color-selector legend {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
}

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

.size-selector button {
  min-height: 42px;
  border: 0;
  border-right: 1px solid var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

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

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

.color-selector > div {
  display: flex;
  gap: 16px;
}

.color-selector button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
}

.color-selector button.is-active {
  color: var(--red);
}

.swatch {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
}

.swatch--black {
  background: var(--ink);
}

.swatch--ivory {
  background: #e9e2d3;
}

.swatch--split::before,
.swatch--split::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  content: "";
}

.swatch--split::before {
  left: 0;
  background: var(--ink);
}

.swatch--split::after {
  right: 0;
  background: #e9e2d3;
}

.add-command {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
  font-size: 12px;
  font-weight: 700;
}

.add-command:hover {
  background: var(--red);
}

.add-command span:last-child {
  font-size: 22px;
  font-weight: 400;
}

.selection-status,
.claim-boundary {
  margin-top: 10px;
  font-size: 10px;
}

.selection-status {
  color: var(--blue);
}

.claim-boundary {
  color: var(--graphite);
}

.correction-log > header {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 30px;
  margin-bottom: 44px;
}

.correction-log > header h2 {
  margin: 0;
}

.correction-log__body {
  display: grid;
  grid-template-columns: 4fr 8fr;
  border: 1px solid var(--ink);
}

.correction-log__body > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border-left: 1px solid var(--ink);
  object-fit: cover;
}

.correction-log__controls {
  display: flex;
  flex-direction: column;
}

.correction-log__controls > button {
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  min-height: 58px;
  align-items: center;
  padding: 0 16px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  text-align: left;
}

.correction-log__controls > button span:first-child {
  color: var(--red);
  font-size: 10px;
}

.correction-log__controls > button span:last-child {
  font-size: 20px;
}

.correction-log__controls > button.is-active {
  background: var(--ink);
  color: var(--paper-bright);
}

.correction-log__result {
  display: flex;
  flex: 1;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.correction-log__result > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.correction-log__result h3 {
  margin: 18px 0;
  font-size: 32px;
  line-height: 1;
}

.correction-log__result p {
  max-width: 340px;
  color: #3b3933;
  font-size: 13px;
}

.movement-proof {
  position: relative;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper-bright);
}

.movement-proof img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.movement-proof > div {
  position: absolute;
  top: 50%;
  right: 6%;
  width: 34%;
  transform: translateY(-50%);
}

.movement-proof h2 {
  margin: 18px 0 26px;
  font-size: 52px;
  line-height: 0.94;
}

.movement-proof > div > p:last-child {
  max-width: 420px;
}

.product-care {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 50px;
}

.care-list {
  border-top: 1px solid var(--ink);
}

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

.care-list summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

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

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

.care-list details p {
  max-width: 680px;
  padding: 0 0 24px;
  color: #3b3933;
  font-size: 13px;
}

.related-proof {
  display: grid;
  grid-template-columns: 5fr 7fr;
  padding: 0;
}

.related-proof__copy {
  display: flex;
  min-height: 660px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 10%;
  border-right: 1px solid var(--ink);
}

.related-proof h2 {
  margin: 24px 0;
  font-size: 68px;
  line-height: 0.86;
}

.related-proof__copy > p:not(.section-number) {
  max-width: 390px;
  margin-bottom: 34px;
}

.related-proof > img {
  height: 660px;
  background: var(--paper-bright);
  object-fit: contain;
}

/* Footer and bag */

.site-footer {
  display: grid;
  grid-template-columns: 3fr 7fr 2fr;
  min-height: 250px;
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
}

.footer-brand {
  padding: 38px var(--page-x);
  border-right: 1px solid rgba(252, 251, 247, 0.32);
}

.footer-brand strong {
  font-size: 38px;
  font-weight: 400;
}

.footer-brand p {
  margin-top: 24px;
  color: #b9b5ac;
  font-size: 10px;
}

.footer-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 38px;
}

.footer-index > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-index span {
  margin-bottom: 8px;
  color: #8f8c84;
  font-size: 9px;
}

.footer-index a {
  font-size: 11px;
}

.footer-proof {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 20px;
  border-left: 1px solid rgba(252, 251, 247, 0.32);
  color: #8f8c84;
  font-size: 9px;
}

.cut-bag {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: flex;
  width: min(440px, 100%);
  height: 100%;
  flex-direction: column;
  border-left: 1px solid var(--ink);
  background: var(--paper);
}

.cut-bag__head {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--ink);
}

.cut-bag__head h2 {
  font-size: 32px;
}

.cut-bag__head button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 25px;
}

.cut-bag__body {
  flex: 1;
  padding: 24px 20px;
}

.bag-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}

.bag-item img {
  width: 96px;
  height: 126px;
  background: var(--paper-bright);
  object-fit: cover;
}

.bag-item strong {
  display: block;
  margin: 8px 0;
  font-family: "Array", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.bag-item span {
  display: block;
  font-size: 10px;
}

.bag-route,
.bag-remove {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
  font-size: 11px;
  font-weight: 700;
}

.bag-remove {
  width: 100%;
  background: var(--red);
}

.bag-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(17, 16, 14, 0.56);
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-copy {
    width: 62%;
  }

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

  .journal-copy h2 {
    font-size: 49px;
  }

  .room-hero__copy h1 {
    font-size: 96px;
  }

  .look-note h2 {
    font-size: 52px;
  }

  .room-route a {
    font-size: 68px;
  }

  .product-info h1 {
    font-size: 72px;
  }
}

@media (max-width: 960px) {
  :root {
    --page-x: 22px;
  }

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

  .desktop-nav {
    display: none;
  }

  .menu-command {
    display: block;
  }

  .home-hero {
    height: 680px;
  }

  .hero-copy {
    top: 92px;
    width: 60%;
  }

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

  .section-proof-head h2,
  .section-inline-head h2,
  .journal-copy h2,
  .correction-log > header h2,
  .product-care h2 {
    font-size: 46px;
  }

  .cut-map-stage {
    grid-template-columns: 7fr 5fr;
  }

  .cut-map-visual {
    grid-template-rows: minmax(420px, 1fr) auto;
  }

  .cut-map-visual img {
    min-height: 420px;
  }

  .cut-map-visual figcaption {
    grid-template-columns: 36px 140px 1fr;
  }

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

  .revision-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-bottom: 34px;
  }

  .revision-intro > p:last-child {
    margin-top: 0;
    align-self: end;
  }

  .journal-copy h2 {
    font-size: 52px;
  }

  .room-hero {
    height: 580px;
  }

  .room-hero__copy {
    top: 54px;
    width: 36%;
  }

  .room-hero__copy h1 {
    font-size: 78px;
  }

  .look-band {
    min-height: 620px;
  }

  .look-band > img {
    min-height: 620px;
  }

  .look-note {
    padding: 46px 9%;
  }

  .look-note h2 {
    font-size: 42px;
  }

  .room-route a {
    font-size: 54px;
  }

  .product-opening {
    grid-template-columns: 6fr 6fr;
  }

  .product-view > img,
  .product-info {
    height: 760px;
    min-height: 760px;
  }

  .product-info {
    padding-right: 7%;
    padding-left: 7%;
  }

  .product-info h1 {
    font-size: 58px;
  }

  .correction-log__body {
    grid-template-columns: 5fr 7fr;
  }

  .movement-proof h2 {
    font-size: 42px;
  }

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

  .footer-proof {
    grid-column: 1 / -1;
    min-height: 48px;
    flex-direction: row;
    padding: 16px 22px;
    border-top: 1px solid rgba(252, 251, 247, 0.32);
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .proof-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-proof-head {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .section-proof-head > p {
    max-width: 600px;
  }

  .section-proof-head h2,
  .section-inline-head h2,
  .journal-copy h2,
  .correction-log > header h2,
  .product-care h2 {
    font-size: 40px;
  }

  .home-hero {
    height: 640px;
  }

  .hero-copy {
    top: 76px;
    width: 54%;
  }

  .hero-copy h1 {
    margin-top: 26px;
    font-size: 70px;
  }

  .hero-line {
    font-size: 18px;
  }

  .cut-map-stage {
    grid-template-columns: 1fr;
  }

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

  .cut-map-controls {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .cut-control {
    border-right: 1px solid var(--ink);
  }

  .cut-control:nth-child(2),
  .cut-control:nth-child(4) {
    border-right: 0;
  }

  .cut-control:nth-child(3) {
    border-bottom: 0;
  }

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

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

  .revision-sequence article {
    border-bottom: 1px solid var(--ink);
  }

  .revision-sequence article:last-child {
    border-bottom: 0;
  }

  .proof-pair {
    grid-template-columns: 1fr;
  }

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

  .proof-notes {
    min-height: 520px;
  }

  .lineup {
    overflow: hidden;
  }

  .lineup img {
    width: 150%;
    max-width: none;
    transform: translateX(-16.5%);
  }

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

  .lineup-index span:nth-child(2) {
    border-right: 0;
  }

  .lineup-index span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rule);
  }

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

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

  .journal-image img {
    min-height: 440px;
  }

  .journal-copy {
    min-height: 470px;
    padding: 54px var(--page-x);
  }

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

  .room-hero {
    height: 520px;
  }

  .room-hero__copy {
    width: 42%;
  }

  .room-hero__copy h1 {
    font-size: 66px;
  }

  .room-filter {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .room-filter > div {
    overflow-x: auto;
  }

  .room-filter__button {
    min-width: 92px;
  }

  .look-band,
  .look-band--offset,
  .look-band--open,
  .look-band--reverse,
  .look-band--expose {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .look-band > img {
    min-height: 620px;
    border: 0;
    border-bottom: 1px solid var(--ink);
  }

  .look-band .look-note {
    grid-row: 2;
    min-height: 420px;
  }

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

  .construction-interlude blockquote {
    font-size: 28px;
  }

  .room-route a {
    font-size: 42px;
  }

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

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

  .product-view > img {
    height: 700px;
    min-height: 700px;
  }

  .product-info {
    height: auto;
    min-height: 700px;
    padding: 56px var(--page-x);
  }

  .correction-log > header {
    grid-template-columns: 1fr;
  }

  .correction-log__body {
    grid-template-columns: 1fr;
  }

  .correction-log__body > img {
    min-height: 420px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .movement-proof img {
    max-height: none;
  }

  .movement-proof > div {
    position: static;
    width: auto;
    padding: 46px var(--page-x);
    border-top: 1px solid var(--ink);
    transform: none;
  }

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

  .related-proof {
    grid-template-columns: 1fr;
  }

  .related-proof__copy {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .related-proof > img {
    height: 620px;
  }

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

  .footer-brand {
    border-right: 0;
    border-bottom: 1px solid rgba(252, 251, 247, 0.32);
  }

  .footer-index {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 62px;
    --page-x: 18px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: var(--header-h);
  }

  .wordmark {
    font-size: 25px;
  }

  .header-actions {
    gap: 8px;
  }

  .bag-command {
    font-size: 9px;
  }

  .menu-command {
    width: 40px;
    height: 40px;
  }

  .home-hero {
    display: flex;
    height: auto;
    min-height: 760px;
    flex-direction: column;
    overflow: visible;
  }

  .home-hero picture,
  .home-hero picture img {
    position: relative;
    inset: auto;
  }

  .home-hero picture {
    height: 500px;
    flex: 0 0 500px;
    background: #ece7dc;
  }

  .home-hero picture img {
    height: 500px;
    object-fit: contain;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 260px;
    padding: 20px var(--page-x) 26px;
    border-top: 1px solid var(--ink);
    background: var(--paper);
  }

  .hero-copy h1 {
    margin-top: 14px;
    font-size: 54px;
    line-height: 0.9;
  }

  .hero-line {
    margin-top: 12px;
    font-size: 16px;
  }

  .hero-ko {
    margin-top: 8px;
    font-size: 12px;
  }

  .hero-copy .text-command {
    min-height: 40px;
    margin-top: 14px;
  }

  .hero-folio,
  .register-mark {
    display: none;
  }

  .proof-tab {
    grid-template-columns: 1fr 1.4fr 42px;
  }

  .proof-tab > span:nth-of-type(2) {
    display: none;
  }

  .proof-tab > * {
    min-height: 54px;
    padding: 0 12px;
  }

  .proof-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .section-proof-head h2,
  .section-inline-head h2,
  .journal-copy h2,
  .correction-log > header h2,
  .product-care h2 {
    font-size: 34px;
  }

  .section-inline-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cut-map-visual {
    grid-template-rows: auto auto;
  }

  .cut-map-visual img {
    min-height: 0;
    aspect-ratio: 14 / 11;
  }

  .cut-map-visual figcaption {
    grid-template-columns: 32px 1fr;
  }

  .cut-map-visual figcaption p {
    grid-column: 2;
  }

  .cut-control {
    min-height: 116px;
    grid-template-columns: 28px 1fr;
    padding: 13px;
  }

  .cut-control strong {
    font-size: 12px;
  }

  .revision-intro h2 {
    font-size: 34px;
  }

  .proof-pair__material {
    padding: 46px var(--page-x);
  }

  .proof-notes {
    min-height: 460px;
    padding: 46px var(--page-x) 26px;
  }

  .proof-notes .blue-note {
    font-size: 27px;
  }

  .lineup img {
    width: 100%;
    transform: none;
  }

  .journal-image img {
    min-height: 300px;
  }

  .journal-copy {
    min-height: 420px;
  }

  .newsletter form {
    grid-template-columns: 1fr 94px;
  }

  .newsletter button {
    min-width: 94px;
  }

  .room-hero {
    display: flex;
    height: auto;
    flex-direction: column;
  }

  .room-hero > img {
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: contain;
  }

  .room-hero__copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 280px;
    padding: 24px var(--page-x) 30px;
    border-top: 1px solid var(--ink);
  }

  .room-hero__copy h1 {
    margin: 16px 0;
    font-size: 62px;
    line-height: 0.8;
  }

  .room-hero__legend {
    display: none;
  }

  .room-filter > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }

  .room-filter__button {
    min-width: 0;
    border-bottom: 1px solid var(--ink);
  }

  .room-filter__button:nth-child(3) {
    border-right: 0;
  }

  .room-filter__button:nth-child(n + 4) {
    border-bottom: 0;
  }

  .look-band > img {
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .look-note {
    min-height: 360px !important;
    padding: 44px var(--page-x);
  }

  .look-note h2 {
    font-size: 44px;
  }

  .construction-interlude {
    min-height: 260px;
  }

  .stitch-atlas {
    overflow: hidden;
  }

  .stitch-atlas img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .stitch-labels {
    grid-template-columns: 1fr 1fr;
  }

  .stitch-labels span {
    border-bottom: 1px solid var(--rule);
  }

  .room-route a {
    font-size: 34px;
  }

  .breadcrumb {
    overflow: hidden;
    white-space: nowrap;
  }

  .product-view > img {
    height: 560px;
    min-height: 560px;
    object-fit: contain;
  }

  .product-info {
    min-height: 650px;
  }

  .product-info h1 {
    font-size: 54px;
  }

  .color-selector > div {
    gap: 11px;
  }

  .correction-log__result {
    min-height: 240px;
  }

  .correction-log__body > img {
    min-height: 0;
    aspect-ratio: 11 / 6;
  }

  .movement-proof img {
    height: auto;
    aspect-ratio: 5 / 4;
    object-fit: cover;
  }

  .movement-proof h2 {
    font-size: 36px;
  }

  .related-proof h2 {
    font-size: 52px;
  }

  .related-proof > img {
    height: 540px;
  }

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

  .footer-index > div:last-child {
    grid-column: 1 / -1;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Brand differentiation tune: expose the correction rule beside proof headings. */
.section-proof-head {
  position: relative;
  padding-left: 24px;
}

.section-proof-head::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red);
}

@media (max-width: 767px) {
  .section-proof-head {
    padding-left: 16px;
  }

  .section-proof-head::before {
    width: 2px;
  }
}
