:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0d0d0d;
  --text: #f4f0ed;
  --muted: #a8a09a;
  --line: rgba(244, 240, 237, 0.16);
  --red: #c51618;
  --red-dark: #6d090a;
  --shadow: rgba(0, 0, 0, 0.62);
}

@font-face {
  font-family: "Suerte Display";
  src: url("assets/suertefont.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  line-height: 1.5;
}

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

[hidden] {
  display: none !important;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  transition: background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: 176px;
}

.brand-mark img,
.site-footer img {
  width: 176px;
  height: auto;
  filter: contrast(1.15) saturate(1.12);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  color: rgba(244, 240, 237, 0.76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a,
.text-link {
  position: relative;
}

.main-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(244, 240, 237, 0.28);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 6vw, 86px) 96px;
  overflow: hidden;
}

.hero-bg,
.hero-shade,
.lookbook-image {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero.jpg");
  background-position: 50% 72%;
  background-size: cover;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.02);
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.20) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.18) 52%, rgba(5, 5, 5, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-family: "Suerte Display", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 400;
  font-size: clamp(84px, 18vw, 245px);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 28px var(--shadow);
}

h2 {
  margin-bottom: 0;
  font-family: "Suerte Display", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 7vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 4px;
  font-family: "Suerte Display", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 400;
  font-size: 17px;
  text-transform: uppercase;
}

.hero-copy {
  width: min(560px, 100%);
  margin-bottom: 28px;
  color: rgba(244, 240, 237, 0.82);
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-primary {
  background: var(--text);
  color: #080808;
}

.button-ghost {
  background: rgba(0, 0, 0, 0.34);
}

.button:disabled {
  cursor: not-allowed;
  border-color: rgba(244, 240, 237, 0.12);
  background: rgba(244, 240, 237, 0.12);
  color: rgba(244, 240, 237, 0.48);
}

.button-todo {
  border-color: var(--red);
  color: var(--red);
}

.button:hover,
.button:focus-visible {
  border-color: rgba(244, 240, 237, 0.5);
  background: rgba(197, 22, 24, 0.92);
  color: var(--text);
  outline: 0;
}

.hero-meta {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  left: clamp(18px, 4vw, 56px);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: rgba(244, 240, 237, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-meta span {
  padding-top: 14px;
}

.hero-meta span:nth-child(n + 2) {
  padding-left: 18px;
}

.statement,
.drop,
.lookbook,
.site-footer {
  padding-inline: clamp(18px, 6vw, 86px);
}

.statement {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
  padding-block: clamp(72px, 12vw, 146px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #050505, #080808);
}

.statement p:not(.eyebrow),
.lookbook-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
}

.drop {
  padding-block: clamp(62px, 10vw, 124px);
}

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

.section-heading p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 86px);
  background: transparent;
}

.product-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 520px;
}

.product-card a {
  display: grid;
  place-items: end center;
  min-height: 390px;
  padding: clamp(8px, 2vw, 18px);
}

.product-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: min(520px, 100%);
  aspect-ratio: 1.08;
  filter: drop-shadow(0 22px 18px rgba(0, 0, 0, 0.52));
  transition: transform 180ms ease, filter 180ms ease;
}

.product-frame:hover,
.product-card a:focus-visible .product-frame {
  transform: translateY(-6px);
  filter: drop-shadow(0 26px 20px rgba(0, 0, 0, 0.58));
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card img:nth-child(2) {
  opacity: 0;
}

.product-frame:hover img,
.product-card a:focus-visible .product-frame img {
  transform: scale(1.035);
}

.product-frame.has-back:hover img:first-child,
.product-card a:focus-visible .product-frame.has-back img:first-child {
  opacity: 0;
}

.product-frame.has-back:hover img:nth-child(2),
.product-card a:focus-visible .product-frame.has-back img:nth-child(2) {
  opacity: 1;
  transform: scale(1.025);
}

.product-card-featured .product-frame {
  width: min(520px, 100%);
}

.product-info {
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(430px, 92%);
  gap: 6px 18px;
  margin-top: -12px;
  border-top: 1px solid rgba(244, 240, 237, 0.16);
  padding-top: 14px;
}

.product-kicker {
  grid-column: 1 / -1;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info h3 {
  grid-column: 1;
  font-family: "Suerte Display", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}

.product-info strong {
  grid-row: 2;
  grid-column: 2;
  align-self: center;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
}

.product-info:not(.has-badge) strong {
  grid-row: 1;
}

.lookbook {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  align-items: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.lookbook-image {
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.84) 72%),
    url("assets/hero.jpg");
  background-position: 50% 70%;
  background-size: cover;
  filter: saturate(0.74) contrast(1.08);
}

.lookbook-copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
  padding-block: 90px;
}

.lookbook-copy p {
  margin-block: 18px 24px;
}

