:root {
  --ink: #111111;
  --paper: #ffffff;
  --soft: #f5f5f3;
  --line: #d9d9d4;
  --muted: #5f625d;
  --pink: #ec4899;
  --pink-dark: #b91c63;
  --orange: #f59e0b;
  --green: #237a47;
  --danger: #b42318;
  --shadow: 0 18px 60px rgba(17, 17, 17, 0.14);
  --content: 1280px;
  --gutter: 32px;
  --header-height: 76px;
  color-scheme: light;
  font-family: "Microsoft YaHei UI", "Noto Sans SC", "PingFang SC", Arial, sans-serif;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100dvh;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a,
select {
  touch-action: manipulation;
}

button {
  color: inherit;
}

button:not(:disabled),
select,
a {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

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

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

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

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--gutter);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 48px;
  gap: 10px;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--pink);
  border-radius: 50%;
}

.brand-mark::before {
  position: absolute;
  width: 11px;
  height: 7px;
  top: -3px;
  right: 1px;
  content: "";
  background: var(--green);
  border-radius: 8px 1px 8px 1px;
  transform: rotate(-18deg);
}

.brand-mark span {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.brand-name {
  font-size: 21px;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  display: grid;
  min-height: 48px;
  place-items: center;
  color: #484b46;
  font-size: 14px;
  font-weight: 650;
}

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

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.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: 8px;
}

.icon-button,
.cart-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.icon-button:hover,
.cart-button:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.icon-button svg,
.cart-button svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.cart-button {
  position: relative;
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.cart-button:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  place-items: center;
  color: var(--paper);
  background: var(--pink);
  border: 2px solid var(--paper);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.menu-button,
.mobile-nav {
  display: none;
}

.mobile-nav {
  position: absolute;
  z-index: 90;
  top: var(--header-height);
  right: 0;
  left: 0;
  padding: 8px 20px 20px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav a[aria-current="page"] {
  color: var(--pink-dark);
}

.mobile-nav svg {
  width: 18px;
}

.utility-label,
.section-index,
.product-latin {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.primary-button,
.secondary-button,
.add-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-button {
  color: var(--paper);
  background: var(--ink);
}

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

.secondary-button {
  background: var(--paper);
}

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

.primary-button svg,
.secondary-button svg,
.add-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.primary-button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--pink-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link svg {
  width: 18px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(480px, 1.18fr);
  min-height: calc(86dvh - var(--header-height));
  border-bottom: 1px solid var(--line);
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(32px, 7vw, 110px);
  background: var(--paper);
}

.home-hero h1 {
  margin: 20px 0 18px;
  font-family: "Microsoft YaHei UI", sans-serif;
  font-size: 76px;
  font-weight: 850;
  line-height: 1.02;
}

.home-hero__lead {
  max-width: 420px;
  margin: 0 0 34px;
  color: #3e413d;
  font-size: 20px;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  margin-top: 50px;
  gap: 32px;
  color: var(--muted);
  font-size: 13px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-meta svg {
  width: 17px;
  color: var(--green);
}

.home-hero__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--soft);
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 230px;
  padding: 14px 16px;
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

.section,
.page-intro,
.season-nav,
.shop-toolbar,
.story-copy,
.principles,
.route-section {
  width: min(100% - (var(--gutter) * 2), var(--content));
  margin-inline: auto;
}

.section {
  padding-block: 104px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
  gap: 40px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: 42px;
  line-height: 1.18;
}

.section-heading p:not(.section-index) {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

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

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

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--soft);
  border-radius: 6px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

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

.product-note {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 750;
}

.product-copy {
  display: flex;
  flex-direction: column;
  min-height: 204px;
  justify-content: space-between;
  padding: 18px 2px 0;
  gap: 18px;
}

.product-copy h3 {
  margin: 7px 0 4px;
  font-size: 21px;
  line-height: 1.3;
}

.product-origin {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
}

.product-origin svg {
  width: 14px;
  height: 14px;
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  gap: 10px;
}

.product-buy p {
  min-width: 0;
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.product-buy strong {
  display: block;
  font-size: 18px;
}

.product-buy span {
  color: var(--muted);
  font-size: 12px;
}

.add-button {
  min-height: 44px;
  padding: 0 13px;
  color: var(--paper);
  background: var(--ink);
  white-space: nowrap;
}

.add-button:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}

.origin-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 600px;
  color: var(--paper);
  background: var(--ink);
}

.origin-band__media {
  min-height: 520px;
  overflow: hidden;
}

.origin-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(32px, 6vw, 96px);
}

.origin-band__copy .utility-label {
  color: #b9bbb7;
}

.origin-band__copy h2 {
  margin: 18px 0 22px;
  font-size: 42px;
  line-height: 1.2;
}

.origin-band__copy p:not(.utility-label) {
  max-width: 480px;
  margin: 0 0 30px;
  color: #d5d7d3;
}

.origin-band__copy .text-link {
  color: #ff9dce;
}

.route-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 90px;
  border-bottom: 1px solid var(--line);
}

