:root {
  --bg: #050505;
  --panel: #0d0d0f;
  --panel-2: #151517;
  --text: #f7f7f2;
  --muted: #a8a8a8;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #ff6428;
  --cyan: #00a6b8;
  --violet: #6f3cc3;
  --cream: #f4eee1;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.promo-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 56px);
  padding: 8px 18px;
  background: #f5f0e8;
  color: #080808;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  scrollbar-width: none;
}

.promo-bar::-webkit-scrollbar {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
}

.brand span {
  display: inline-grid;
  place-items: center;
  width: 1.05em;
  height: 1.05em;
  margin-inline: -0.02em;
  border: 0.16em solid currentColor;
  border-color: #fff;
  border-radius: 50%;
  color: transparent;
  transform: translateY(0.06em);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.3vw, 34px);
}

.main-nav a,
.text-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.icon-button svg,
.benefits svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button span {
  position: absolute;
  right: 1px;
  top: 2px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #070707;
  font-size: 11px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 106px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(34px, 7vw, 90px) clamp(20px, 6vw, 74px);
  border-bottom: 1px solid var(--line);
}

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

.hero-media {
  object-fit: cover;
  object-position: 58% center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.16) 68%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 38%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(520px, 90vw);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(74px, 12vw, 170px);
  line-height: 0.84;
}

h2 {
  font-size: clamp(40px, 5.7vw, 86px);
  line-height: 0.95;
}

.hero-copy p:not(.eyebrow),
.feature-copy p,
.newsletter p,
.site-footer p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  border-color: var(--cream);
  background: var(--cream);
  color: #070707;
}

.button-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.button-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-index {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 4vw, 54px);
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
}

.hero-index i {
  width: 58px;
  height: 1px;
  background: currentColor;
}

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

.category-strip-primary .category-tile {
  min-height: clamp(280px, 34vw, 470px);
}

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.category-tile:last-child {
  border-right: 0;
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.68;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent);
  pointer-events: none;
}

.category-tile span {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 20px;
  color: #fff;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(44px, 5.8vw, 86px);
  line-height: 0.95;
  text-transform: uppercase;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.benefits div {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  background: #080808;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefits svg {
  color: var(--orange);
}

.shop-section,
.lookbook,
.newsletter,
.feature-split {
  padding: clamp(50px, 8vw, 100px) clamp(18px, 4vw, 58px);
}

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

.shop-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background: #f7f7f4;
  transition: transform 0.35s ease;
}

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

.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  background: var(--orange);
  color: #050505;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info {
  padding: 16px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-info h3 {
  min-height: 46px;
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.price {
  font-size: 18px;
  font-weight: 900;
}

.old-price {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
}

.size-row {
  display: flex;
  gap: 7px;
  margin-bottom: 15px;
}

.size-row button {
  width: 34px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.size-row button.active,
.size-row button:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: #050505;
}

.add-button {
  width: 100%;
}

.feature-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 30%, rgba(255, 100, 40, 0.18), transparent 25%),
    linear-gradient(135deg, #050505, #111 60%, #050505);
}

.feature-copy {
  max-width: 520px;
}

.feature-split img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.lookbook-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.newsletter {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  border-top: 1px solid var(--line);
  background: #0b0b0d;
}

.newsletter img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

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

.newsletter label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-row input,
.search-panel input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #050505;
  color: var(--text);
  padding: 0 15px;
  outline: none;
}

.input-row input:focus,
.search-panel input:focus {
  border-color: var(--orange);
}

.newsletter small {
  display: block;
  min-height: 20px;
  margin-top: 10px;
  color: var(--orange);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 30px;
  padding: 46px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--orange);
}

.cart-drawer,
.search-panel {
  position: fixed;
  z-index: 60;
  background: #09090a;
  border: 1px solid var(--line);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.page-shade,
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.page-shade.active,
.search-overlay.active {
  pointer-events: auto;
  opacity: 1;
}

.cart-drawer {
  top: 0;
  right: 0;
  width: min(430px, 100vw);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(105%);
  transition: transform 0.25s ease;
}

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

.cart-header,
.cart-footer {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2,
.search-panel h2 {
  font-family: Anton, Impact, sans-serif;
  font-size: 44px;
  font-weight: 400;
  text-transform: uppercase;
}

.cart-items {
  overflow: auto;
  padding: 16px 20px;
}

.cart-item,
.search-result {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img,
.search-result img {
  width: 78px;
  height: 92px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item h3,
.search-result h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.cart-item p,
.search-result p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.remove-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.remove-button:hover {
  color: var(--orange);
}

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

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 18px;
}

.checkout-button {
  width: 100%;
}

.empty-cart {
  margin: 0;
  color: var(--muted);
}

.search-overlay {
  display: grid;
  place-items: start center;
  padding: clamp(74px, 9vw, 110px) 18px 18px;
}

.search-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(720px, 86vh);
  overflow: auto;
  padding: 26px;
  border-radius: var(--radius);
}

.search-panel .close-button {
  position: absolute;
  top: 18px;
  right: 18px;
}

.search-results {
  margin-top: 18px;
}

@media (max-width: 1040px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-split,
  .newsletter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .promo-bar {
    justify-content: flex-start;
    overflow: auto;
    white-space: nowrap;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    height: 64px;
    padding-inline: 14px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 98px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 20px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.active {
    display: flex;
  }

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

  .account-button {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: end;
    padding-bottom: 80px;
  }

  .hero-media {
    object-position: 68% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.32) 72%, rgba(0, 0, 0, 0.54)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 70%);
  }

  .section-heading {
    display: block;
  }

  .shop-controls {
    justify-content: flex-start;
    margin-top: 20px;
  }

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

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

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

@media (max-width: 560px) {
  .brand {
    font-size: 27px;
  }

  .header-actions {
    gap: 2px;
  }

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 690px;
  }

  .category-strip,
  .benefits,
  .product-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .category-tile {
    min-height: 220px;
  }

  .category-tile span {
    font-size: 48px;
    bottom: 18px;
  }

  .input-row {
    display: grid;
  }

  .cart-item,
  .search-result {
    grid-template-columns: 64px 1fr auto;
  }

  .cart-item img,
  .search-result img {
    width: 64px;
    height: 78px;
  }
}
