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

:root {
  --color-background: #f3f3ee;
  --color-surface: #e8e9e4;
  --color-surface-soft: #dfe3e0;
  --color-text: #161817;
  --color-text-soft: #59605d;
  --color-line: #aeb5b1;
  --color-rice: #dad7c9;
  --color-indigo: #243d5a;
  --color-persimmon: #b75b34;
  --color-mugwort: #687b68;
  --color-water: #bbc3c4;
  --font-display: "Gambetta", "Batang", "Times New Roman", serif;
  --font-body: "Switzer", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  --container: 1600px;
  --side: 64px;
  --section-space: 144px;
  --line-rule: 1px solid var(--color-line);
  --motion: 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
  --shadow-drawer: -24px 0 64px rgba(22, 24, 23, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

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

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

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

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
  padding: 0 var(--side);
  border-bottom: 1px solid rgba(22, 24, 23, 0.22);
  background: var(--color-background);
}

.page-home .site-header {
  position: absolute;
  inset: 0 0 auto;
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
  background: rgba(22, 24, 23, 0.16);
}

.wordmark {
  width: max-content;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}

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

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

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

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
}

.basket-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.basket-trigger span {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}

.menu-trigger {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 80;
  inset: 0;
  padding: 28px;
  background: var(--color-indigo);
  color: #fff;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
}

.mobile-menu nav {
  display: grid;
  margin-top: 40px;
}

.mobile-menu nav a {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.1;
}

.outline-button,
.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background-color 220ms ease, color 220ms ease;
}

.outline-button:hover {
  background: var(--color-text);
  color: #fff;
}

.outline-button--light:hover {
  background: #fff;
  color: var(--color-text);
}

.solid-button {
  background: var(--color-text);
  color: #fff;
}

.solid-button:hover {
  background: var(--color-indigo);
}

.line-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
}

.home-hero {
  position: relative;
  height: 100svh;
  min-height: 760px;
  max-height: 980px;
  overflow: hidden;
  background: var(--color-indigo);
  color: #fff;
}

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

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

.home-hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--side);
  width: min(680px, 48%);
  transform: translateY(-48%);
  text-shadow: 0 2px 18px rgba(22, 24, 23, 0.34);
}

