:root {
  --ink: #11110f;
  --charcoal: #20211d;
  --graphite: #31322d;
  --paper: #f4f5ef;
  --surface: #ffffff;
  --mist: #e5e8df;
  --line: rgba(17, 17, 15, 0.16);
  --line-dark: rgba(255, 255, 255, 0.18);
  --muted: rgba(17, 17, 15, 0.66);
  --muted-invert: rgba(255, 255, 255, 0.72);
  --ember: #b64f3b;
  --moss: #778f55;
  --teal: #4f8f89;
  --gold: #c2a044;
  --shadow: 0 24px 60px rgba(17, 17, 15, 0.16);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 15, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

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

section {
  scroll-margin-top: 110px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement-bar {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 7px 18px;
  background: var(--ink);
  color: var(--surface);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.announcement-bar span + span {
  position: relative;
}

.announcement-bar span + span::before {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 4px;
  aspect-ratio: 1;
  content: "";
  background: var(--gold);
  transform: translateY(-50%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 245, 239, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 0.93rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
}

.brand span:last-child {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  min-width: 0;
  color: rgba(17, 17, 15, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.icon-button,
.bag-button,
.primary-action,
.secondary-action,
.featured-add,
.filter-tab,
.add-button,
.checkout-button,
.close-button,
.size-option,
.newsletter-form button {
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
}

.icon-button,
.bag-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  padding: 0;
  background: var(--surface);
}

.search-button span {
  position: relative;
  display: block;
  width: 17px;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.search-button span::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: rotate(45deg);
}

.bag-button {
  position: relative;
  width: 56px;
  grid-template-columns: 1fr;
  background: var(--ink);
  color: var(--surface);
}

.bag-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-top: 0;
}

.bag-icon::before {
  position: absolute;
  top: -8px;
  left: 3px;
  width: 8px;
  height: 8px;
  content: "";
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.bag-button #bagCount {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  line-height: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.9fr);
  gap: 44px;
  align-items: center;
  min-height: 680px;
  padding: 70px 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 24%, transparent 24% 48%, rgba(255, 255, 255, 0.045) 48% 64%, transparent 64%),
    var(--charcoal);
  color: var(--surface);
}

.hero-copy {
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.mood-collections .eyebrow,
.newsletter-section .eyebrow {
  color: var(--gold);
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: 4.85rem;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow) {
  max-width: 58ch;
  margin-bottom: 28px;
  color: var(--muted-invert);
  font-size: 1.08rem;
  line-height: 1.62;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  padding: 0 18px;
  text-align: center;
}

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

.secondary-action {
  border-color: var(--line-dark);
  background: transparent;
  color: var(--surface);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(560px, 100%);
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.hero-proof div {
  min-width: 0;
}

.hero-proof dt {
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}

.hero-proof dd {
  margin: 6px 0 0;
  color: var(--muted-invert);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-product {
  justify-self: end;
  width: min(560px, 100%);
}

.hero-product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #0e0e0c;
  box-shadow: var(--shadow);
}

.hero-product-media::after {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.04) saturate(0.94);
}

.hero-product-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 0;
  color: var(--muted-invert);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-product-caption strong {
  color: var(--surface);
}

.featured-product,
.drop-grid-section,
.mood-shop,
.mood-collections,
.trust-section,
.archive-strip,
.newsletter-section {
  padding: 72px 42px;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(320px, 0.92fr);
  gap: 44px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.featured-media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

.featured-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.featured-details {
  max-width: 610px;
}

.featured-details h2,
.section-heading h2,
.trust-copy h2,
.archive-copy h2,
.newsletter-section h2 {
  margin-bottom: 0;
  font-size: 3.15rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.featured-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}

.featured-price {
  font-size: 1.8rem;
  font-weight: 950;
}

.stock-note {
  padding: 6px 9px;
  border: 1px solid rgba(119, 143, 85, 0.45);
  background: rgba(119, 143, 85, 0.12);
  color: #435732;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-details p {
  max-width: 54ch;
  color: var(--muted);
  line-height: 1.6;
}

.size-picker {
  display: grid;
  gap: 10px;
  margin: 24px 0 14px;
}

.size-picker > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 58px));
  gap: 8px;
}

.size-option {
  min-width: 0;
  background: transparent;
}

.size-option.is-selected {
  background: var(--ink);
  color: var(--surface);
}

.featured-add {
  width: min(100%, 360px);
  margin: 4px 0 22px;
  background: var(--ink);
  color: var(--surface);
}

.product-promises {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px 0 0 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  line-height: 1.55;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(17, 17, 15, 0.08);
}

.product-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.03) saturate(0.96);
  transition: transform 220ms ease;
}

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

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-info {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-title-row h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.02rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.price {
  flex: 0 0 auto;
  color: var(--ember);
  font-weight: 950;
}

.product-meta {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.swatches {
  display: flex;
  gap: 6px;
}

.swatch {
  width: 18px;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 15, 0.34);
  background: var(--swatch);
}

.add-button {
  width: 100%;
  background: var(--ink);
  color: var(--surface);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 850;
}

.mood-shop {
  border-top: 1px solid var(--line);
  background: #ecefe7;
}

.shop-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(230px, 340px);
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.search-label {
  justify-self: end;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

#productSearch,
.newsletter-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 15, 0.36);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tab {
  min-width: 72px;
  padding: 0 13px;
  background: transparent;
}

.filter-tab.is-active {
  background: var(--gold);
}

.mood-collections {
  background: var(--charcoal);
  color: var(--surface);
}

.mood-collections .section-heading > p {
  color: var(--muted-invert);
}

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

.mood-card {
  position: relative;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #0d0d0b;
}

.mood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86) contrast(1.04) saturate(0.94);
  transition: transform 260ms ease;
}

