:root {
  --bg: #0c0b0a;
  --bg-soft: #161412;
  --text: #e8e2d9;
  --muted: #9a9186;
  --accent: #c4a574;
  --line: #2a2622;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 6vw;
  position: sticky;
  top: 0;
  background: rgba(12, 11, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--accent); font-style: italic; }

nav { display: flex; gap: 1.5rem; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav a:hover { color: var(--text); }

.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 6rem 6vw 4rem;
  background:
    radial-gradient(ellipse at top, #1c1814 0%, var(--bg) 60%);
}

.hero-content { max-width: 40rem; }

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

h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.15; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; }

.lede { color: var(--muted); max-width: 34rem; margin-bottom: 2rem; }

.btn {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.btn:hover { background: var(--accent); color: var(--bg); }

section { padding: 4.5rem 6vw; }
.gallery, .shop { background: var(--bg-soft); }

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

figure img, .product img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

figcaption, .product h3 {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.section-note { color: var(--muted); margin-bottom: 2rem; }

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

.product h3 { font-family: "Cormorant Garamond", serif; font-size: 1.35rem; }
.product p { color: var(--muted); font-size: 0.9rem; }
.price { color: var(--text) !important; margin: 0.4rem 0 0.8rem; }

.buy {
  display: inline-block;
  margin-top: 0.15rem;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
}

.about p, .contact p { max-width: 38rem; color: var(--muted); margin-bottom: 1rem; }
.contact a { color: var(--accent); }

footer {
  padding: 2rem 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 700px) {
  nav { display: none; }
  .hero { min-height: 60vh; padding-top: 4rem; }
}