.home-hero-copy h1 {
  margin-top: 24px;
  font-family: "Batang", var(--font-display);
  font-size: 78px;
  line-height: 1.08;
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.home-hero-copy .outline-button {
  margin-top: 34px;
}

.hero-next {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  min-height: 66px;
  padding: 0 var(--side);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(22, 24, 23, 0.28);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hero-next span:nth-child(2) {
  justify-self: center;
}

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

.fold-section {
  padding: var(--section-space) var(--side);
  background: var(--color-background);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 72px;
  align-items: end;
  max-width: var(--container);
  margin: 0 auto 72px;
}

.section-heading--wide {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.section-heading h2,
.process-heading h2,
.library-intro h2 {
  margin-top: 18px;
  font-family: "Batang", var(--font-display);
  font-size: 66px;
  line-height: 1.12;
}

.section-heading > p,
.process-heading > p,
.library-intro > p:last-child {
  color: var(--color-text-soft);
  font-size: 17px;
  line-height: 1.9;
  word-break: keep-all;
}

.fiber-fold {
  display: flex;
  gap: 2px;
  height: 720px;
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
  background: var(--color-line);
}

.fiber-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  background: var(--color-text);
  transition: flex var(--motion);
}

.fiber-panel.is-active {
  flex: 2.7 1 0;
}

.fiber-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: filter var(--motion), transform 900ms ease;
}

.fiber-panel:hover > img,
.fiber-panel.is-active > img {
  filter: saturate(1);
  transform: scale(1.018);
}

.fiber-panel > button {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 26px 18px;
  background: rgba(22, 24, 23, 0.52);
  color: #fff;
  transition: background-color var(--motion);
}

.fiber-panel > button span {
  align-self: flex-start;
  font-size: 13px;
}

.fiber-panel > button strong {
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.fiber-panel.is-active > button {
  inset: 0 0 auto;
  flex-direction: row;
  height: 72px;
  padding: 0 26px;
  background: rgba(22, 24, 23, 0.38);
}

.fiber-panel.is-active > button span {
  align-self: auto;
}

.fiber-panel.is-active > button strong {
  writing-mode: horizontal-tb;
  font-size: 18px;
}

.fiber-panel-copy {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
  background: rgba(22, 24, 23, 0.8);
  color: #fff;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity var(--motion), transform var(--motion);
}

.fiber-panel.is-active .fiber-panel-copy {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fiber-panel-copy > p:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.fiber-panel-copy h3 {
  margin-top: 8px;
  font-size: 40px;
  line-height: 1.1;
}

.fiber-panel-copy h3 + p {
  max-width: 430px;
  margin-top: 12px;
  font-size: 14px;
}

.fiber-panel-copy a {
  display: inline-flex;
  gap: 46px;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

.process-section {
  padding: 130px var(--side) 150px;
  border-top: var(--line-rule);
  background: var(--color-surface);
}

.process-heading {
  display: grid;
  grid-template-columns: 0.35fr 0.9fr 0.75fr;
  gap: 56px;
  align-items: end;
  max-width: var(--container);
  margin: 0 auto 82px;
}

.process-heading h2 {
  margin: 0;
}

.process-strip {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 0.85fr;
  gap: 28px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

.process-strip figure:nth-child(2) {
  margin-top: 84px;
}

.process-strip figure:nth-child(3) {
  margin-top: 24px;
}

.process-strip img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.process-strip figcaption {
  display: grid;
  grid-template-columns: 32px auto;
  gap: 6px 12px;
  padding: 18px 0;
  border-bottom: var(--line-rule);
  color: var(--color-text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.process-strip figcaption span {
  grid-row: span 2;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 22px;
}

.process-strip figcaption strong {
  color: var(--color-text);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.wear-campaign {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: #fff;
}

.wear-campaign::after {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 48%;
  background: rgba(22, 24, 23, 0.72);
  content: "";
}

.wear-campaign > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wear-campaign > div {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--side);
  max-width: 500px;
  transform: translateY(-50%);
}

.wear-campaign h2 {
  margin-top: 22px;
  font-family: "Batang", var(--font-display);
  font-size: 62px;
  line-height: 1.14;
}

.wear-campaign h2 + p {
  margin-top: 26px;
  line-height: 1.9;
  word-break: keep-all;
}

.wear-campaign .outline-button {
  margin-top: 32px;
}

.lineup-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  min-height: 650px;
  background: var(--color-rice);
}

.lineup-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--side);
}

.lineup-copy h2 {
  margin-top: 20px;
  font-family: "Batang", var(--font-display);
  font-size: 54px;
  line-height: 1.16;
}

.lineup-copy h2 + p {
  margin-top: 26px;
  color: var(--color-text-soft);
  line-height: 1.85;
  word-break: keep-all;
}

.lineup-copy .line-link {
  align-self: flex-start;
  margin-top: 36px;
}

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

.library-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--color-rice);
}

.library-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.library-hero > div {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: auto;
  left: var(--side);
  width: min(520px, 42%);
  padding: 44px 44px 44px 0;
  border-right: 1px solid rgba(22, 24, 23, 0.62);
  transform: translateY(-50%);
}

.library-hero h1 {
  margin-top: 18px;
  font-family: "Batang", var(--font-display);
  font-size: 72px;
  line-height: 1.08;
}

.library-hero h1 + p {
  max-width: 400px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.library-intro {
  display: grid;
  grid-template-columns: 0.35fr 1.1fr 0.75fr;
  gap: 56px;
  align-items: end;
  padding: 120px var(--side) 76px;
  border-bottom: var(--line-rule);
}

.library-intro h2 {
  margin: 0;
}

.library-fold {
  display: flex;
  height: 660px;
  padding: 0 var(--side) 82px;
  gap: 2px;
  background: var(--color-background);
}

.library-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  background: var(--color-text);
  transition: flex var(--motion);
}

.library-panel.is-active {
  flex: 2.45 1 0;
}

.library-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity var(--motion), transform 800ms ease;
}

.library-panel.is-active > img {
  opacity: 1;
  transform: scale(1.015);
}

.library-panel > button {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 16px;
  background: rgba(22, 24, 23, 0.44);
  color: #fff;
}

.library-panel > button span {
  align-self: flex-start;
  font-size: 12px;
}

.library-panel > button strong {
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.library-panel > div {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
  background: rgba(22, 24, 23, 0.82);
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--motion), transform var(--motion);
}

.library-panel.is-active > div {
  opacity: 1;
  transform: translateY(0);
}

.library-panel.is-active > button {
  inset: 0 0 auto;
  flex-direction: row;
  height: 68px;
  background: rgba(22, 24, 23, 0.3);
}

.library-panel.is-active > button span {
  align-self: auto;
}

.library-panel.is-active > button strong {
  writing-mode: horizontal-tb;
  font-size: 18px;
}

.library-panel > div > p:first-child {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.library-panel h2 {
  margin-top: 7px;
  font-size: 38px;
  line-height: 1.1;
}

.library-panel h2 + p {
  margin-top: 10px;
  font-size: 14px;
}

.selected-sheet {
  display: grid;
  grid-template-columns: 88px minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  align-items: stretch;
  padding: 72px var(--side);
  border-top: var(--line-rule);
  border-bottom: var(--line-rule);
  background: var(--color-surface);
}

.selected-fiber-sample {
  min-height: 230px;
  background: var(--selected);
}

.selected-sheet h2 {
  margin-top: 14px;
  font-size: 50px;
  line-height: 1.05;
}

.selected-sheet dl {
  display: grid;
  margin-top: 30px;
  border-top: var(--line-rule);
}

.selected-sheet dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 10px 0;
  border-bottom: var(--line-rule);
}

.selected-sheet dt {
  font-size: 12px;
}

.selected-sheet dd {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.selected-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 520px;
}

.selected-actions > p {
  margin-bottom: 28px;
  color: var(--color-text-soft);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.selected-actions .line-link {
  margin-top: 18px;
}

.sheet-records {
  background: var(--color-text);
  color: #fff;
}

.sheet-record {
  display: grid;
  grid-template-columns: 96px minmax(240px, 0.65fr) minmax(300px, 1fr) auto;
  gap: 42px;
  align-items: center;
  min-height: 210px;
  padding: 36px var(--side);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.sheet-record--rice {
  background: #62645d;
}

.sheet-record--indigo {
  background: var(--color-indigo);
}

.sheet-record--persimmon {
  background: var(--color-persimmon);
}

.sheet-record--mugwort {
  background: var(--color-mugwort);
}

.sheet-record > span {
  font-family: var(--font-display);
  font-size: 52px;
}

.sheet-record h2 {
  margin-top: 6px;
  font-size: 42px;
  line-height: 1.05;
}

.sheet-record > p {
  max-width: 520px;
  word-break: keep-all;
}

.sheet-record > a {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

.comparison {
  padding: 128px var(--side);
  background: var(--color-background);
}

.comparison header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 58px;
}

.comparison h2 {
  margin-top: 12px;
  font-size: 60px;
  line-height: 1.1;
}

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

.comparison table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  border-top: 2px solid var(--color-text);
  font-size: 14px;
}

.comparison th,
.comparison td {
  padding: 22px 18px;
  border-bottom: var(--line-rule);
  text-align: left;
}

.comparison th {
  font-size: 11px;
  letter-spacing: 0.09em;
}

.comparison td:first-child {
  font-family: var(--font-display);
  font-size: 22px;
}

.library-cta {
  display: grid;
  place-items: center;
  min-height: 460px;
  padding: 72px var(--side);
  background: var(--color-indigo);
  color: #fff;
  text-align: center;
}

.library-cta h2 {
  margin-top: 20px;
  font-family: "Batang", var(--font-display);
  font-size: 62px;
  line-height: 1.15;
}

.library-cta .outline-button {
  margin-top: 30px;
}

.product-opening {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.12fr) minmax(380px, 0.98fr);
  min-height: calc(100svh - 84px);
  border-bottom: var(--line-rule);
}

.product-packshot,
.product-unfold,
.product-panel {
  min-width: 0;
}

.product-packshot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 760px;
  padding: 60px 48px 90px;
  background: var(--color-rice);
}