.mood-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(17, 17, 15, 0.82), rgba(17, 17, 15, 0.08));
}

.mood-card span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  font-size: 2rem;
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.mood-card:hover img {
  transform: scale(1.045);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

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

.trust-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.metric {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}

.trust-grid h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  text-transform: uppercase;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.archive-strip {
  display: grid;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.archive-copy {
  max-width: 760px;
}

.archive-images {
  display: grid;
  grid-auto-columns: minmax(190px, 1fr);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.archive-images img {
  width: 100%;
  min-width: 190px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  object-fit: cover;
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 0.62fr);
  gap: 38px;
  align-items: end;
  background: var(--ink);
  color: var(--surface);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-form button {
  padding: 0 18px;
  background: var(--gold);
  color: var(--ink);
}

.bag-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  justify-items: end;
  visibility: hidden;
  pointer-events: none;
}

.bag-panel.is-open {
  visibility: visible;
  pointer-events: auto;
}

.bag-scrim {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 15, 0.58);
  opacity: 0;
  transition: opacity 180ms ease;
}

.bag-panel.is-open .bag-scrim {
  opacity: 1;
}

.bag-drawer {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100%);
  height: 100%;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.bag-head,
.bag-footer {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.bag-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.bag-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bag-head h2 {
  margin: 0;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.close-button {
  min-height: 36px;
  padding: 0 12px;
  background: transparent;
}

.bag-items {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  overflow: auto;
}

.bag-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
}

.bag-line img {
  width: 72px;
  aspect-ratio: 1;
  object-fit: cover;
}

.bag-line h3 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.bag-line span,
.shipping-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.shipping-note {
  margin-bottom: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.bag-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.checkout-button {
  display: block;
  width: 100%;
  background: var(--ember);
  color: var(--surface);
  padding: 14px 18px;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(130px, 0.55fr));
  gap: 30px;
  padding: 46px 42px;
  background: var(--charcoal);
  color: var(--surface);
}

.footer-brand p {
  max-width: 32ch;
  margin: 16px 0 0;
  color: var(--muted-invert);
  line-height: 1.55;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer h3 {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--muted-invert);
  font-size: 0.92rem;
}

.site-footer .brand {
  color: var(--surface);
}

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

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .hero,
  .featured-product,
  .trust-section,
  .newsletter-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-product {
    justify-self: stretch;
    width: min(520px, 100%);
  }

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

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

  .search-label {
    justify-self: start;
  }

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

@media (max-width: 720px) {
  .announcement-bar {
    justify-content: flex-start;
    gap: 22px;
    min-height: 34px;
    overflow-x: auto;
    padding: 7px 16px;
    text-align: left;
    white-space: nowrap;
  }

  .announcement-bar span + span::before {
    display: block;
  }

  .site-header {
    gap: 10px;
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand {
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 32px;
    font-size: 0.7rem;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.76rem;
  }

  .hero,
  .featured-product,
  .drop-grid-section,
  .mood-shop,
  .mood-collections,
  .trust-section,
  .archive-strip,
  .newsletter-section {
    padding: 48px 16px;
  }

  .hero {
    gap: 22px;
    padding-top: 30px;
    padding-bottom: 26px;
  }

  .featured-product {
    padding-top: 24px;
  }

  h1 {
    max-width: 12ch;
    font-size: 2.25rem;
  }

  .hero-copy p:not(.eyebrow) {
    margin-bottom: 20px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 22px;
  }

  .featured-details h2,
  .section-heading h2,
  .trust-copy h2,
  .archive-copy h2,
  .newsletter-section h2 {
    font-size: 2.15rem;
  }

  .trust-grid,
  .newsletter-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding-top: 14px;
  }

  .hero-proof dt {
    font-size: 0.96rem;
  }

  .hero-proof dd {
    font-size: 0.61rem;
  }

  .hero-product-media {
    height: 170px;
    aspect-ratio: auto;
  }

  .hero-product-caption {
    flex-direction: column;
    gap: 4px;
  }

  .primary-action,
  .secondary-action,
  .featured-add {
    width: 100%;
  }

  .hero .primary-action,
  .hero .secondary-action {
    min-width: 0;
    min-height: 40px;
    padding: 0 8px;
    font-size: 0.8rem;
  }

  .size-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .mood-card {
    min-height: 270px;
  }

  .archive-images {
    grid-auto-columns: 72%;
  }
}

/* v2: vertical washed-tee shop direction */
:root {
  --ink: #10100f;
  --charcoal: #1d1c19;
  --graphite: #302e29;
  --paper: #f2efe6;
  --surface: #fffdf7;
  --mist: #e2ded2;
  --line: rgba(16, 16, 15, 0.14);
  --line-dark: rgba(255, 253, 247, 0.16);
  --muted: rgba(16, 16, 15, 0.64);
  --muted-invert: rgba(255, 253, 247, 0.72);
  --ember: #9e3f32;
  --moss: #68784b;
  --teal: #3f7771;
  --gold: #c2a15a;
  --shadow: 0 18px 44px rgba(16, 16, 15, 0.14);
}

body {
  background: var(--paper);
}

body::before {
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.028) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 16, 15, 0.022) 1px, transparent 1px);
  background-size: 88px 88px;
}

