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

:root {
  --straw: #d8cba5;
  --moss: #596347;
  --moss-dark: #394331;
  --oxblood: #6c2d2a;
  --ink: #1f201b;
  --cream: #f4f0e5;
  --paper: #ebe5d7;
  --line: rgba(31, 32, 27, 0.25);
  --light-line: rgba(244, 240, 229, 0.35);
  --serif: "Sentient", Georgia, serif;
  --sans: "Synonym", Arial, sans-serif;
  --page-pad: 42px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

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

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

button {
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.section-pad {
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.field-code {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.section-heading h2,
.making-lead h2,
.material-copy h2,
.assembly-header h2,
.notes-copy h2,
.atlas-index h2,
.boundary-interlude h2,
.quilt-vocabulary h2,
.atlas-route h2,
.stitch-route h2,
.worn-copy h2,
.care-fit h2,
.related-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.98;
}

.section-intro {
  max-width: 520px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

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

/* Header */

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--page-pad);
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  color: var(--ink);
  border-bottom: 1px solid rgba(31, 32, 27, 0.14);
}

.header-ink {
  color: var(--cream);
  border-bottom-color: rgba(244, 240, 229, 0.28);
}

.header-cream {
  position: relative;
  color: var(--ink);
  background: var(--cream);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
}

.wordmark-mark {
  position: relative;
  width: 24px;
  height: 15px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.wordmark-mark::before,
.wordmark-mark::after {
  position: absolute;
  top: 5px;
  width: 8px;
  border-top: 2px solid currentColor;
  content: "";
}

.wordmark-mark::before {
  left: 0;
  transform: rotate(28deg);
}

.wordmark-mark::after {
  right: 0;
  transform: rotate(-28deg);
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  border-bottom: 1px solid currentColor;
  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 {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 22px;
}

.kit-trigger {
  padding: 8px 0;
  font-size: 11px;
  font-weight: 600;
}

.kit-trigger span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-left: 5px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.menu-trigger {
  display: none;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid currentColor;
}

.menu-trigger span {
  display: block;
  width: 100%;
  border-top: 1px solid currentColor;
}

.menu-trigger span + span {
  margin-top: 7px;
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: var(--header-h) 0 0;
  display: flex;
  padding: 36px var(--page-pad);
  flex-direction: column;
  color: var(--cream);
  background: var(--moss-dark);
}

.mobile-menu a {
  padding: 22px 0;
  border-bottom: 1px solid var(--light-line);
  font-family: var(--serif);
  font-size: 34px;
}

/* Home hero */

.home-hero {
  position: relative;
  height: calc(100svh - 82px);
  min-height: 650px;
  max-height: 940px;
  overflow: hidden;
  color: var(--cream);
  background: var(--moss);
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--page-pad);
  width: min(620px, 48vw);
  transform: translateY(-42%);
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 78px;
  font-weight: 400;
  line-height: 0.92;
}

.hero-korean {
  margin: 24px 0 38px;
  font-size: 17px;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: 34px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  font-size: 11px;
}

.hero-index span:first-child {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.coordinate-rail {
  display: grid;
  min-height: 82px;
  padding: 0 var(--page-pad);
  align-items: center;
  grid-template-columns: auto minmax(80px, 1fr) auto auto;
  gap: 24px;
  color: var(--cream);
  background: var(--ink);
  font-size: 10px;
}

.coordinate-rail p {
  margin: 0;
}

.coordinate-rail a {
  font-weight: 600;
}

.rail-line {
  height: 1px;
  background: rgba(244, 240, 229, 0.25);
}

.rail-line span {
  display: block;
  width: 26%;
  border-top: 1px solid var(--straw);
}

/* Patch map */

.patch-section {
  padding-top: 120px;
  padding-bottom: 130px;
  background: var(--cream);
}

.map-heading {
  margin-bottom: 70px;
}

.patch-map {
  display: grid;
  min-height: 820px;
  grid-template-columns: 1.05fr 0.95fr 0.72fr;
  grid-template-rows: 0.88fr 1.12fr;
  gap: 7px;
}

.patch-parcel {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.patch-parcel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.patch-parcel:hover img,
.patch-parcel.is-active img {
  transform: scale(1.025);
}

.patch-parcel.is-active {
  outline: 5px solid var(--oxblood);
  outline-offset: -5px;
}

.parcel-ridge {
  grid-row: 1 / 3;
  clip-path: polygon(0 0, 90% 0, 100% 18%, 96% 100%, 0 100%);
}

.parcel-hedge {
  clip-path: polygon(7% 0, 100% 0, 100% 91%, 19% 100%, 0 74%, 0 14%);
}

.parcel-furrow {
  clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 92%);
}

.parcel-gate {
  grid-column: 2 / 3;
  clip-path: polygon(0 8%, 83% 0, 100% 22%, 96% 100%, 10% 100%, 0 82%);
}

.parcel-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  padding: 10px 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
  background: var(--ink);
  font-size: 11px;
}

.parcel-label small {
  font-size: 9px;
}

.patch-note {
  display: flex;
  padding: 38px 32px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--cream);
  background: var(--moss-dark);
  border-left: 8px solid var(--oxblood);
}

.patch-note > p:first-child {
  margin: 0;
  font-size: 11px;
}

.patch-note h3 {
  max-width: 330px;
  margin: auto 0 18px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.05;
}

.patch-note h3 + p {
  max-width: 360px;
  margin: 0 0 28px;
  font-size: 14px;
}

.patch-note a {
  padding-top: 14px;
  border-top: 1px solid var(--light-line);
  font-size: 11px;
  font-weight: 600;
}

/* Making */

.making-section {
  color: var(--cream);
  background: var(--ink);
}

.making-lead {
  display: grid;
  padding-top: 105px;
  padding-bottom: 72px;
  align-items: end;
  grid-template-columns: 1.2fr 1.2fr 0.8fr;
  gap: 40px;
}

.making-lead .field-code {
  align-self: start;
}

.making-lead p:last-child {
  max-width: 360px;
  margin: 0;
}

.making-grid {
  display: grid;
  min-height: 610px;
  grid-template-columns: 1.3fr 0.92fr 0.78fr;
}

.making-step {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-top: 1px solid var(--light-line);
  border-right: 1px solid var(--light-line);
}

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

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

.making-step > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 130px;
  padding: 22px;
  grid-template-columns: 34px 1fr;
  color: var(--cream);
  background: rgba(31, 32, 27, 0.92);
}

.making-step span {
  font-size: 10px;
}

.making-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.making-step p {
  margin: 8px 0 0;
  grid-column: 2;
  font-size: 12px;
}

/* Material / assembly / notes */

.material-boundary {
  display: grid;
  padding-top: 130px;
  padding-bottom: 130px;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  background: var(--straw);
}

.material-copy h2 {
  margin-bottom: 55px;
}

.material-legend {
  margin: 0;
}

.material-legend div {
  display: grid;
  padding: 15px 0;
  grid-template-columns: 120px 1fr;
  border-top: 1px solid var(--line);
}

.material-legend div:last-child {
  border-bottom: 1px solid var(--line);
}

.material-legend dt {
  font-size: 11px;
  font-weight: 600;
}

.material-legend dd {
  margin: 0;
  font-size: 13px;
}

.material-figure {
  margin: 0;
  border: 1px solid var(--ink);
}

.field-assembly {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.assembly-header {
  display: grid;
  padding-top: 105px;
  padding-bottom: 65px;
  align-items: end;
  grid-template-columns: 0.7fr 1fr 0.6fr;
  gap: 40px;
}

.assembly-header .text-link {
  justify-self: end;
}

.field-assembly > img {
  background: var(--paper);
}

.assembly-names {
  display: grid;
  padding: 18px var(--page-pad);
  grid-template-columns: repeat(4, 1fr);
  color: var(--cream);
  background: var(--moss-dark);
  font-size: 10px;
}

.assembly-names span {
  text-align: center;
}

.hedge-notes {
  display: grid;
  padding-top: 130px;
  padding-bottom: 130px;
  align-items: center;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 75px;
  color: var(--cream);
  background: var(--oxblood);
}

.hedge-notes figure {
  margin: 0;
  border: 1px solid var(--cream);
}

.notes-copy h2 {
  margin-bottom: 34px;
}

.notes-copy > p:not(.field-code) {
  max-width: 500px;
  margin: 0 0 34px;
}

.field-letter {
  display: grid;
  min-height: 340px;
  padding: 85px var(--page-pad);
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  background: var(--paper);
}

.field-letter h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

.field-letter form label {
  display: block;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
}

.input-line {
  display: grid;
  grid-template-columns: 1fr 52px;
  border-bottom: 1px solid var(--ink);
}

.input-line input {
  min-width: 0;
  padding: 15px 0;
  border: 0;
  background: transparent;
}

.input-line button {
  font-size: 22px;
}

[data-newsletter-status] {
  min-height: 22px;
  margin: 12px 0 0;
  font-size: 12px;
}

/* Atlas */

.atlas-hero {
  position: relative;
  height: calc(100svh - 90px);
  min-height: 650px;
  max-height: 940px;
  overflow: hidden;
  color: var(--cream);
  background: var(--moss-dark);
}

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

.atlas-hero-copy {
  position: absolute;
  top: 50%;
  left: var(--page-pad);
  width: 520px;
  transform: translateY(-40%);
}

.atlas-hero-copy h1 {
  margin: 0 0 25px;
  font-family: var(--serif);
  font-size: 112px;
  font-weight: 400;
  line-height: 0.78;
}

.atlas-hero-copy > p:last-child {
  max-width: 420px;
  margin: 0;
  font-size: 15px;
}

.atlas-scale {
  position: absolute;
  right: var(--page-pad);
  bottom: 25px;
  left: var(--page-pad);
  display: flex;
  padding-top: 10px;
  justify-content: space-between;
  border-top: 1px solid var(--light-line);
  font-size: 9px;
}

.atlas-index {
  display: grid;
  padding-top: 95px;
  padding-bottom: 75px;
  align-items: end;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.atlas-filters button {
  min-height: 56px;
  padding: 10px;
  border-right: 1px solid var(--line);
  font-size: 10px;
}

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

.atlas-filters button.is-active {
  color: var(--cream);
  background: var(--oxblood);
}

.look-territories {
  padding: 0 var(--page-pad) 130px;
  background: var(--cream);
}

.look-territory {
  position: relative;
  display: grid;
  min-height: 760px;
  border-top: 1px solid var(--ink);
}

.look-territory.is-hidden {
  display: none;
}

.territory-hedgerow {
  grid-template-columns: 1.25fr 0.75fr;
}

.territory-boundary {
  grid-template-columns: 0.68fr 1.32fr;
  margin-left: 13%;
}

.territory-furrow {
  grid-template-columns: 1.08fr 0.92fr;
  margin-right: 18%;
}

.territory-gatehouse {
  grid-template-columns: 0.85fr 1.15fr;
  margin-left: 26%;
  border-bottom: 1px solid var(--ink);
}

.territory-image {
  position: relative;
  min-width: 0;
  padding: 42px;
  overflow: hidden;
  background: var(--paper);
}

.territory-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-pin {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 10px;
}

.territory-copy {
  display: flex;
  min-width: 0;
  padding: 50px 45px;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--straw);
}

.territory-boundary .territory-copy,
.territory-gatehouse .territory-copy {
  color: var(--cream);
  background: var(--moss-dark);
}

.territory-copy > p:first-child {
  margin: 0 auto auto 0;
  font-size: 10px;
}

.territory-copy h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.9;
}

.territory-copy > p:not(:first-child) {
  max-width: 390px;
  margin: 0 0 28px;
  font-size: 14px;
}

.territory-copy a {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 600;
}

.boundary-interlude {
  position: relative;
  display: grid;
  padding-top: 115px;
  padding-bottom: 115px;
  grid-template-columns: 0.7fr 1.15fr 0.75fr;
  gap: 70px;
  color: var(--cream);
  background: var(--oxblood);
}

.boundary-interlude > p {
  max-width: 400px;
  margin: auto 0 0;
}

.boundary-ruler {
  display: flex;
  height: 190px;
  padding: 0 20px;
  align-items: flex-end;
  justify-content: space-between;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.boundary-ruler span {
  height: 65%;
  border-left: 1px solid var(--cream);
}

.boundary-ruler span:nth-child(2),
.boundary-ruler span:nth-child(4) {
  height: 35%;
}

.quilt-vocabulary {
  padding-bottom: 120px;
  background: var(--straw);
}

.quilt-vocabulary header {
  display: grid;
  padding-top: 105px;
  padding-bottom: 65px;
  align-items: end;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.quilt-vocabulary ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  list-style: decimal-leading-zero inside;
  border-top: 1px solid var(--line);
}

.quilt-vocabulary li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.quilt-vocabulary > img {
  width: calc(100% - (var(--page-pad) * 2));
  margin: 0 var(--page-pad);
  border: 1px solid var(--ink);
}

.atlas-route {
  padding-top: 110px;
  padding-bottom: 110px;
  color: var(--cream);
  background: var(--moss-dark);
}

.atlas-route h2 {
  max-width: 700px;
  margin-bottom: 65px;
}

.route-button {
  display: grid;
  min-height: 92px;
  padding: 0 28px;
  align-items: center;
  grid-template-columns: 1fr auto;
  border-top: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
  font-family: var(--serif);
  font-size: 28px;
}

/* Product */

.product-opening {
  display: grid;
  min-height: calc(100svh - var(--header-h));
  grid-template-columns: minmax(0, 1.35fr) minmax(410px, 0.65fr);
  border-bottom: 1px solid var(--ink);
}

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

.product-image-frame {
  position: relative;
  width: min(72%, 630px);
  height: calc(100svh - 185px);
  min-height: 590px;
}

.product-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-stamp {
  position: absolute;
  bottom: 5%;
  left: -15%;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  text-align: center;
  border: 1px solid var(--oxblood);
  border-radius: 50%;
  font-size: 9px;
  transform: rotate(-10deg);
}

.view-switch {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  width: 210px;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--ink);
  transform: translateX(-50%);
}

.view-switch button {
  min-height: 40px;
  font-size: 10px;
}

.view-switch button + button {
  border-left: 1px solid var(--ink);
}

.view-switch button.is-active {
  color: var(--cream);
  background: var(--ink);
}

.field-ticket {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: calc(100svh - var(--header-h));
  padding: 64px 42px 35px;
  background: var(--straw);
  border-left: 10px solid var(--oxblood);
}

.ticket-tear {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  border-top: 1px dashed var(--ink);
}

.field-ticket h1 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 400;
  line-height: 0.86;
}