.product-packshot img {
  width: min(88%, 620px);
  height: min(76vh, 720px);
  object-fit: contain;
}

.product-packshot span,
.product-unfold figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(22, 24, 23, 0.44);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.product-unfold {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--color-water);
}

.product-unfold img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.product-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 54px;
  background: var(--color-background);
}

.product-panel h1 {
  margin-top: 18px;
  font-size: 72px;
  line-height: 0.92;
}

.product-lede {
  max-width: 460px;
  margin-top: 26px;
  color: var(--color-text-soft);
  line-height: 1.8;
  word-break: keep-all;
}

.product-facts {
  display: grid;
  margin-top: 34px;
  border-top: var(--line-rule);
}

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

.product-facts dt,
.product-facts dd {
  font-size: 11px;
  letter-spacing: 0.06em;
}

.product-facts dd {
  font-weight: 600;
}

.choice-group {
  margin-top: 25px;
}

.choice-group legend {
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 600;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--color-text);
}

.segmented button {
  min-height: 42px;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 600;
}

.segmented button + button {
  border-left: 1px solid var(--color-text);
}

.segmented button.is-active {
  background: var(--color-indigo);
  color: #fff;
}

.purchase-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  margin-top: 28px;
}

.quantity-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 52px;
  border: 1px solid var(--color-text);
}

