:root {
  --black: #0b0b0b;
  --gold: #c9a24d;
  --soft-gold: rgba(201,162,77,0.3);
  --white: #f5f5f5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

/* ---------- Global ---------- */
section {
  padding: 120px 8%;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

p {
  max-width: 650px;
  opacity: 0.85;
}

/* ---------- Hero ---------- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a1a, #000);
}

.hero h1 {
  font-size: 4rem;
  color: var(--gold);
}

.hero span {
  display: block;
  font-size: 1rem;
  letter-spacing: 4px;
  margin-top: 20px;
  color: var(--soft-gold);
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Story ---------- */
.story {
  display: flex;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.story img {
  width: 420px;
  height: 520px;
  object-fit: cover;
  border: 1px solid var(--soft-gold);
}

/* ---------- Product ---------- */
.product {
  background: linear-gradient(to bottom, #000, #111);
}

.product-box {
  border: 1px solid var(--soft-gold);
  padding: 60px;
  max-width: 800px;
}

.product-box h3 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 15px;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.gallery img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: grayscale(30%);
  transition: 0.5s ease;
  border: 1px solid var(--soft-gold);
}

.gallery img:hover {
  filter: grayscale(0);
  transform: scale(1.02);
}

/* ---------- Footer ---------- */
footer {
  padding: 60px 8%;
  text-align: center;
  border-top: 1px solid var(--soft-gold);
  font-size: 0.9rem;
  opacity: 0.7;
}

footer img {
  width: 32px;
  height: 32px;
  margin: 0 8px;
  vertical-align: middle;
}

footer a {
  color: var(--gold);
  margin: 0 10px;
  text-decoration: none;
}