.announcement-bar {
  min-height: 34px;
  gap: 26px;
  background: #0d0d0c;
  color: var(--surface);
  font-size: 0.72rem;
}

.announcement-bar span + span::before {
  background: var(--ember);
}

.site-header {
  min-height: 72px;
  padding: 12px 40px;
  background: rgba(255, 253, 247, 0.92);
}

.brand {
  gap: 12px;
  font-size: 0.9rem;
}

.brand-mark {
  width: 36px;
  border-width: 1px;
  background: var(--ink);
  color: var(--surface);
}

.nav-links {
  gap: 30px;
  color: rgba(16, 16, 15, 0.66);
  font-size: 0.78rem;
}

.nav-links a::after {
  bottom: -10px;
  background: var(--ink);
}

.icon-button,
.bag-button,
.primary-action,
.secondary-action,
.featured-add,
.filter-tab,
.add-button,
.checkout-button,
.close-button,
.size-option,
.newsletter-form button {
  border-radius: 6px;
  font-size: 0.84rem;
}

.hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.92fr);
  min-height: 660px;
  gap: 48px;
  padding: 62px 40px 54px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.96), rgba(255, 253, 247, 0.84)),
    var(--paper);
  color: var(--ink);
}

.hero .eyebrow,
.mood-collections .eyebrow,
.newsletter-section .eyebrow {
  color: var(--ember);
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: 4.25rem;
  line-height: 0.95;
}

.hero-copy p:not(.eyebrow) {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.primary-action,
.secondary-action {
  min-width: 172px;
}

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

.secondary-action {
  border-color: rgba(16, 16, 15, 0.26);
  background: transparent;
  color: var(--ink);
}

.hero-proof {
  border-top-color: var(--line);
}

.hero-proof dt {
  color: var(--ink);
}

.hero-proof dd {
  color: var(--muted);
}

.hero-product {
  justify-self: stretch;
}

.hero-product-media {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 15, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.08) 0 28%, transparent 28% 100%),
    #151412;
  box-shadow: var(--shadow);
}

.hero-product-media::after {
  inset: 16px;
  border-color: rgba(255, 253, 247, 0.1);
}

.hero-product-media > img {
  z-index: 1;
  width: 76%;
  height: auto;
  align-self: center;
  justify-self: start;
  margin-left: 28px;
  border: 1px solid rgba(255, 253, 247, 0.16);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  filter: brightness(1.04) contrast(1.02) saturate(0.95);
}

.hero-product-stack {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: 34%;
}

.hero-product-stack img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 253, 247, 0.2);
  background: #090908;
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.hero-product-caption {
  color: var(--muted);
}

.hero-product-caption strong {
  color: var(--ink);
}

.confidence-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--surface);
}

.confidence-strip div {
  min-width: 0;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 253, 247, 0.12);
}

.confidence-strip div:last-child {
  border-right: 0;
}

.confidence-strip strong,
.confidence-strip span {
  display: block;
}

.confidence-strip strong {
  margin-bottom: 7px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.confidence-strip span {
  color: var(--muted-invert);
  font-size: 0.86rem;
  line-height: 1.42;
}

.featured-product,
.drop-grid-section,
.mood-shop,
.mood-collections,
.trust-section,
.archive-strip,
.lookbook-section,
.newsletter-section {
  padding-right: 40px;
  padding-left: 40px;
}

.featured-product {
  grid-template-columns: minmax(320px, 0.78fr) minmax(320px, 0.92fr);
  background: var(--surface);
}

.featured-media {
  display: grid;
  min-height: 560px;
  place-items: center;
  border-color: rgba(16, 16, 15, 0.12);
  background: #0d0d0c;
}

.featured-media img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: contain;
}

.featured-details h2,
.section-heading h2,
.trust-copy h2,
.archive-copy h2,
.newsletter-section h2 {
  font-size: 2.72rem;
  line-height: 1.02;
}

.stock-note {
  border-color: rgba(104, 120, 75, 0.34);
  background: rgba(104, 120, 75, 0.1);
  color: #465334;
}

.product-promises {
  border-top-color: var(--line);
}

.drop-grid-section {
  background: #f7f4ec;
}

.section-heading {
  max-width: 1180px;
}

.product-grid {
  gap: 16px;
}

.product-card {
  border-color: rgba(16, 16, 15, 0.12);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(16, 16, 15, 0.06);
}

.product-media {
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: center;
  background: #11110f;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.02) saturate(0.96);
}

.product-badge {
  top: 12px;
  left: 12px;
  border: 1px solid rgba(16, 16, 15, 0.12);
  background: rgba(255, 253, 247, 0.92);
  font-size: 0.58rem;
}