.quantity-control button,
.quantity-control output {
  display: grid;
  place-items: center;
}

.selection-summary {
  margin-top: 12px;
  color: var(--color-text-soft);
  font-size: 11px;
}

.ritual-section {
  padding: var(--section-space) var(--side);
}

.ritual-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.95fr;
  gap: 30px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}

.ritual-grid article:nth-child(2) {
  margin-top: 76px;
}

.ritual-grid article:nth-child(3) {
  margin-top: 22px;
}

.ritual-grid img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.ritual-grid article > span {
  display: block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 28px;
}

.ritual-grid article > div {
  padding: 14px 0 20px;
  border-top: 1px solid var(--color-text);
}

.ritual-grid h3 {
  margin-top: 8px;
  font-family: "Batang", var(--font-display);
  font-size: 30px;
  line-height: 1.25;
}

.ritual-grid h3 + p {
  margin-top: 12px;
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.fiber-macro {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  min-height: 680px;
  background: var(--color-indigo);
  color: #fff;
}

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

.fiber-macro > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px var(--side);
}

.fiber-macro h2,
.application-section h2,
.formula-ledger h2,
.faq-section h2 {
  margin-top: 18px;
  font-family: "Batang", var(--font-display);
  font-size: 54px;
  line-height: 1.18;
}

.fiber-macro h2 + p {
  margin-top: 25px;
  line-height: 1.85;
  word-break: keep-all;
}

.fiber-macro dl {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.fiber-macro dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.fiber-macro dt,
.fiber-macro dd {
  font-size: 11px;
  letter-spacing: 0.06em;
}

.application-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.25fr);
  min-height: 720px;
  background: var(--color-rice);
}

.application-section > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--side);
}

.application-section h2 + p {
  margin-top: 26px;
  color: var(--color-text-soft);
  font-size: 17px;
  line-height: 1.9;
  word-break: keep-all;
}

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

.formula-ledger {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 80px;
  padding: 136px var(--side);
  background: var(--color-text);
  color: #fff;
}

.formula-ledger h2 {
  font-size: 60px;
}

.ledger-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 0.75fr;
  gap: 48px;
}

.ledger-columns > section {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.ledger-columns h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.ledger-columns dl,
.ledger-columns ol,
.ledger-columns > section > p {
  margin: 26px 0 0;
  padding: 0;
}

.ledger-columns dl div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.ledger-columns dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.ledger-columns dd,
.ledger-columns li,
.ledger-columns > section > p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.75;
  word-break: keep-all;
}

.ledger-columns li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  margin-top: 16px;
  list-style: none;
}

.ledger-columns li span {
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
  padding: 136px var(--side);
  background: var(--color-background);
}

.faq-list {
  border-top: 2px solid var(--color-text);
}

.faq-list details {
  border-bottom: var(--line-rule);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  transition: transform 220ms ease;
}

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

.faq-list details p {
  max-width: 640px;
  padding: 0 0 26px;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.next-sheet {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--color-text);
}

.next-sheet > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.next-sheet > div {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--side);
  max-width: 420px;
  transform: translateY(-50%);
  text-shadow: none;
}

