:root {
  --bg: #0d0d0d;
  --panel: #141414;
  --text: #f1f1f1;
  --muted: #9a9a9a;
  --gold: #c9a24d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* NAV */
.navbar {
  border-bottom: 1px solid #1f1f1f;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 22px 20px;
  display: flex;
  justify-content: space-between;
}

.logo {
  letter-spacing: 2px;
  color: var(--gold);
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
}

/* HERO */
.hero {
  padding: 140px 20px;
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.05;
}

.hero p {
  margin-top: 30px;
  color: var(--muted);
  max-width: 420px;
}

/* VISUAL */
.visual img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

/* TEXT MOMENT */
.text-moment {
  padding: 160px 20px;
  text-align: center;
}

.text-moment h2 {
  font-size: 56px;
  color: var(--gold);
}

/* PRODUCTS */
.products {
  padding: 120px 20px;
  background: var(--panel);
}

.products h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-grid span {
  color: var(--gold);
}

.product-grid p {
  color: var(--muted);
}

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-text {
  padding: 120px;
}

.split-text h2 {
  font-size: 48px;
}

.split-text p {
  margin-top: 20px;
  color: var(--muted);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* EVENTS */
.events {
  padding: 120px 20px;
  max-width: 700px;
  margin: auto;
}

.events p {
  color: var(--muted);
}

/* CTA */
.cta {
  padding: 160px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

.cta a {
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 16px 40px;
  color: var(--gold);
}

/* FOOTER */
.footer {
  padding: 50px 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid #1f1f1f;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-text {
    padding: 60px 20px;
  }
}

@media (max-width: 600px) {
  nav {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .text-moment h2 {
    font-size: 36px;
  }
}