.product-info {
  gap: 10px;
  padding: 15px;
}

.product-title-row h3 {
  font-size: 0.96rem;
}

.price {
  color: var(--ink);
}

.swatch {
  border-radius: 999px;
}

.add-button {
  border-color: var(--ink);
  background: var(--ink);
}

.mood-shop {
  background: var(--paper);
}

.shop-controls {
  grid-template-columns: minmax(0, 1fr) auto minmax(230px, 330px);
  padding: 14px;
  border: 1px solid rgba(16, 16, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.68);
}

.filter-tab {
  min-width: 0;
  min-height: 38px;
  border-color: rgba(16, 16, 15, 0.18);
  background: transparent;
}

.filter-tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

#productSearch,
.newsletter-form input {
  border-color: rgba(16, 16, 15, 0.22);
  background: var(--surface);
}

.mood-collections {
  background: #191815;
}

.mood-list {
  gap: 16px;
}

.mood-card {
  min-height: 360px;
  border-color: rgba(255, 253, 247, 0.14);
  border-radius: 8px;
}

.mood-card img {
  object-fit: cover;
  filter: brightness(0.76) contrast(1.06) saturate(0.9);
}

.mood-card::after {
  background: linear-gradient(0deg, rgba(16, 16, 15, 0.88), rgba(16, 16, 15, 0.12));
}

.mood-card span {
  font-size: 1.45rem;
  line-height: 1.02;
}

.trust-section {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.trust-grid article {
  background: #f8f5ee;
}

.metric {
  color: var(--ember);
}

.archive-strip {
  background: var(--surface);
}

.archive-images {
  grid-auto-columns: minmax(170px, 210px);
}

.archive-images img {
  aspect-ratio: 4 / 5;
  background: #11110f;
  object-fit: cover;
}

.lookbook-section {
  padding: 72px 40px;
  border-bottom: 1px solid var(--line);
  background: #f7f4ec;
}

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

.lookbook-card {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 15, 0.12);
  border-radius: 8px;
  background: #11110f;
  box-shadow: 0 12px 28px rgba(16, 16, 15, 0.06);
}

.lookbook-card.is-featured {
  min-height: 590px;
}

.lookbook-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 260ms ease;
}

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

.lookbook-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(16, 16, 15, 0.74), rgba(16, 16, 15, 0.02) 58%);
  pointer-events: none;
}

.lookbook-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 7px;
  color: var(--surface);
}

.lookbook-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lookbook-card strong {
  max-width: 28ch;
  font-size: 1.02rem;
  line-height: 1.18;
}

.newsletter-section {
  background: #11110f;
}

.newsletter-form button {
  border-color: var(--gold);
  background: var(--gold);
}

.site-footer {
  background: #1b1a18;
}

@media (max-width: 1100px) {
  .hero,
  .featured-product,
  .trust-section,
  .newsletter-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-product {
    justify-self: stretch;
    width: min(560px, 100%);
  }

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

  .hero-product-media {
    width: 100%;
    min-height: 440px;
  }

  .featured-media {
    min-height: 460px;
  }

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

  .lookbook-card,
  .lookbook-card.is-featured {
    min-height: 620px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero,
  .featured-product,
  .drop-grid-section,
  .mood-shop,
  .mood-collections,
  .trust-section,
  .archive-strip,
  .lookbook-section,
  .newsletter-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.45rem;
  }

  .confidence-strip {
    grid-template-columns: 1fr;
  }

  .confidence-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 247, 0.12);
  }

  .confidence-strip div:last-child {
    border-bottom: 0;
  }

  .hero-product-media {
    width: 100%;
    min-height: 360px;
  }

  .hero-product-media > img {
    width: 78%;
    margin-left: 14px;
  }

  .hero-product-stack {
    right: 14px;
    bottom: 14px;
    width: 38%;
  }

  .featured-media {
    min-height: 360px;
  }

  .shop-controls {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .filter-tab {
    flex: 1 1 140px;
  }

  .product-media {
    aspect-ratio: 1;
  }

  .mood-card {
    min-height: 300px;
  }

  .lookbook-card,
  .lookbook-card.is-featured {
    min-height: 430px;
  }
}

/* Campaign hero: immersive lookbook banner */
.hero.hero-campaign {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  justify-content: flex-end;
  padding: 72px 5vw 118px;
  overflow: hidden;
  border-bottom: 0;
  background: #0b0b0a;
  color: var(--surface);
}

.hero-campaign-media,
.hero-campaign-shade {
  position: absolute;
  inset: 0;
}

.hero-campaign-media {
  display: grid;
  grid-template-columns: 52% 24% 24%;
  gap: 3px;
  background: #0b0b0a;
}

.hero-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.72);
}

.hero-frame-street {
  object-position: 50% 28%;
}

.hero-frame-studio {
  object-position: 50% 18%;
}

.hero-frame-drape {
  object-position: 50% 16%;
}

.hero-campaign-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.08) 0%, rgba(7, 7, 7, 0.24) 42%, rgba(7, 7, 7, 0.9) 68%, rgba(7, 7, 7, 0.82) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.9) 0%, transparent 38%, rgba(7, 7, 7, 0.16) 100%);
}