.next-sheet h2 {
  margin-top: 16px;
  font-size: 58px;
  line-height: 0.96;
  white-space: nowrap;
}

.next-sheet h2 + p {
  margin-top: 22px;
  line-height: 1.8;
  word-break: keep-all;
}

.next-sheet .outline-button {
  margin-top: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1.3fr;
  gap: 64px;
  padding: 78px var(--side) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--color-text);
  color: #fff;
}

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

.footer-brand p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-column h2 {
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-column a:hover {
  color: #fff;
}

.footer-form label {
  display: block;
  margin-bottom: 20px;
  font-family: "Batang", var(--font-display);
  font-size: 22px;
}

.footer-form > div {
  display: grid;
  grid-template-columns: 1fr 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-form input {
  min-width: 0;
  height: 50px;
  border: 0;
  background: transparent;
  color: #fff;
  outline: 0;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.footer-form button {
  font-size: 20px;
}

.footer-form [data-form-status] {
  min-height: 24px;
  margin-top: 8px;
  color: var(--color-water);
  font-size: 12px;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.press-basket {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100%);
  overflow-y: auto;
  padding: 34px;
  background: var(--color-background);
  box-shadow: var(--shadow-drawer);
}

.basket-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--color-text);
}

.basket-head h2 {
  margin-top: 7px;
  font-size: 36px;
}

.basket-list {
  display: grid;
}

.basket-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: var(--line-rule);
}

.basket-item p:first-child {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.basket-item h3 {
  margin-top: 4px;
  font-size: 24px;
}

.basket-item h3 + p {
  margin-top: 6px;
  color: var(--color-text-soft);
  font-size: 11px;
}

.basket-item-controls {
  display: grid;
  grid-template-columns: repeat(4, 30px);
  align-items: center;
  border: 1px solid var(--color-text);
}

.basket-item-controls button,
.basket-item-controls span {
  display: grid;
  place-items: center;
  height: 30px;
  font-size: 12px;
}

.basket-item-controls button:last-child {
  border-left: 1px solid var(--color-text);
}

.basket-empty {
  padding: 38px 0;
  color: var(--color-text-soft);
  text-align: center;
}

.basket-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 24, 23, 0.52);
}

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

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

