:root {
  --black: #050505;
  --ink: #111111;
  --paper: #f4f3ef;
  --white: #ffffff;
  --line: #d5d3cd;
  --muted: #74736f;
  --blue: #18a9e6;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  min-width: 320px;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

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

button:disabled {
  cursor: not-allowed;
}

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

.site {
  min-height: 100vh;
  overflow: clip;
}

.icon {
  fill: none;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.65;
}

.announcement {
  align-items: center;
  background: var(--black);
  border-bottom: 1px solid #282828;
  color: var(--white);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  height: 30px;
  justify-content: space-between;
  letter-spacing: 0.09em;
  padding: 0 3.2vw;
  text-transform: uppercase;
}

.announcement-right {
  color: #a6a6a6;
}

.header {
  align-items: center;
  background: var(--black);
  border-bottom: 1px solid #242424;
  color: var(--white);
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  height: var(--header-height);
  padding: 0 3.2vw;
  position: relative;
  z-index: 40;
}

.brand {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: flex-start;
  width: 190px;
}

.brand img {
  height: 62px;
  object-fit: contain;
  object-position: center;
  width: 174px;
}

.desktop-nav {
  align-items: stretch;
  display: flex;
  gap: clamp(24px, 3vw, 56px);
  height: 100%;
  justify-content: center;
}

.desktop-nav button,
.desktop-nav a {
  align-items: center;
  color: #d7d7d7;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  position: relative;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav button::after,
.desktop-nav a::after {
  background: var(--white);
  bottom: 20px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
  width: 100%;
}

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

.desktop-nav button:hover::after,
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

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

.header-icon {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: opacity 180ms ease;
  width: 42px;
}

.header-icon:hover {
  opacity: 0.62;
}

.bag-button {
  gap: 5px;
  width: auto;
}

.bag-button > span {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--black);
  display: flex;
  font-size: 9px;
  font-weight: 900;
  height: 18px;
  justify-content: center;
  min-width: 18px;
  padding: 0 4px;
}

.mobile-menu-trigger {
  display: none;
}

.page-enter {
  animation: page-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  min-height: calc(100vh - 108px);
}

.hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 5.7vw 9vh;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: #b7b7b7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #5d5c58;
}

.hero h1,
.shop-hero h1,
.about-hero h1,
.contact-page h1,
.checkout-form h1,
.success-page h1 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(68px, 8.2vw, 144px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.82;
  margin: 0;
  text-transform: uppercase;
}

