:root {
  --paper: #f7f6f2;
  --paper-deep: #efede6;
  --surface: #ffffff;
  --ink: #171a17;
  --ink-soft: #303530;
  --muted: #6d726c;
  --line: #d9dcd5;
  --line-dark: #b7bcb4;
  --forest: #244d3b;
  --forest-dark: #18392b;
  --sage: #e4ece5;
  --sand: #e9e3d8;
  --rust: #9c5038;
  --focus: #1d5ea8;
  --max-width: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(84px, 9vw, 144px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow-drawer: 0 0 42px rgba(18, 28, 22, .16);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

svg {
  display: block;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

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

::selection {
  color: var(--surface);
  background: var(--forest);
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.button-primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}

.button-primary:disabled {
  color: rgba(255, 255, 255, .65);
  background: #89978e;
  border-color: #89978e;
  cursor: not-allowed;
  transform: none;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-secondary:hover {
  color: #fff;
  background: var(--ink);
}

.full-width {
  width: 100%;
}

.button-reset {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--forest);
}

.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px var(--gutter);
  color: var(--forest-dark);
  background: var(--sage);
  border-bottom: 1px solid rgba(36, 77, 59, .12);
}

.announcement p {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
}

.announcement-item,
.announcement-divider {
  display: inline-block;
}

.announcement-divider {
  margin-inline: 8px;
  color: #7f9286;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 242, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(26, 31, 27, .06);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  width: fit-content;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
  white-space: nowrap;
}

.wordmark i {
  color: var(--rust);
  font-style: normal;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 42px);
}

.desktop-nav a {
  position: relative;
  padding-block: 25px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

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

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

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

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.action-with-label {
  width: auto;
  display: inline-flex;
  gap: 7px;
  padding-inline: 8px;
  font-size: 12px;
  font-weight: 600;
}

.action-with-label svg {
  width: 18px;
  height: 18px;
}

.bag-button {
  min-width: 70px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 0 0 8px;
  border: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.bag-button span {
  min-width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  padding-inline: 5px;
  color: #fff;
  background: var(--forest);
  border-radius: 999px;
  font-size: 10px;
}

.menu-button {
  display: none;
}

.hero {
  min-height: min(790px, calc(100svh - 106px));
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(520px, 1.15fr);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: grid;
  place-items: center;
  padding: clamp(64px, 8vw, 120px) var(--gutter);
}

.hero-copy-inner {
  width: min(100%, 560px);
}

.hero h1 {
  max-width: 580px;
  margin-top: 18px;
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .93;
}

.hero-lede {
  max-width: 510px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.hero-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(52px, 7vw, 88px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-principles div {
  min-width: 0;
}

.hero-principles dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.hero-principles dd {
  font-size: 12px;
  font-weight: 600;
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--paper-deep);
}

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

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

.hero-media figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(247, 246, 242, .88);
  border: 1px solid rgba(23, 26, 23, .12);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.section-heading h2,
.products-toolbar h2,
.impact-intro h2,
.story-copy h2,
.repair-copy h2,
.faq-intro h2,
.newsletter-inner h2 {
  margin-top: 12px;
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 64px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.split-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 28px);
}

.category-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.category-card img {
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.category-card:hover img {
  transform: scale(1.025);
}

.category-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 2px 0;
  background: var(--paper);
}

.category-card-footer strong {
  font-size: 17px;
  font-weight: 600;
}

.category-card-footer span {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.products-section {
  padding-top: 0;
}

.products-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.filter-list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 4px;
}

.filter-button {
  min-height: 38px;
  padding: 8px 13px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.filter-button:hover {
  color: var(--ink);
}

.filter-button.active {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 26px);
}

.product-card {
  min-width: 0;
}

.product-card[hidden] {
  display: none;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-image-wrap img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.018);
}

.product-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.quick-add-button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  min-height: 44px;
  padding: 11px 14px;
  color: #fff;
  background: rgba(23, 26, 23, .94);
  border: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  transform: translateY(calc(100% + 12px));
  transition: background-color 180ms ease, transform 240ms var(--ease);
}

.product-card:hover .quick-add-button,
.quick-add-button:focus-visible {
  transform: translateY(0);
}

.quick-add-button:hover {
  background: var(--forest);
}

.product-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding-top: 15px;
}

