:root {
  --purple: #6a0572;
  --purple-dark: #52044f;
  --purple-soft: #8a2a92;
  --bg-dark: #1b1b1b;
  --bg-deep: #121212;
  --text-main: #f5f5f5;
  --text-muted: #c8c8c8;
  --card: #ffffff;
  --card-text: #333333;
  --border: rgba(106, 5, 114, 0.35);
  --radius-lg: 20px;
  --radius-md: 12px;
  --section-y: clamp(2rem, 5vw, 3rem);
  --section-x: clamp(1rem, 4vw, 2rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(120deg, var(--bg-dark), var(--purple));
  color: var(--text-main);
  line-height: 1.65;
  min-height: 100vh;
}

a {
  color: #e8c4ec;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--section-x);
  background: rgba(27, 27, 27, 0.94);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
}

.nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: var(--purple);
  color: #fff !important;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--purple-dark);
}

.page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(0.75rem, 2.5vw, 1.25rem);
}

main {
  background: var(--card);
  color: var(--card-text);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

section {
  padding: var(--section-y) var(--section-x);
  border-bottom: 1px solid #eee;
}

section:last-child {
  border-bottom: none;
}

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.6rem;
}

h1 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  color: var(--purple);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

h2 {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: #444;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.4;
}

h3 {
  font-size: 1.05rem;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

.lead {
  font-size: clamp(0.95rem, 1.9vw, 1.08rem);
  max-width: 58ch;
  color: #444;
}

.lead--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  text-align: left;
}

.hero-visual {
  text-align: center;
}

.hero-photo {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  border: 3px solid var(--purple);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  max-height: min(52vh, 440px);
}

.hero-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.hero-thumbs img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--border);
  opacity: 0.9;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-thumbs img:hover {
  transform: scale(1.06);
  border-color: var(--purple);
  opacity: 1;
}

.age-gate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.join-btn {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  background: var(--purple);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
  text-align: center;
}

.join-btn:hover {
  background: var(--purple-dark);
  transform: scale(1.03);
}

.join-btn--outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.join-btn--outline:hover {
  background: rgba(106, 5, 114, 0.08);
  color: var(--purple-dark);
}

.hero-note {
  font-size: 0.82rem;
  color: #777;
  margin-top: 0.75rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  background: #f8f4f9;
}

.trust-item {
  text-align: center;
  padding: 1rem 0.75rem;
  border-right: 1px solid #eee;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple);
  margin-bottom: 0.3rem;
}

.trust-item span {
  font-size: 0.78rem;
  color: #666;
}

.intent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.intent--reverse {
  direction: rtl;
}

.intent--reverse > * {
  direction: ltr;
}

.intent-copy {
  padding: var(--section-y) var(--section-x);
}

.intent-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #f8f4f9;
}

.intent-media img {
  width: 100%;
  max-width: 400px;
  max-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.intent--about {
  padding: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  padding: 1.15rem;
  background: #f8f4f9;
  border-radius: var(--radius-md);
  border: 1px solid #eee;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
}

.card--media img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.cta-band {
  text-align: center;
  background: linear-gradient(180deg, #f8f4f9, #fff);
}

.cta-band .join-btn {
  min-width: 260px;
}

.site-footer {
  text-align: center;
  padding: 1.5rem var(--section-x);
  font-size: 0.82rem;
  color: #777;
  background: #fafafa;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--purple);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem var(--section-x);
  color: var(--card-text);
}

.legal-page h1 {
  margin-bottom: 0.25rem;
}

.legal-page .updated {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  color: var(--purple);
}

.legal-page ul {
  margin: 0 0 1rem 1.25rem;
  color: #555;
}

.contact-box {
  padding: 1.25rem;
  background: #f8f4f9;
  border-radius: var(--radius-md);
  border: 1px solid #eee;
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    text-align: center;
  }

  .nav {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo {
    max-height: 36vh;
  }

  .hero-logo {
    margin: 0 auto;
  }

  .age-gate {
    justify-content: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .intent,
  .intent--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .intent-media {
    order: -1;
    min-height: auto;
  }

  .intent-media img {
    max-height: 220px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}