.product-summary {
  max-width: 500px;
  margin: 0 0 30px;
  font-size: 14px;
}

.ticket-specs {
  margin: 0 0 28px;
  border-top: 1px solid var(--ink);
}

.ticket-specs div {
  display: grid;
  padding: 10px 0;
  grid-template-columns: 90px 1fr;
  border-bottom: 1px solid var(--line);
}

.ticket-specs dt,
.ticket-specs dd {
  font-size: 10px;
}

.ticket-specs dd {
  margin: 0;
  text-align: right;
}

.selector-group {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.selector-group legend {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
}

.color-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}

.color-selector legend {
  width: 100%;
}

.swatch {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 4px;
  place-items: center;
  border: 1px solid var(--ink);
}

.swatch span {
  width: 100%;
  height: 100%;
  background: var(--moss);
  border-left: 10px solid var(--straw);
  box-shadow: inset 3px 0 0 var(--oxblood);
}

.color-selector > span {
  font-size: 10px;
}

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

.size-selector button {
  min-height: 42px;
  font-size: 11px;
}

.size-selector button + button {
  border-left: 1px solid var(--ink);
}

.size-selector button.is-selected {
  color: var(--cream);
  background: var(--moss-dark);
}

.add-kit-button {
  display: grid;
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  align-items: center;
  grid-template-columns: 1fr auto;
  color: var(--cream);
  background: var(--ink);
  text-align: left;
  font-weight: 600;
}

