:root {
  color-scheme: dark;
  --black: #050505;
  --surface: #0d0d0e;
  --surface-2: #151516;
  --white: #f5f3ef;
  --muted: #9c9c9c;
  --line: #2b2b2d;
  --red: #e01822;
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}
body.cart-open, body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button { color: inherit; }

.announcement {
  padding: .55rem 1rem;
  background: var(--red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
}
.announcement span { margin: 0 .7rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(5,5,5,.9);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: baseline; gap: .38rem; width: max-content; }
.brand span { font-family: var(--font-display); font-size: 1.65rem; letter-spacing: .02em; }
.brand em { color: var(--red); font-size: .74rem; font-style: normal; font-weight: 800; letter-spacing: .15em; }
nav { display: flex; gap: 2rem; }
nav a, .cart-button { font-size: .875rem; font-weight: 600; }
nav a:hover { color: var(--red); }
.cart-button {
  justify-self: end;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.cart-button span {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-left: .4rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: .72rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  min-height: min(760px, calc(100vh - 104px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.1) .6px, transparent .6px);
  background-size: 7px 7px;
  opacity: .2;
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 1rem 5rem clamp(1rem, 7vw, 8rem);
}
.eyebrow { margin: 0 0 1.15rem; color: var(--red); font-size: .75rem; font-weight: 800; letter-spacing: .2em; }
h1, h2 { margin: 0; font-family: var(--font-display); font-weight: 400; line-height: .9; text-transform: uppercase; }
h1 { font-size: clamp(5rem, 10vw, 9.5rem); letter-spacing: -.02em; }
.hero-text { max-width: 28rem; margin: 1.8rem 0; color: #c7c7c7; font-size: 1.05rem; }
.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 1.6rem;
  background: var(--white);
  color: var(--black);
  font-size: .875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: background .2s, color .2s;
}
.primary-link:hover { background: var(--red); color: white; }
.hero-art { position: relative; display: grid; place-items: center; min-height: 500px; }
.hero-art::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  background: var(--red);
  filter: blur(120px);
  opacity: .18;
}
.hero-art img {
  position: relative;
  z-index: 2;
  width: min(74%, 620px);
  border-radius: 50%;
  box-shadow: 0 34px 80px rgba(0,0,0,.75);
  animation: float 7s ease-in-out infinite;
}
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transform: rotate(-18deg); }
.orbit-one { width: 80%; aspect-ratio: 1.75; }
.orbit-two { width: 72%; aspect-ratio: 1.4; transform: rotate(62deg); border-color: rgba(224,24,34,.35); }
.hero-number { position: absolute; right: -1.4rem; bottom: -6.4rem; margin: 0; color: rgba(255,255,255,.035); font-family: var(--font-display); font-size: 22rem; line-height: 1; }
@keyframes float { 50% { transform: translateY(-14px) rotate(1deg); } }

