:root {
  --bg: #0b0918;
  --bg-2: #12101f;
  --card: #161326;
  --gold: #e8c547;
  --gold-2: #f5d76e;
  --pink: #e83e6b;
  --pink-2: #ff4d7a;
  --text: #f4f1e8;
  --muted: #9a96ab;
  --line: rgba(232, 197, 71, 0.22);
  --green: #1fa855;
}

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

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* AGE GATE */
.gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 6, 16, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gate.hidden { display: none; }

.gate-card {
  width: min(460px, 100%);
  background: #f7f1de;
  color: #16120a;
  border: 2px solid var(--gold);
  border-radius: 18px;
  padding: 22px 22px 20px;
}

.gate-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #e6dcb8;
  margin-bottom: 16px;
}

.brand-mini {
  display: flex;
  gap: 10px;
  align-items: center;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  color: var(--gold);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
}

.brand-mini small {
  display: block;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: #6d6756;
}

.plus18 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.gate-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.gate-card p {
  color: #5c5748;
  font-size: 14px;
  margin-bottom: 12px;
}

.checks {
  list-style: none;
  font-size: 14px;
  margin: 10px 0 18px;
}

.checks li {
  display: flex;
  gap: 8px;
  margin: 8px 0;
}

.tick {
  color: #c9a227;
  font-weight: 800;
}

.gate-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 22px;
  font-size: 14px;
}

.btn-gold { background: var(--gold); color: #1a1404; }
.btn-gold:hover { background: var(--gold-2); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-ghost { background: transparent; color: #5c5748; }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

/* TOP BAR */
.topbar {
  background: var(--gold);
  color: #1a1404;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 28px;
}

.topbar span { white-space: nowrap; }

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 9, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo b {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #d7d2c4;
}

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

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search {
  background: #1c1830;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  width: 180px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 48px 8vw 40px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(232, 62, 107, 0.18), transparent 40%),
    linear-gradient(90deg, #0b0918 42%, rgba(11, 9, 24, 0.35) 100%);
  z-index: 0;
}

.hero-copy,
.hero-art { position: relative; z-index: 1; }

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 10px 0 16px;
}

h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  max-width: 520px;
  color: #cfc9b8;
  margin-bottom: 22px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.stats { display: flex; gap: 28px; }

.stats b {
  display: block;
  color: var(--gold);
  font-size: 26px;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
}

.portrait {
  width: min(420px, 100%);
  aspect-ratio: 1;
  margin-left: auto;
  border-radius: 50%;
  border: 6px solid rgba(232, 197, 71, 0.35);
  background: radial-gradient(circle at 30% 20%, #3a2a55, #1a1228 60%);
  box-shadow: 0 0 0 18px rgba(232, 62, 107, 0.08);
  position: relative;
  overflow: hidden;
}

.portrait span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #c9b36a;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.live {
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}

section { padding: 30px 8vw; }

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 40px);
  margin: 8px 0 16px;
}

h2 em {
  color: var(--gold);
  font-style: italic;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.card h3 { margin-bottom: 8px; }

.card p {
  color: var(--muted);
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.bullets {
  margin: 16px 0 22px;
  color: #d8d3c4;
}

.bullets li { margin: 8px 0; }

.profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.profile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.ph {
  height: 210px;
  background: linear-gradient(160deg, #3b2a58, #1a132c);
  display: grid;
  place-items: center;
  color: #cbb56a;
  font-family: "Playfair Display", serif;
  font-size: 28px;
}

.profile .meta { padding: 14px; }

.profile h3 {
  font-size: 18px;
  text-transform: lowercase;
}

.tag {
  color: var(--gold);
  font-size: 13px;
  margin: 4px 0 8px;
}

.verified {
  color: #7d77a0;
  font-size: 12px;
}

footer {
  background: #080714;
  border-top: 1px solid var(--line);
  padding: 36px 8vw 20px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

footer h4 {
  color: var(--gold);
  margin-bottom: 10px;
}

footer a,
footer p {
  color: #aea8bd;
  font-size: 14px;
}

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

.copy {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  color: #7d7790;
  font-size: 13px;
}

.disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #6d687c;
  max-width: 820px;
}

@media (max-width: 900px) {
  .topbar { display: none; }
  header { flex-wrap: wrap; }
  nav { display: none; }
  .hero,
  .about,
  .grid-3,
  .profiles,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .portrait { margin: 24px auto 0; }
  .search { display: none; }
}
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #1c1830;
  cursor: pointer;
  padding: 10px 9px;
  flex-direction: column;
  justify-content: space-between;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .topbar { display: none; }
  header { flex-wrap: wrap; padding: 10px 16px; }
  .menu-btn { display: flex; }
  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    order: 4;
    background: #12101f;
    border: 1px solid var(--line);
    border-radius: 12px;
  }
  body.nav-open nav { display: flex; }
  nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }
  .header-cta {
    width: 100%;
    order: 5;
    display: none;
    flex-direction: column;
  }
  body.nav-open .header-cta { display: flex; }
  .hero, .about, .grid-3, .profiles, .foot-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 28px 18px; }
  section { padding: 36px 18px; }
  .portrait { margin: 20px auto 0; width: min(280px, 80vw); }
  .search { width: 100%; }
}
.float-btns {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.float-call { background: #e83e6b; }
.float-wa { background: #1fa855; }
@media (max-width: 900px) {
  .float-btn { width: 52px; padding: 0; font-size: 0; }
}
.contact-wrap { padding: 48px 6vw; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
  background: #161326;
  border: 1px solid rgba(232,197,71,.22);
  border-radius: 16px;
  padding: 22px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #e8c547;
  font-weight: 600;
}

.contact-form label.full,
.contact-form .btn { grid-column: 1 / -1; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #0f0d1c;
  border: 1px solid rgba(232,197,71,.22);
  color: #f4f1e8;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form select {
  background-image: linear-gradient(45deg, transparent 50%, #e8c547 50%),
    linear-gradient(135deg, #e8c547 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #7d7790; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #e8c547;
  box-shadow: 0 0 0 3px rgba(232,197,71,.15);
}

@media (max-width: 900px) {
  .contact-grid,
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .btn { width: 100%; }
}