:root {
  --ink: #101010;
  --ink-soft: #2a2926;
  --paper: #f7f2e8;
  --paper-hot: #fffaf0;
  --chalk: #fbfaf6;
  --line: rgba(16, 16, 16, .22);
  --line-dark: rgba(247, 242, 232, .28);
  --orange: #ff4f28;
  --acid: #d9ff3f;
  --sky: #9ec6da;
  --shadow: 0 28px 80px rgba(0, 0, 0, .2);
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 79, 40, .1), transparent 24rem),
    linear-gradient(180deg, var(--paper), #efe6d8);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .13;
  background-image:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .22) 0, rgba(0, 0, 0, .22) 1px, transparent 1px, transparent 5px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .22) 0, rgba(255, 255, 255, .22) 1px, transparent 1px, transparent 7px);
  mix-blend-mode: multiply;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: .45rem 1rem;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  text-transform: uppercase;
  font-size: .76rem;
  line-height: 1.25;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 4.35rem;
  padding: 0 1.1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 232, .94);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  line-height: 1;
}

.brand {
  justify-self: center;
  font-size: 1.15rem;
  text-align: center;
}

.site-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  font-size: .78rem;
}

.site-nav {
  justify-self: start;
}

.nav-actions {
  justify-self: end;
}

.site-nav a,
.text-button,
.bag-button,
.nav-toggle,
.button-link {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-transform: uppercase;
  font-size: .78rem;
}

.site-nav a:hover,
.text-button:hover,
.button-link:hover,
.text-link:hover {
  color: var(--orange);
}

.bag-button {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.bag-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.55rem;
  height: 1.55rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 .25rem;
  font-size: .72rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  padding: .62rem .75rem;
}

.page {
  display: none;
}

.page.is-active {
  display: block;
}

.hero {
  position: relative;
  min-height: calc(100vh - 6.7rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: contrast(1.06) saturate(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .28) 48%, rgba(0, 0, 0, .08)),
    linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 42%);
}

.hero::after,
.editorial-media::after,
.lookbook-grid > *::after,
.product-media::after,
.product-card-media::after,
.shop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .23;
  background-image: repeating-linear-gradient(90deg, rgba(0, 0, 0, .25) 0, rgba(0, 0, 0, .25) 1px, transparent 1px, transparent 6px);
  mix-blend-mode: overlay;
}

.hero-copy {
  width: min(44rem, calc(100% - 2rem));
  min-height: calc(100vh - 6.7rem);
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: 4rem 1rem 4rem 4rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-size: .78rem;
  line-height: 1.3;
}

.hero h1,
.shop-hero h1,
.checkout-main h1,
.product-info h1,
.editorial-copy h2,
.lookbook-copy h2,
.club-copy h2,
.section-head h2,
.modal-body h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  line-height: .9;
}

.hero h1 {
  font-size: 6.25rem;
}

.hero-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 35rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
}

.primary-action,
.secondary-action,
.filter-chip,
.option-button,
.quantity-button,
.icon-button {
  min-height: 2.85rem;
  border: 1px solid currentColor;
  background: transparent;
  padding: .82rem 1rem;
  text-transform: uppercase;
  font-size: .78rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

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

.secondary-action {
  background: transparent;
  color: inherit;
}

.primary-action:hover,
.secondary-action:hover,
.filter-chip:hover,
.filter-chip.is-active,
.option-button:hover,
.option-button.is-selected,
.quantity-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.hero .primary-action {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.hero .secondary-action {
  color: var(--paper);
}

.hero-rail {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 29rem;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: .55rem;
}

.hero-rail video,
.hero-rail img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border: 1px solid rgba(247, 242, 232, .55);
  background: var(--ink);
}

.hero-rail video {
  object-position: center 40%;
}

.hero-rail img {
  object-position: center 45%;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--acid);
  color: var(--ink);
  text-transform: uppercase;
  font-size: .8rem;
}

.ticker-track {
  display: flex;
  min-width: 200%;
  animation: ticker 24s linear infinite;
}

