:root {
  --bg: #090908;
  --panel: #141210;
  --text: #e7e0d2;
  --muted: #a99f90;
  --line: #302b25;
  --accent: #c9b27e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: radial-gradient(circle at top, #1a1714 0, var(--bg) 45%);
  color: var(--text);
  line-height: 1.6;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(9, 9, 8, 0.92);
  backdrop-filter: blur(8px);
}

.site-header h1 {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a,
.button {
  color: var(--text);
  text-decoration: none;
}

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

.hero {
  min-height: 70vh;
  display: grid;
  place-content: center;
  padding: clamp(2rem, 8vw, 6rem);
  text-align: center;
}

.hero h2 {
  max-width: 760px;
  margin: 0 auto 1rem;
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 0.95;
}

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

.section {
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-top: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.25rem;
}

.product-image {
  display: grid;
  place-content: center;
  min-height: 220px;
  border: 1px dashed var(--line);
  color: var(--muted);
  margin-bottom: 1rem;
}

.price {
  color: var(--accent);
  font-weight: bold;
}

.button {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.button:hover {
  background: var(--accent);
  color: var(--bg);
}

footer {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
