:root {
  --ink: #0b0b0b;
  --panel: #181818;
  --panel-light: #202020;
  --paper: #f4efe4;
  --muted: #aaa69d;
  --line: rgba(244, 239, 228, 0.14);
  --gold: #ffbd3e;
  --gold-bright: #ffd777;
  --black: #050505;
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 189, 62, 0.14), transparent 28rem),
    radial-gradient(circle at 4% 56%, rgba(255, 189, 62, 0.06), transparent 25rem),
    var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; }

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 11, 11, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 220px;
  height: 52px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-links a {
  padding: 9px 12px;
  color: #d8d2c7;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
}

.top-links a:hover,
.top-links a:focus-visible {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

.store-hero {
  padding: clamp(72px, 10vw, 130px) 0 58px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold);
}

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

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(4.3rem, 12vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

h1 span { color: var(--gold); }

.hero-copy {
  max-width: 720px;
  margin-bottom: 0;
  color: #c8c2b8;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.store-switcher {
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.store-switcher a {
  min-height: 72px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--paper);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease;
}

.store-switcher a:hover,
.store-switcher a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 189, 62, 0.5);
}

.store-switcher a.active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.store-switcher small {
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-switcher .active small { color: rgba(5, 5, 5, 0.65); }

.category-nav {
  padding: 12px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 16px;
  scrollbar-width: thin;
}

.category-nav a {
  flex: 0 0 auto;
  padding: 9px 12px;
  color: #d8d2c7;
  background: var(--panel);
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 850;
}

.category-nav a:hover,
.category-nav a:focus-visible { color: var(--gold); }

.section { padding: 80px 0; }

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

.section-head {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.65fr);
  gap: 34px;
  align-items: end;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.section-head > p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 189, 62, 0.13), transparent 35%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.store-product-image {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: #77736c;
  background:
    linear-gradient(145deg, rgba(255, 189, 62, 0.1), transparent),
    #111;
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.product-visual-live { background: #fff; }

.product-photo {
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
}

.store-product-body { padding: 22px; }

.product-number {
  color: rgba(244, 239, 228, 0.09);
  font-size: 5.8rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
}

.tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 8px;
  color: var(--gold);
  background: rgba(255, 189, 62, 0.08);
  border: 1px solid rgba(255, 189, 62, 0.18);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.product-card p {
  min-height: 64px;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 0.88rem;
}

.store-product-meta {
  margin-bottom: 16px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.store-product-meta span {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-product-meta strong { font-size: 0.8rem; }

.store-product-button {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  color: #848079;
  background: #101010;
  border: 1px dashed #44413d;
  border-radius: 10px;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: not-allowed;
}

.store-product-button.product-link {
  display: grid;
  place-items: center;
  color: #15100a;
  background: var(--gold);
  border-color: var(--gold);
  border-style: solid;
  cursor: pointer;
  text-decoration: none;
}

.store-product-button.product-link:hover { background: #ffd475; }

.store-product-note {
  display: block;
  margin-top: 9px;
  color: #77736c;
  font-size: 0.64rem;
  text-align: center;
}

.category-placeholder {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 50px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.category-grid-placeholder { grid-column: 1 / -1; }

.category-placeholder h3 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
}

.category-placeholder p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.category-status {
  padding: 9px 11px;
  color: var(--black);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.coming-main {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 70px 0 100px;
}

.coming-panel {
  position: relative;
  padding: clamp(36px, 8vw, 90px);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
}

.coming-panel::after {
  content: attr(data-store);
  position: absolute;
  right: -12px;
  bottom: -30px;
  color: rgba(255, 189, 62, 0.04);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.coming-panel > * { position: relative; z-index: 1; }

.coming-panel h1 { max-width: 900px; }

.coming-panel .store-switcher { margin-top: 42px; margin-bottom: 0; }

.site-footer {
  padding: 38px 0 50px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.75fr);
  gap: 28px;
}

.site-footer p { margin-bottom: 0; }

.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--gold); }

@media (max-width: 780px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .brand-logo { width: 170px; height: 46px; }
  .top-links a:nth-child(2) { display: none; }
  .store-switcher { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .product-grid { grid-template-columns: 1fr; }
  .category-placeholder { grid-template-columns: 1fr; }
  .category-status { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(4rem, 20vw, 7rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