.ticker span {
  flex: 0 0 auto;
  padding: .82rem 1.5rem;
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.drop-band,
.club-band,
.checkout-shell,
.reviews-band,
.about-grid,
.impact-band {
  padding: 1rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 1rem;
  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  max-width: 44rem;
  font-size: 3.25rem;
}

.text-link {
  text-transform: uppercase;
  font-size: .78rem;
  border-bottom: 1px solid currentColor;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-hot);
}

.product-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ded7cc;
}

.product-card-media img,
.product-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card-media:hover img,
.product-card-media:hover video {
  transform: scale(1.035);
}

.product-card[data-slug="black-forest-hoodie"] .product-card-media img {
  object-position: center 30%;
}

.product-card[data-slug="white-hoodie"] .product-card-media img {
  object-position: center 30%;
}

.product-card[data-slug="crop-top"] .product-card-media img {
  object-position: center 37%;
}

.badge-row {
  position: absolute;
  left: .7rem;
  top: .7rem;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: .35rem .5rem;
  border: 1px solid rgba(16, 16, 16, .55);
  background: rgba(247, 242, 232, .88);
  text-transform: uppercase;
  font-size: .67rem;
}

.product-card-body {
  display: grid;
  gap: .8rem;
  padding: 1rem;
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: 1rem;
}

.product-card p {
  margin: 0;
  color: rgba(16, 16, 16, .72);
  line-height: 1.45;
}

.card-actions {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}

.card-actions .secondary-action,
.card-actions .primary-action {
  flex: 1 1 8rem;
  text-align: center;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(23rem, .82fr);
  min-height: 42rem;
  border-block: 1px solid var(--line);
}

.editorial-media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

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

.editorial-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 3rem;
  background: var(--ink);
  color: var(--paper);
}

.editorial-copy h2,
.lookbook-copy h2,
.club-copy h2,
.reviews-lead h2,
.about-grid h2,
.impact-band h2 {
  font-size: 4.2rem;
}

.editorial-copy p:not(.eyebrow),
.club-copy p,
.lookbook-copy p,
.reviews-lead p,
.impact-band p {
  margin: 0;
  max-width: 34rem;
  line-height: 1.55;
}

.proof-grid {
  display: grid;
  gap: .65rem;
  margin-top: 1rem;
}

.proof-grid div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding-top: .75rem;
  border-top: 1px solid var(--line-dark);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.reviews-band {
  display: grid;
  grid-template-columns: minmax(20rem, .72fr) minmax(0, 1.28fr);
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.reviews-lead,
.reviews-grid article {
  border: 1px solid var(--line);
  background: var(--paper-hot);
}

.reviews-lead {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reviews-grid article {
  display: grid;
  align-content: space-between;
  gap: 1.5rem;
  min-height: 17rem;
  padding: 1rem;
}

.reviews-grid span {
  display: block;
  color: var(--orange);
  font-size: 1rem;
}

.reviews-grid p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.lookbook-band {
  display: grid;
  grid-template-columns: minmax(19rem, .65fr) minmax(0, 1.35fr);
  border-bottom: 1px solid var(--line);
}

.lookbook-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 3rem;
  background: var(--orange);
  color: #fff;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 38rem;
}

.lookbook-grid img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 38rem;
  object-fit: cover;
  border-left: 1px solid var(--line);
}

.lookbook-grid img:nth-child(1) {
  object-position: center 26%;
}

.lookbook-grid img:nth-child(2) {
  object-position: center 34%;
}

.lookbook-grid img:nth-child(3) {
  object-position: center 34%;
}

.club-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, .58fr);
  gap: 1rem;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.club-copy,
.signup-form {
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--paper-hot);
}

.club-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.signup-form {
  display: grid;
  align-content: center;
  gap: .8rem;
}

.signup-form.compact {
  padding: 0;
  border: 0;
  background: transparent;
}

label {
  display: grid;
  gap: .35rem;
}

label span,
legend {
  text-transform: uppercase;
  font-size: .72rem;
}

