:root {
  --black: #050505;
  --dark: #0d0d0d;
  --gold: #d4af37;
  --gold-gradient: linear-gradient(
    135deg,
    #bf953f,
    #fcf6ba,
    #b38728,
    #fbf5b7,
    #aa771c
  );
  --text: #ffffff;
  /* Pure white for max sharpness */
  --text-2: #e0e0e0;
  /* Bright silver */
  --muted: #a6a6a6;
  --border: rgba(212, 175, 55, 0.25);
}

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

body {
  background: var(--black);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  /* Increased from 300 for better text rendering */
  overflow-x: hidden;
  /* Forces crisp, high-quality text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== AGE GATE ===== */
#age-gate {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.gate-box {
  max-width: 560px;
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 52px 40px;
  position: relative;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.8);
}

.gate-box::before,
.gate-box::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
}

.gate-box::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.gate-box::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.gate-logo {
  width: 180px;
  display: block;
  margin: 0 auto 26px;
  filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.3));
}

.gate-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 700;
}

.gate-text {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text-2);
  margin-bottom: 34px;
  font-weight: 400;
}

.gate-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-yes {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 14px 56px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.3);
}

.btn-no {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 56px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.btn-no:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.gate-warn {
  margin-top: 26px;
  font-size: 0.75rem;
  color: #a0a0a0;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.6;
}

/* ===== MAIN SITE ===== */
#main-site {
  display: none;
  opacity: 0;
  transition: opacity 0.9s ease;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  height: 50px;
}

/* Increased Header Logo Size */
.nav-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: 2px;
  color: var(--gold) !important;
}

.nav-cta:hover {
  background: rgba(212, 175, 55, 0.12);
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-logo {
  width: min(320px, 75vw);
  margin-bottom: 34px;
  filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.25));
  animation: fadeUp 1.1s ease forwards;
  opacity: 0;
}

.hero-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.15;
  animation: fadeUp 1.1s ease 0.25s forwards;
  opacity: 0;
}

.hero-sub {
  margin-top: 18px;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #e0e0e0;
  animation: fadeUp 1.1s ease 0.45s forwards;
  opacity: 0;
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #b0b0b0;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeIn 1.6s ease 0.95s forwards;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.1s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 5%;
}

.section-label {
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: #fff;
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px auto 36px;
  max-width: 320px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divider-diamond {
  color: var(--gold);
  font-size: 10px;
}

.section-body {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--text-2);
}

.section-body + .section-body {
  margin-top: 18px;
}

#about {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Cards */
#collection {
  background: var(--black);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--dark);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 46px 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  z-index: 10;
}

.card-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 14px;
}

.card-text {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.9;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.tag {
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
}

/* Contact */
#contact {
  background: var(--dark);
  text-align: center;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-gradient);
  color: #000;
  text-decoration: none;
  padding: 16px 48px;
  margin-top: 34px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.25);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 34px;
  max-width: 860px;
  margin: 46px auto 0;
}

.contact-item h4 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.contact-item p,
.contact-item a {
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--gold);
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  padding: 50px 5%;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  height: 65px;
  /* Increased Footer Logo Size */
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.15));
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  color: #ffffff;
  /* Pure White */
  text-decoration: none;
  font-weight: 600;
  /* Bolder */
  font-size: 0.85rem;
  /* Larger */
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-warning {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: 0.8rem;
  /* Larger */
  font-weight: 500;
  /* Bolder */
  line-height: 1.75;
  color: #e0e0e0;
  /* Bright Silver */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.8rem;
  /* Larger */
  font-weight: 500;
  /* Bolder */
  color: #c4c4c4;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .gate-btns {
    flex-direction: column;
  }

  .btn-yes,
  .btn-no {
    padding: 14px 30px;
  }
}