.hero-campaign::after {
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.hero-campaign .hero-copy {
  position: relative;
  z-index: 3;
  width: min(680px, 49%);
  margin-left: auto;
}

.hero-campaign .eyebrow {
  margin-bottom: 15px;
  color: #d2ab55;
  letter-spacing: 0.16em;
}

.hero-campaign h1 {
  max-width: none;
  margin-bottom: 22px;
  color: #fffdf7;
  font-size: clamp(4rem, 6.25vw, 7rem);
  line-height: 0.78;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-campaign h1 span {
  display: block;
}

.hero-campaign .hero-title-accent {
  color: #ca4c36;
  font-style: italic;
  transform: translateX(-0.05em);
}

.hero-campaign .hero-copy > p:not(.eyebrow) {
  max-width: 48ch;
  margin-bottom: 26px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-campaign .primary-action {
  border-color: #fffdf7;
  background: #fffdf7;
  color: #10100f;
}

.hero-campaign .secondary-action {
  border-color: rgba(255, 253, 247, 0.52);
  color: #fffdf7;
}

.hero-campaign .hero-proof {
  width: 100%;
  border-top-color: rgba(255, 253, 247, 0.28);
}

.hero-campaign .hero-proof dt {
  color: #fffdf7;
  font-size: 1.35rem;
}

.hero-campaign .hero-proof dd {
  color: rgba(255, 253, 247, 0.62);
}

.hero-issue {
  position: absolute;
  bottom: 38px;
  left: 5vw;
  z-index: 3;
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media (max-width: 1100px) {
  .hero.hero-campaign {
    min-height: 680px;
    justify-content: flex-end;
  }

  .hero-campaign-media {
    grid-template-columns: 62% 38%;
  }

  .hero-frame-drape {
    display: none;
  }

  .hero-campaign .hero-copy {
    width: min(610px, 58%);
  }

  .hero-campaign h1 {
    font-size: clamp(3.6rem, 7vw, 5.6rem);
  }
}

@media (max-width: 720px) {
  .hero.hero-campaign {
    min-height: 730px;
    align-items: flex-end;
    padding: 310px 16px 32px;
  }

  .hero-campaign-media {
    display: block;
  }

  .hero-frame-street {
    display: block;
    object-position: 50% 22%;
  }

  .hero-frame-studio,
  .hero-frame-drape {
    display: none;
  }

  .hero-campaign-shade {
    background:
      linear-gradient(0deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.85) 50%, rgba(7, 7, 7, 0.12) 100%),
      linear-gradient(90deg, rgba(7, 7, 7, 0.08), rgba(7, 7, 7, 0.32));
  }

  .hero-campaign::after {
    inset: 10px;
  }

  .hero-campaign .hero-copy {
    width: 100%;
  }

  .hero-campaign .eyebrow {
    margin-bottom: 10px;
    font-size: 0.66rem;
  }

  .hero-campaign h1 {
    max-width: 10ch;
    margin-bottom: 16px;
    font-size: clamp(3.15rem, 14vw, 4.2rem);
    line-height: 0.82;
  }

  .hero-campaign .hero-copy > p:not(.eyebrow) {
    margin-bottom: 18px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-campaign .hero-actions {
    margin-bottom: 20px;
  }

  .hero-campaign .primary-action,
  .hero-campaign .secondary-action {
    min-width: 0;
    flex: 1 1 calc(50% - 6px);
    padding: 0 10px;
    font-size: 0.75rem;
  }

  .hero-campaign .hero-proof {
    gap: 8px;
    padding-top: 14px;
  }

  .hero-campaign .hero-proof dt {
    font-size: 1rem;
  }

  .hero-campaign .hero-proof dd {
    font-size: 0.58rem;
  }

  .hero-issue {
    display: none;
  }
}

/* Global tension pass: harder contrast, scale shifts, and asymmetric rhythm */
body {
  background: #e8ddc8;
}

.announcement-bar {
  background: #b83f2f;
  color: #fffdf7;
}

.announcement-bar span + span::before {
  background: #11110f;
}

.site-header {
  min-height: 78px;
  border-bottom-color: rgba(255, 253, 247, 0.15);
  background: rgba(10, 10, 9, 0.96);
  color: #fffdf7;
}

.site-header .brand-mark {
  border-color: #fffdf7;
  background: #b83f2f;
  color: #fffdf7;
}

.site-header .nav-links {
  color: rgba(255, 253, 247, 0.72);
}

.site-header .nav-links a::after {
  background: #b83f2f;
}

.site-header .icon-button {
  border-color: rgba(255, 253, 247, 0.66);
  background: transparent;
  color: #fffdf7;
}

.site-header .search-button span {
  border-color: currentColor;
}

.site-header .search-button span::after {
  background: currentColor;
}

.site-header .bag-button {
  border-color: #fffdf7;
  background: #fffdf7;
  color: #11110f;
}

.hero-campaign-media {
  display: block;
}

.hero-campaign-media picture,
.hero-campaign-media picture > img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-frame-campaign {
  object-position: 50% 50%;
  filter: saturate(0.82) contrast(1.07) brightness(0.78);
}

.hero-campaign-shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.08) 0%, rgba(7, 7, 7, 0.15) 43%, rgba(7, 7, 7, 0.74) 64%, rgba(7, 7, 7, 0.92) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.72) 0%, transparent 45%, rgba(7, 7, 7, 0.08) 100%);
}

