:root {
  --bg: #09080b;
  --surface: #121015;
  --surface-2: #19161d;
  --cream: #f7f3ee;
  --muted: #aaa2ac;
  --quiet: #77717b;
  --line: #2a252d;
  --accent: #ff4778;
  --accent-soft: #ff86a5;
  --live: #55dca7;
  --warning: #e8c47a;
  --max: 1240px;
  --radius-sm: 10px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--accent); color: #fff; }
[hidden] { display: none !important; }
a { color: inherit; }
img { max-width: 100%; }
button, input { font: inherit; }
.shell { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9, 8, 11, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -.065em;
}
.brand strong, .footer-brand span { color: var(--accent); }
.site-header nav, .site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-header nav a, .site-footer nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}
.site-header nav a:hover, .site-footer nav a:hover { color: var(--cream); }

.home-hero {
  padding: 46px 0 32px;
  background: radial-gradient(circle at 12% 0, #2a1320 0, transparent 44%);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.home-hero h1, .profile-intro h1, .category-hero h1, .legal-copy h1 {
  margin: 0;
  letter-spacing: -.065em;
  line-height: .94;
}
.home-hero h1 { font-size: clamp(48px, 7vw, 82px); }
.hero-copy {
  max-width: 620px;
  margin: 17px 0 0;
  color: #c4bcc5;
  font-size: 17px;
  line-height: 1.55;
}
.live-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}
.live-proof strong { display: inline-flex; align-items: center; gap: 7px; color: var(--live); text-transform: uppercase; }
.live-proof i, .card-status.current i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 3px rgba(85, 220, 167, .14);
}

.directory-section { padding: 16px 0 72px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.section-heading h2, .related-section h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -.045em;
}
.section-heading p { margin: 6px 0 0; color: var(--quiet); font-size: 12px; }
.affiliate-note { text-align: right; }
.search-row {
  display: grid;
  grid-template-columns: auto minmax(180px, 290px) 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.search-label { color: var(--muted); font-size: 12px; font-weight: 700; }
.search-input {
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: 0;
  background: var(--surface);
  color: var(--cream);
}
.search-input::placeholder { color: #6f6872; }
.search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 71, 120, .13); }
.result-count { justify-self: end; margin: 0; color: var(--quiet); font-size: 12px; }

.model-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.model-card { min-width: 0; }
.card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
}
.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease, filter .3s ease;
}
.card-media:hover img { transform: scale(1.025); filter: saturate(1.04); }
.card-status {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: rgba(9, 8, 11, .76);
  color: var(--cream);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.card-status.historical { color: var(--warning); }
.card-status.historical i { display: none; }
.card-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 2px 18px;
}
.card-copy > div { min-width: 0; }
.card-title {
  display: block;
  overflow: hidden;
  color: var(--cream);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-title:hover { color: var(--accent-soft); }
.card-copy p { margin: 3px 0 0; color: var(--quiet); font-size: 11px; }
.card-cta {
  flex: 0 0 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--accent-soft);
  text-decoration: none;
}
.card-cta:hover { border-color: var(--accent); background: var(--accent); color: #1b0a11; }

.source-note { padding-bottom: 72px; }
.source-note details {
  max-width: 760px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
}
.source-note summary { cursor: pointer; color: var(--cream); font-weight: 720; }
.source-note p { max-width: 720px; }
.source-note a { color: var(--accent-soft); }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}
.button.primary { background: var(--accent); color: #1b0a11; }
.button.primary:hover { background: #ff5c87; }
.button.secondary { border-color: var(--line); background: var(--surface); color: var(--cream); }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 4, 6, .88);
  backdrop-filter: blur(18px);
}
.age-panel {
  width: min(430px, 100%);
  padding: 34px;
  border: 1px solid #342d37;
  border-radius: var(--radius-lg);
  background: #100d12;
  box-shadow: 0 32px 100px rgba(0, 0, 0, .55);
}
.age-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: white;
  font-weight: 850;
  font-size: 21px;
}
.age-panel h2 { margin: 0; font-size: 43px; line-height: 1; letter-spacing: -.055em; }
.age-panel > p:not(.eyebrow) { color: var(--muted); }
.age-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 24px; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 26px 0;
  color: var(--quiet);
  font-size: 12px;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.category-main { padding-bottom: 20px; }
.category-hero { max-width: 760px; padding: 32px 0 38px; }
.category-hero h1 { font-size: clamp(48px, 7vw, 76px); }
.category-hero > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.fact-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.fact-row span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); font-size: 11px; }
.category-main > .model-grid { margin-bottom: 64px; }