.route-link {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 36px;
  border-right: 1px solid var(--line);
}

.route-link:first-child {
  padding-left: 0;
}

.route-link:last-child {
  padding-right: 0;
  border-right: 0;
}

.route-link span {
  color: var(--muted);
  font-size: 13px;
}

.route-link strong {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  font-size: 24px;
}

.route-link svg {
  width: 24px;
  transition: transform 180ms ease;
}

.route-link:hover svg {
  transform: translate(3px, -3px);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 510px;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.22);
}

.page-hero__copy {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--gutter) * 2), var(--content));
  margin: 0 auto;
  padding: 80px 0 64px;
}

.page-hero .utility-label {
  color: #f1f1ed;
}

.page-hero h1 {
  max-width: 820px;
  margin: 16px 0;
  font-size: 62px;
  line-height: 1.08;
}

.page-hero p:last-child {
  max-width: 540px;
  margin: 0;
  font-size: 18px;
}

.season-nav {
  display: flex;
  align-items: center;
  padding-block: 28px;
  gap: 10px;
  overflow-x: auto;
}

.season-nav button {
  min-width: 112px;
  min-height: 46px;
  padding: 0 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  white-space: nowrap;
}

.season-nav button:hover,
.season-nav button.is-active {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.season-note {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  margin-top: 100px;
  border-top: 1px solid var(--ink);
}

.season-note h2,
.season-note__copy {
  padding: 42px 0;
}

.season-note h2 {
  margin: 0;
  font-size: 32px;
}

.season-note__copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.season-note__copy div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.season-note__copy strong {
  display: block;
  margin-bottom: 6px;
}

.season-note__copy p {
  margin: 0;
  color: var(--muted);
}

.page-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  padding: 80px 0 52px;
  gap: 50px;
  border-bottom: 1px solid var(--ink);
}

.page-intro h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.1;
}

.page-intro p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.shop-toolbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 180px auto;
  align-items: end;
  padding-block: 24px;
  gap: 14px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.filter-field {
  display: grid;
  gap: 7px;
}

.filter-field label {
  font-size: 12px;
  font-weight: 800;
}

.search-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 19px;
  color: var(--muted);
}

.filter-field input,
.filter-field select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #a9aca6;
  border-radius: 4px;
  font-size: 16px;
}

.search-field input {
  padding-left: 44px;
}

.filter-reset {
  min-width: 96px;
  height: 48px;
  padding: 0 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 700;
}

.filter-reset:hover {
  color: var(--paper);
  background: var(--ink);
}

.shop-results-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
}

.shop-results-heading h2 {
  margin: 0;
  font-size: 28px;
}