.hero-campaign h1,
.featured-details h2,
.section-heading h2,
.trust-copy h2,
.archive-copy h2,
.newsletter-section h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-campaign h1 {
  font-size: clamp(4.4rem, 6.6vw, 7.6rem);
}

.hero-campaign .hero-title-accent {
  color: #df4c35;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.32);
}

.primary-action,
.secondary-action,
.featured-add,
.filter-tab,
.add-button,
.checkout-button,
.close-button,
.size-option,
.newsletter-form button,
.product-card,
.mood-card,
.lookbook-card,
.shop-controls {
  border-radius: 0;
}

.confidence-strip {
  min-height: 76px;
  border-top: 1px solid rgba(255, 253, 247, 0.18);
  background: #b83f2f;
}

.confidence-strip div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-right-color: rgba(17, 17, 15, 0.25);
}

.confidence-strip strong {
  margin: 0;
  color: #fffdf7;
  font-size: 0.92rem;
}

.confidence-strip span {
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.74rem;
}

.featured-product,
.drop-grid-section,
.mood-shop,
.mood-collections,
.trust-section,
.archive-strip,
.lookbook-section,
.newsletter-section {
  padding: 104px 5vw;
}

.featured-product {
  position: relative;
  grid-template-columns: minmax(360px, 1.08fr) minmax(330px, 0.72fr);
  gap: clamp(42px, 7vw, 110px);
  overflow: hidden;
  background: #e8ddc8;
}

.featured-product::before {
  position: absolute;
  top: 34px;
  right: -0.08em;
  color: rgba(17, 17, 15, 0.055);
  content: "DROP 01";
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: 0.8;
  pointer-events: none;
}

.featured-media {
  min-height: 650px;
  border: 10px solid #11110f;
  box-shadow: 18px 18px 0 #b83f2f;
  transform: rotate(-1.2deg);
}

.featured-details {
  position: relative;
  z-index: 1;
  padding-left: 28px;
  border-left: 8px solid #b83f2f;
}

.featured-details h2 {
  max-width: 9ch;
  font-size: clamp(3.9rem, 6vw, 6.8rem);
  line-height: 0.82;
}

.section-heading {
  position: relative;
  max-width: none;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.trust-copy h2,
.archive-copy h2,
.newsletter-section h2 {
  font-size: clamp(3.5rem, 6vw, 7rem);
  line-height: 0.84;
}

.section-heading::before {
  display: block;
  margin-bottom: 16px;
  color: #b83f2f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#best-sellers .section-heading::before {
  content: "02 / CURATED FIRST RACK";
}

#washed-tees .section-heading::before {
  content: "03 / FULL WASHED ARCHIVE";
}

.lookbook-section .section-heading::before {
  content: "06 / WORN IN THE WILD";
}

.drop-grid-section {
  overflow: hidden;
  background: #11110f;
  color: #fffdf7;
}

.drop-grid-section .eyebrow,
.drop-grid-section .section-heading::before {
  color: #df4c35;
}

.drop-grid-section .section-heading > p {
  color: rgba(255, 253, 247, 0.62);
}

.drop-grid-section .product-grid {
  align-items: start;
  gap: 22px;
}

.drop-grid-section .product-card {
  border: 0;
  background: #f2e9d8;
  color: #11110f;
  box-shadow: 10px 10px 0 rgba(184, 63, 47, 0.72);
}

.drop-grid-section .product-card:nth-child(even) {
  margin-top: 42px;
}

.product-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-8px) rotate(-0.4deg);
}

.product-media {
  border-bottom: 4px solid #11110f;
}

.product-badge {
  border: 2px solid #11110f;
  background: #e8ddc8;
  color: #11110f;
}

.mood-shop {
  background: #e8ddc8;
}

.mood-shop .shop-controls {
  border: 2px solid #11110f;
  background: #d9c9ad;
  box-shadow: 8px 8px 0 #11110f;
}

.mood-shop .product-card {
  border: 2px solid #11110f;
  box-shadow: none;
}

.mood-collections {
  background: #b83f2f;
  color: #fffdf7;
}

.mood-collections .section-heading > p {
  color: rgba(255, 253, 247, 0.68);
}

.mood-list {
  align-items: start;
  gap: 10px;
}

.mood-card {
  min-height: 440px;
  border: 3px solid #11110f;
  box-shadow: 8px 8px 0 #11110f;
}

.mood-card:nth-child(even) {
  margin-top: 38px;
}

