:root {
  --bg: #0b0b0c;
  --panel: #151516;
  --panel-2: #1d1d1f;
  --panel-3: #242426;
  --gold: #d4af37;
  --gold-hover: #e5c158;
  --cream: #f7f4ec;
  --muted: #aaa7a0;
  --border: #343438;
  --green: #22c55e;
  --red: #ef4444;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.5;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { display: block; width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", serif; line-height: 1.08; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.15rem, 4vw, 3.5rem); letter-spacing: -.035em; }
h3 { margin-bottom: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(11,11,12,.88);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand strong { display: block; font-family: "Playfair Display", serif; font-size: 1.35rem; }
.brand small { display: block; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}
.brand-mark--large { width: 64px; height: 64px; margin: 0 auto 24px; font-size: 2rem; }
.desktop-nav { display: flex; gap: 30px; }
.desktop-nav a { color: var(--muted); font-weight: 600; font-size: .92rem; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--cream); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button, .menu-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
}
.count-badge {
  position: absolute;
  right: -3px;
  top: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: .68rem;
  font-weight: 800;
}
.menu-toggle { display: none; }
.menu-toggle span { width: 18px; height: 1px; background: var(--cream); position: absolute; }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.mobile-nav { display: none; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}
.button--gold { color: #121212; background: var(--gold); }
.button--gold:hover { background: var(--gold-hover); transform: translateY(-1px); }
.button--outline { color: var(--cream); border-color: var(--border); background: transparent; }
.button--outline:hover { border-color: var(--gold); color: var(--gold); }
.button--ghost { color: var(--muted); background: transparent; border-color: var(--border); }
.button--wide { width: 100%; }
.text-button { width: 100%; margin-top: 12px; border: 0; background: none; color: var(--muted); text-decoration: underline; }

.hero {
  min-height: 710px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 18% 20%, rgba(212,175,55,.14), transparent 34%),
    linear-gradient(125deg, #0b0b0c 0%, #111113 48%, #080809 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, .72fr);
  gap: 70px;
  align-items: center;
  padding: 80px 0;
}
.hero-copy h1 { margin-bottom: 26px; max-width: 800px; }
.hero-copy h1 span { color: var(--gold); }
.hero-subtitle { max-width: 650px; color: var(--muted); font-size: 1.12rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: #cbc8c0; font-size: .86rem; }

.search-panel {
  padding: 28px;
  border: 1px solid rgba(212,175,55,.22);
  border-radius: var(--radius);
  background: rgba(24,24,26,.92);
  box-shadow: var(--shadow);
}
.search-panel__top { display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.search-panel h2 { margin: 0; font-size: 2rem; }
.secure-chip { padding: 7px 10px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font-size: .72rem; }
label { display: block; color: #d7d4cd; font-size: .8rem; font-weight: 700; }
input, select {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 14px;
  color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  background: #111113;
}
input:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.12); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 14px 0; }
.check-row { display: flex; gap: 12px; align-items: flex-start; margin: 18px 0; }
.check-row input, .check-inline input, .radio-row input { width: auto; min-height: 0; margin: 4px 0 0; accent-color: var(--gold); }
.check-row strong, .check-row small { display: block; }
.check-row small { margin-top: 3px; color: var(--muted); font-weight: 400; }

.stats-strip { border-bottom: 1px solid rgba(255,255,255,.08); background: #111112; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid div { padding: 25px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.stats-grid span { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }

.directory-section, .areas-section, .activity-section, .safety-section, .join-section { padding: 90px 0; }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; margin-bottom: 35px; }
.section-heading h2 { margin-bottom: 8px; }
.section-heading p:last-child { margin: 0; color: var(--muted); }
.directory-actions { display: flex; align-items: center; gap: 12px; }
.sort-control { display: flex; align-items: center; gap: 10px; white-space: nowrap; color: var(--muted); }
.sort-control select { width: auto; margin: 0; }
.mobile-filter-button { display: none; }
.directory-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 28px; }
.filter-sidebar {
  position: sticky;
  top: 96px;
  height: max-content;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
}
.filter-sidebar__header { display: flex; justify-content: space-between; margin-bottom: 20px; }
.filter-sidebar h3 { margin: 0; }
.filter-sidebar label + label, .filter-sidebar fieldset, .filter-sidebar fieldset + button { margin-top: 20px; }
.filter-sidebar fieldset { padding: 0; border: 0; }
.filter-sidebar legend { margin-bottom: 10px; color: var(--cream); font-size: .84rem; font-weight: 700; }
.radio-row, .check-inline { display: flex; gap: 10px; margin: 9px 0; color: var(--muted); font-weight: 500; }
.close-filter { display: none; }
.featured-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 16px;
  background: linear-gradient(110deg, rgba(212,175,55,.12), rgba(255,255,255,.025));
}
.featured-banner h3 { margin-bottom: 4px; }
.featured-banner p { margin: 0; color: var(--muted); }

.profile-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.profile-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  transition: transform .2s ease, border-color .2s ease;
}
.profile-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.55); }
.profile-image-wrap { position: relative; aspect-ratio: 4 / 5; background: #222; overflow: hidden; }
.profile-image { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.profile-card:hover .profile-image { transform: scale(1.025); }
.profile-badges { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; flex-wrap: wrap; gap: 7px; }
.badge { padding: 6px 9px; border-radius: 999px; color: #111; background: var(--gold); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.badge--dark { color: var(--cream); border: 1px solid rgba(255,255,255,.25); background: rgba(11,11,12,.72); backdrop-filter: blur(8px); }
.badge--green { color: #071b0e; background: #7bea9f; }
.favourite {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: white;
  background: rgba(11,11,12,.65);
  backdrop-filter: blur(8px);
}
.favourite.active { color: #111; background: var(--gold); border-color: var(--gold); }
.profile-body { padding: 17px; }
.profile-title-row { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.profile-title-row h3 { margin: 0; font-family: "Playfair Display", serif; font-size: 1.45rem; }
.profile-title-row strong { color: var(--gold); font-size: .95rem; white-space: nowrap; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 7px 12px; margin: 10px 0; color: var(--muted); font-size: .75rem; }
.profile-copy {
  display: -webkit-box;
  min-height: 63px;
  overflow: hidden;
  color: #c5c1ba;
  font-size: .86rem;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.profile-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 16px; }
.profile-actions .button { border-radius: 11px; }
.report-button { min-width: 44px; padding: 0; color: var(--muted); border: 1px solid var(--border); background: transparent; border-radius: 11px; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.pagination button { width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 50%; color: var(--cream); background: transparent; }
.pagination button.active { color: #111; border-color: var(--gold); background: var(--gold); }
.empty-state { padding: 60px 20px; text-align: center; border: 1px dashed var(--border); border-radius: 18px; }
.empty-state .brand-mark { margin: 0 auto 15px; }
.empty-state p { color: var(--muted); }

.areas-section { background: #111112; border-block: 1px solid rgba(255,255,255,.08); }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.area-grid button {
  min-height: 140px;
  padding: 24px;
  text-align: left;
  color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--panel), #111);
}
.area-grid button:hover { border-color: var(--gold); }
.area-grid strong, .area-grid span { display: block; }
.area-grid strong { margin-bottom: 7px; font-family: "Playfair Display", serif; font-size: 1.45rem; }
.area-grid span { color: var(--muted); }

.activity-grid, .safety-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.activity-grid > div:first-child p:last-child, .safety-grid > div:first-child p:last-child { color: var(--muted); }
.activity-list { display: grid; gap: 12px; }
.activity-list article { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: 14px; background: var(--panel); }
.activity-list p { margin: 4px 0; color: var(--muted); }
.activity-list small { color: #77736d; }
.activity-icon { flex: 0 0 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #111; background: var(--gold); font-weight: 800; }

.safety-section { background: linear-gradient(130deg, #111113, #0b0b0c); border-block: 1px solid rgba(255,255,255,.08); }
.safety-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.safety-cards article { min-height: 145px; padding: 22px; border: 1px solid var(--border); border-radius: 16px; background: var(--panel); }
.safety-cards strong, .safety-cards span { display: block; }
.safety-cards strong { margin-bottom: 9px; color: var(--gold); font-family: "Playfair Display", serif; font-size: 1.35rem; }
.safety-cards span { color: var(--muted); }

.join-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 24px;
  background: radial-gradient(circle at 80% 20%, rgba(212,175,55,.12), transparent 30%), var(--panel);
}
.join-panel h2 { margin-bottom: 8px; }
.join-panel p:last-child { margin: 0; color: var(--muted); }

footer { padding: 65px 0 25px; border-top: 1px solid rgba(255,255,255,.08); background: #080809; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 45px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: .86rem; }
.footer-grid p { max-width: 310px; margin-top: 8px; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #77736d; font-size: .78rem; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4,4,5,.93);
  backdrop-filter: blur(14px);
}
.age-gate.hidden { display: none; }
.age-gate__panel { width: min(500px, 100%); padding: 42px; text-align: center; border: 1px solid rgba(212,175,55,.3); border-radius: 24px; background: var(--panel); box-shadow: var(--shadow); }
.age-gate h1 { font-size: 2.5rem; }
.age-gate p:not(.eyebrow) { color: var(--muted); }
.age-gate__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 26px; }
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  transform: translateY(20px);
  opacity: 0;
  max-width: 340px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--cream);
  background: #202022;
  box-shadow: var(--shadow);
  transition: .25s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.filter-backdrop { display: none; }

@media (max-width: 1050px) {
  .profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: 1fr 380px; gap: 35px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .mobile-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }
  .mobile-nav.open { display: grid; }
  .mobile-nav a { padding: 12px; color: var(--muted); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 720px); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 65px 0; }
  .hero-copy h1 { font-size: clamp(3.2rem, 13vw, 5rem); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid div:nth-child(2) { border-right: 0; }
  .stats-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .directory-section, .areas-section, .activity-section, .safety-section, .join-section { padding: 70px 0; }
  .directory-layout { grid-template-columns: 1fr; }
  .filter-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    width: min(380px, 92vw);
    height: 100dvh;
    overflow-y: auto;
    border-radius: 0;
    transform: translateX(105%);
    transition: transform .25s ease;
  }
  .filter-sidebar.open { transform: translateX(0); }
  .close-filter { display: inline-grid; }
  .filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(0,0,0,.65);
  }
  .filter-backdrop.show { display: block; }
  .mobile-filter-button { display: inline-flex; }
  .activity-grid, .safety-grid { grid-template-columns: 1fr; gap: 35px; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .desktop-only { display: none; }
  .header-inner { height: 68px; }
  .brand small { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .hero-grid { padding-top: 45px; }
  .hero-copy h1 { font-size: 3.25rem; }
  .trust-row { display: grid; gap: 7px; }
  .search-panel { padding: 20px; }
  .search-panel__top { display: block; }
  .secure-chip { display: inline-block; margin-top: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .directory-actions { margin-top: 18px; justify-content: space-between; }
  .sort-control span { display: none; }
  .sort-control select { width: 170px; }
  .profile-grid { grid-template-columns: 1fr; }
  .featured-banner { display: block; }
  .featured-banner .button { margin-top: 14px; }
  .area-grid, .safety-cards { grid-template-columns: 1fr; }
  .join-panel { display: block; padding: 30px; }
  .join-panel .button { width: 100%; margin-top: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; gap: 6px; }
  .age-gate__panel { padding: 30px 22px; }
  .age-gate__actions { grid-template-columns: 1fr; }
}
.footer-note{color:var(--muted);font-size:.86rem}