.text-link {
  display: inline-flex;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 28px;
  color: rgba(244, 240, 237, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin: 0;
}

.footer-rights {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-trademark {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(244, 240, 237, 0.3);
  color: var(--text);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.empty-state {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.subpage {
  min-height: 100vh;
  padding-top: 90px;
}

.page-hero,
.gallery-page,
.contact-page,
.about-page,
.about-values,
.terms-page,
.product-detail {
  padding-inline: clamp(18px, 6vw, 86px);
}

.page-hero {
  min-height: 44vh;
  display: grid;
  align-content: end;
  padding-block: 86px 54px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.56)),
    url("assets/hero.jpg") center 70% / cover;
}

.shop-hero {
  min-height: 52vh;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.5)),
    url("assets/hero.jpg") center 70% / cover;
}

.page-hero.compact h1,
.contact-page h1,
.gallery-panel h1 {
  font-size: clamp(70px, 13vw, 168px);
}

.page-hero p:not(.eyebrow),
.contact-page p,
.gallery-panel p,
.product-buy p {
  width: min(560px, 100%);
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
}

.product-buy .product-note {
  margin-top: -8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-drop {
  padding-top: clamp(48px, 7vw, 86px);
}

.gallery-page {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding-block: 56px;
}

.gallery-cover {
  height: min(76vh, 760px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #080808;
}

.gallery-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.gallery-panel {
  align-self: end;
  padding-bottom: 8vh;
}

.contact-page {
  min-height: calc(100vh - 90px);
  display: grid;
  align-content: center;
  gap: 18px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.62)),
    url("assets/hero.jpg") center / cover;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  gap: 16px;
  margin-top: 34px;
}

.size-row button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 68px;
  align-items: center;
  gap: 4px 18px;
  align-content: center;
  border-bottom: 1px solid rgba(244, 240, 237, 0.22);
  background: transparent;
  padding: 0;
  transition: border-color 160ms ease, color 160ms ease;
}

.contact-list a::after {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: var(--red);
  content: "OPEN";
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.contact-list a:hover {
  border-color: rgba(197, 22, 24, 0.82);
  color: var(--text);
}

.contact-list span {
  grid-column: 1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list strong {
  grid-column: 1;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.about-page {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(280px, 1fr);
  gap: clamp(34px, 7vw, 108px);
  align-items: center;
  padding-block: clamp(58px, 8vw, 112px);
}

.about-copy {
  max-width: 680px;
}

.about-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(70px, 11vw, 176px);
}

.about-copy p:not(.eyebrow),
.about-values p {
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
}

.about-image {
  min-height: min(68vh, 720px);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.72)),
    url("assets/hero.jpg") center 70% / cover;
  filter: saturate(0.8) contrast(1.08);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 64px);
  padding-block: 0 clamp(64px, 9vw, 124px);
}

.about-values article {
  border-top: 1px solid rgba(244, 240, 237, 0.18);
  padding-top: 18px;
}

.about-values span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.about-values h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.8vw, 78px);
}

.terms-page {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 92px);
  padding-block: clamp(58px, 8vw, 112px);
}

.terms-heading {
  position: sticky;
  top: 116px;
  align-self: start;
}

.terms-heading h1 {
  margin-bottom: 24px;
  font-size: clamp(62px, 10vw, 146px);
}

.terms-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
}

.terms-content {
  display: grid;
  gap: 28px;
}

.terms-content article {
  border-top: 1px solid rgba(244, 240, 237, 0.18);
  padding-top: 20px;
}

.terms-content h2 {
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.terms-content p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
}

.terms-content a {
  color: var(--text);
  font-weight: 900;
}

.terms-updated {
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(360px, 1.24fr) minmax(280px, 0.66fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 108px);
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(72vh, 760px);
  overflow: hidden;
  background: #070707;
}

.product-stage::before {
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(18px, 4vw, 46px);
  width: min(360px, 54%);
  aspect-ratio: 2.8 / 1;
  background: url("assets/suertelogo.png") center / contain no-repeat;
  content: "";
  opacity: 0.06;
}

.product-stage-images {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  align-items: center;
  gap: clamp(6px, 1.2vw, 18px);
  width: min(1120px, 106%);
}

.product-zoom-trigger {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.product-stage img {
  width: 100%;
  max-height: min(68vh, 720px);
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(0, 0, 0, 0.54));
}

.product-zoom {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.92);
  padding: clamp(18px, 4vw, 48px);
  cursor: zoom-out;
}

.product-zoom img {
  max-width: min(94vw, 1320px);
  max-height: 88vh;
  object-fit: contain;
}

.product-zoom-close {
  position: fixed;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  z-index: 31;
  min-height: 42px;
  border: 1px solid rgba(244, 240, 237, 0.28);
  background: #050505;
  color: var(--text);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  padding: 0 14px;
  text-transform: uppercase;
}

.has-product-zoom {
  overflow: hidden;
}

