:root {
  --bg: #0b0e14;
  --bg-alt: #10141d;
  --surface: #151a25;
  --surface-border: #262d3a;
  --text: #e8e9ed;
  --text-muted: #9aa2b1;
  --gold: #c9a227;
  --gold-bright: #e0bd4a;
  --red: #9c2b2b;
  --red-bright: #d64550;
  --blue: #1f5f8b;
  --blue-bright: #4fa3d1;
  --fire: #e0632e;
  --radius: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

a {
  color: var(--gold-bright);
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 14, 20, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--surface-border);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--red-bright), var(--gold-bright) 35%, var(--gold) 65%, var(--blue-bright)) 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.brand-dba {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--gold-bright);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  background:
    radial-gradient(ellipse 55% 70% at 88% 40%, rgba(224, 99, 46, 0.16), transparent 70%),
    radial-gradient(ellipse at top right, rgba(201, 162, 39, 0.10), transparent 60%),
    var(--bg-alt);
  border-bottom: 1px solid var(--surface-border);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-art {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 420px;
  max-width: 46vw;
  z-index: 0;
  pointer-events: none;
}

.hero-art .art-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(224, 99, 46, 0.45), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.hero-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.94;
  -webkit-mask-image: radial-gradient(ellipse 68% 72% at 50% 46%, #000 55%, transparent 82%);
  mask-image: radial-gradient(ellipse 68% 72% at 50% 46%, #000 55%, transparent 82%);
}

.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
}

.hero-sub {
  font-size: 17px;
  max-width: 560px;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #10141d;
}

.btn-primary:hover {
  background: var(--gold-bright);
}

.btn-secondary {
  background: transparent;
  border-color: var(--surface-border);
  color: var(--text);
  width: 100%;
  text-align: center;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* Inventory */
.inventory {
  padding: 72px 0;
  scroll-margin-top: 88px;
}

.about,
.contact {
  scroll-margin-top: 88px;
}

.inventory h2 {
  font-size: 28px;
}

.disclaimer {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 620px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-top-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.product-card:nth-child(3n+2) {
  border-top-color: var(--red-bright);
}

.product-card:nth-child(3n) {
  border-top-color: var(--blue-bright);
}

.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  padding: 16px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 162, 39, 0.10), transparent 65%),
    var(--bg-alt);
  border-bottom: 1px solid var(--surface-border);
}

.product-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

.card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.card-meta strong {
  color: var(--text);
  font-weight: 500;
}

.card-price {
  margin-top: 14px;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-bright);
  font-family: 'Playfair Display', Georgia, serif;
}

.card-price.tbd {
  font-size: 15px;
  color: var(--red-bright);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.price-unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  margin-left: 2px;
}

.card-cta {
  margin-top: auto;
}

/* About */
.about {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    radial-gradient(ellipse 50% 65% at 8% 60%, rgba(31, 95, 139, 0.18), transparent 70%),
    var(--bg-alt);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: auto;
}

.about-art {
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  width: 300px;
  max-width: 40vw;
  z-index: 0;
  pointer-events: none;
}

.about-art .art-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(79, 163, 209, 0.4), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.about-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.92;
  -webkit-mask-image: radial-gradient(ellipse 68% 72% at 50% 46%, #000 55%, transparent 82%);
  mask-image: radial-gradient(ellipse 68% 72% at 50% 46%, #000 55%, transparent 82%);
}

/* Contact */
.contact {
  padding: 72px 0;
}

.contact-inner {
  max-width: 620px;
}

.contact-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  min-width: 90px;
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

a.contact-value:hover {
  color: var(--gold-bright);
}

/* Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--surface-border);
  background: var(--bg-alt);
}

.footer-name {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-disclosure,
.footer-copyright {
  font-size: 13px;
  margin-bottom: 4px;
}

.footer-copyright {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1000px) {
  .hero-art {
    width: 300px;
    opacity: 0.7;
  }

  .about-art {
    width: 220px;
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .hero-art,
  .about-art {
    display: none;
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .inventory,
  .about,
  .contact {
    padding: 56px 0;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 20px;
  }

  .contact-list li {
    flex-direction: column;
    gap: 4px;
  }
}