input {
  min-height: 3rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fffdf8;
  color: var(--ink);
  padding: .8rem;
}

input:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}

.form-note {
  margin: 0;
  color: rgba(16, 16, 16, .68);
  font-size: .84rem;
  line-height: 1.35;
}

.shop-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  min-height: 34rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  min-height: 38rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.about-hero > div {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 3rem;
}

.about-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.4rem;
  line-height: .9;
  text-transform: uppercase;
}

.about-hero p:not(.eyebrow) {
  margin: 0;
  max-width: 36rem;
  line-height: 1.55;
}

.about-hero img {
  width: 100%;
  height: 100%;
  min-height: 38rem;
  object-fit: cover;
  object-position: center 34%;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.about-grid article {
  display: grid;
  gap: 1rem;
  min-height: 25rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--paper-hot);
}

.about-grid span {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--line);
}

.about-grid h2,
.impact-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: .92;
  text-transform: uppercase;
}

.about-grid p {
  margin: auto 0 0;
  line-height: 1.55;
}

.impact-band {
  display: grid;
  gap: 1rem;
  justify-items: start;
  padding-block: 4rem;
  border-bottom: 1px solid var(--line);
  background: var(--acid);
}

.shop-hero > div {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 3rem;
}

.shop-hero h1,
.checkout-main h1 {
  font-size: 4.9rem;
}

.shop-hero p:not(.eyebrow) {
  margin: 0;
  max-width: 32rem;
  line-height: 1.55;
}

.shop-hero img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  object-position: center 46%;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, .92fr);
  min-height: calc(100vh - 6.7rem);
  border-bottom: 1px solid var(--line);
}

.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, .42fr);
  gap: 1px;
  background: var(--line);
}

.product-media {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  background: #d8d0c3;
}

.product-media img,
.product-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media-main img,
.product-media-main video {
  object-position: center 30%;
}