.shop { padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 4.5rem); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.8rem; }
.section-heading h2, .story h2 { font-size: clamp(3.5rem, 7vw, 7rem); }
.section-heading > p { max-width: 25rem; margin: 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; }
.product-card { grid-column: span 4; min-width: 0; }
.product-card:nth-child(1), .product-card:nth-child(2) { grid-column: span 6; }
.image-wrap {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #000;
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.image-wrap:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.image-wrap img { grid-area: 1 / 1; width: 100%; height: 100%; object-fit: contain; pointer-events: none; transition: transform .5s ease, opacity .25s; }
.product-card:hover .image-wrap img { transform: scale(1.025); }
.product-card[data-product="world-riches-set"] .image-wrap img { padding: 10%; }
.product-card[data-product="world-riches-set"] .image-wrap img:nth-of-type(2) {
  padding: 18% 14%;
  transform: none;
}
.product-card[data-product="world-riches-set"]:hover .image-wrap img:nth-of-type(2) { transform: none; }
.product-tag { position: absolute; top: 1rem; left: 1rem; padding: .42rem .6rem; background: var(--white); color: var(--black); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.gallery-dots { position: absolute; right: .8rem; bottom: .8rem; display: flex; gap: .35rem; }
.gallery-dots button { width: .7rem; height: .7rem; padding: 0; border: 1px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; }
.gallery-dots button.active { background: #fff; }
.product-info { padding: 1.1rem 0 2.2rem; }
.product-top { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .9rem; }
.product-top h3 { margin: 0; font-size: 1rem; text-transform: uppercase; letter-spacing: .03em; }
.price { flex: none; font-weight: 700; }
.product-actions { display: grid; grid-template-columns: minmax(90px, .7fr) 1.3fr; gap: .55rem; }
.size-select, .add-button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
}
.size-select { padding: 0 .85rem; background: var(--surface); color: var(--white); }
.add-button { border-color: var(--white); background: var(--white); color: var(--black); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; }
.add-button:hover { border-color: var(--red); background: var(--red); color: white; }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 4rem; padding: clamp(4rem, 9vw, 9rem) clamp(1rem, 7vw, 8rem); border-top: 1px solid var(--line); background: var(--surface); }
.story .eyebrow { grid-column: 1 / -1; }
.story h2 { color: var(--white); }
.story-copy { max-width: 36rem; align-self: end; color: #b7b7b7; font-size: 1.05rem; }
.story-copy p:last-child { margin-bottom: 0; }
footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 3rem clamp(1rem, 4vw, 4.5rem); border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.footer-brand { color: var(--white); }

.scrim { position: fixed; inset: 0; z-index: 30; background: rgba(0,0,0,.72); backdrop-filter: blur(4px); }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  width: min(440px, 100%);
  height: 100dvh;
  padding: 1.35rem;
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .28s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.cart-header h2 { font-family: var(--font-body); font-size: 1.2rem; font-weight: 700; text-transform: none; }
.icon-button { border: 0; background: transparent; font-size: 2rem; line-height: 1; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; }
.cart-item { display: grid; grid-template-columns: 78px 1fr auto; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 78px; height: 90px; object-fit: contain; background: #000; }
.cart-item h3 { margin: 0 0 .2rem; font-size: .82rem; text-transform: uppercase; }
.cart-item p { margin: 0; color: var(--muted); font-size: .76rem; }
.remove-button { align-self: start; border: 0; background: transparent; color: var(--muted); font-size: 1.2rem; cursor: pointer; }
.cart-empty { margin: auto; text-align: center; color: var(--muted); }
.text-button { border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; }
.cart-summary { padding-top: 1.25rem; border-top: 1px solid var(--line); }
.subtotal { display: flex; justify-content: space-between; font-size: 1.08rem; }
.cart-summary > p { color: var(--muted); font-size: .75rem; }
.checkout-button { width: 100%; min-height: 54px; border: 0; background: var(--red); color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; }
.checkout-note { text-align: center; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(52px, 1fr) minmax(0, 10fr) minmax(52px, 1fr);
  place-items: center;
  padding: 2rem;
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(12px);
}
.lightbox[hidden] { display: none; }
.lightbox figure { grid-column: 2; display: grid; place-items: center; width: 100%; height: 100%; margin: 0; }
.lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; }
.lightbox figcaption { margin-top: .8rem; color: #d0d0d0; font-size: .86rem; font-weight: 600; letter-spacing: .04em; text-align: center; text-transform: uppercase; }
.lightbox-close, .lightbox-nav {
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(12,12,12,.76);
  color: #fff;
  cursor: pointer;
}
.lightbox-close { position: absolute; top: 1.25rem; right: 1.25rem; width: 48px; height: 48px; font-size: 2rem; line-height: 1; }
.lightbox-nav { width: 52px; height: 52px; font-size: 2.2rem; line-height: 1; }
.lightbox-prev { grid-column: 1; }
.lightbox-next { grid-column: 3; }
.lightbox-close:hover, .lightbox-nav:hover { border-color: var(--red); background: var(--red); }
.toast { position: fixed; left: 50%; bottom: 1.5rem; z-index: 60; padding: .8rem 1rem; background: var(--white); color: var(--black); font-size: .85rem; font-weight: 700; opacity: 0; transform: translate(-50%, 18px); pointer-events: none; transition: .25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 4rem 1.25rem 2rem; }
  .hero-art { min-height: 420px; }
  .hero-art img { width: min(72%, 470px); }
  .product-card, .product-card:nth-child(1), .product-card:nth-child(2) { grid-column: span 6; }
  .story { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .announcement { font-size: .62rem; letter-spacing: .1em; }
  .announcement span { margin: 0 .25rem; }
  .site-header { grid-template-columns: 1fr auto; min-height: 68px; }
  nav { display: none; }
  .brand span { font-size: 1.4rem; }
  h1 { font-size: clamp(4.8rem, 25vw, 7.2rem); }
  .hero { min-height: auto; }
  .hero-art { min-height: 350px; margin-top: -2rem; }
  .hero-number { font-size: 14rem; }
  .section-heading { align-items: start; flex-direction: column; }
  .product-card, .product-card:nth-child(1), .product-card:nth-child(2) { grid-column: 1 / -1; }
  .product-actions { grid-template-columns: .7fr 1.3fr; }
  footer { align-items: flex-start; flex-direction: column; }
  .lightbox { grid-template-columns: 50px 1fr 50px; padding: 4.5rem .5rem 1rem; }
  .lightbox img { max-height: 76vh; }
  .lightbox-nav { width: 44px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