.mood-card span {
  right: 18px;
  bottom: 16px;
  left: 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 2.4vw, 3.2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.trust-section {
  gap: 70px;
  background: #11110f;
  color: #fffdf7;
}

.trust-copy .eyebrow {
  color: #df4c35;
}

.trust-grid {
  gap: 0;
  border: 2px solid #fffdf7;
}

.trust-grid article {
  border-color: rgba(255, 253, 247, 0.34);
  background: transparent;
  color: #fffdf7;
}

.trust-grid p {
  color: rgba(255, 253, 247, 0.62);
}

.metric {
  color: #df4c35;
  font-size: 2rem;
}

.archive-strip {
  overflow: hidden;
  background: #d9c9ad;
}

.archive-images {
  gap: 8px;
}

.archive-images img {
  border: 5px solid #11110f;
  box-shadow: 6px 6px 0 #b83f2f;
}

.archive-images img:nth-child(odd) {
  transform: rotate(-2deg);
}

.archive-images img:nth-child(even) {
  transform: translateY(24px) rotate(1.5deg);
}

.lookbook-section {
  background: #eee4d2;
}

.lookbook-grid {
  gap: 10px;
}

.lookbook-card {
  border: 4px solid #11110f;
  box-shadow: none;
}

.lookbook-card.is-featured {
  transform: translateY(-32px);
  box-shadow: 12px 12px 0 #b83f2f;
}

.newsletter-section {
  min-height: 390px;
  background: #b83f2f;
  color: #fffdf7;
}

.newsletter-section .eyebrow {
  color: #11110f;
}

.newsletter-section h2 {
  max-width: 10ch;
}

.newsletter-form input {
  border: 3px solid #11110f;
  background: #fffdf7;
}

.newsletter-form button {
  border: 3px solid #11110f;
  background: #11110f;
  color: #fffdf7;
}

.site-footer {
  border-top: 8px solid #b83f2f;
  background: #080807;
}

@media (max-width: 1100px) {
  .featured-details h2 {
    max-width: 11ch;
  }

  .drop-grid-section .product-card:nth-child(even),
  .mood-card:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 96px;
  }

  .hero.hero-campaign {
    min-height: 730px;
  }

  .hero-campaign-media picture > img {
    object-fit: cover;
    object-position: 50% 22%;
    filter: saturate(0.72) contrast(1.08) brightness(0.7);
  }

  .hero-campaign h1 {
    font-size: clamp(3.2rem, 15vw, 4.35rem);
  }

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

  .confidence-strip div {
    display: block;
    padding: 15px 12px;
    border-right: 1px solid rgba(17, 17, 15, 0.25);
  }

  .confidence-strip span {
    display: none;
  }

  .featured-product,
  .drop-grid-section,
  .mood-shop,
  .mood-collections,
  .trust-section,
  .archive-strip,
  .lookbook-section,
  .newsletter-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .featured-media {
    min-height: 430px;
    border-width: 6px;
    box-shadow: 10px 10px 0 #b83f2f;
  }

  .featured-details {
    padding-left: 18px;
    border-left-width: 5px;
  }

  .featured-details h2,
  .section-heading h2,
  .trust-copy h2,
  .archive-copy h2,
  .newsletter-section h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .drop-grid-section .product-card {
    box-shadow: 6px 6px 0 rgba(184, 63, 47, 0.72);
  }

  .mood-shop .shop-controls {
    box-shadow: 5px 5px 0 #11110f;
  }

  .mood-list {
    gap: 18px;
  }

  .mood-card {
    min-height: 360px;
  }

  .lookbook-card.is-featured {
    transform: none;
    box-shadow: 7px 7px 0 #b83f2f;
  }
}

/* v5 wordmark: screenprint registration, slash tension, no placeholder badge */
.brand.brand-lockup {
  position: relative;
  display: inline-grid;
  gap: 3px;
  align-items: start;
  min-width: max-content;
  font-size: inherit;
  line-height: 1;
}

.brand-wordmark {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  isolation: isolate;
  color: #fffdf7;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.72rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.78;
  transform: skewX(-5deg);
}

.brand-wordmark::before {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: -1;
  color: #b83f2f;
  content: "PARADOX/WORN";
  opacity: 0.82;
  transform: translate(2px, 2px);
}

.brand-wordmark b {
  margin: 0 0.08em;
  color: #df4c35;
  font-size: 1.18em;
  font-style: normal;
  font-weight: 900;
  transform: translateY(0.02em) rotate(8deg);
}

.brand-wordmark span:last-of-type {
  transform: translateY(0.06em);
}

