:root {
  --bg: #f5f5f0;
  --paper: #ffffff;
  --ink: #000000;
  --ink-soft: #222823;
  --muted: #6d746f;
  --line: #d9ded8;
  --green: #083d2e;
  --green-dark: #031b14;
  --red: #e30613;
  --cream: #efede5;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
  --container: min(1240px, calc(100vw - 40px));
  --font: "Montserrat", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
}

body.is-modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.benefit-bar {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.benefit-bar__track,
.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: ticker 28s linear infinite;
}

.benefit-bar span {
  padding: 9px 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 12px 24px;
  min-height: 118px;
  padding: 18px max(20px, calc((100vw - 1240px) / 2)) 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  grid-column: 2;
  display: inline-flex;
  justify-self: center;
  width: clamp(150px, 16vw, 215px);
}

.brand img {
  height: auto;
  object-fit: contain;
}

.main-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  min-width: 0;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-menu {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: 1fr 1fr minmax(220px, 0.8fr);
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__group {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: var(--cream);
}

.mobile-menu__group strong,
.mobile-menu__group a {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-menu__group strong {
  color: var(--green);
}

.mobile-menu__group a {
  min-height: 36px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.main-nav a,
.icon-link,
.cart-chip {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  min-height: 34px;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(360px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

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

.nav-dropdown__panel span {
  display: block;
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 2px solid var(--ink);
  background: var(--green);
  color: var(--paper);
}

.cart-chip span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.72rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

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

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

.button--glass {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.2);
  color: var(--paper);
}

.label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: clamp(620px, 78vh, 820px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  opacity: 1;
  filter: saturate(1.02) contrast(1.02) brightness(1.08);
  object-position: 50% 58%;
}

.hero-media--mma {
  filter: saturate(0.98) contrast(1.02) brightness(1.16);
  object-position: 50% 31%;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.03) 56%, rgba(0, 0, 0, 0.06)),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--container);
  min-height: clamp(620px, 78vh, 820px);
  margin: 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  padding: 82px 0 86px;
}

.hero-content .label,
.hero .label {
  width: fit-content;
  padding: 9px 12px 9px 16px;
  border: 2px solid var(--paper);
  background: var(--cream);
  color: var(--ink);
  box-shadow: inset 5px 0 0 var(--red);
}

.hero-content h1,
.catalog-hero h1,
.product-summary h1,
.section-head h2,
.split-copy h2,
.guide-panel h2,
.collection-banner h2,
.lookbook-copy h2,
.editorial-hero__copy h1,
.editorial-cta h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 780px;
  font-size: clamp(4.2rem, 9vw, 9.4rem);
}

.hero-copy {
  max-width: 540px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.6;
}

.hero-copy span {
  display: block;
}

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

.hero-ticket {
  position: absolute;
  right: max(20px, calc((100vw - 1240px) / 2));
  bottom: 56px;
  z-index: 3;
  width: min(320px, calc(100vw - 40px));
  padding: 18px;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
}

.hero-ticket strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.hero-ticket span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.hero-graphic span {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--green);
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.hero-graphic span:nth-child(1) {
  top: 110px;
  right: max(20px, calc((100vw - 1240px) / 2));
  width: 76px;
  height: 76px;
  border-radius: 999px;
  font-size: 2.3rem;
}

