@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #140910;
  --bg-soft: #21111c;
  --bg-card: rgba(36, 18, 29, 0.86);
  --bg-card-strong: #2b1522;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: #fff4fb;
  --text-soft: #d7c4cf;
  --text-muted: #b79fad;
  --accent: #ff6f5d;
  --accent-strong: #ff3f75;
  --accent-gold: #ffbd66;
  --accent-violet: #8c6bff;
  --accent-blue: #4db4ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(140, 107, 255, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 111, 93, 0.18), transparent 28%),
    linear-gradient(180deg, #12070e 0%, #180b14 38%, #11070d 100%);
  line-height: 1.68;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.section-header {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin-bottom: 2.3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--accent-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 189, 102, 0.9));
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 4.85rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
  color: var(--text-soft);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
}

.glass-card,
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.badge-row,
.action-row,
.link-row,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.action-row.centered {
  justify-content: center;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
  color: #18060c;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent));
  box-shadow: 0 20px 44px rgba(255, 111, 93, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.button-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(17, 8, 14, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-bar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 18px;
  color: #140910;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-strong));
  box-shadow: 0 16px 36px rgba(255, 111, 93, 0.28);
}

.brand-label {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-label span:last-child {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle svg {
  width: 1.35rem;
  height: 1.35rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}

.nav-item > a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.95rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 700;
}

.nav-item > a:hover,
.nav-item > a:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-item.active > a {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  border: 0;
  cursor: pointer;
  background: transparent;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 14rem;
  padding: 0.8rem;
  list-style: none;
  background: rgba(18, 9, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  color: var(--text-soft);
  font-weight: 700;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-note::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent-gold);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 6.5rem 0 5.5rem;
}

.hero::before,
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.22;
  z-index: -2;
}

.hero::after,
.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16, 7, 13, 0.92), rgba(16, 7, 13, 0.68)),
    linear-gradient(180deg, rgba(255, 111, 93, 0.1), transparent 34%);
  z-index: -1;
}

.page-home .hero::before {
  background-image: url("images/headhome.jpg");
}

.page-models .subhero::before {
  background-image: url("images/home2.png");
}

.page-fetish .subhero::before {
  background-image: url("images/bdsmhead.jpg");
}

.page-sext-chat .subhero::before {
  background-image: url("images/story3.jpg");
}

.page-lesbian .subhero::before {
  background-image: url("images/lesbian finder1.jpg");
}

.page-trans .subhero::before {
  background-image: url("images/transhead.jpg");
}

.page-gay .subhero::before {
  background-image: url("images/gayhead.jpg");
}

.page-about .subhero::before {
  background-image: url("images/premium.jpg");
}

.hero-grid,
.subhero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 1.6rem;
  align-items: center;
}

.hero-copy,
.subhero-copy {
  display: grid;
  gap: 1.4rem;
}

.hero-copy p,
.subhero-copy p {
  font-size: 1.08rem;
  max-width: 42rem;
}

.hero-copy h1,
.subhero-copy h1 {
  max-width: 12ch;
}

.hero-panel,
.subhero-panel {
  padding: 1.65rem;
  display: grid;
  gap: 1.2rem;
}

.hero-panel p,
.subhero-panel p {
  font-size: 0.98rem;
}

.stat-stack,
.feature-list,
.flow-list {
  display: grid;
  gap: 0.9rem;
}

.stat-item,
.flow-item {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item strong,
.flow-item strong {
  color: var(--text);
  font-size: 1rem;
}

.trust-grid,
.reason-grid,
.category-grid,
.model-grid,
.step-grid,
.feature-grid,
.guideline-grid,
.principle-grid,
.link-card-grid {
  display: grid;
  gap: 1.15rem;
}

.trust-grid,
.reason-grid,
.feature-grid,
.guideline-grid,
.principle-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-grid,
.step-grid,
.link-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 1.45rem;
}

.card h3,
.card h4 {
  margin-bottom: 0.8rem;
}

.card p + p {
  margin-top: 0.8rem;
}

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 111, 93, 0.18), rgba(140, 107, 255, 0.16));
  color: var(--accent-gold);
}

.icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
}

.editorial {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
}

.editorial-body {
  display: grid;
  gap: 1.15rem;
}

.editorial-highlight {
  padding: 1.5rem;
}

.editorial-highlight ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.editorial-highlight li {
  color: var(--text-soft);
}

.editorial-highlight li strong {
  color: var(--text);
}

.notice {
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--accent-gold);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.category-card,
.model-card,
.link-card {
  overflow: hidden;
  display: grid;
  gap: 0;
}

.category-card img,
.model-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-card .card-body,
.model-card .card-body,
.link-card .card-body {
  padding: 1.35rem;
  display: grid;
  gap: 0.85rem;
}

.category-card .tag,
.model-card .tag,
.subhero-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.model-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.model-intro {
  font-size: 0.95rem;
}

.steps-ordered {
  list-style: none;
  counter-reset: steps;
}

.steps-ordered .card {
  position: relative;
  overflow: hidden;
}

.steps-ordered .card::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.08);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.list-card,
.faq-card,
.table-wrap,
.cta-band,
.footer-panel {
  padding: 1.45rem;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.checklist li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text-soft);
}

.info-table th,
.info-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.info-table th {
  color: var(--text);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 0.95rem;
}

.cta-band {
  display: grid;
  gap: 1rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 111, 93, 0.18), rgba(140, 107, 255, 0.14)),
    rgba(30, 15, 24, 0.94);
}

.cta-band h2 {
  max-width: 12ch;
  margin: 0 auto;
}

.cta-band p {
  max-width: 42rem;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--text);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.inline-links a {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-weight: 700;
}

.inline-links a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.site-footer {
  padding: 3.6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 4, 7, 0.52);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 1.2rem;
}

.footer-panel {
  display: grid;
  gap: 0.9rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-soft);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.accent-text {
  color: var(--accent-gold);
}

.text-link {
  color: var(--accent-gold);
  text-decoration: underline;
  text-decoration-color: rgba(255, 189, 102, 0.45);
  text-underline-offset: 0.18em;
}

.text-link:hover {
  color: #ffd49b;
}

@media (max-width: 1120px) {
  .hero-grid,
  .subhero-grid,
  .editorial {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .reason-grid,
  .feature-grid,
  .guideline-grid,
  .principle-grid,
  .model-grid,
  .step-grid,
  .link-card-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-panel {
    position: fixed;
    inset: var(--header-height) 0 auto;
    width: 100%;
    max-height: calc(100vh - var(--header-height));
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: rgba(17, 8, 14, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
    overflow: auto;
  }

  .menu-open .nav-panel,
  .nav-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list,
  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-item > a,
  .dropdown-toggle,
  .nav-actions .button,
  .nav-actions .button-secondary,
  .nav-actions .button-ghost {
    width: 100%;
    justify-content: space-between;
    border-radius: 18px;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 0.4rem;
    padding: 0.45rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
  }

  .dropdown.open .dropdown-menu {
    display: grid;
  }

  .nav-note {
    padding: 0.5rem 0.2rem 0;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 78px;
  }

  .hero,
  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .trust-grid,
  .reason-grid,
  .feature-grid,
  .guideline-grid,
  .principle-grid,
  .category-grid,
  .model-grid,
  .step-grid,
  .link-card-grid,
  .footer-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy p,
  .subhero-copy p {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