@media (max-width: 1180px) {
  :root {
    --side: 42px;
    --section-space: 116px;
  }

  .desktop-nav {
    gap: 22px;
  }

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

  .section-heading h2,
  .process-heading h2,
  .library-intro h2 {
    font-size: 56px;
  }

  .fiber-fold {
    height: 650px;
  }

  .process-heading,
  .library-intro {
    grid-template-columns: 0.3fr 1fr 0.7fr;
    gap: 36px;
  }

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

  .product-panel {
    padding: 52px 38px;
  }

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

  .purchase-row {
    grid-template-columns: 1fr;
  }

  .quantity-control {
    max-width: 132px;
  }

  .formula-ledger,
  .faq-section {
    grid-template-columns: 0.52fr 1.48fr;
    gap: 58px;
  }

  .ledger-columns {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  :root {
    --side: 30px;
    --section-space: 96px;
  }

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

  .desktop-nav,
  .locale {
    display: none;
  }

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

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

  .home-hero-copy {
    width: min(650px, calc(100% - 60px));
  }

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

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

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

  .fiber-fold {
    height: 590px;
  }

  .fiber-panel.is-active {
    flex: 2.25 1 0;
  }

  .fiber-panel-copy {
    padding: 24px;
  }

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

  .process-heading,
  .library-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-heading > p,
  .library-intro > p:last-child {
    max-width: 640px;
  }

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

  .process-strip figure:nth-child(2) {
    margin-top: 72px;
  }

  .process-strip figure:nth-child(3) {
    grid-column: 2;
    margin-top: 0;
  }

  .wear-campaign {
    min-height: 700px;
  }

  .wear-campaign::after {
    width: 60%;
  }

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

  .lineup-section > img {
    min-height: 520px;
  }

  .library-hero > div {
    right: auto;
    left: var(--side);
    width: min(520px, 56%);
  }

  .library-hero h1 {
    font-size: 60px;
  }

  .library-fold {
    height: 570px;
  }

  .selected-sheet {
    grid-template-columns: 60px 1fr;
  }

  .selected-actions {
    grid-column: 2;
  }

  .selected-fiber-sample {
    grid-row: span 2;
  }

  .sheet-record {
    grid-template-columns: 72px 0.75fr 1.25fr;
  }

  .sheet-record > a {
    grid-column: 2;
  }

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

  .product-panel {
    grid-column: 1 / -1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 54px;
    padding: 74px var(--side);
  }

  .product-panel > .eyebrow,
  .product-panel > h1,
  .product-panel > .product-lede,
  .product-panel > .product-facts {
    grid-column: 1;
  }

  .product-panel > .choice-group,
  .product-panel > .purchase-row,
  .product-panel > .selection-summary {
    grid-column: 2;
  }

  .product-panel > .choice-group:first-of-type {
    align-self: end;
  }

  .product-packshot,
  .product-unfold,
  .product-unfold img {
    min-height: 620px;
  }

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

  .ritual-grid article:nth-child(3) {
    grid-column: 2;
    margin-top: 0;
  }

  .fiber-macro {
    grid-template-columns: 1fr;
  }

  .fiber-macro > img {
    min-height: 520px;
  }

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

  .application-section > img {
    min-height: 580px;
  }

  .formula-ledger,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

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

  .ledger-columns > section:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 620px) {
  :root {
    --side: 20px;
    --section-space: 82px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: 68px;
  }

  .wordmark {
    font-size: 21px;
  }

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

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

  .header-tools {
    gap: 12px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

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

  .home-hero {
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
    padding-bottom: 284px;
  }

  .home-hero picture {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .home-hero picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .home-hero-copy {
    top: auto;
    right: 0;
    bottom: 56px;
    left: 0;
    width: auto;
    padding: 26px var(--side) 28px;
    background: var(--color-indigo);
    transform: none;
    text-shadow: none;
  }

  .home-hero-copy h1 {
    margin-top: 14px;
    font-size: 34px;
    line-height: 1.14;
  }

  .home-hero-copy > p:not(.eyebrow) {
    display: none;
  }

  .home-hero-copy .outline-button {
    margin-top: 18px;
  }

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

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

  .section-heading h2,
  .process-heading h2,
  .library-intro h2 {
    font-size: 42px;
    line-height: 1.16;
  }

  .fold-section {
    padding-right: 0;
    padding-left: 0;
  }

  .fold-section .section-heading {
    padding: 0 var(--side);
  }

  .fiber-fold {
    display: grid;
    height: auto;
    gap: 1px;
  }

  .fiber-panel,
  .fiber-panel.is-active {
    height: 142px;
    min-height: 142px;
  }

  .fiber-panel.is-active {
    height: 520px;
  }

  .fiber-panel > button,
  .fiber-panel.is-active > button {
    inset: 0;
    flex-direction: row;
    align-items: center;
    height: 100%;
    padding: 20px;
    background: rgba(22, 24, 23, 0.5);
  }

  .fiber-panel > button span,
  .fiber-panel.is-active > button span {
    align-self: auto;
  }

  .fiber-panel > button strong,
  .fiber-panel.is-active > button strong {
    writing-mode: horizontal-tb;
    font-size: 19px;
  }

  .fiber-panel.is-active > button {
    bottom: auto;
    height: 62px;
    background: rgba(22, 24, 23, 0.36);
  }

  .fiber-panel-copy {
    padding: 24px 20px;
  }

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

  .process-section {
    padding: 82px var(--side);
  }

  .process-heading {
    margin-bottom: 50px;
  }

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

  .process-strip figure:nth-child(2),
  .process-strip figure:nth-child(3) {
    grid-column: auto;
    margin-top: 0;
  }

  .process-strip figure:nth-child(2) {
    margin-left: 30px;
  }

  .process-strip figure:nth-child(3) {
    margin-right: 30px;
  }

  .wear-campaign {
    min-height: 680px;
  }

  .wear-campaign::after {
    inset: auto 0 0;
    width: auto;
    height: 56%;
  }

  .wear-campaign > img {
    object-position: 58% center;
  }

  .wear-campaign > div {
    top: auto;
    right: var(--side);
    bottom: 48px;
    left: var(--side);
    transform: none;
  }

  .wear-campaign h2,
  .lineup-copy h2 {
    font-size: 42px;
  }

  .lineup-copy {
    padding: 72px var(--side);
  }

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

  .library-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .library-hero > img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    object-fit: contain;
    object-position: center;
    background: var(--color-surface);
  }

  .library-hero > div {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 46px var(--side) 56px;
    border-top: 1px solid rgba(22, 24, 23, 0.62);
    border-right: 0;
    background: var(--color-surface);
    transform: none;
  }

  .library-hero h1 {
    font-size: 44px;
  }

  .library-intro {
    padding: 82px var(--side) 54px;
  }

  .library-fold {
    display: grid;
    height: auto;
    padding: 0;
    gap: 1px;
  }

  .library-panel,
  .library-panel.is-active {
    height: 128px;
  }

  .library-panel.is-active {
    height: 500px;
  }

  .library-panel > button,
  .library-panel.is-active > button {
    inset: 0;
    flex-direction: row;
    height: 100%;
    padding: 20px;
  }

  .library-panel > button span,
  .library-panel.is-active > button span {
    align-self: auto;
  }

  .library-panel > button strong,
  .library-panel.is-active > button strong {
    writing-mode: horizontal-tb;
    font-size: 18px;
  }

  .library-panel.is-active > button {
    bottom: auto;
    height: 60px;
  }

  .library-panel > div {
    padding: 22px 20px;
  }

  .library-panel h2 {
    font-size: 31px;
  }

  .selected-sheet {
    grid-template-columns: 32px 1fr;
    gap: 34px 22px;
    padding: 64px var(--side);
  }

  .selected-fiber-sample {
    min-height: 170px;
  }

  .selected-sheet h2 {
    font-size: 40px;
  }

  .selected-actions {
    grid-column: 1 / -1;
  }

  .sheet-record {
    grid-template-columns: 48px 1fr;
    gap: 16px 20px;
    min-height: 0;
    padding: 42px var(--side);
  }

  .sheet-record > span {
    font-size: 38px;
  }

  .sheet-record h2 {
    font-size: 34px;
  }

  .sheet-record > p,
  .sheet-record > a {
    grid-column: 2;
  }

  .comparison {
    padding: 82px var(--side);
  }

  .comparison h2,
  .library-cta h2 {
    font-size: 42px;
  }

  .library-cta {
    min-height: 420px;
  }

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

  .product-panel {
    order: -1;
    display: flex;
    padding: 64px var(--side);
  }

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

  .product-packshot,
  .product-unfold,
  .product-unfold img {
    min-height: 520px;
  }

  .product-packshot {
    padding: 48px 24px 76px;
  }

  .product-packshot img {
    height: 430px;
  }

  .ritual-section {
    padding-right: 0;
    padding-left: 0;
  }

  .ritual-section .section-heading {
    padding: 0 var(--side);
  }

  .ritual-grid {
    display: block;
  }

  .ritual-grid article {
    margin: 0 0 52px !important;
  }

  .ritual-grid article > span,
  .ritual-grid article > div {
    margin-right: var(--side);
    margin-left: var(--side);
  }

  .fiber-macro > img {
    min-height: 400px;
  }

  .fiber-macro > div,
  .application-section > div {
    padding: 72px var(--side);
  }

  .fiber-macro h2,
  .application-section h2,
  .formula-ledger h2,
  .faq-section h2 {
    font-size: 42px;
  }

  .application-section > img {
    min-height: 500px;
  }

  .formula-ledger,
  .faq-section {
    gap: 52px;
    padding: 82px var(--side);
  }

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

  .ledger-columns > section:last-child {
    grid-column: auto;
  }

  .next-sheet {
    min-height: 0;
    aspect-ratio: 5 / 4;
  }

  .next-sheet > img {
    object-position: 70% center;
  }

  .next-sheet > div {
    right: auto;
    left: var(--side);
    width: 220px;
  }

  .next-sheet h2 {
    font-size: 36px;
  }

  .next-sheet h2 + p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.6;
  }

  .next-sheet .outline-button {
    min-height: 44px;
    margin-top: 18px;
  }

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

  .footer-meta {
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }

  .press-basket {
    padding: 26px 20px;
  }

  .basket-item {
    grid-template-columns: 1fr;
  }

  .basket-item-controls {
    width: max-content;
  }
}

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

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