.add-kit-button:hover {
  background: var(--oxblood);
}

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

.ticket-foot {
  display: flex;
  margin-top: 24px;
  padding-top: 12px;
  justify-content: space-between;
  border-top: 1px dashed var(--ink);
  font-size: 9px;
}

.stitch-route {
  padding-top: 125px;
  padding-bottom: 130px;
  background: var(--cream);
}

.stitch-route > header {
  display: grid;
  margin-bottom: 70px;
  align-items: end;
  grid-template-columns: 1fr 0.6fr;
  gap: 70px;
}

.stitch-route > header > p {
  max-width: 430px;
  margin: 0;
}

.route-stage {
  display: grid;
  grid-template-columns: 1.35fr 0.45fr 0.7fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.route-image {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--paper);
}

.route-image img {
  width: 400%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.route-image[data-route="collar"] img {
  transform: translateX(0);
}

.route-image[data-route="body"] img {
  transform: translateX(-25%);
}

.route-image[data-route="pocket"] img {
  transform: translateX(-50%);
}

.route-image[data-route="hem"] img {
  transform: translateX(-75%);
}

.route-controls {
  display: grid;
  border-right: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.route-controls button {
  display: grid;
  padding: 18px 15px;
  align-content: center;
  grid-template-columns: 30px 1fr;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.route-controls button:last-child {
  border-bottom: 0;
}

.route-controls button span {
  font-size: 9px;
}

.route-controls button b {
  font-size: 10px;
}

.route-controls button.is-active {
  color: var(--cream);
  background: var(--moss-dark);
}

.route-note {
  display: flex;
  padding: 38px 30px;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--straw);
}

.route-note > p:first-child {
  margin: 0 auto auto 0;
  font-size: 10px;
}

.route-note h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.route-note h3 + p {
  margin: 0;
  font-size: 13px;
}

.worn-field {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--cream);
  background: var(--moss-dark);
}

.worn-field > img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.worn-copy {
  position: absolute;
  top: 75px;
  right: var(--page-pad);
  width: 430px;
  padding: 36px;
  color: var(--cream);
  background: rgba(31, 32, 27, 0.92);
  border-left: 6px solid var(--oxblood);
}

.worn-copy h2 {
  margin-bottom: 24px;
}

.worn-copy > p:last-child {
  margin: 0;
}

.care-fit {
  display: grid;
  padding-top: 120px;
  padding-bottom: 120px;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  background: var(--paper);
}

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

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

.disclosure-list summary {
  display: grid;
  padding: 22px 0;
  grid-template-columns: 48px 1fr;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 24px;
  list-style: none;
}

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

.disclosure-list summary span {
  font-family: var(--sans);
  font-size: 10px;
}

.disclosure-list details p {
  max-width: 700px;
  margin: 0;
  padding: 0 0 24px 48px;
}

.related-vest {
  display: grid;
  padding-top: 120px;
  padding-bottom: 120px;
  align-items: center;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  color: var(--cream);
  background: var(--moss-dark);
}

.related-copy h2 {
  margin-bottom: 30px;
}

.related-copy > p:not(.field-code) {
  max-width: 420px;
  margin: 0 0 32px;
}

.related-vest figure {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--cream);
}

