@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --black:   #0a0008;
  --deep:    #110014;
  --purple1: #2a0a35;
  --purple2: #4b1060;
  --accent:  #9b30cc;
  --red:     #8b1a2f;
  --rose:    #c0395a;
  --petal:   #e8688a;
  --cream:   #f0dff5;
  --mist:    #c9b8d8;
  --glow:    #cc66ff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: linear-gradient(to bottom, rgba(10,0,8,0.97), transparent);
  backdrop-filter: blur(2px);
}
.nav-logo {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.05rem;
  color: var(--glow);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-shadow: 0 0 18px rgba(204,102,255,0.5);
  white-space: nowrap;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s, text-shadow 0.25s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--petal);
  text-shadow: 0 0 12px rgba(224,104,138,0.6);
}

/* HAMBURGER BUTTON */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.2rem;
  height: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--mist);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
@media (max-width: 640px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    background: rgba(10,0,8,0.97);
  }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0.5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(155,48,204,0.15);
  }
  .nav-links li:last-child a { border-bottom: none; }
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(155,48,204,0.15);
  padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'Cinzel Decorative', cursive; font-size: 0.85rem; color: var(--glow); opacity: 0.6; }
.footer-copy { font-size: 0.75rem; color: rgba(201,184,216,0.4); font-family: 'Cormorant Garamond', serif; font-style: italic; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(201,184,216,0.4); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--petal); }

/* BUTTONS */
.btn {
  display: inline-block; padding: 0.75rem 2rem; border-radius: 2px;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.3s ease; font-family: 'DM Sans', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple2), var(--rose));
  color: var(--cream); box-shadow: 0 4px 24px rgba(155,48,204,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(155,48,204,0.55); }
.btn-outline {
  background: transparent; color: var(--mist);
  border: 1px solid rgba(201,184,216,0.3);
}
.btn-outline:hover { border-color: var(--petal); color: var(--petal); box-shadow: 0 0 16px rgba(224,104,138,0.2); }

/* SECTION HEADINGS */
.section-heading {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--glow); margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(204,102,255,0.25);
}
.section-rule { width: 80px; height: 1px; background: linear-gradient(to right, var(--rose), transparent); margin-bottom: 2.5rem; }
.ornament { text-align: center; margin: 1.5rem 0 2.5rem; color: rgba(155,48,204,0.35); font-size: 1.2rem; letter-spacing: 0.5em; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* AGE GATE */
#age-gate {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(10,0,8,0.97); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
#age-gate.hidden { display: none; }
.age-gate-box {
  text-align: center; padding: 3rem 3.5rem; max-width: 480px;
  background: rgba(42,10,53,0.7); border: 1px solid rgba(155,48,204,0.35);
  border-radius: 4px; box-shadow: 0 0 60px rgba(155,48,204,0.2);
}
.age-gate-symbol { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }
.age-gate-title { font-family: 'Cinzel Decorative', cursive; font-size: 1.4rem; color: var(--glow); margin-bottom: 0.8rem; text-shadow: 0 0 20px rgba(204,102,255,0.4); }
.age-gate-sub { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--mist); line-height: 1.7; margin-bottom: 0.6rem; }
.age-gate-warning { font-size: 0.75rem; color: rgba(201,184,216,0.4); letter-spacing: 0.1em; margin-bottom: 2rem; line-height: 1.6; }
.age-gate-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.age-gate-yes {
  padding: 0.75rem 2rem; background: linear-gradient(135deg, var(--purple2), var(--rose));
  color: var(--cream); border: none; border-radius: 2px; font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
  box-shadow: 0 4px 24px rgba(155,48,204,0.35); transition: all 0.3s;
}
.age-gate-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(155,48,204,0.55); }
.age-gate-no {
  padding: 0.75rem 2rem; background: transparent; color: var(--mist);
  border: 1px solid rgba(201,184,216,0.25); border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.age-gate-no:hover { border-color: var(--rose); color: var(--rose); }