.brand-subline {
  padding-left: 1px;
  color: rgba(255, 253, 247, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer .brand-wordmark {
  font-size: 2.2rem;
}

.site-footer .brand-subline {
  font-size: 0.56rem;
}

@media (max-width: 720px) {
  .brand-wordmark {
    font-size: 1.38rem;
  }

  .site-header .brand-subline {
    display: none;
  }

  .site-footer .brand-wordmark {
    font-size: 1.9rem;
  }
}

/* v6: payment-review footer system */
.newsletter-section {
  position: relative;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 72px;
  min-height: 360px;
  overflow: hidden;
}

.newsletter-section::after {
  position: absolute;
  right: -0.04em;
  bottom: -0.24em;
  color: rgba(17, 17, 15, 0.12);
  content: "BROADCAST";
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(7rem, 17vw, 19rem);
  letter-spacing: -0.055em;
  line-height: 0.8;
  pointer-events: none;
}

.newsletter-section > * {
  position: relative;
  z-index: 1;
}

.newsletter-note {
  max-width: 46ch;
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.5;
}

.newsletter-form {
  align-self: center;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 58px;
}

.site-footer {
  display: block;
  padding: 0;
  border-top: 8px solid #b83f2f;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #080807;
  background-size: 44px 44px;
  color: #fffdf7;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.3fr) minmax(210px, 0.7fr) minmax(210px, 0.7fr);
  gap: clamp(52px, 8vw, 132px);
  max-width: 1540px;
  margin: 0 auto;
  padding: 88px clamp(24px, 4vw, 72px) 74px;
}

.footer-brand {
  align-content: start;
}

.footer-kicker {
  margin: 0 0 24px;
  color: #d2ab55;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer .footer-brand > p:not(.footer-kicker) {
  max-width: 38ch;
  margin: 24px 0 20px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer .footer-contact {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(210, 171, 85, 0.52);
  color: #d2ab55;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.site-footer .footer-col h3 {
  position: relative;
  margin: 0 0 14px;
  padding-bottom: 11px;
  color: #fffdf7;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.42rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer .footer-col h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: #b83f2f;
  content: "";
}

.site-footer .footer-col a {
  color: rgba(255, 253, 247, 0.58);
  font-size: 0.91rem;
  line-height: 1.35;
  transition: color 150ms ease, transform 150ms ease;
}

.site-footer .footer-col a:hover,
.site-footer .footer-col a:focus-visible,
.site-footer .footer-contact:hover,
.site-footer .footer-contact:focus-visible {
  color: #fffdf7;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: 1540px;
  margin: 0 auto;
  padding: 26px clamp(24px, 4vw, 72px) 34px;
  border-top: 1px solid rgba(255, 253, 247, 0.14);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: rgba(255, 253, 247, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-payment-group {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-payment-label {
  color: rgba(255, 253, 247, 0.38);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-payments li {
  display: grid;
  min-width: 54px;
  min-height: 30px;
  place-items: center;
  padding: 5px 8px;
  border: 1px solid rgba(17, 17, 15, 0.28);
  border-radius: 3px;
  background: #fffdf7;
  color: #11110f;
  font-family: Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-payments .payment-mastercard {
  grid-template-columns: repeat(2, 18px);
  min-width: 54px;
}

.payment-mastercard i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #df4c35;
}

.payment-mastercard i + i {
  margin-left: -7px;
  background: #d2ab55;
}

@media (max-width: 900px) {
  .newsletter-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 54px 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .newsletter-section {
    min-height: 420px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 28px;
  }

  .footer-payment-group {
    justify-items: start;
  }

  .footer-payments {
    justify-content: flex-start;
  }
}

/* v6 — SHOPLINE information and policy pages */
.main-page {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(92px, 10vw, 150px) clamp(20px, 5vw, 72px) clamp(100px, 12vw, 170px);
}

.main-page__title {
  max-width: 920px;
  margin: 0 auto 0;
  color: #11110f;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.6rem, 9vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-transform: uppercase;
}

.main-page__content.rte {
  max-width: 920px;
  margin: clamp(42px, 7vw, 82px) auto 0;
}

.pxw-policy-page {
  position: relative;
  color: #191815;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.68;
}

.pxw-policy-page::before {
  display: block;
  width: 100%;
  height: 12px;
  margin-bottom: 34px;
  background: repeating-linear-gradient(90deg, #11110f 0 42px, transparent 42px 48px);
  content: "";
}

.pxw-policy-page__eyebrow {
  margin: 0 0 18px;
  color: #b93522;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pxw-policy-page__intro {
  max-width: 760px;
  margin: 0 0 58px;
  color: #11110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.32rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.pxw-policy-page h2 {
  margin: 52px 0 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 17, 15, 0.28);
  color: #11110f;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.pxw-policy-page p,
.pxw-policy-page ul,
.pxw-policy-page ol {
  max-width: 760px;
  margin: 0 0 20px;
}

.pxw-policy-page li + li {
  margin-top: 8px;
}

.pxw-policy-page a {
  color: #9f2f20;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.pxw-policy-page__contact {
  max-width: 760px;
  margin-top: 64px;
  padding: 24px 26px;
  border: 1px solid #11110f;
  background: #e4b74d;
  box-shadow: 8px 8px 0 #11110f;
  color: #11110f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  line-height: 1.55;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .main-page {
    padding-top: 72px;
    padding-bottom: 100px;
  }

  .main-page__title {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  .pxw-policy-page__intro {
    margin-bottom: 42px;
  }

  .pxw-policy-page h2 {
    margin-top: 42px;
  }

  .pxw-policy-page__contact {
    margin-right: 7px;
    padding: 20px;
  }
}

/* v10 — accessible SHOPLINE header navigation contrast */
.site-header .nav-links {
  color: #e8ddc8;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.72);
}

.site-header .nav-links a {
  color: inherit;
  opacity: 0.9;
  transition: color 150ms ease, opacity 150ms ease;
}

.site-header .nav-links a:hover,
.site-header .nav-links a:focus-visible,
.site-header .nav-links a[aria-current="page"] {
  color: #fffdf7;
  opacity: 1;
}

.site-header .nav-links a:focus-visible {
  outline: 1px solid #e4b74d;
  outline-offset: 7px;
}

.site-header .nav-links a::after {
  height: 3px;
  background: #d94732;
}
