* {
  box-sizing: border-box;
}

:root {
  --bg: #050913;
  --bg2: #070b15;
  --panel: rgba(255,255,255,.04);
  --text: #f7f3e8;
  --muted: #8b93a8;
  --gold: #c9a84c;
  --gold2: #e8c96a;
  --line: rgba(255,255,255,.1);
  --shadow: 0 28px 90px rgba(0,0,0,.55);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,9,19,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--gold2);
}

.brand-tagline {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 36px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav a:hover {
  color: var(--gold2);
}

.gear-btn {
  border: 1px solid rgba(201,168,76,.55);
  color: var(--gold2);
  background: transparent;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.gear-btn:hover {
  background: rgba(201,168,76,.1);
}

.gear-btn span {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin-left: 8px;
  border-radius: 99px;
  background: var(--gold);
  color: #111;
  font-size: 11px;
}

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 72px);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5,9,19,.97) 0%, rgba(5,9,19,.82) 38%, rgba(5,9,19,.3) 65%, rgba(5,9,19,.08) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 80% 18%, rgba(201,168,76,.14), transparent 28%),
    linear-gradient(0deg, rgba(5,9,19,.95) 0%, transparent 35%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 90vw);
  margin-left: 5vw;
  padding: 80px 0 120px;
}

.eyebrow {
  color: var(--gold2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.eyebrow.boxed {
  display: inline-block;
  border: 1px solid rgba(201,168,76,.4);
  padding: 6px 14px;
  margin-bottom: 28px;
}

h1, h2 {
  margin: 0;
  line-height: .95;
  letter-spacing: -1px;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 900;
}

h1 span, h2 span {
  color: var(--gold2);
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
}

.hero-copy {
  color: var(--muted);
  max-width: 440px;
  font-size: 17px;
  line-height: 1.65;
  margin: 24px 0 36px;
}

.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #130f05;
  transition: opacity .2s, transform .15s;
}

.gold-btn:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.hero-cta {
  min-height: 56px;
  padding: 0 40px;
}

.hero-controls {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}

.hero-dot.active {
  background: var(--gold2);
  border-color: var(--gold2);
}

.hero-arrows {
  display: flex;
  gap: 8px;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color .2s;
}

.hero-arrow:hover {
  border-color: var(--gold);
  color: var(--gold2);
}

/* ── Marquee ── */
.marquee {
  overflow: hidden;
  background: var(--gold);
  color: #130f05;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,.15);
  border-bottom: 1px solid rgba(0,0,0,.15);
}

.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.marquee-track .dot {
  opacity: .5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Sections ── */
.section {
  padding: 80px 5vw;
}

.section-head {
  margin-bottom: 40px;
}

.section-sub {
  color: var(--muted);
  font-size: 15px;
  margin: 14px 0 0;
  line-height: 1.6;
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .25s;
}

.product-card:hover {
  border-color: rgba(201,168,76,.25);
}

.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #080d18;
  overflow: hidden;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #130f05;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 8px;
}

.product-info {
  padding: 16px 18px 18px;
}

.product-series {
  color: var(--gold2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.product-info h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.product-color {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 16px;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  color: var(--gold2);
  font-weight: 900;
  font-size: 16px;
}

.add-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 6px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  transition: color .2s;
}

.add-btn:hover {
  color: var(--gold2);
}

/* ── Stats Bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}

.stat {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat-num {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-divider {
  display: grid;
  place-items: center;
  padding: 28px 0;
}

.scroll-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 16px;
}

/* ── Manifesto ── */
.manifesto {
  margin: 0 5vw 0;
  padding: 90px 8vw;
  border: 1px solid rgba(201,168,76,.18);
  background: linear-gradient(135deg, rgba(201,168,76,.06), rgba(255,255,255,.02));
  text-align: center;
}

.manifesto p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 17px;
  max-width: 720px;
  margin: 28px auto 0;
}

/* ── Newsletter ── */
.newsletter {
  padding: 90px 5vw;
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--line);
}

.newsletter-form {
  display: flex;
  width: min(640px, 92vw);
  margin: 32px auto 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 6px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  padding: 0 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-form input::placeholder {
  color: #5a6275;
}

.newsletter-form button {
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

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

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

/* ── Cart Drawer ── */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0,0,0,.65);
  display: none;
  justify-content: flex-end;
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  width: min(440px, 94vw);
  height: 100%;
  background: var(--bg2);
  border-left: 1px solid var(--line);
  padding: 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  animation: slideIn .25s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.cart-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 28px;
}

.cart-empty {
  color: var(--muted);
  text-align: center;
  padding: 60px 0;
  font-size: 15px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.cart-item img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
}

.cart-item-series {
  color: var(--gold2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.cart-item-price {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 10px;
}

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

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.qty-btn:hover {
  color: var(--gold2);
}

.qty-value {
  width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.remove-btn {
  border: 0;
  background: transparent;
  color: #c45c5c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 0;
}

.remove-btn:hover {
  color: #e07070;
}

.cart-footer {
  border-top: 1px solid var(--line);
  padding: 24px 28px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 15px;
}

.cart-total-row strong {
  font-size: 22px;
  color: var(--gold2);
}

.checkout {
  width: 100%;
  min-height: 52px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #130f05;
  transition: opacity .2s;
}

.checkout:hover:not(:disabled) {
  opacity: .9;
}

.checkout:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.checkout-note {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  margin: 12px 0 0;
  line-height: 1.5;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg2);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold2);
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 200;
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── Footer ── */
footer {
  padding: 40px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.brand-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-footer .brand-name {
  font-size: 14px;
}

.brand-footer .brand-tagline {
  font-size: 8px;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-slide {
    background-image:
      linear-gradient(0deg, rgba(5,9,19,.96) 0%, rgba(5,9,19,.7) 50%, rgba(5,9,19,.2) 100%),
      var(--hero-img);
    background-position: center top;
  }

  .hero-content {
    align-self: end;
    padding-bottom: 100px;
  }

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

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 18px;
  }

  .hero-content {
    margin-left: 18px;
    width: calc(100% - 36px);
    padding-bottom: 110px;
  }

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

  .section {
    padding: 60px 18px;
  }

  .manifesto {
    margin: 0 18px;
    padding: 60px 24px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 6px;
  }

  .newsletter-form input {
    min-height: 48px;
    padding: 0 16px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}