/* Footer and kit */

.site-footer {
  display: grid;
  min-height: 250px;
  padding: 50px var(--page-pad) 35px;
  align-items: end;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  color: var(--cream);
  background: var(--ink);
  border-top: 1px solid var(--light-line);
}

.footer-label {
  position: relative;
  display: flex;
  width: 245px;
  min-height: 108px;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--cream);
}

.footer-label strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.footer-label small {
  margin-top: 8px;
  font-size: 8px;
}

.footer-stitch {
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(244, 240, 229, 0.5);
}

.footer-links {
  display: flex;
  gap: 28px;
  align-self: center;
}

.footer-links a {
  font-size: 10px;
}

.site-footer > p {
  margin: 0;
  justify-self: end;
  font-size: 9px;
}

.field-kit {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100vw);
  padding: 30px;
  color: var(--ink);
  background: var(--straw);
  border-left: 10px solid var(--oxblood);
  overflow-y: auto;
}

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

.kit-head p {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
}

.kit-head span {
  font-size: 10px;
}

.kit-head button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--ink);
  font-size: 24px;
}

.kit-empty {
  padding: 45px 0;
}

.kit-empty p {
  margin: 0 0 18px;
}

.kit-empty a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.kit-item {
  display: grid;
  padding: 25px 0;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  border-bottom: 1px solid var(--ink);
}

