:root {
  --bg: #0b0d07;
  --bg-soft: #121409;
  --panel: #15170d;
  --panel-light: #1c1e11;
  --moss: #87934f;
  --moss-light: #b8c778;
  --gold: #b69953;
  --gold-light: #d3bd7a;
  --cream: #d8d1ae;
  --cream-muted: #aaa486;
  --line: rgba(192, 169, 92, 0.35);
  --serif: "Cormorant Garamond", serif;
  --mono: "JetBrains Mono", monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(116, 126, 61, 0.09), transparent 28%),
    var(--bg);
  color: var(--cream);
  font-family: var(--mono);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.2;
}

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

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

.header {
  position: relative;
  z-index: 10;
  height: 74px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(8, 10, 5, 0.94);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.logo__image {
  width: auto;
  height: 58px;
  max-width: 120px;
  object-fit: contain;
}

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

.nav a {
  position: relative;
  padding: 27px 0 23px;
  color: var(--cream-muted);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 17px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(211, 189, 122, 0.25);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}

.header__contact {
  justify-self: end;
  padding: 10px 18px;
  border: 1px solid rgba(182, 153, 83, 0.55);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.header__contact:hover {
  background: var(--gold);
  color: #101108;
}

.shop-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.shop-hero__image,
.shop-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.shop-hero__image {
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) saturate(0.96) contrast(1.02);
}

.shop-hero__overlay {
  background: rgba(0, 0, 0, 0.4);
}

.shop-hero__content {
  position: relative;
  z-index: 2;
  width: min(1400px, 92%);
  min-height: 560px;
  margin: 0 auto;
  padding: 74px 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.back-link {
  margin-bottom: 34px;
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(211, 189, 122, 0.58);
  border-radius: 999px;
  background: rgba(8, 10, 5, 0.58);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.back-link::before {
  content: "←";
  font-size: 14px;
  letter-spacing: 0;
}

.back-link:hover {
  border-color: var(--gold-light);
  background: var(--gold);
  color: #101108;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--moss-light);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.shop-hero h1 {
  display: flex;
  flex-direction: column;
  color: #d6c99e;
  font-family: var(--serif);
  font-size: clamp(76px, 9vw, 136px);
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-shadow: 0 6px 35px rgba(0,0,0,.8);
}

.shop-hero h1 span {
  margin-left: 0.72em;
}

.shop-hero__text {
  max-width: 630px;
  margin-top: 36px;
  color: rgba(216, 209, 174, 0.78);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
}

.shop-shell {
  width: min(1400px, 92%);
  margin: 0 auto;
  padding: 74px 0 84px;
}

.shop-toolbar {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-filter {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(182, 153, 83, .42);
  border-radius: 999px;
  background: transparent;
  color: var(--cream-muted);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.shop-filter.is-active,
.shop-filter:hover {
  background: var(--gold);
  color: #101108;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: transparent;
  gap: 0;
}

.product-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(24, 27, 14, .96), rgba(10, 12, 6, .96));
}

.product-card[hidden] {
  display: none;
}

.product-card__image {
  height: 300px;
  object-fit: cover;
  filter: brightness(.92) saturate(.95) contrast(1.03);
}

.product-card__coming-image {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(211, 189, 122, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(21, 24, 13, 0.98), rgba(7, 9, 5, 0.98)),
    url("./assets/hero-bg.png") center / cover;
  background-blend-mode: screen, normal, luminosity;
  filter: none;
  overflow: hidden;
}

.product-card__coming-image span {
  color: var(--gold-light);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 7px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  text-shadow:
    0 0 18px rgba(211, 189, 122, 0.28),
    0 10px 34px rgba(0, 0, 0, 0.9);
}

.product-card__body {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.product-card__type {
  margin-bottom: 14px;
  color: var(--moss-light);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.product-card h2 {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.product-card p:not(.product-card__type) {
  margin-top: 18px;
  color: rgba(216, 209, 174, 0.73);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
}

.product-card__bottom {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-card__bottom span {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 2px;
}

.product-card__bottom a {
  padding: 11px 16px;
  border: 1px solid rgba(182, 153, 83, .7);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.product-card__bottom a:hover {
  background: var(--gold);
  color: #101108;
}

.shop-empty {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  color: var(--cream-muted);
  font-family: var(--serif);
  font-size: 22px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(24, 27, 14, .96), rgba(10, 12, 6, .96));
}

.shop-info {
  width: min(1400px, 92%);
  margin: 0 auto 100px;
  padding: 45px;
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 50px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(24, 27, 14, .93), rgba(10, 12, 6, .96));
}

.shop-info h2 {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.05;
}

.shop-info > p {
  color: var(--cream-muted);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.48;
}

.footer {
  min-height: 75px;
  padding: 22px 4vw;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: rgba(170, 164, 134, 0.6);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer a {
  color: var(--moss-light);
}

.site-particles {
  position: fixed;
  inset: 0;
  z-index: 50;
  overflow: hidden;
  pointer-events: none;
}

.site-particles span {
  position: absolute;
  bottom: -30px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(226, 198, 108, 0.9);
  box-shadow:
    0 0 7px rgba(226, 198, 108, 0.8),
    0 0 16px rgba(226, 198, 108, 0.35);
  opacity: 0;
  animation: siteParticleFloat 15s linear infinite, siteParticleGlow 3.5s ease-in-out infinite alternate;
}

.site-particles span:nth-child(1) { left: 4%; animation-delay: 0s; animation-duration: 17s; }
.site-particles span:nth-child(2) { left: 12%; animation-delay: 5s; animation-duration: 20s; }
.site-particles span:nth-child(3) { left: 21%; animation-delay: 2s; animation-duration: 14s; }
.site-particles span:nth-child(4) { left: 33%; animation-delay: 8s; animation-duration: 18s; }
.site-particles span:nth-child(5) { left: 44%; animation-delay: 4s; animation-duration: 22s; }
.site-particles span:nth-child(6) { left: 52%; animation-delay: 10s; animation-duration: 16s; }
.site-particles span:nth-child(7) { left: 61%; animation-delay: 1s; animation-duration: 19s; }
.site-particles span:nth-child(8) { left: 70%; animation-delay: 7s; animation-duration: 15s; }
.site-particles span:nth-child(9) { left: 78%; animation-delay: 3s; animation-duration: 21s; }
.site-particles span:nth-child(10) { left: 86%; animation-delay: 11s; animation-duration: 17s; }
.site-particles span:nth-child(11) { left: 93%; animation-delay: 6s; animation-duration: 23s; }
.site-particles span:nth-child(12) { left: 50%; animation-delay: 9s; animation-duration: 16s; }

@keyframes siteParticleFloat {
  0% {
    transform: translate3d(0, 30px, 0) scale(0.5);
    opacity: 0;
  }

  10% {
    opacity: 0.65;
  }

  70% {
    opacity: 0.45;
  }

  100% {
    transform: translate3d(45px, -110vh, 0) scale(1.3);
    opacity: 0;
  }
}

@keyframes siteParticleGlow {
  from { filter: brightness(0.8); }
  to { filter: brightness(1.6); }
}

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

  .nav {
    display: none;
  }

  .header__contact {
    justify-self: end;
  }

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

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

@media (max-width: 700px) {
  .header {
    height: 64px;
    padding: 0 20px;
  }

  .logo__image {
    height: 48px;
    max-width: 96px;
  }

  .header__contact {
    padding: 8px 13px;
    font-size: 10px;
  }

  .shop-hero,
  .shop-hero__content {
    min-height: 620px;
  }

  .shop-hero__content {
    justify-content: flex-end;
    padding-bottom: 54px;
  }

  .shop-hero h1 {
    font-size: clamp(64px, 22vw, 100px);
  }

  .shop-hero h1 span {
    margin-left: 0;
  }

  .shop-hero__text {
    font-size: 18px;
  }

  .shop-shell {
    padding: 54px 0 60px;
  }

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

  .product-card {
    min-height: auto;
  }

  .product-card__image {
    height: 230px;
  }

  .product-card__body,
  .shop-info {
    padding: 26px 22px;
  }

  .shop-info {
    margin-bottom: 70px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-particles {
    display: none;
  }
}