.product-buy {
  max-width: 560px;
}

.product-buy h1 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-family: "Suerte Display", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(64px, 7.2vw, 118px);
  font-weight: 400;
  line-height: 0.94;
  text-shadow: none;
}

.product-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.product-summary strong,
.product-summary span {
  display: inline-flex;
  align-items: center;
  padding: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.product-summary strong {
  color: var(--text);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1;
}

.product-summary span {
  color: var(--text);
  border-left: 1px solid rgba(244, 240, 237, 0.22);
  padding-left: 12px;
  font-size: 13px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0 26px;
}

.product-specs div {
  padding-top: 12px;
  border-top: 1px solid rgba(244, 240, 237, 0.18);
}

.product-specs dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.size-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(52px, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.size-row button:hover {
  border-color: var(--red);
}

.size-row button[aria-pressed="true"] {
  border-color: var(--red);
  background: rgba(197, 22, 24, 0.22);
}

.cart-feedback {
  min-height: 22px;
  margin-top: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-page,
.checkout-page {
  min-height: calc(100vh - 90px);
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(56px, 8vw, 108px) clamp(18px, 6vw, 86px);
}

.cart-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.cart-heading h1,
.cart-empty h1,
.checkout-panel h1 {
  font-size: clamp(70px, 12vw, 168px);
}

.cart-list,
.checkout-summary {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(244, 240, 237, 0.18);
  padding-top: 14px;
}

.cart-item img {
  width: 132px;
  aspect-ratio: 1;
  object-fit: contain;
  background: #070707;
}

.cart-item h2 {
  margin-bottom: 6px;
  font-size: clamp(32px, 4.5vw, 68px);
}

.cart-item p,
.cart-empty p,
.checkout-panel p {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
}

.cart-item strong {
  display: block;
  font-size: 18px;
}

.cart-item button {
  min-height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  padding: 0 12px;
  text-transform: uppercase;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(244, 240, 237, 0.24);
  padding-top: 18px;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-panel {
  display: grid;
  gap: 20px;
  width: min(760px, 100%);
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(244, 240, 237, 0.16);
  padding-top: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px 14px;
    padding: 14px clamp(14px, 4vw, 28px);
  }

  .brand-mark {
    width: 142px;
  }

  .brand-mark img {
    width: 142px;
  }

  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
    color: rgba(244, 240, 237, 0.86);
    font-size: 11px;
  }

  .main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0;
    border-bottom: 0;
    white-space: nowrap;
    transition: color 160ms ease;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--text);
    outline: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding-top: 136px;
    padding-bottom: 96px;
  }

  .subpage {
    padding-top: 124px;
  }

  .hero-bg {
    background-position: 55% 64%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.24) 0%, rgba(5, 5, 5, 0.34) 42%, rgba(5, 5, 5, 0.96) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.16));
  }

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

  .hero-meta span,
  .hero-meta span:nth-child(n + 2) {
    padding: 0;
    border-right: 0;
  }

  .statement,
  .product-grid,
  .lookbook,
  .gallery-page,
  .about-page,
  .about-values,
  .terms-page,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .product-card {
    min-height: 460px;
  }

  .product-card a {
    min-height: 330px;
  }

  .lookbook {
    min-height: 560px;
  }

  .lookbook-image {
    background-image:
      linear-gradient(180deg, rgba(5, 5, 5, 0.16), rgba(5, 5, 5, 0.92) 70%),
      url("assets/hero.jpg");
    background-position: 54% 42%;
  }

  .lookbook-copy {
    grid-column: 1;
    align-self: end;
    padding-block: 240px 56px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-cover {
    height: 62vh;
  }

  .gallery-panel {
    padding-bottom: 0;
  }

  .product-stage {
    min-height: min(62vh, 620px);
  }

  .about-image {
    min-height: 52vh;
    order: -1;
  }

  .terms-heading {
    position: static;
  }

  .product-stage::before {
    right: 18px;
    bottom: 18px;
    width: min(260px, 62%);
  }

  .product-stage-images {
    width: 100%;
  }

  .product-zoom-trigger {
    transform: scale(1.12);
  }

  .product-stage img {
    max-height: min(52vh, 540px);
  }

  .product-buy h1 {
    max-width: 100%;
  }

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

  .cart-heading,
  .cart-item,
  .checkout-summary div {
    display: grid;
  }

  .cart-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .cart-item img {
    width: 96px;
  }

  .cart-item button {
    grid-column: 1 / -1;
  }

}

@media (max-width: 460px) {
  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(74px, 25vw, 112px);
  }

  .product-buy h1 {
    font-size: clamp(72px, 22vw, 108px);
  }

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

  .product-frame,
  .product-stage-images {
    gap: 8px;
  }

  .product-stage-images {
    width: 100%;
    gap: 0;
  }

  .product-zoom-trigger {
    transform: scale(1.2);
  }

}