.kit-item img {
  width: 110px;
  height: 145px;
  object-fit: contain;
  background: var(--cream);
}

.kit-item h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.kit-item p {
  margin: 0;
  font-size: 10px;
}

.kit-item button {
  align-self: start;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
}

.kit-scrim {
  position: fixed;
  z-index: 110;
  inset: 0;
  background: rgba(31, 32, 27, 0.72);
}

/* Tablet */

@media (max-width: 1180px) {
  :root {
    --page-pad: 28px;
  }

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

  .section-heading h2,
  .making-lead h2,
  .material-copy h2,
  .assembly-header h2,
  .notes-copy h2,
  .atlas-index h2,
  .boundary-interlude h2,
  .quilt-vocabulary h2,
  .atlas-route h2,
  .stitch-route h2,
  .worn-copy h2,
  .care-fit h2,
  .related-copy h2 {
    font-size: 52px;
  }

  .patch-map {
    min-height: 700px;
  }

  .making-grid {
    min-height: 520px;
  }

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

  .look-territory {
    min-height: 650px;
  }

  .territory-copy h2 {
    font-size: 50px;
  }

  .territory-boundary {
    margin-left: 7%;
  }

  .territory-furrow {
    margin-right: 9%;
  }

  .territory-gatehouse {
    margin-left: 15%;
  }

  .product-opening {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
  }

  .product-image-frame {
    width: 86%;
  }

  .field-ticket {
    padding-right: 30px;
    padding-left: 30px;
  }

  .field-ticket h1 {
    font-size: 56px;
  }

  .route-stage {
    grid-template-columns: 1.2fr 0.5fr 0.72fr;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

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

  .menu-trigger {
    display: block;
  }

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

  .section-intro {
    max-width: 620px;
  }

  .hero-copy {
    width: 60vw;
  }

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

  .patch-map {
    min-height: 1020px;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 1fr 0.85fr 0.7fr;
  }

  .parcel-ridge {
    grid-row: 1 / 3;
  }

  .parcel-hedge {
    grid-column: 2;
  }

  .parcel-furrow {
    grid-column: 2;
  }

  .parcel-gate {
    grid-column: 1;
  }

  .patch-note {
    grid-column: 2;
  }

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

  .making-lead p:last-child {
    grid-column: 2;
  }

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

  .step-line {
    grid-row: 1 / 3;
  }

  .material-boundary,
  .hedge-notes {
    grid-template-columns: 1fr;
  }

  .material-figure {
    order: -1;
  }

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

  .assembly-header .text-link {
    grid-column: 2;
  }

  .field-letter {
    grid-template-columns: 1fr;
  }

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

  .look-territory,
  .territory-hedgerow,
  .territory-boundary,
  .territory-furrow,
  .territory-gatehouse {
    min-height: 620px;
    margin-right: 0;
    margin-left: 0;
    grid-template-columns: 1.08fr 0.92fr;
  }

  .territory-boundary,
  .territory-gatehouse {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .territory-image {
    padding: 22px;
  }

  .territory-copy {
    padding: 34px 28px;
  }

  .boundary-interlude {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .boundary-interlude > p {
    grid-column: 2;
  }

  .quilt-vocabulary header {
    grid-template-columns: 1fr;
  }

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

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

  .product-image-frame {
    width: min(72%, 580px);
    height: 680px;
    min-height: 0;
  }

  .field-ticket {
    position: relative;
    min-height: auto;
    padding: 70px var(--page-pad) 45px;
  }

  .stitch-route > header {
    grid-template-columns: 1fr;
  }

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

  .route-note {
    min-height: 280px;
    grid-column: 1 / 3;
    border-top: 1px solid var(--ink);
  }

  .worn-copy {
    top: auto;
    right: var(--page-pad);
    bottom: 35px;
    left: var(--page-pad);
    width: auto;
  }

  .care-fit,
  .related-vest {
    grid-template-columns: 1fr;
  }

  .related-vest figure {
    order: -1;
  }

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

  .site-footer > p {
    grid-column: 2;
  }
}

/* Mobile */

@media (max-width: 640px) {
  :root {
    --page-pad: 18px;
    --header-h: 66px;
  }

  body {
    font-size: 15px;
  }

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

  .wordmark {
    gap: 7px;
    font-size: 14px;
  }

  .wordmark-mark {
    width: 20px;
  }

  .header-actions {
    gap: 10px;
  }

  .kit-trigger {
    font-size: 9px;
  }

  .kit-trigger span {
    width: 19px;
    height: 19px;
  }

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

  .mobile-menu a {
    font-size: 29px;
  }

  .section-heading h2,
  .making-lead h2,
  .material-copy h2,
  .assembly-header h2,
  .notes-copy h2,
  .atlas-index h2,
  .boundary-interlude h2,
  .quilt-vocabulary h2,
  .atlas-route h2,
  .stitch-route h2,
  .worn-copy h2,
  .care-fit h2,
  .related-copy h2 {
    font-size: 40px;
  }

  .home-hero {
    height: 78svh;
    min-height: 620px;
    max-height: none;
  }

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

  .hero-copy {
    top: auto;
    right: var(--page-pad);
    bottom: 35px;
    width: auto;
    transform: none;
  }

  .hero-copy h1 {
    font-size: 45px;
    line-height: 0.94;
  }

  .hero-korean {
    margin: 16px 0 24px;
    font-size: 14px;
  }

  .hero-index {
    display: none;
  }

  .coordinate-rail {
    min-height: 108px;
    grid-template-columns: auto 1fr;
    gap: 10px 18px;
  }

  .coordinate-rail p:nth-of-type(2) {
    text-align: right;
  }

  .coordinate-rail .rail-line {
    grid-column: 1 / 3;
  }

  .coordinate-rail a {
    grid-column: 1 / 3;
  }

  .patch-section {
    padding-top: 85px;
    padding-bottom: 90px;
  }

  .map-heading {
    margin-bottom: 45px;
  }

  .patch-map {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
  }

  .patch-parcel,
  .parcel-ridge,
  .parcel-hedge,
  .parcel-furrow,
  .parcel-gate {
    min-height: 360px;
    grid-column: auto;
    grid-row: auto;
    clip-path: none;
  }

  .patch-note {
    min-height: 330px;
    grid-column: auto;
  }

  .making-lead {
    padding-top: 80px;
    padding-bottom: 48px;
    grid-template-columns: 1fr;
  }

  .making-lead p:last-child {
    grid-column: auto;
  }

  .making-grid {
    display: block;
    min-height: 0;
  }

  .making-step {
    height: 470px;
    border-right: 0;
  }

  .material-boundary {
    padding-top: 85px;
    padding-bottom: 90px;
    gap: 45px;
  }

  .material-copy h2 {
    margin-bottom: 40px;
  }

  .material-legend div {
    grid-template-columns: 92px 1fr;
  }

  .assembly-header {
    padding-top: 80px;
    padding-bottom: 45px;
    grid-template-columns: 1fr;
  }

  .assembly-header .text-link {
    justify-self: start;
    grid-column: auto;
  }

  .field-assembly > img {
    height: 430px;
    object-fit: contain;
  }

  .assembly-names {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hedge-notes {
    padding-top: 90px;
    padding-bottom: 90px;
    gap: 48px;
  }

  .field-letter {
    min-height: 430px;
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .field-letter h2 {
    font-size: 40px;
  }

  .atlas-hero {
    height: 78svh;
    min-height: 660px;
    background: var(--moss-dark);
  }

  .atlas-hero > img {
    height: 46%;
    object-fit: contain;
    object-position: center center;
  }

  .atlas-hero-copy {
    top: auto;
    right: var(--page-pad);
    bottom: 54px;
    width: auto;
    transform: none;
  }

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

  .atlas-scale {
    bottom: 18px;
  }

  .atlas-index {
    padding-top: 80px;
    padding-bottom: 55px;
  }

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

  .atlas-filters button:nth-child(2) {
    border-right: 0;
  }

  .atlas-filters button:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .look-territories {
    padding-bottom: 90px;
  }

  .look-territory,
  .territory-hedgerow,
  .territory-boundary,
  .territory-furrow,
  .territory-gatehouse {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .territory-boundary .territory-copy,
  .territory-gatehouse .territory-copy {
    order: 2;
  }

  .territory-image {
    height: 540px;
    padding: 18px;
  }

  .territory-copy {
    min-height: 340px;
    padding: 32px 24px;
  }

  .territory-copy h2 {
    font-size: 47px;
  }

  .boundary-interlude {
    padding-top: 85px;
    padding-bottom: 90px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .boundary-interlude > p {
    grid-column: auto;
  }

  .boundary-ruler {
    height: 120px;
    border-right: 0;
  }

  .quilt-vocabulary {
    padding-bottom: 80px;
  }

  .quilt-vocabulary header {
    padding-top: 80px;
    padding-bottom: 45px;
  }

  .quilt-vocabulary > img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .atlas-route {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .atlas-route h2 {
    margin-bottom: 45px;
  }

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

  .product-visual {
    min-height: 670px;
    padding: 24px 18px;
  }

  .product-image-frame {
    width: 92%;
    height: 580px;
  }

  .product-stamp {
    bottom: 9%;
    left: 0;
    width: 72px;
    height: 72px;
  }

  .field-ticket {
    padding-top: 60px;
  }

  .field-ticket h1 {
    font-size: 51px;
  }

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

  .stitch-route > header {
    margin-bottom: 45px;
    gap: 30px;
  }

  .route-stage {
    display: flex;
    flex-direction: column;
  }

  .route-image {
    height: 390px;
    order: 1;
  }

  .route-controls {
    order: 2;
    grid-template-columns: repeat(2, 1fr);
    border: 0;
    border-top: 1px solid var(--ink);
  }

  .route-controls button {
    min-height: 78px;
    border-right: 1px solid var(--line);
  }

  .route-note {
    min-height: 310px;
    order: 3;
  }

  .worn-field,
  .worn-field > img {
    min-height: 690px;
  }

  .worn-field > img {
    object-position: 46% center;
  }

  .worn-copy {
    padding: 25px;
  }

  .care-fit,
  .related-vest {
    padding-top: 90px;
    padding-bottom: 90px;
    gap: 45px;
  }

  .disclosure-list summary {
    font-size: 20px;
  }

  .disclosure-list details p {
    padding-left: 0;
  }

  .site-footer {
    min-height: 370px;
    padding-top: 45px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    align-self: end;
    flex-direction: column;
    gap: 12px;
  }

  .site-footer > p {
    justify-self: start;
    grid-column: auto;
  }

  .field-kit {
    width: 100vw;
    padding: 22px 18px;
  }
}

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

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

/* Brand differentiation tune: stitch an inner boundary into every field parcel. */
.patch-parcel::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 9px;
  border: 1px dashed rgba(216, 203, 165, 0.9);
  pointer-events: none;
}

.patch-parcel.is-active::before {
  border-color: var(--oxblood);
}

@media (max-width: 767px) {
  .patch-parcel::before {
    inset: 6px;
  }
}