.shop-results-heading p {
  margin: 0;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.empty-products {
  grid-column: 1 / -1;
  display: grid;
  min-height: 360px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.empty-products svg {
  width: 38px;
  height: 38px;
  color: var(--muted);
}

.empty-products h3 {
  margin: 18px 0 3px;
}

.empty-products p {
  margin: 0;
  color: var(--muted);
}

.story-hero {
  min-height: 680px;
}

.story-copy {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  padding-block: 110px;
  gap: 64px;
}

.story-copy h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
}

.story-copy__body {
  max-width: 720px;
}

.story-copy__body p {
  margin: 0 0 22px;
  color: #343733;
  font-size: 18px;
}

.principles-band {
  padding: 96px 0;
  background: var(--soft);
}

.principles > h2 {
  margin: 0 0 46px;
  font-size: 38px;
}

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

.principle {
  min-height: 260px;
  padding: 34px 30px 0;
  border-right: 1px solid var(--line);
}

.principle:first-child {
  padding-left: 0;
}

.principle:last-child {
  border-right: 0;
}

.principle span {
  color: var(--pink-dark);
  font-weight: 800;
}

.principle h3 {
  margin: 34px 0 12px;
  font-size: 25px;
}

.principle p {
  margin: 0;
  color: var(--muted);
}

.drawer-scrim {
  position: fixed;
  z-index: 900;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 180ms ease;
}

.drawer-open .drawer-scrim {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  display: flex;
  width: min(480px, 100vw);
  height: 100dvh;
  flex-direction: column;
  padding: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(102%);
  transition: transform 240ms ease-out;
}

.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

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

.drawer-header h2 {
  margin: 5px 0 0;
  font-size: 34px;
  line-height: 1.2;
}

.cart-content {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
}

.cart-empty,
.checkout-success {
  display: grid;
  min-height: 100%;
  place-items: center;
  align-content: center;
  text-align: center;
}

.cart-empty > svg {
  width: 48px;
  height: 48px;
  color: var(--muted);
}

.cart-empty h3,
.checkout-success h3 {
  margin: 20px 0 4px;
  font-size: 23px;
}

.cart-empty p,
.checkout-success p {
  max-width: 310px;
  margin: 0 0 18px;
  color: var(--muted);
}

.cart-items {
  min-height: 0;
  padding: 10px 2px;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr 44px;
  padding: 16px 0;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-item > img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-copy h3 {
  margin: 0;
  font-size: 16px;
}

.cart-item-copy p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 36px 36px 36px;
  width: max-content;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.quantity-control button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 0;
}

.quantity-control button:hover {
  background: var(--soft);
}

.quantity-control svg {
  width: 15px;
  height: 15px;
}

.quantity-control span {
  text-align: center;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.remove-button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 4px;
}

.remove-button:hover {
  color: var(--paper);
  background: var(--danger);
}

.remove-button svg {
  width: 18px;
}

.cart-summary {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-summary strong {
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}

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

.checkout-success span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
}

.checkout-success span svg {
  width: 28px;
}

.toast {
  position: fixed;
  z-index: 1100;
  right: 24px;
  bottom: 24px;
  max-width: min(340px, calc(100vw - 32px));
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 4px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  min-height: 320px;
  padding: 70px var(--gutter) 32px;
  align-content: space-between;
  color: var(--paper);
  background: var(--ink);
}

.footer-brand {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  max-width: 460px;
  gap: 0 12px;
}

.footer-brand strong {
  font-size: 22px;
}

.footer-brand p {
  grid-column: 1 / -1;
  margin: 26px 0 0;
  color: #c7c9c5;
  font-size: 21px;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.footer-links a {
  min-height: 44px;
  color: #dadbd8;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ff9dce;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 70px 0 0;
  padding-top: 20px;
  color: #969a94;
  border-top: 1px solid #373a36;
  font-size: 12px;
}

@media (max-width: 1100px) {
  :root {
    --gutter: 24px;
  }

  .home-hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .home-hero__copy {
    padding-inline: 48px;
  }

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

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-toolbar {
    grid-template-columns: minmax(240px, 1fr) 160px 160px auto;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 20px;
    --header-height: 68px;
  }

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

  .desktop-nav {
    display: none;
  }

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

  .mobile-nav:not([hidden]) {
    display: block;
  }

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

  .home-hero__copy {
    min-height: 400px;
    padding: 42px var(--gutter) 38px;
  }

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

  .home-hero__media {
    min-height: 390px;
    height: 390px;
  }

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

  .origin-band,
  .page-intro,
  .story-copy,
  .season-note {
    grid-template-columns: 1fr;
  }

  .origin-band__copy {
    min-height: 440px;
  }

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

  .route-link,
  .route-link:first-child,
  .route-link:last-child {
    min-height: 112px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .page-hero h1,
  .page-intro h1 {
    font-size: 50px;
  }

  .shop-toolbar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .shop-toolbar .filter-field:first-child {
    grid-column: 1 / -1;
  }

  .shop-toolbar .filter-reset {
    grid-column: 1 / -1;
  }

  .season-note h2,
  .season-note__copy {
    padding-bottom: 0;
  }

  .principle-list {
    grid-template-columns: 1fr;
  }

  .principle,
  .principle:first-child {
    min-height: 0;
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .footer-links {
    margin-top: 52px;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 16px;
  }

  .brand-name {
    font-size: 19px;
  }

  .home-hero__copy {
    min-height: 370px;
    padding-top: 34px;
    padding-bottom: 30px;
  }

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

  .home-hero__lead {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero-meta {
    flex-direction: row;
    margin-top: 24px;
    gap: 20px;
  }

  .home-hero__media {
    min-height: 300px;
    height: 300px;
  }

  .section {
    padding-block: 44px 72px;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .origin-band__copy h2,
  .story-copy h2,
  .principles > h2 {
    font-size: 34px;
  }

  .section-heading p:not(.section-index) {
    margin-top: 18px;
  }

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

  .product-media {
    aspect-ratio: 5 / 6;
  }

  .product-copy {
    min-height: 188px;
  }

  .page-hero {
    min-height: 480px;
  }

  .story-hero {
    min-height: 560px;
  }

  .page-hero h1,
  .page-intro h1 {
    font-size: 42px;
  }

  .page-intro {
    padding-block: 58px 36px;
  }

  .shop-toolbar {
    grid-template-columns: 1fr;
  }

  .shop-toolbar .filter-field:first-child,
  .shop-toolbar .filter-reset {
    grid-column: auto;
  }

  .season-note__copy {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-block: 72px;
    gap: 32px;
  }

  .story-copy__body p {
    font-size: 16px;
  }

  .cart-drawer {
    padding: 20px 16px;
  }

  .cart-item {
    grid-template-columns: 72px 1fr 44px;
  }

  .cart-item > img {
    width: 72px;
    height: 72px;
  }

  .footer-links {
    flex-direction: column;
    gap: 2px;
  }
}

@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;
  }
}