.product-meta h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.product-meta p:not(.product-price) {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.product-price {
  padding-top: 1px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.swatch-row {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

.swatch {
  width: 13px;
  height: 13px;
  display: inline-block;
  border: 1px solid rgba(23, 26, 23, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px transparent;
}

.swatch.active {
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--ink);
}

.swatch-oat { background: #d8cbb7; }
.swatch-clay { background: #a76851; }
.swatch-cream { background: #eee9dd; }
.swatch-stone { background: #a9a69d; }
.swatch-ecru { background: #e3dccd; }
.swatch-moss { background: #65705d; }
.swatch-blue { background: #95aebd; }
.swatch-white { background: #f8f7f2; }
.swatch-ink { background: #252925; }

.section-end-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.section-end-row p {
  color: var(--muted);
  font-size: 12px;
}

.impact-section {
  color: var(--ink);
  background: var(--sage);
}

.impact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(580px, 1.25fr);
  gap: clamp(56px, 8vw, 132px);
  align-items: start;
}

.impact-intro {
  position: sticky;
  top: 120px;
}

.impact-intro h2 {
  max-width: 520px;
}

.impact-intro > p:not(.kicker) {
  max-width: 470px;
  margin-top: 24px;
  color: #56635a;
  font-size: 16px;
  line-height: 1.7;
}

.impact-selector {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid rgba(36, 77, 59, .22);
}

.impact-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 13px 0;
  color: #5e6d62;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(36, 77, 59, .22);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.impact-tab::after {
  content: "View";
  color: transparent;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.impact-tab:hover,
.impact-tab.active {
  color: var(--forest-dark);
}

.impact-tab.active::after {
  color: var(--forest-dark);
}

.passport-card {
  padding: clamp(26px, 4vw, 52px);
  background: var(--surface);
  border: 1px solid rgba(36, 77, 59, .16);
}

.passport-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.passport-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.passport-header h3 {
  margin-top: 8px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.passport-header div > p:last-child {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.preview-badge {
  height: fit-content;
  padding: 6px 8px;
  color: var(--forest);
  background: var(--sage);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footprint-block {
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.footprint-block > div:first-child {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.footprint-block p {
  color: var(--muted);
  font-size: 11px;
}

.footprint-block strong {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.footprint-scale {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  background: linear-gradient(90deg, #d6e6dc 0%, #d6e6dc 33.33%, #e8dfc9 33.33%, #e8dfc9 66.66%, #dfc4b8 66.66%, #dfc4b8 100%);
}

.footprint-fill {
  display: block;
  height: 100%;
  border-right: 3px solid var(--ink);
  transition: width 360ms var(--ease);
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  font-size: 9px !important;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.passport-metrics div {
  padding: 26px 16px 26px 0;
}

.passport-metrics div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.passport-metrics dt {
  min-height: 30px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.passport-metrics dd {
  margin-top: 9px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.trace-route {
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.route-line {
  display: grid;
  grid-template-columns: 10px 1fr 10px 1fr 10px;
  align-items: center;
  margin: 22px 10px 12px;
}

.route-line span {
  width: 10px;
  height: 10px;
  background: var(--forest);
  border: 2px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--forest);
}

.route-line i {
  height: 1px;
  background: var(--line-dark);
}

.route-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.route-labels p:nth-child(2) {
  text-align: center;
}

.route-labels p:nth-child(3) {
  text-align: right;
}

.route-labels strong,
.route-labels span {
  display: block;
}

.route-labels strong {
  font-size: 12px;
  font-weight: 700;
}

.route-labels span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.passport-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.passport-details div {
  display: grid;
  gap: 6px;
}

.passport-details span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.passport-details strong {
  font-size: 12px;
  font-weight: 600;
}

.methodology-toggle {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0 0;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.methodology-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.methodology-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.methodology-copy {
  padding-top: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.lookbook-heading {
  margin-bottom: clamp(36px, 5vw, 60px);
}

.lookbook-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.lookbook-image-wrap {
  position: relative;
  background: var(--paper-deep);
}

.lookbook-image-wrap > img {
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.lookbook-image-wrap figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hotspot {
  position: absolute;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(23, 26, 23, .15);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.hotspot::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: inherit;
}

.hotspot span {
  font-size: 11px;
  font-weight: 800;
}

.hotspot:hover,
.hotspot.active {
  color: #fff;
  background: var(--forest);
  transform: scale(1.08);
}

.hotspot-one { top: 31%; left: 42%; }
.hotspot-two { top: 60%; left: 64%; }
.hotspot-three { top: 18%; left: 25%; }

.lookbook-shop-card {
  position: sticky;
  top: 116px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  background: var(--surface);
  border: 1px solid var(--line);
}

.lookbook-count {
  display: flex;
  gap: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.lookbook-count span:first-child {
  color: var(--ink);
}

.lookbook-shop-card > div:nth-child(2) {
  margin-top: 52px;
}

.lookbook-shop-card h3 {
  margin-top: 10px;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.03;
}

.lookbook-description {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.lookbook-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lookbook-specs dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lookbook-specs dd {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
}

.size-fieldset {
  padding: 0;
  border: 0;
}

.lookbook-shop-card .size-fieldset {
  margin-top: auto;
  padding-top: 30px;
}

.size-fieldset legend {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.size-options button {
  min-height: 40px;
  padding: 8px 4px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-dark);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.size-options button:hover,
.size-options button.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.size-options button:disabled {
  color: #aaa;
  background: #f1f1ef;
  border-color: #e1e1de;
  text-decoration: line-through;
  cursor: not-allowed;
}

.lookbook-shop-card [data-look-add] {
  margin-top: 14px;
}

.size-guide-trigger {
  align-self: center;
  margin-top: 15px;
  font-size: 10px;
}

.story-section {
  background: var(--surface);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(380px, .95fr) minmax(420px, 1.05fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story-copy h2 {
  max-width: 620px;
}

.story-lede {
  max-width: 610px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.principle-list {
  list-style: none;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.principle-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.principle-list > li > span {
  padding-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.principle-list h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.015em;
}

.principle-list p {
  max-width: 560px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.story-copy > .text-link {
  margin-top: 32px;
}

.repair-section {
  padding-top: 0;
}

.repair-card {
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(520px, 1.2fr);
  min-height: 440px;
  background: var(--sand);
}

.repair-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 6vw, 84px);
}

.repair-copy h2 {
  max-width: 520px;
  font-size: clamp(36px, 4.2vw, 58px);
}

.repair-copy > p:not(.kicker) {
  max-width: 500px;
  margin-top: 20px;
  color: #625f58;
  font-size: 14px;
  line-height: 1.7;
}

.repair-copy .button {
  margin-top: 30px;
}

.repair-card > img {
  height: 100%;
  object-fit: cover;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(520px, 1.35fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

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

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

.faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 20px;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

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

.faq-list summary span {
  font-size: 24px;
  font-weight: 300;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 700px;
  padding: 0 42px 26px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.newsletter-section {
  padding-block: clamp(64px, 8vw, 110px);
  color: #fff;
  background: var(--forest);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
}

.newsletter-inner .kicker {
  color: #b8cbbb;
}

.newsletter-inner h2 {
  max-width: 750px;
  font-size: clamp(36px, 4.6vw, 64px);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid rgba(255, 255, 255, .7);
}

.newsletter-form input {
  min-width: 0;
  min-height: 58px;
  padding: 14px 8px 14px 0;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .65);
}

.newsletter-form button {
  padding: 12px 0 12px 22px;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  color: var(--ink);
  background: var(--paper-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 68px;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

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

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: var(--ink-soft);
  font-size: 12px;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--forest);
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 10px;
}

.footer-bottom a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 78;
  background: rgba(12, 18, 14, .38);
  backdrop-filter: blur(2px);
}

.mobile-menu,
.cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-drawer);
  transition: transform 320ms var(--ease), visibility 320ms;
  visibility: hidden;
}

.mobile-menu {
  left: 0;
  width: min(410px, 92vw);
  transform: translateX(-102%);
}

.cart-drawer {
  right: 0;
  width: min(470px, 94vw);
  transform: translateX(102%);
}

.mobile-menu.open,
.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-eyebrow {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.drawer-header h2 {
  margin-top: 2px;
  font-size: 17px;
  font-weight: 600;
}

.mobile-menu nav {
  display: grid;
  padding: 24px 22px;
}

.mobile-menu nav a {
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.025em;
}

.mobile-menu-footer {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding: 22px;
  color: var(--muted);
  background: var(--paper);
  font-size: 11px;
}

.mobile-menu-footer a {
  width: fit-content;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}

.cart-shipping-note {
  padding: 12px 22px;
  color: var(--forest-dark);
  background: var(--sage);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 22px;
}

.empty-state {
  min-height: 260px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: var(--muted);
  text-align: center;
}

.cart-line-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 15px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-line-item img {
  width: 84px;
  height: 105px;
  object-fit: cover;
  background: var(--paper-deep);
}

.cart-line-content {
  min-width: 0;
}

.cart-line-content h3 {
  font-size: 13px;
  font-weight: 700;
}

.cart-line-content > p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.cart-line-price {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.quantity-control {
  width: fit-content;
  display: grid;
  grid-template-columns: 30px 30px 30px;
  margin-top: 14px;
  border: 1px solid var(--line-dark);
}

.quantity-control button,
.quantity-control span {
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 11px;
}

.quantity-control button {
  cursor: pointer;
}

.remove-item {
  display: block;
  margin-top: 10px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  cursor: pointer;
}

.cart-summary {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--line);
}

.cart-summary > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.cart-summary > div:first-child strong {
  font-weight: 700;
}

.cart-summary > p {
  margin: 7px 0 16px;
  color: var(--muted);
  font-size: 10px;
}

.search-panel,
.quick-view {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  background: rgba(12, 18, 14, .45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms;
  visibility: hidden;
}

.search-panel.open,
.quick-view.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.search-panel {
  align-items: start;
  background: rgba(247, 246, 242, .98);
}

.search-panel-inner {
  width: 100%;
  padding-top: clamp(26px, 5vw, 66px);
}

.search-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.search-panel-top h2 {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.search-input-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
}

.search-input-wrap svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.search-input-wrap input {
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: clamp(23px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -.03em;
}

.search-input-wrap input::placeholder {
  color: #969b95;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.search-result {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 13px;
  align-items: center;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
}

.search-result img {
  width: 74px;
  height: 92px;
  object-fit: cover;
}

.search-result h3 {
  font-size: 12px;
  font-weight: 700;
}

.search-result p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.no-search-results {
  grid-column: 1 / -1;
  padding-block: 40px;
  color: var(--muted);
  font-size: 14px;
}

.quick-view {
  place-items: center;
  padding: 20px;
}

.quick-view-card {
  position: relative;
  width: min(880px, 100%);
  max-height: calc(100svh - 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: auto;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(12, 18, 14, .22);
  transform: translateY(12px);
  transition: transform 260ms var(--ease);
}

.quick-view.open .quick-view-card {
  transform: translateY(0);
}

.quick-view-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
}

.quick-view-image {
  min-height: 560px;
  background: var(--paper-deep);
}

.quick-view-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
}

.quick-view-content h2 {
  margin-top: 12px;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.03;
}

.quick-view-price {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
}

.quick-view-material {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.quick-size-fieldset {
  margin-top: 34px;
}

.quick-view-content [data-quick-add-to-cart] {
  margin-top: 18px;
}

.quick-view-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 110;
  max-width: min(360px, calc(100vw - 48px));
  padding: 13px 16px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(23, 26, 23, .18);
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 28px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .action-with-label span {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(340px, .85fr) minmax(470px, 1.15fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 48px;
  }

  .quick-add-button {
    transform: translateY(0);
  }

  .impact-layout {
    grid-template-columns: minmax(260px, .72fr) minmax(510px, 1.28fr);
    gap: 52px;
  }

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

  .passport-metrics div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .passport-metrics div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

@media (max-width: 920px) {
  html {
    scroll-padding-top: 92px;
  }

  .announcement p {
    font-size: 10px;
  }

  .header-inner {
    min-height: 64px;
    grid-template-columns: 42px 1fr auto;
    gap: 10px;
  }

  .menu-button {
    display: inline-grid;
    margin-left: -11px;
  }

  .desktop-nav,
  .account-button,
  .action-with-label {
    display: none;
  }

  .wordmark {
    justify-self: center;
  }

  .bag-button {
    min-width: auto;
  }

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

  .hero-copy {
    order: 2;
    padding-block: 62px 70px;
  }

  .hero-copy-inner {
    width: 100%;
    max-width: none;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(54px, 10vw, 82px);
  }

  .hero-media {
    min-height: 67svh;
    max-height: 760px;
  }

  .split-heading,
  .products-toolbar,
  .impact-layout,
  .story-layout,
  .faq-section,
  .newsletter-inner {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    gap: 22px;
  }

  .split-heading > p {
    max-width: 640px;
  }

  .products-toolbar {
    display: grid;
    align-items: start;
  }

  .filter-list {
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .filter-list::-webkit-scrollbar {
    display: none;
  }

  .impact-layout {
    gap: 42px;
  }

  .impact-intro,
  .faq-intro {
    position: static;
  }

  .impact-intro > p:not(.kicker) {
    max-width: 680px;
  }

  .impact-selector {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border-top: 0;
  }

  .impact-tab {
    min-height: 48px;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(36, 77, 59, .24);
    text-align: center;
  }

  .impact-tab::after {
    display: none;
  }

  .impact-tab.active {
    color: #fff;
    background: var(--forest);
    border-color: var(--forest);
  }

  .lookbook-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 24px;
  }

  .lookbook-shop-card {
    position: static;
    min-height: 0;
  }

  .story-layout {
    gap: 56px;
  }

  .story-image {
    width: min(100%, 660px);
  }

  .repair-card {
    grid-template-columns: 1fr;
  }

  .repair-copy {
    order: 2;
  }

  .repair-card > img {
    max-height: 430px;
  }

  .faq-section {
    gap: 36px;
  }

  .newsletter-inner {
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
    --section-space: 84px;
  }

  .announcement {
    min-height: 31px;
    padding-block: 6px;
  }

  .announcement .mobile-hide {
    display: none;
  }

  .hero-media {
    min-height: 68svh;
  }

  .hero-media figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .hero-copy {
    padding-block: 52px 62px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .hero-actions-row .button {
    width: 100%;
  }

  .hero-principles {
    gap: 12px;
    margin-top: 52px;
  }

  .hero-principles dd {
    font-size: 10px;
  }

  .section-heading h2,
  .products-toolbar h2,
  .impact-intro h2,
  .story-copy h2,
  .repair-copy h2,
  .faq-intro h2,
  .newsletter-inner h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .category-card img {
    aspect-ratio: 4 / 4.6;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 12px;
  }

  .product-meta {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .product-price {
    grid-row: 2;
  }

  .quick-add-button {
    right: 6px;
    bottom: 6px;
    left: 6px;
    min-height: 40px;
  }

  .section-end-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .impact-selector {
    grid-template-columns: 1fr;
  }

  .passport-card {
    margin-inline: -6px;
  }

  .passport-header {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .passport-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .passport-metrics div {
    padding: 20px 12px 20px 0;
  }

  .passport-metrics div + div {
    padding-left: 12px;
  }

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

  .lookbook-layout {
    grid-template-columns: 1fr;
  }

  .lookbook-shop-card {
    min-height: 0;
  }

  .lookbook-shop-card > div:nth-child(2) {
    margin-top: 34px;
  }

  .story-layout {
    gap: 44px;
  }

  .repair-card {
    margin-inline: -20px;
  }

  .repair-copy {
    padding: 40px 20px 50px;
  }

  .faq-list summary {
    min-height: 68px;
    font-size: 14px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .newsletter-form input {
    border-bottom: 1px solid rgba(255, 255, 255, .7);
  }

  .newsletter-form button {
    width: fit-content;
    padding: 18px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
    padding-top: 58px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 18px;
  }

  .search-results {
    grid-template-columns: 1fr;
  }

  .search-panel-inner {
    padding-top: 24px;
  }

  .search-input-wrap {
    margin-top: 30px;
  }

  .search-input-wrap input {
    font-size: 22px;
  }

  .quick-view {
    align-items: end;
    padding: 0;
  }

  .quick-view-card {
    width: 100%;
    max-height: 92svh;
    grid-template-columns: 1fr;
  }

  .quick-view-image {
    min-height: 0;
    height: 38svh;
  }

  .quick-view-content {
    padding: 28px 20px 30px;
  }

  .quick-view-content h2 {
    font-size: 34px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .wordmark {
    gap: 3px;
    font-size: 11px;
    letter-spacing: .13em;
  }

  .header-inner {
    grid-template-columns: 38px 1fr auto;
  }

  .bag-button {
    gap: 5px;
    padding-left: 0;
    font-size: 11px;
  }

  .hero-principles {
    grid-template-columns: 1fr;
  }

  .hero-principles div {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
  }

  .hero-principles dt {
    margin-bottom: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .product-price {
    grid-row: auto;
  }

  .passport-metrics {
    grid-template-columns: 1fr;
  }

  .passport-metrics div + div,
  .passport-metrics div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .route-labels {
    gap: 6px;
  }

  .route-labels strong {
    font-size: 10px;
  }

  .route-labels span {
    font-size: 8px;
  }

  .size-options {
    gap: 4px;
  }

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

  .footer-column:last-child {
    grid-column: auto;
  }
}

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