.hero-graphic span:nth-child(2) {
  top: 206px;
  right: max(20px, calc((100vw - 1240px) / 2));
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hero-graphic span:nth-child(3) {
  display: none;
}

.ticker {
  overflow: hidden;
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  background: var(--green);
  color: var(--paper);
}

.ticker span {
  padding: 12px 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.quick-cats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.quick-cats a,
.quick-cats button {
  min-height: 64px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: clamp(0.86rem, 1.7vw, 1.24rem);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.quick-cats a {
  display: grid;
  place-items: center;
}

.quick-cats a:last-child,
.quick-cats button:last-child {
  border-right: 0;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 104px) 0;
}

.section--front-products {
  padding-top: clamp(44px, 6vw, 78px);
}

.section--front-products .reveal {
  opacity: 1;
  transform: none;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1.25fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2,
.split-copy h2,
.guide-panel h2 {
  font-size: clamp(2.35rem, 5.5vw, 5.8rem);
}

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

.product-card,
.shop-card {
  position: relative;
  min-width: 0;
  background: var(--paper);
}

.product-card__image,
.shop-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #eeeeea;
}

.product-card__image img,
.shop-card__media img {
  aspect-ratio: 3 / 4;
  transition: transform 0.45s ease, opacity 0.25s ease;
}

.product-card:hover img,
.shop-card:hover .shop-card__media img:first-child {
  transform: scale(1.035);
}

.product-card__body,
.shop-card__body {
  display: grid;
  gap: 8px;
  padding: 14px 0 0;
}

.product-card__body span,
.shop-card__body span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card h3,
.shop-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.product-card p,
.shop-card p,
.quick-view p,
.product-price {
  margin: 0;
  font-weight: 800;
}

.product-card__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 8px;
  border: 2px solid var(--green);
  background: var(--green);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  min-height: 520px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.collection-banner img {
  height: 100%;
  min-height: 520px;
}

.collection-banner div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 56px);
}

.collection-banner .label,
.editorial-hero__copy .label,
.editorial-cta .label {
  color: var(--paper);
}

.collection-banner h2,
.lookbook-copy h2,
.editorial-cta h2 {
  font-size: clamp(2.5rem, 5vw, 5.5rem);
}

.collection-banner span {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.drop-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.drop-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.drop-card--large {
  grid-row: span 2;
}

.drop-card img {
  height: 100%;
  opacity: 0.88;
  transition: transform 0.45s ease;
}

.drop-card:hover img {
  transform: scale(1.05);
}

.drop-card span,
.lookbook-feature span,
.editorial-tile span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.66);
  color: var(--paper);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1.18fr);
  gap: 42px;
  align-items: center;
}

.split-copy p:not(.label),
.lookbook-copy p:not(.label),
.catalog-hero p,
.editorial-hero__copy p:not(.label),
.accordion p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.split-copy .button,
.lookbook-copy .button,
.editorial-hero__copy .button {
  margin-top: 20px;
}

.photo-spread {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 14px;
}

.photo-spread img {
  height: 100%;
}

.photo-spread img:first-child {
  grid-row: span 2;
}

.section--lookbook {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr) minmax(230px, 0.5fr);
  gap: 16px;
  align-items: stretch;
}

.lookbook-copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 50px);
  background: var(--paper);
}

.lookbook-feature {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}

.lookbook-feature img {
  height: 100%;
}