.product-media-stack {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.product-media-stack .product-media {
  min-height: 21rem;
}

.product-info {
  position: sticky;
  top: 4.35rem;
  align-self: start;
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: var(--paper-hot);
}

.product-info h1 {
  font-size: 4.6rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .8rem;
  border-block: 1px solid var(--line);
  text-transform: uppercase;
}

.product-copy {
  margin: 0;
  max-width: 37rem;
  line-height: 1.55;
}

.option-group {
  display: grid;
  gap: .6rem;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.option-button {
  min-width: 3.15rem;
}

.detail-actions {
  display: grid;
  gap: .65rem;
}

.detail-meta {
  display: grid;
  gap: .55rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.detail-meta p {
  margin: 0;
  line-height: 1.45;
}

.detail-meta strong {
  text-transform: uppercase;
  font-size: .76rem;
}

.related-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  padding-top: .5rem;
}

.related-tile {
  display: grid;
  gap: .45rem;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.related-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.related-tile span {
  padding: 0 .65rem .65rem;
  text-transform: uppercase;
  font-size: .72rem;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, .42fr);
  gap: 1rem;
  align-items: start;
}

.checkout-main,
.checkout-summary {
  border: 1px solid var(--line);
  background: var(--paper-hot);
}

.checkout-main {
  padding: 2rem;
}

.checkout-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

fieldset {
  display: grid;
  gap: .8rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
}

legend {
  padding: 0 .4rem;
}

.two-col,
.three-col {
  display: grid;
  gap: .8rem;
}

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

.three-col {
  grid-template-columns: 1fr .55fr .55fr;
}

.checkout-submit {
  justify-self: start;
  min-width: 14rem;
}

.checkout-summary {
  position: sticky;
  top: 5.35rem;
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.checkout-summary-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: .75rem;
}

.summary-item,
.cart-item {
  display: grid;
  grid-template-columns: 5.25rem 1fr;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
}

.summary-item img,
.cart-item img {
  width: 5.25rem;
  height: 6.75rem;
  object-fit: cover;
  background: #ded7cc;
}

.summary-item h3,
.cart-item h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: .9rem;
}

.summary-item p,
.cart-item p {
  margin: .25rem 0 0;
  color: rgba(16, 16, 16, .72);
  font-size: .84rem;
  line-height: 1.35;
}

.summary-lines {
  display: grid;
  gap: .55rem;
}

.summary-lines div,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.summary-total,
.cart-total {
  padding-top: .75rem;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
}

.order-confirmation {
  display: grid;
  gap: .6rem;
  padding: 1rem;
  background: var(--acid);
}

.order-confirmation h2 {
  margin: 0;
  font-size: 1.6rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  padding: 2rem 1rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.site-footer p {
  margin: .65rem 0 0;
  max-width: 28rem;
  color: rgba(247, 242, 232, .72);
  line-height: 1.45;
}

.footer-brand {
  font-size: 1.15rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  text-transform: uppercase;
  font-size: .78rem;
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 75;
  background: rgba(0, 0, 0, .55);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(27rem, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  padding: 1rem;
  background: var(--ink);
  color: var(--paper);
  box-shadow: -24px 0 80px rgba(0, 0, 0, .32);
  transform: translateX(104%);
  transition: transform .24s ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 1rem;
}

.cart-top h2 {
  margin: .3rem 0 0;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.icon-button {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
}

.cart-items {
  overflow: auto;
}

.cart-item {
  grid-template-columns: 4.7rem 1fr;
  border-color: var(--line-dark);
}

.cart-item img {
  width: 4.7rem;
  height: 6rem;
}

.cart-item p {
  color: rgba(247, 242, 232, .72);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .65rem;
}

.quantity-button {
  width: 2rem;
  height: 2rem;
  min-height: 2rem;
  padding: 0;
}

.remove-button {
  border: 0;
  background: transparent;
  color: rgba(247, 242, 232, .72);
  cursor: pointer;
  text-transform: uppercase;
  font-size: .7rem;
}

.cart-bottom {
  display: grid;
  gap: .75rem;
  border-top: 1px solid var(--line-dark);
  padding-top: 1rem;
}

.cart-total {
  border-color: var(--line-dark);
}

.full-width {
  width: 100%;
}

.cart-drawer .secondary-action {
  color: var(--paper);
}

.cart-empty {
  display: grid;
  align-content: center;
  min-height: 18rem;
  gap: .75rem;
  color: rgba(247, 242, 232, .76);
  line-height: 1.45;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .62);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(58rem, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border: 1px solid rgba(247, 242, 232, .5);
  background: var(--paper-hot);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.modal-panel-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(19rem, .95fr);
}

.modal-panel-split > img {
  width: 100%;
  height: 100%;
  min-height: 35rem;
  object-fit: cover;
  object-position: center 34%;
}

.quick-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  min-height: 35rem;
  background: #ded7cc;
}

.quick-gallery-main {
  min-height: 25rem;
  overflow: hidden;
}

.quick-gallery-media {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  object-fit: cover;
  object-position: center 32%;
}

.quick-gallery-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: .5rem;
  padding: .6rem;
  border-top: 1px solid var(--line);
  background: var(--paper-hot);
  text-transform: uppercase;
  font-size: .72rem;
}

.quick-gallery-controls span {
  white-space: nowrap;
}

.quick-gallery-controls .secondary-action {
  min-height: 2.35rem;
  padding: .65rem .75rem;
}

.quick-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.quick-thumb {
  display: block;
  height: 6rem;
  border: 0;
  padding: 0;
  background: #ddd;
  cursor: pointer;
  opacity: .62;
}

.quick-thumb.is-selected {
  opacity: 1;
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

.quick-thumb img,
.quick-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  position: relative;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2rem;
}

.modal-body h2 {
  max-width: 100%;
  font-size: 3.1rem;
}

.modal-body p {
  margin: 0;
  line-height: 1.55;
}

.modal-price {
  text-transform: uppercase;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--paper-hot);
}

.modal-panel-size {
  width: min(42rem, 100%);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  background: #fffdf8;
}

.size-table th,
.size-table td {
  border: 1px solid var(--line);
  padding: .75rem;
  text-align: left;
}

.size-table th {
  text-transform: uppercase;
  font-size: .74rem;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  width: min(22rem, calc(100% - 2rem));
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  background: var(--acid);
  color: var(--ink);
  box-shadow: var(--shadow);
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 4.9rem;
  }

  .hero-rail {
    width: 22rem;
  }

  .hero-rail video,
  .hero-rail img {
    height: 14rem;
  }

  .section-head h2,
  .editorial-copy h2,
  .lookbook-copy h2,
  .club-copy h2,
  .reviews-lead h2,
  .about-grid h2,
  .impact-band h2 {
    font-size: 3.1rem;
  }

  .product-detail,
  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .product-info,
  .checkout-summary {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 1rem 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 242, 232, .98);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .text-button {
    display: none;
  }

  .hero-copy {
    min-height: calc(100vh - 6.7rem);
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero-rail {
    position: static;
    width: auto;
    grid-template-columns: 1fr 1fr;
    padding: 0 1rem 1rem;
  }

  .hero-rail video,
  .hero-rail img {
    height: 11rem;
  }

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

  .editorial-split,
  .lookbook-band,
  .club-band,
  .shop-hero,
  .reviews-band,
  .about-hero,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .editorial-split {
    min-height: 0;
  }

  .editorial-media {
    min-height: 32rem;
  }

  .editorial-copy,
  .lookbook-copy,
  .club-copy,
  .signup-form,
  .shop-hero > div,
  .reviews-lead,
  .about-hero > div {
    padding: 1.35rem;
  }

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

  .reviews-grid article {
    min-height: 13rem;
  }

  .about-hero img {
    min-height: 24rem;
  }

  .about-hero h1 {
    font-size: 3.1rem;
  }

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

  .lookbook-grid img {
    min-height: 29rem;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .shop-hero img {
    min-height: 24rem;
  }

  .shop-hero h1,
  .checkout-main h1,
  .product-info h1 {
    font-size: 3.1rem;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .section-head h2,
  .editorial-copy h2,
  .lookbook-copy h2,
  .club-copy h2,
  .reviews-lead h2,
  .about-grid h2,
  .impact-band h2,
  .modal-body h2 {
    font-size: 2.7rem;
  }

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

  .product-media,
  .product-media-stack .product-media {
    min-height: 30rem;
  }

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

  .product-info,
  .checkout-main {
    padding: 1rem;
  }

  .two-col,
  .three-col {
    grid-template-columns: 1fr;
  }

  .modal-panel-split {
    grid-template-columns: 1fr;
  }

  .modal-panel-split > img {
    min-height: 22rem;
    max-height: 42vh;
  }

  .quick-gallery {
    display: block;
    min-height: 0;
  }

  .quick-gallery-main {
    height: min(42vh, 24rem);
    min-height: 18rem;
    max-height: none;
  }

  .quick-gallery-media {
    height: 100%;
    min-height: 0;
    max-height: none;
  }

  .modal-body {
    background: var(--paper-hot);
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .announcement {
    font-size: .68rem;
  }

  .brand {
    font-size: .92rem;
  }

  .nav-actions {
    gap: .5rem;
  }

  .bag-button {
    font-size: .72rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: .96rem;
  }

  .action-row,
  .card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-action,
  .secondary-action,
  .filter-chip,
  .option-button {
    width: 100%;
    text-align: center;
  }

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

  .hero-rail video,
  .hero-rail img {
    height: 13rem;
  }

  .section-head h2,
  .editorial-copy h2,
  .lookbook-copy h2,
  .club-copy h2,
  .reviews-lead h2,
  .about-grid h2,
  .impact-band h2,
  .modal-body h2 {
    font-size: 2.25rem;
  }

  .product-media,
  .product-media-stack .product-media {
    min-height: 25rem;
  }

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

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

  .cart-drawer {
    width: 100%;
  }
}