.profile-main { padding-bottom: 40px; }
.profile-hero {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: center;
  padding: 8px 0 64px;
}
.profile-portrait { position: relative; margin: 0; overflow: hidden; min-height: 520px; border-radius: var(--radius-lg); background: var(--surface-2); }
.profile-portrait img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.status-pill { position: absolute; left: 14px; bottom: 14px; padding: 8px 10px; border-radius: 8px; background: rgba(9, 8, 11, .78); color: var(--cream); font-size: 11px; font-weight: 800; backdrop-filter: blur(8px); }
.status-pill.historical { color: var(--warning); }
.profile-intro h1 { font-size: clamp(50px, 7vw, 88px); overflow-wrap: anywhere; }
.lede { max-width: 720px; color: var(--muted); font-size: 16px; }
.action-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.profile-intro > .source-note { padding: 0; color: var(--quiet); font-size: 12px; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: 20px; align-items: start; }
.article-card, .details-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 30px;
}
.article-card section + section { margin-top: 34px; }
.article-card h2, .details-card h2, .related-section h2, .legal-copy h2 { margin: 0 0 10px; letter-spacing: -.035em; }
.article-card p, .details-card, .legal-copy p { color: var(--muted); }
.details-card { position: sticky; top: 84px; }
.details-card dl { margin: 0 0 20px; }
.details-card dl div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.details-card dt { color: var(--quiet); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.details-card dd { margin: 3px 0 0; color: var(--cream); font-size: 13px; }
.details-card a { color: var(--accent-soft); font-size: 13px; }
.related-section { padding: 70px 0 30px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related-card { display: flex; align-items: center; gap: 12px; padding: 9px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); text-decoration: none; }
.related-card img { width: 70px; height: 70px; border-radius: 8px; object-fit: cover; }
.related-card strong, .related-card small { display: block; }
.related-card strong { font-size: 13px; }
.related-card small { margin-top: 3px; color: var(--quiet); font-size: 10px; }

.legal-main { min-height: 72vh; padding-bottom: 72px; }
.legal-copy { max-width: 850px; }
.legal-copy h1 { margin-bottom: 30px; font-size: clamp(46px, 7vw, 76px); }
.legal-copy a { color: var(--accent-soft); }

.site-footer { border-top: 1px solid var(--line); padding: 44px 0 28px; }
.footer-brand { font-size: 20px; font-weight: 850; letter-spacing: -.055em; }
.site-footer p { max-width: 620px; color: var(--quiet); font-size: 12px; }
.site-footer nav { margin: 18px 0; }
.fineprint { font-size: 10px !important; }

:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 3px; }

@media (max-width: 960px) {
  .model-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .profile-hero { gap: 30px; }
  .content-layout { grid-template-columns: 1fr; }
  .details-card { position: static; }
}

@media (max-width: 640px) {
  .shell { width: calc(100% - 24px); }
  .header-inner { min-height: 58px; }
  .site-header nav a { font-size: 12px; }
  .home-hero { padding: 30px 0 22px; }
  .home-hero h1 { font-size: 45px; }
  .hero-copy { max-width: 340px; margin-top: 12px; font-size: 14px; line-height: 1.5; }
  .live-proof { margin-top: 15px; gap: 8px 12px; font-size: 10px; }
  .live-proof span:nth-of-type(1) { max-width: 185px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .directory-section { padding-top: 8px; padding-bottom: 50px; }
  .section-heading { align-items: start; margin-bottom: 13px; }
  .section-heading h2 { font-size: 23px; }
  .section-heading p { display: none; }
  .affiliate-note { display: none !important; }
  .search-row { grid-template-columns: 1fr; margin-bottom: 14px; }
  .search-label { display: none; }
  .search-input { min-height: 40px; }
  .result-count { display: none; }
  .model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .card-media { border-radius: 14px; }
  .card-copy { padding-bottom: 13px; }
  .card-title { font-size: 13px; }
  .card-cta { flex-basis: 32px; height: 32px; }
  .source-note { padding-bottom: 52px; }
  .age-panel { padding: 26px; }
  .age-panel h2 { font-size: 38px; }
  .age-actions { grid-template-columns: 1fr; }
  .profile-hero { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .profile-portrait { min-height: auto; aspect-ratio: 3 / 4; }
  .profile-intro h1 { font-size: 48px; }
  .profile-intro { display: flex; flex-direction: column; }
  .profile-intro .eyebrow { order: 0; }
  .profile-intro h1 { order: 1; }
  .profile-intro .action-row { order: 2; margin: 18px 0; }
  .profile-intro .lede { order: 3; margin-top: 0; }
  .profile-intro .fact-row { order: 4; }
  .profile-intro > .source-note { order: 5; }
  .profile-intro .action-row .primary { width: 100%; }
  .content-layout { display: block; }
  .details-card { margin-top: 14px; }
  .article-card, .details-card { padding: 22px; }
  .related-grid { grid-template-columns: 1fr; }
  .category-hero { padding: 15px 0 30px; }
  .category-hero h1 { font-size: 48px; }
  .category-hero > p:not(.eyebrow) { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