.lookbook-strip {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lookbook-strip img {
  height: 100%;
  min-height: 0;
}

.trust-strip {
  width: var(--container);
  margin: 0 auto clamp(58px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip article {
  min-height: 130px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

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

.trust-strip strong,
.guide-steps strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.trust-strip span,
.guide-steps span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.5;
}

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

.guide-panel {
  padding: clamp(28px, 5vw, 60px);
  background: var(--green-dark);
  color: var(--paper);
}

.guide-panel .label,
.guide-panel span {
  color: var(--paper);
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.guide-steps article {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(20px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: var(--paper);
}

.catalog-hero,
.editorial-hero,
.product-detail {
  width: var(--container);
  margin: 0 auto;
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
  gap: 34px;
  align-items: center;
  padding: clamp(56px, 7vw, 100px) 0 clamp(34px, 5vw, 70px);
}

.catalog-hero h1 {
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.catalog-hero__stack {
  position: relative;
  min-height: 440px;
}

.catalog-hero__stack img {
  position: absolute;
  width: 45%;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.catalog-hero__stack img:nth-child(1) {
  left: 0;
  top: 26px;
}

.catalog-hero__stack img:nth-child(2) {
  right: 0;
  top: 0;
}

.catalog-hero__stack img:nth-child(3) {
  left: 26%;
  bottom: 0;
}

.catalog-shell {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  padding-bottom: clamp(64px, 8vw, 116px);
}

.catalog-sidebar {
  position: sticky;
  top: 136px;
  align-self: start;
  padding: 18px;
  background: var(--paper);
}

.catalog-sidebar h2 {
  margin: 0 0 18px;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.filter-group {
  display: grid;
  gap: 8px;
}

.filter-button,
.view-toggle button,
.quick-view__close {
  min-height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.filter-button {
  padding: 0 12px;
}

.filter-button.is-active,
.view-toggle button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--paper);
}

.search-field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-field input {
  min-height: 44px;
  border: 1px solid var(--line);
  padding: 0 12px;
  background: var(--bg);
  color: var(--ink);
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.view-toggle {
  display: inline-flex;
  gap: 8px;
}

.view-toggle button {
  padding: 0 12px;
}

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

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

.shop-card.is-hidden {
  display: none;
}

.shop-card__flag,
.shop-card__quick {
  position: absolute;
  top: 12px;
  z-index: 2;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-card__flag {
  left: 12px;
}

.shop-card__quick {
  right: 12px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.shop-card:hover .shop-card__quick {
  opacity: 1;
  transform: translateY(0);
}

.shop-card__media img + img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.shop-card:hover .shop-card__media img:first-child {
  opacity: 0;
}

.shop-card:hover .shop-card__media img + img {
  opacity: 1;
}

.quick-view {
  width: min(900px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quick-view::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.quick-view[open] {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(240px, 1fr);
}

.quick-view img {
  height: 100%;
  min-height: 420px;
}

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

.quick-view h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.95;
  text-transform: uppercase;
}

.quick-view__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 0 12px;
  background: var(--paper);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.95fr);
  gap: 52px;
  align-items: start;
  padding: clamp(56px, 7vw, 100px) 0;
}

.product-gallery__main,
.product-gallery__thumbs button {
  overflow: hidden;
  background: var(--paper);
}

.product-gallery__main img {
  aspect-ratio: 4 / 5;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.product-gallery__thumbs button {
  border: 0;
  padding: 0;
  opacity: 0.64;
}

.product-gallery__thumbs button.is-active {
  opacity: 1;
  outline: 2px solid var(--green);
}

.product-gallery__thumbs img {
  aspect-ratio: 1;
}

.product-summary {
  position: sticky;
  top: 144px;
}

.product-summary h1 {
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.product-price {
  margin: 18px 0 0;
  color: var(--green);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.product-lede {
  color: var(--ink-soft);
  line-height: 1.6;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.accordion div {
  padding: 16px 0 20px;
}

.editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  gap: 18px;
  padding: clamp(54px, 7vw, 88px) 0;
}

.editorial-hero__copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 54px);
  background: var(--green-dark);
  color: var(--paper);
}

.editorial-hero__copy h1 {
  font-size: clamp(3.4rem, 7vw, 7.8rem);
}

.editorial-hero__copy p:not(.label) {
  color: rgba(255, 255, 255, 0.8);
}

.editorial-hero__copy p:not(.label) span {
  display: block;
}

.editorial-hero__media {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  min-height: 560px;
}

.editorial-hero__media img {
  height: 100%;
}

.editorial-hero__media img:first-child {
  align-self: end;
  height: 84%;
}

.editorial-board {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
}

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

.editorial-tile--wide {
  grid-column: span 2;
}

.editorial-tile--tall {
  grid-row: span 2;
}

.editorial-tile img {
  height: 100%;
  transition: transform 0.45s ease;
}

.editorial-tile:hover img {
  transform: scale(1.04);
}

.editorial-cta {
  width: var(--container);
  margin: 18px auto clamp(64px, 8vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: clamp(28px, 4vw, 56px);
  background: var(--green-dark);
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible,
.hero .reveal,
.catalog-hero .reveal,
.product-detail .reveal,
.editorial-hero .reveal {
  opacity: 1;
  transform: none;
}

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

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

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

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .header-actions {
    grid-column: 3;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  .catalog-shell,
  .product-detail,
  .section--split,
  .section--lookbook,
  .editorial-hero,
  .editorial-cta,
  .collection-banner,
  .catalog-hero {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar,
  .product-summary {
    position: static;
  }

  .catalog-hero__stack,
  .editorial-hero__media,
  .lookbook-copy,
  .lookbook-feature {
    min-height: 460px;
  }

  .lookbook-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .lookbook-strip img {
    aspect-ratio: 3 / 4;
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(1240px, calc(100vw - 28px));
  }

  .benefit-bar span {
    padding: 7px 0;
    font-size: 0.66rem;
  }

  .site-header {
    min-height: 92px;
    padding: 12px 14px 10px;
    gap: 10px 12px;
    grid-template-rows: auto auto;
  }

  .brand {
    width: min(158px, 48vw);
  }

  .icon-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.7rem;
  }

  .cart-chip {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0;
  }

  .cart-chip span {
    font-size: 0.72rem;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    grid-row: 2;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: calc(100vh - 132px);
    overflow: auto;
    padding: 10px 0 4px;
  }

  .mobile-menu__group {
    padding: 12px;
  }

  .mobile-menu__group a {
    min-height: 34px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-media {
    opacity: 1;
    object-position: 57% 58%;
  }

  .hero-media--mma {
    object-position: 51% 48%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.44)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.04));
  }

  .hero-content {
    min-height: 640px;
    padding: 168px 0 48px;
  }

  .hero-content h1 {
    max-width: 7ch;
    font-size: clamp(3.25rem, 15vw, 4.6rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

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

  .hero-ticket {
    display: none;
  }

  .hero-graphic span:nth-child(1) {
    top: 94px;
    right: 14px;
    width: 62px;
    height: 62px;
    font-size: 1.85rem;
  }

  .hero-graphic span:nth-child(2) {
    display: none;
  }

  .ticker span {
    padding: 9px 0;
    font-size: 0.95rem;
  }

  .quick-cats,
  .quick-cats--catalog {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .quick-cats::-webkit-scrollbar {
    display: none;
  }

  .quick-cats a,
  .quick-cats button {
    flex: 0 0 auto;
    min-width: 44vw;
    min-height: 54px;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-head h2,
  .split-copy h2,
  .guide-panel h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .product-rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    flex: 0 0 min(76vw, 330px);
    scroll-snap-align: start;
  }

  .catalog-grid,
  .catalog-grid.is-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-card__body,
  .shop-card__body {
    padding-top: 10px;
  }

  .collection-banner {
    min-height: 0;
  }

  .collection-banner img {
    min-height: 340px;
  }

  .drop-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .drop-card,
  .drop-card--large {
    grid-row: auto;
    min-height: 260px;
  }

  .photo-spread {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 220px;
  }

  .photo-spread img:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .lookbook-copy,
  .lookbook-feature,
  .editorial-hero__copy,
  .editorial-hero__media {
    min-height: 390px;
  }

  .lookbook-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .trust-strip,
  .guide-steps,
  .editorial-hero__media,
  .quick-view[open] {
    grid-template-columns: 1fr;
  }

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

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .catalog-hero {
    padding-top: 46px;
  }

  .catalog-hero__stack {
    min-height: 420px;
  }

  .catalog-sidebar {
    padding: 0;
    background: transparent;
  }

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

  .product-detail {
    gap: 28px;
  }

  .product-actions .button {
    width: 100%;
  }

  .quick-view img {
    min-height: 280px;
  }

  .editorial-hero__media img,
  .editorial-hero__media img:first-child {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .editorial-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 12px;
  }

  .editorial-tile--wide,
  .editorial-tile--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .editorial-cta {
    gap: 16px;
  }

  .editorial-cta .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(1240px, calc(100vw - 24px));
  }

  .brand {
    width: min(138px, 44vw);
  }

  .main-nav a,
  .icon-link,
  .cart-chip {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    min-height: 610px;
    padding-top: 150px;
  }

  .hero-content h1 {
    font-size: 3.25rem;
  }

  .hero-content .label,
  .hero .label {
    max-width: 100%;
    font-size: 0.64rem;
  }

  .quick-cats a,
  .quick-cats button {
    min-width: 52vw;
  }

  .catalog-grid,
  .catalog-grid.is-compact {
    grid-template-columns: 1fr;
  }

  .shop-card__quick {
    opacity: 1;
    transform: none;
  }

  .collection-banner h2,
  .lookbook-copy h2,
  .editorial-cta h2 {
    font-size: 2.55rem;
  }

  .editorial-hero__copy h1,
  .catalog-hero h1,
  .product-summary h1 {
    font-size: 2.85rem;
  }
}
