:root {
  --bg: #0f0f14;
  --bg-soft: #161622;
  --text: #f4f3f8;
  --text-muted: #c8c6d3;
  --accent: #d8b56a;
  --card: #1f1f2b;
  --border: #2b2b3d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(180deg, #101019 0%, #0b0b10 100%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  background: rgba(15, 15, 20, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.logo {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  text-decoration: none;
  font-size: 1.6rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

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

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.lead,
.section-copy {
  color: var(--text-muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #121212;
}

.btn-secondary {
  border-color: var(--border);
  color: var(--text);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.hero-card ul {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.collection,
.about,
.cta {
  padding: 4rem 0;
}

.alt {
  background: var(--bg-soft);
}

.product-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
}

.product-card p {
  color: var(--text-muted);
}

.product-card span {
  color: var(--accent);
  font-weight: 700;
}

.about p {
  max-width: 70ch;
  color: var(--text-muted);
}

.cta-wrap {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #1b1b2d 0%, #141420 100%);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.subscribe-form {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.subscribe-form input {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #0c0c14;
  color: var(--text);
  padding: 0.65rem 0.95rem;
  min-width: 240px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
}

.footer-wrap a {
  color: var(--accent);
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 850px) {
  .hero-grid,
  .product-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
