* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= TOP BAR ================= */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.top-left {
  display: flex;
  gap: 18px;
}

.icon {
  cursor: pointer;
  font-size: 20px;
}

.menu-icon {
  font-size: 26px;
  cursor: pointer;
}

/* ================= MENU ================= */
.menu-dropdown {
  position: fixed;
  top: 60px;
  right: 40px;
  background: #000;
  border: 1px solid #333;
  display: none;
  flex-direction: column;
  min-width: 220px;
}

.menu-dropdown a {
  padding: 14px 20px;
  border-bottom: 1px solid #222;
  font-size: 14px;
  letter-spacing: 1px;
}

.menu-dropdown a:hover {
  background: #111;
}

/* ================= HERO ================= */
.hero,
.vault-hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay h1,
.vault-hero h1 {
  font-size: 52px;
  letter-spacing: 2px;
}

.hero-overlay p {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 4px;
}

/* ================= CURATION TEXT ================= */
.curation-line {
  font-size: 64px;
  text-align: center;
  padding: 80px 20px 40px;
  letter-spacing: 4px;
}

/* ================= HOMEPAGE VAULT BOXES ================= */
.home-vaults {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 80px 100px;
}

.home-vault {
  background: #fff;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 24px;
  letter-spacing: 2px;
  transition: transform 0.4s ease;
}

.home-vault:hover {
  transform: translateY(-6px);
}

/* ================= PRODUCTS ================= */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 80px 120px;
}

.product {
  text-align: center;
}

.product img {
  width: 100%;
}

.product h3 {
  margin-top: 16px;
  font-size: 18px;
}

.price {
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.6;
  margin: 6px 0 10px;
}

.product button {
  margin: 6px;
  padding: 10px 18px;
  background: none;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
}

/* ================= TEXT PAGES ================= */
.page {
  max-width: 900px;
  margin: auto;
  padding: 140px 20px;
  line-height: 1.8;
}

/* ================= FOOTER ================= */
footer {
  padding: 60px;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .home-vaults,
  .products {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px;
  }

  .curation-line {
    font-size: 34px;
  }
}