.hero-text {
  color: #c7c7c7;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
  margin: 34px 0 0;
  max-width: 430px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-top: 38px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 24px;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 52px;
  padding: 0 26px;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover {
  background: #dedede;
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-dark:hover {
  background: #292929;
}

.text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  gap: 11px;
  letter-spacing: 0.1em;
  padding-bottom: 7px;
  text-transform: uppercase;
  transition: gap 180ms ease;
}

.text-link:hover {
  gap: 17px;
}

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

.hero-image {
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.hero-image::after {
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.55), transparent 26%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-image > img {
  height: 100%;
  object-fit: cover;
  object-position: center 31%;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.hero:hover .hero-image > img {
  transform: scale(1.018);
}

.hero-index {
  bottom: 24px;
  color: #b8b8b8;
  font-size: 9px;
  font-weight: 800;
  left: 24px;
  letter-spacing: 0.14em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.ticker {
  background: var(--white);
  border-bottom: 1px solid var(--black);
  border-top: 1px solid var(--black);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}

.ticker > div {
  animation: ticker 22s linear infinite;
  display: inline-flex;
  min-width: max-content;
}

.ticker span {
  align-items: center;
  display: inline-flex;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticker span::after {
  background: var(--black);
  content: "";
  height: 6px;
  margin: 0 32px;
  transform: rotate(45deg);
  width: 6px;
}

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

.section {
  padding: clamp(70px, 8vw, 132px) 3.2vw;
}

.product-section {
  background: var(--paper);
}

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

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.section-heading h2,
.campaign-head h2,
.editorial-copy h2,
.statement p,
.newsletter h2,
.about-copy h2 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(42px, 5.4vw, 84px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

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

.product-card {
  background: var(--paper);
  border-right: 1px solid var(--line);
  min-width: 0;
  position: relative;
}

.product-card:first-child {
  border-left: 1px solid var(--line);
}

.product-image-button {
  display: block;
  overflow: hidden;
  width: 100%;
}

.product-image-wrap {
  aspect-ratio: 4 / 5;
  background: #deddd8;
  display: block;
  overflow: hidden;
  position: relative;
}

.product-image-wrap::after {
  border: 1px solid rgba(0, 0, 0, 0.07);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.product-image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

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

.product-badge {
  background: var(--black);
  color: var(--white);
  font-size: 8px;
  font-weight: 900;
  left: 12px;
  letter-spacing: 0.11em;
  padding: 8px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 12px;
  z-index: 2;
}

.product-card-copy {
  border-bottom: 1px solid var(--line);
  padding: 18px 17px 20px;
}

.product-card-copy > button,
.product-card-copy > a {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

.product-name {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.product-color {
  color: var(--muted);
  font-size: 11px;
  margin-top: 6px;
}

.product-card-bottom {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  justify-content: space-between;
  margin-top: 18px;
}

.quick-add {
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
  text-transform: uppercase;
}

.editorial {
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 800px;
}

.editorial-image {
  overflow: hidden;
}

.editorial-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.editorial:hover .editorial-image img {
  transform: scale(1.02);
}

.editorial-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 7vw;
}

.editorial-copy h2 {
  font-size: clamp(58px, 7vw, 112px);
}

.editorial-copy > p:not(.eyebrow) {
  color: #bdbdbd;
  font-size: 16px;
  line-height: 1.65;
  margin: 30px 0 36px;
  max-width: 430px;
}

.editorial-copy .button-dark {
  border: 1px solid #5d5d5d;
}

.campaign {
  background: var(--paper);
  padding: clamp(80px, 9vw, 150px) 3.2vw;
}

.campaign-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 46px;
}

.campaign-head .eyebrow {
  align-self: flex-start;
  color: #5d5c58;
}

.campaign-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.campaign-grid figure {
  margin: 0;
  min-width: 0;
}

.campaign-grid figure img {
  aspect-ratio: 4 / 5;
  background: #1d1d1f;
  height: auto;
  object-fit: cover;
  transition: filter 260ms ease;
  width: 100%;
}

.campaign-grid figure:hover img {
  filter: contrast(1.04);
}

.campaign-grid figcaption {
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 12px 0;
  text-transform: uppercase;
}

.statement {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 72vh;
  justify-content: center;
  padding: 90px 5vw;
  text-align: center;
}

.statement img {
  height: auto;
  margin-bottom: 40px;
  max-width: 340px;
  width: 38vw;
}

.statement p {
  font-size: clamp(56px, 8vw, 132px);
  max-width: 1100px;
}

.statement .text-link {
  margin-top: 42px;
}

.shop-page {
  min-height: 80vh;
}

.shop-hero {
  background: var(--black);
  color: var(--white);
  min-height: 390px;
  padding: 8vw 3.2vw 4vw;
  position: relative;
}

.shop-hero h1 {
  font-size: clamp(90px, 14vw, 230px);
}

.shop-hero > span {
  bottom: 4vw;
  color: #989898;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  position: absolute;
  right: 3.2vw;
  text-transform: uppercase;
}

.shop-toolbar {
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 0 3.2vw;
  position: sticky;
  top: 0;
  z-index: 12;
}

.category-tabs {
  display: flex;
  gap: 30px;
  overflow-x: auto;
}

.category-tabs button,
.category-tabs a {
  border-bottom: 2px solid transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 24px 0 21px;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-tabs button.active,
.category-tabs a.active {
  border-color: var(--black);
}

.sort {
  align-items: center;
  display: flex;
  font-size: 10px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sort select {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--black);
  font-size: 10px;
  font-weight: 700;
  min-width: 130px;
  padding: 5px 20px 5px 4px;
}

.shop-products {
  padding: 0 3.2vw 110px;
}

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

.about-page {
  background: var(--paper);
}

.about-hero {
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: calc(100vh - 108px);
}

.about-hero > div {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw 5vw;
}

.about-hero h1 {
  font-size: clamp(76px, 9vw, 150px);
  max-width: 680px;
}

.about-hero > img {
  height: 100%;
  max-height: calc(100vh - 108px);
  object-fit: cover;
  width: 100%;
}

.about-copy {
  display: grid;
  gap: 4vw;
  grid-template-columns: 0.2fr 1.1fr 0.7fr;
  padding: 11vw 5vw;
}

.about-number {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  margin: 0;
}

.about-copy h2 {
  font-size: clamp(50px, 6vw, 94px);
}

.about-copy > div {
  padding-top: 8px;
}

.about-copy > div p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 24px;
}

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

.values article {
  border-right: 1px solid var(--line);
  min-height: 330px;
  padding: 42px 3.2vw;
}

.values article:last-child {
  border-right: 0;
}

.values span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.values h3 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 48px;
  font-weight: 900;
  margin: 72px 0 18px;
  text-transform: uppercase;
}

.values p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 250px;
}

.contact-page {
  background: var(--paper);
  display: grid;
  gap: 10vw;
  grid-template-columns: 1fr 0.8fr;
  min-height: calc(100vh - 108px);
  padding: 8vw 7vw 10vw;
}

.contact-page > section > p:last-child {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 38px;
  max-width: 460px;
}

.contact-page form,
.checkout-form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 12px;
}

.contact-page label,
.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-page label > span,
.checkout-form label > span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-page input,
.contact-page select,
.contact-page textarea,
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9b9a95;
  border-radius: 0;
  font-size: 14px;
  min-height: 42px;
  outline: none;
  padding: 8px 0;
  resize: vertical;
  transition: border-color 180ms ease;
}

.contact-page textarea {
  border: 1px solid #9b9a95;
  padding: 13px;
}

.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus,
.checkout-form input:focus {
  border-color: var(--black);
}

.contact-page form .button {
  align-self: flex-start;
  margin-top: 12px;
}

.product-page {
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  min-height: calc(100vh - 108px);
}

.product-gallery {
  background: #dcdbd6;
  min-width: 0;
  padding: 2vw;
}

.product-main-image {
  height: calc(100vh - 150px);
  min-height: 640px;
  overflow: hidden;
}

.product-main-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-thumbnails {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 84px);
  margin-top: 12px;
}

.product-thumbnails button {
  aspect-ratio: 1;
  border: 1px solid transparent;
  opacity: 0.55;
  overflow: hidden;
  transition:
    border-color 160ms ease,
    opacity 160ms ease;
}

.product-thumbnails button.active {
  border-color: var(--black);
  opacity: 1;
}

.product-thumbnails img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-buy {
  align-self: start;
  min-height: calc(100vh - 108px);
  padding: 5vw 6vw;
  position: sticky;
  top: 0;
}

.back-link {
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 58px;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.product-buy .eyebrow {
  color: var(--muted);
  margin-bottom: 16px;
}

.product-buy h1 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(48px, 4.7vw, 78px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}

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

.product-price {
  font-size: 14px;
  font-weight: 800;
  margin: 28px 0;
}

.product-description {
  font-size: 13px;
  line-height: 1.7;
  max-width: 460px;
}

.size-block {
  margin-top: 38px;
}

.size-heading {
  align-items: center;
  display: flex;
  font-size: 10px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.size-heading button {
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
}

.sizes {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(4, minmax(48px, 1fr));
  margin-top: 15px;
}

.sizes button {
  border: 1px solid #b7b5af;
  font-size: 11px;
  font-weight: 800;
  min-height: 46px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.sizes button:hover,
.sizes button.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.add-to-bag {
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 24px;
  min-height: 56px;
  text-transform: uppercase;
  transition: background-color 180ms ease;
  width: 100%;
}

.add-to-bag:hover {
  background: #2c2c2c;
}

.add-to-bag:disabled {
  background: #aaa9a4;
}

.delivery-note {
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  padding: 18px 0;
}

.delivery-note span:first-child {
  font-weight: 800;
}

.product-details {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.product-details li {
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  padding: 14px 0;
}

.checkout-page {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  min-height: calc(100vh - 108px);
}

.checkout-form {
  padding: 6vw 9vw;
}

.checkout-form .back-link {
  margin-bottom: 58px;
}

.checkout-form .eyebrow {
  margin-bottom: 20px;
}

.checkout-form h1 {
  font-size: clamp(60px, 6vw, 100px);
}

.checkout-form form {
  margin-top: 52px;
}

.form-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.checkout-method {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 24px;
}

.checkout-method > p:first-child {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.checkout-method > label {
  align-items: center;
  border: 1px solid #b8b6b0;
  display: grid;
  gap: 15px;
  grid-template-columns: auto 1fr auto;
  padding: 16px;
}

.checkout-method input {
  min-height: auto;
}

.checkout-method label span {
  display: flex;
  flex-direction: column;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-method small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  margin-top: 4px;
}

.simulation-note {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  margin: 12px 0 0;
}

.checkout-summary {
  background: #e3e2dd;
  min-height: calc(100vh - 108px);
  padding: 6vw 4vw;
}

.checkout-summary h2 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  margin: 0 0 34px;
  text-transform: uppercase;
}

.checkout-line {
  align-items: center;
  border-bottom: 1px solid #c4c2bc;
  display: grid;
  gap: 15px;
  grid-template-columns: 74px 1fr auto;
  padding: 14px 0;
}

.checkout-line img {
  height: 86px;
  object-fit: cover;
  width: 74px;
}

.checkout-line > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.checkout-line strong {
  font-size: 10px;
  text-transform: uppercase;
}

.checkout-line span {
  color: var(--muted);
  font-size: 9px;
}

.checkout-total {
  display: grid;
  font-size: 11px;
  gap: 14px;
  grid-template-columns: 1fr auto;
  margin-top: 28px;
}

.checkout-total strong {
  border-top: 1px solid #b7b5af;
  font-size: 13px;
  margin-top: 6px;
  padding-top: 20px;
}

.success-page {
  align-items: flex-start;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 108px);
  padding: 8vw;
}

.success-page h1 {
  font-size: clamp(90px, 15vw, 230px);
}

.success-page > p:not(.eyebrow) {
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
  margin: 36px 0;
  max-width: 550px;
}

.footer {
  background: var(--black);
  color: var(--white);
}

.newsletter {
  border-bottom: 1px solid #2f2f2f;
  display: grid;
  gap: 4vw;
  grid-template-columns: 0.6fr 1.4fr 0.8fr;
  padding: 7vw 4vw;
}

.newsletter .eyebrow {
  margin: 8px 0 0;
}

.newsletter h2 {
  font-size: clamp(48px, 6vw, 96px);
}

.newsletter form {
  align-self: center;
  border-bottom: 1px solid #777;
  display: flex;
}

.newsletter input {
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 12px;
  min-height: 50px;
  outline: 0;
  width: 100%;
}

.newsletter button {
  color: var(--white);
  width: 44px;
}

.footer-links {
  display: grid;
  gap: 3vw;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 40%;
  padding: 5vw 4vw;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links p {
  color: #777;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.footer-links button,
.footer-links a {
  align-self: flex-start;
  color: #d0d0d0;
  font-size: 11px;
  transition: color 160ms ease;
}

.footer-links button:hover,
.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid #2f2f2f;
  color: #787878;
  display: grid;
  font-size: 9px;
  grid-template-columns: 1fr 1fr 1fr;
  letter-spacing: 0.04em;
  padding: 22px 4vw;
}

.footer-bottom img {
  height: 52px;
  object-fit: contain;
  width: 140px;
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.footer-bottom span:last-child {
  text-align: right;
}

.overlay {
  background: rgba(0, 0, 0, 0.62);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 260ms ease;
  z-index: 70;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu,
.cart-drawer {
  background: var(--paper);
  bottom: 0;
  max-width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(102%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 470px;
  z-index: 80;
}

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

.mobile-menu {
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.drawer-head {
  align-items: center;
  border-bottom: 1px solid #d0cec8;
  display: flex;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 28px;
}

.mobile-menu .drawer-head {
  border-color: #2b2b2b;
}

.drawer-head img {
  height: 60px;
  object-fit: contain;
  width: 150px;
}

.drawer-head > button {
  align-items: center;
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.mobile-menu nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px;
}

.mobile-menu nav button,
.mobile-menu nav a {
  align-items: baseline;
  border-bottom: 1px solid #292929;
  color: var(--white);
  display: flex;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  gap: 20px;
  padding: 14px 0;
  text-align: left;
  text-transform: uppercase;
}

.mobile-menu nav button span,
.mobile-menu nav a span {
  color: #777;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
}

.mobile-menu > p {
  color: #777;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0 30px 28px;
  text-transform: uppercase;
}

.cart-drawer {
  display: flex;
  flex-direction: column;
}

.cart-drawer .drawer-head > div {
  display: flex;
  flex-direction: column;
}

.cart-drawer .drawer-head p {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 25px;
  margin: 0;
  text-transform: uppercase;
}

.cart-drawer .drawer-head span {
  color: var(--muted);
  font-size: 9px;
  margin-top: 4px;
  text-transform: uppercase;
}

.empty-bag {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.empty-bag p {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 36px;
  text-transform: uppercase;
}

.cart-lines {
  flex: 1;
  overflow-y: auto;
  padding: 0 28px;
}

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

.cart-line > img {
  height: 138px;
  object-fit: cover;
  width: 112px;
}

.cart-line-copy {
  display: flex;
  flex-direction: column;
}

.cart-line-copy > strong {
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
}

.cart-line-copy > span {
  color: var(--muted);
  font-size: 10px;
  margin-top: 7px;
}

.cart-line-actions {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.cart-line-actions > div {
  align-items: center;
  border: 1px solid #aaa8a2;
  display: flex;
}

.cart-line-actions > div button,
.cart-line-actions > div span {
  align-items: center;
  display: flex;
  font-size: 10px;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.cart-line-actions > button {
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  padding-bottom: 3px;
}

.cart-footer {
  border-top: 1px solid var(--line);
  padding: 22px 28px 28px;
}

.cart-footer > div {
  display: flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: space-between;
  text-transform: uppercase;
}

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

.search-panel {
  background: var(--paper);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: translateY(-16px);
  transition:
    opacity 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
}

.search-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  padding: 24px 4vw;
}

.search-head label {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 20px;
}

.search-head input {
  background: transparent;
  border: 0;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 900;
  outline: 0;
  text-transform: uppercase;
  width: 100%;
}

.search-head input::placeholder {
  color: #b5b3ad;
}

.search-head > button {
  align-items: center;
  display: flex;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.search-results {
  padding: 42px 4vw;
}

.search-results > p {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.search-results > div {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.search-results > div > button,
.search-results > div > a {
  background: #e2e1dc;
  display: grid;
  grid-template-columns: 120px 1fr;
  text-align: left;
}

.search-results > div img {
  height: 140px;
  object-fit: cover;
  width: 120px;
}

.search-results > div span {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.search-results strong {
  font-size: 11px;
  text-transform: uppercase;
}

.search-results small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 8px;
}

.quick-modal {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  left: 50%;
  max-width: calc(100vw - 40px);
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 780px;
  z-index: 90;
}

.quick-modal[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -47%);
  visibility: hidden;
}

.quick-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  visibility: visible;
}

.quick-modal > img {
  height: 480px;
  object-fit: cover;
  width: 100%;
}

.quick-modal > div {
  display: flex;
  flex-direction: column;
  padding: 46px 38px;
}

.quick-modal h2 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 42px;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.quick-modal > div > span {
  color: var(--muted);
  font-size: 11px;
  margin-top: 10px;
}

.quick-modal > div > strong {
  font-size: 12px;
  margin-top: 18px;
}

.quick-modal > div > p:not(.eyebrow) {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: auto 0 0;
  text-transform: uppercase;
}

.quick-close {
  align-items: center;
  display: flex;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 42px;
  z-index: 2;
}

.toast {
  background: var(--white);
  bottom: 28px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
  color: var(--black);
  font-size: 10px;
  font-weight: 900;
  left: 50%;
  letter-spacing: 0.06em;
  opacity: 0;
  padding: 15px 22px;
  pointer-events: none;
  position: fixed;
  text-transform: uppercase;
  transform: translate(-50%, 16px);
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 120;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cart-checkout-link {
  align-items: center;
  display: flex;
  justify-content: center;
}

.cart-line-actions {
  gap: 0;
}

.cart-line-actions form {
  margin: 0;
}

.cart-line-actions > form:not(.remove-form) button,
.cart-line-actions > span {
  align-items: center;
  border: 1px solid #aaa8a2;
  display: flex;
  font-size: 10px;
  height: 30px;
  justify-content: center;
  margin-right: -1px;
  width: 30px;
}

.cart-line-actions .remove-form {
  margin-left: auto;
}

.cart-line-actions .remove-form button {
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  padding-bottom: 3px;
}

.product-buy > form {
  margin-top: 0;
}

.product-size-options label {
  cursor: pointer;
  display: block;
}

.product-size-options input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.product-size-options label > span {
  align-items: center;
  border: 1px solid #b7b5af;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.product-size-options input:checked + span,
.product-size-options label:hover span {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.product-size-options input:focus-visible + span {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.quick-modal form {
  margin-top: auto;
}

.quick-modal form .sizes {
  grid-template-columns: repeat(4, minmax(48px, 1fr));
}

.no-results {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 460px;
  text-align: center;
}

.no-results h2 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(46px, 6vw, 84px);
  margin: 0 0 30px;
  text-transform: uppercase;
}

.not-found {
  align-items: flex-start;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 108px);
  padding: 8vw;
}

.not-found h1 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(70px, 11vw, 170px);
  line-height: 0.9;
  margin: 0 0 42px;
  text-transform: uppercase;
}

.form-errors {
  border: 1px solid #a72a2a;
  color: #8b1d1d;
  font-size: 11px;
  line-height: 1.5;
  margin-top: 28px;
  padding: 12px 15px;
}

.form-errors p {
  margin: 0;
}

.contact-success {
  align-self: center;
}

.contact-success h2 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(54px, 6vw, 94px);
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.contact-success > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 26px 0 32px;
  max-width: 420px;
}

.cart-page {
  background: var(--paper);
  min-height: 75vh;
}

.cart-page > header {
  background: var(--black);
  color: var(--white);
  min-height: 330px;
  padding: 7vw 4vw 3vw;
  position: relative;
}

.cart-page > header h1 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(80px, 13vw, 190px);
  line-height: 0.85;
  margin: 0;
  text-transform: uppercase;
}

.cart-page > header > span {
  bottom: 3vw;
  color: #999;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  position: absolute;
  right: 4vw;
  text-transform: uppercase;
}

.cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.52fr);
}

.cart-page-lines {
  padding: 2vw 4vw 7vw;
}

.cart-page-lines article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 25px;
  grid-template-columns: 160px 1fr 110px auto;
  padding: 28px 0;
}

.cart-page-lines article > img {
  height: 190px;
  object-fit: cover;
  width: 160px;
}

.cart-page-lines article > div {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.cart-page-lines article > div > a {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-page-lines article > div > span {
  color: var(--muted);
  font-size: 10px;
  margin-top: 8px;
}

.cart-page-lines article > div > strong {
  font-size: 11px;
  margin-top: 30px;
}

.cart-page-lines article form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cart-page-lines article form label span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-page-lines article select {
  background: transparent;
  border: 1px solid #aaa8a2;
  border-radius: 0;
  height: 38px;
  width: 70px;
}

.cart-page-lines article > form:last-child button {
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  padding-bottom: 4px;
}

.cart-page-summary {
  background: #e2e1dc;
  min-height: 520px;
  padding: 4vw;
}

.cart-page-summary h2 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 46px;
  margin: 0 0 40px;
  text-transform: uppercase;
}

.cart-page-summary > div {
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  padding: 10px 0;
}

.cart-page-summary .total {
  border-top: 1px solid #b8b6b0;
  font-size: 14px;
  margin-top: 16px;
  padding-top: 24px;
}

.cart-empty-page {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
}

.cart-empty-page h2 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(54px, 7vw, 94px);
  margin: 0 0 30px;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .header {
    grid-template-columns: 180px 1fr 120px;
  }

  .desktop-nav {
    gap: 22px;
  }

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

  .hero-copy {
    padding-left: 4vw;
    padding-right: 3vw;
  }

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

  .product-card:nth-child(4) {
    display: none;
  }

  .shop-grid .product-card:nth-child(4) {
    display: block;
  }

  .newsletter {
    grid-template-columns: 0.45fr 1fr;
  }

  .newsletter form {
    grid-column: 2;
  }

  .footer-links {
    margin-left: 25%;
  }

  .product-page {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .product-buy {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

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

  .announcement {
    height: 28px;
    justify-content: center;
    padding: 0 16px;
  }

  .announcement-right {
    display: none;
  }

  .header {
    grid-template-columns: 46px 1fr auto;
    padding: 0 14px;
  }

  .mobile-menu-trigger {
    display: inline-flex;
    justify-self: start;
  }

  .brand {
    justify-self: center;
    width: 150px;
  }

  .brand img {
    height: 55px;
    width: 145px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions .header-icon:first-child {
    display: none;
  }

  .hero {
    display: block;
    min-height: 740px;
    position: relative;
  }

  .hero-copy {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0) 90%);
    bottom: 0;
    justify-content: flex-end;
    left: 0;
    min-height: 70%;
    padding: 120px 22px 44px;
    position: absolute;
    right: 0;
    z-index: 3;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(68px, 22vw, 104px);
  }

  .hero-text {
    font-size: 13px;
    margin-top: 22px;
    max-width: 330px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-image {
    height: 740px;
    min-height: 0;
  }

  .hero-image::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 35%,
      rgba(0, 0, 0, 0.85) 93%
    );
  }

  .hero-image > img {
    object-position: center top;
  }

  .hero-index {
    display: none;
  }

  .section {
    padding: 72px 14px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .section-heading h2,
  .campaign-head h2 {
    font-size: 54px;
  }

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

  .product-card:nth-child(4) {
    display: block;
  }

  .product-card:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .product-image-wrap {
    aspect-ratio: 3 / 4;
  }

  .product-card-copy {
    padding: 14px 10px 17px;
  }

  .product-card-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

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

  .editorial-image {
    height: 72vh;
    min-height: 580px;
  }

  .editorial-copy {
    min-height: 540px;
    padding: 74px 24px;
  }

  .editorial-copy h2 {
    font-size: clamp(62px, 18vw, 92px);
  }

  .campaign {
    padding: 84px 14px;
  }

  .campaign-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .campaign-grid {
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .campaign-grid figure:first-child {
    grid-column: 1 / -1;
  }

  .campaign-grid figure:first-child img {
    aspect-ratio: 4 / 4.7;
  }

  .statement {
    min-height: 65vh;
    padding-left: 20px;
    padding-right: 20px;
  }

  .statement img {
    width: 230px;
  }

  .statement p {
    font-size: clamp(60px, 18vw, 95px);
  }

  .shop-hero {
    min-height: 300px;
    padding: 70px 14px 25px;
  }

  .shop-hero h1 {
    font-size: clamp(80px, 25vw, 145px);
  }

  .shop-hero > span {
    bottom: 25px;
    right: 14px;
  }

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0 14px;
  }

  .category-tabs {
    gap: 24px;
  }

  .category-tabs button {
    padding-bottom: 17px;
    padding-top: 20px;
  }

  .sort {
    border-top: 1px solid var(--line);
    justify-content: space-between;
    padding: 14px 0;
  }

  .shop-products {
    padding: 0 14px 80px;
  }

  .about-hero {
    display: flex;
    flex-direction: column-reverse;
    min-height: auto;
  }

  .about-hero > img {
    height: 62vh;
    max-height: none;
  }

  .about-hero > div {
    min-height: 390px;
    padding: 62px 20px;
  }

  .about-hero h1 {
    font-size: clamp(70px, 21vw, 110px);
  }

  .about-copy {
    grid-template-columns: 44px 1fr;
    padding: 85px 20px;
  }

  .about-copy > div {
    grid-column: 2;
  }

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

  .values article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 260px;
  }

  .values h3 {
    margin-top: 50px;
  }

  .contact-page {
    gap: 70px;
    grid-template-columns: 1fr;
    padding: 70px 20px 90px;
  }

  .cart-page > header {
    min-height: 280px;
    padding: 70px 20px 25px;
  }

  .cart-page > header h1 {
    font-size: clamp(78px, 24vw, 130px);
  }

  .cart-page > header > span {
    bottom: 25px;
    right: 20px;
  }

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

  .cart-page-lines {
    padding: 0 18px 50px;
  }

  .cart-page-lines article {
    gap: 15px;
    grid-template-columns: 98px 1fr auto;
  }

  .cart-page-lines article > img {
    height: 126px;
    width: 98px;
  }

  .cart-page-lines article > form:nth-of-type(1) {
    grid-column: 2;
  }

  .cart-page-lines article > form:last-child {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .cart-page-summary {
    min-height: 0;
    padding: 55px 20px;
  }

  .contact-page h1 {
    font-size: clamp(75px, 21vw, 116px);
  }

  .product-page {
    display: block;
  }

  .product-gallery {
    padding: 0;
  }

  .product-main-image {
    height: 72vh;
    min-height: 540px;
  }

  .product-thumbnails {
    gap: 6px;
    grid-template-columns: repeat(4, 70px);
    margin: 8px 14px 0;
  }

  .product-buy {
    min-height: 0;
    padding: 56px 20px 90px;
    position: static;
  }

  .product-buy .back-link {
    margin-bottom: 46px;
  }

  .product-buy h1 {
    font-size: 60px;
  }

  .checkout-page {
    display: flex;
    flex-direction: column-reverse;
  }

  .checkout-form,
  .checkout-summary {
    min-height: 0;
    padding: 60px 20px;
  }

  .checkout-summary {
    padding-top: 50px;
  }

  .checkout-form h1 {
    font-size: clamp(62px, 18vw, 96px);
  }

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

  .success-page {
    min-height: calc(100vh - 96px);
    padding: 60px 22px;
  }

  .success-page h1 {
    font-size: clamp(90px, 28vw, 160px);
  }

  .newsletter {
    display: block;
    padding: 74px 20px;
  }

  .newsletter h2 {
    font-size: 62px;
    margin-top: 30px;
  }

  .newsletter form {
    margin-top: 38px;
  }

  .footer-links {
    margin-left: 0;
    padding: 55px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 20px 35px;
  }

  .footer-bottom span:nth-child(2),
  .footer-bottom span:last-child {
    text-align: left;
  }

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

  .search-results > div > button {
    border-bottom: 1px solid var(--line);
  }

  .quick-modal {
    display: block;
    max-height: calc(100vh - 30px);
    overflow-y: auto;
    width: calc(100vw - 28px);
  }

  .quick-modal > img {
    height: 42vh;
    min-height: 320px;
  }

  .quick-modal > div {
    padding: 34px 22px;
  }

  .quick-modal > div > p:not(.eyebrow) {
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    min-height: 50px;
  }

  .ticker span {
    font-size: 17px;
  }

  .section-heading .text-link {
    display: none;
  }

  .product-name {
    font-size: 10px;
  }

  .product-color,
  .product-card-bottom {
    font-size: 9px;
  }

  .campaign-grid figcaption {
    font-size: 7px;
  }

  .footer-links {
    gap: 42px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .mobile-menu,
  .cart-drawer {
    width: 100%;
  }

  .mobile-menu nav button {
    font-size: 36px;
  }

  .search-head {
    padding: 18px 16px;
  }

  .search-head input {
    font-size: 32px;
  }

  .search-results {
    padding: 30px 16px;
  }

  .checkout-line {
    grid-template-columns: 62px 1fr;
  }

  .checkout-line img {
    height: 74px;
    width: 62px;
  }

  .checkout-line > strong {
    grid-column: 2;
  }

  .toast {
    bottom: 16px;
    max-width: calc(100vw - 30px);
    text-align: center;
    width: max-content;
  }
}

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