/* Night Academy v2 — dark, clean, static, Cloudflare-Pages-ready */

:root {
  --bg: #0a0a0f;
  --bg-alt: #101018;
  --surface: #16161f;
  --surface-2: #1c1c28;
  --border: #262633;
  --text: #eceef3;
  --text-dim: #a3a3b3;
  --text-faint: #6c6c80;
  --accent: #ff3366;
  --accent-dim: #b8264c;
  --accent-glow: rgba(255, 51, 102, 0.35);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .wordmark {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(28px, 4vw, 42px); }
h2 { font-size: clamp(20px, 3vw, 27px); }
p { color: var(--text-dim); margin: 0 0 1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ---------- top strip ---------- */
.top-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 12.5px;
  text-align: center;
  padding: 7px 12px;
  letter-spacing: .02em;
}
.top-strip strong { color: var(--text); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,15,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; gap: 20px; max-width: var(--max); margin: 0 auto;
}
.wordmark { font-size: 21px; margin: 0; text-decoration: none; white-space: nowrap; }
.wordmark span { color: var(--accent); }
.site-header nav { display: flex; }
.site-header nav ul {
  list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; flex-wrap: wrap;
}
.site-header nav a {
  display: inline-block; padding: 8px 12px; border-radius: 999px;
  text-decoration: none; color: var(--text-dim); font-size: 13.5px; font-weight: 600;
  transition: background .15s, color .15s;
}
.site-header nav a:hover, .site-header nav a.active { background: var(--surface-2); color: #fff; }
.call-pill {
  background: var(--accent); color: #fff !important; padding: 9px 16px !important;
  border-radius: 999px !important; font-weight: 700 !important;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.menu-toggle { display: none; }

@media (max-width: 900px) {
  .site-header nav { position: fixed; top: 62px; left: 0; right: 0; height: calc(100vh - 62px); background: var(--bg); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .18s, transform .18s; }
  .site-header nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-header nav ul { flex-direction: column; flex-wrap: nowrap; padding: 16px 20px 100px; gap: 2px; }
  .site-header nav li { width: 100%; }
  .site-header nav a { display: block; padding: 13px 14px; font-size: 15px; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px; background: var(--surface);
    border: 1px solid var(--border); color: #fff; font-size: 18px; cursor: pointer;
  }
}

/* ---------- hero ---------- */
.hero {
  padding: 64px 20px 56px; text-align: center;
  background:
    radial-gradient(60% 60% at 50% 0%, var(--accent-glow), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero .eyebrow {
  display: inline-block; color: var(--accent); font-weight: 700; font-size: 12.5px;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px;
}
.hero h1 { max-width: 780px; margin-left: auto; margin-right: auto; }
.hero p.lead { max-width: 640px; margin: 0 auto 28px; font-size: 16.5px; }
.big-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff; text-decoration: none;
  font-weight: 800; font-size: 20px; padding: 16px 30px; border-radius: 999px;
  box-shadow: 0 8px 30px var(--accent-glow);
}
.big-call small { display: block; font-weight: 600; font-size: 12px; opacity: .85; }

/* ---------- sections ---------- */
section.block { padding: 46px 20px; }
section.block.alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.section-head a.more { color: var(--accent); text-decoration: none; font-weight: 700; font-size: 13.5px; white-space: nowrap; }

/* ---------- category chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  text-decoration: none; padding: 10px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
}
.chip:hover { border-color: var(--accent); color: #fff; }

/* ---------- girl cards ---------- */
.girls-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.girl-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; display: block; position: relative;
  transition: transform .15s, border-color .15s;
}
.girl-card:hover { transform: translateY(-3px); border-color: var(--accent-dim); }
.girl-card .photo {
  aspect-ratio: 3/4; width: 100%; background-size: cover; background-position: center top;
  background-color: #1e1e29;
}
.girl-card .shade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 62%;
  background: linear-gradient(to top, rgba(10,10,15,.96), rgba(10,10,15,0));
  pointer-events: none;
}
.girl-card .body { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 12px 14px; }
.girl-card .name { font-weight: 800; font-size: 14.5px; color: #fff; line-height: 1.25; margin-bottom: 2px; }
.girl-card .ext-line { font-size: 12px; color: var(--text-dim); margin-bottom: 8px; }
.girl-card .call-tag {
  display: inline-block; font-size: 12px; font-weight: 700; color: var(--text-dim);
  border: 1px solid var(--border); padding: 5px 10px; border-radius: 999px;
}
@media (max-width: 768px) {
  .girl-card .call-tag {
    display: block; text-align: center; color: #fff; background: var(--accent);
    border-color: transparent; padding: 9px 10px; font-size: 12.5px;
  }
}
.girl-card.no-profile { cursor: default; }

/* ---------- profile page ---------- */
.profile-hero { display: grid; grid-template-columns: 300px 1fr; gap: 34px; align-items: start; }
@media (max-width: 780px) { .profile-hero { grid-template-columns: 1fr; } }
.profile-hero .photo {
  width: 100%; aspect-ratio: 3/4; background-size: cover; background-position: center top;
  border-radius: var(--radius); background-color: #1e1e29; border: 1px solid var(--border);
}
.call-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; margin: 18px 0 24px;
}
.call-card .num { font-size: 22px; font-weight: 800; color: #fff; }
.call-card .ext { color: var(--accent); }
.call-btn-big {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; text-decoration: none; font-weight: 800;
  padding: 12px 22px; border-radius: 999px; font-size: 15.5px;
}
.bio p { color: #cfcfd8; }

/* ---------- content pages ---------- */
.content-page { max-width: 760px; }
.content-page h1 { margin-bottom: .6em; }
.content-page p { color: #cfcfd8; }

/* ---------- blog placeholder ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; }
.blog-card h3 { font-size: 14.5px; margin-bottom: 6px; color: #fff; }
.blog-card p { font-size: 12.5px; color: var(--text-faint); margin: 0; }

/* ---------- notice ---------- */
.notice {
  background: #2a1c10; border: 1px solid #4a3010; color: #f0c98a;
  border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13px; margin: 0 0 24px;
}

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-alt); padding: 40px 20px 26px; margin-top: 20px; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; margin-bottom: 26px; }
@media (max-width: 700px) { .site-footer .cols { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--text-dim); text-decoration: none; font-size: 13.5px; }
.site-footer a:hover { color: #fff; }
.site-footer .legal { border-top: 1px solid var(--border); padding-top: 18px; color: var(--text-faint); font-size: 11.5px; line-height: 1.7; }

/* ---------- breadcrumb ---------- */
.crumb { font-size: 12.5px; color: var(--text-faint); margin-bottom: 18px; }
.crumb a { color: var(--text-faint); text-decoration: none; }
.crumb a:hover { color: var(--accent); }
