/* ============================================================
   Pornstar Harem — promo site stylesheet
   Unique light "glamour" theme: rose gold + deep plum + cream.
   External stylesheet — no inline styles anywhere in the HTML.
   ============================================================ */

:root {
  --bg: #fdf8f4;
  --bg-alt: #faf0ea;
  --card: #ffffff;
  --ink: #4a2438;
  --text: #5d3a4e;
  --text-soft: #8a6a7c;
  --plum: #6d2b4f;
  --rose: #e0528e;
  --rose-deep: #c23a75;
  --gold: #d9a441;
  --gold-soft: #f3ddb0;
  --line: #eedadf;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(109, 43, 79, 0.10);
  --radius: 16px;
  --font: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-display: "Georgia", "Times New Roman", "Noto Serif", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--rose-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 244, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--plum);
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.brand a { color: var(--plum); }
.brand a:hover { text-decoration: none; }

.brand-heart { color: var(--rose); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.site-nav ul a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.98rem;
}

.site-nav ul a:hover,
.site-nav ul a.active {
  color: var(--rose-deep);
  text-decoration: none;
}

.btn-play {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(224, 82, 142, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224, 82, 142, 0.45);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--line);
  color: var(--plum);
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
}

/* ---------------- Hero ---------------- */

.hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(224, 82, 142, 0.14), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(217, 164, 65, 0.16), transparent 55%),
    linear-gradient(160deg, #fdf3f7 0%, #fdf8f4 55%, #fbf1e6 100%);
  border-bottom: 1px solid var(--line);
  padding: 72px 0 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: var(--gold-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 2.9rem;
  line-height: 1.12;
  color: var(--plum);
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: 1.08rem;
  color: var(--text);
  max-width: 56ch;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--rose);
  color: var(--rose-deep);
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-ghost:hover {
  background: var(--rose);
  color: var(--white);
  text-decoration: none;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--plum);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(109, 43, 79, 0.06);
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--plum);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Hero on sub-pages (title banner) */

.hero-subpage {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(224, 82, 142, 0.13), transparent 55%),
    linear-gradient(160deg, #fdf3f7 0%, #fbf1e6 100%);
  border-bottom: 1px solid var(--line);
  padding: 52px 0 48px;
  text-align: center;
}

.hero-subpage h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--plum);
  margin-bottom: 12px;
}

.hero-subpage .hero-tagline {
  margin: 0 auto 0;
  max-width: 62ch;
}

/* ---------------- Sections ---------------- */

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 36px;
}

.section-head.center {
  text-align: center;
}

.section-head.center .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--plum);
  margin-bottom: 10px;
}

.section-head p {
  color: var(--text-soft);
  max-width: 70ch;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--plum);
  margin: 28px 0 10px;
}

.prose p {
  margin-bottom: 16px;
}

.prose .lead {
  font-size: 1.1rem;
  color: var(--ink);
}

/* ---------------- Fact strip ---------------- */

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fact-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--rose);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 6px 16px rgba(109, 43, 79, 0.07);
}

.fact-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 6px;
}

.fact-value {
  display: block;
  font-weight: 600;
  color: var(--plum);
  font-size: 0.98rem;
}

.fact-value small {
  display: block;
  font-weight: 400;
  color: var(--text-soft);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ---------------- Feature cards ---------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 6px 16px rgba(109, 43, 79, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.f-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--plum);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* ---------------- Gallery ---------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 6px 16px rgba(109, 43, 79, 0.07);
  transition: transform 0.15s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-soft);
  background: var(--card);
}

/* ---------------- Quotes ---------------- */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 6px 16px rgba(109, 43, 79, 0.06);
}

.quote-card blockquote {
  font-size: 0.98rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 12px;
}

.quote-card cite {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-style: normal;
}

/* ---------------- CTA banner ---------------- */

.cta-banner {
  background:
    radial-gradient(ellipse at 90% 20%, rgba(217, 164, 65, 0.25), transparent 55%),
    linear-gradient(135deg, var(--plum), #8a3560);
  color: var(--white);
  border-radius: 20px;
  padding: 52px 48px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 60ch;
  margin: 0 auto 26px;
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #c08a2e);
  color: #3d2a05 !important;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 1.05rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

/* ---------------- Characters page ---------------- */

.char-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.char-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(109, 43, 79, 0.06);
  display: flex;
  flex-direction: column;
}

.char-art {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  height: 150px;
}

.char-grad-1 { background: linear-gradient(135deg, #fde7ef, #f7c9dc); }
.char-grad-2 { background: linear-gradient(135deg, #fdf0dc, #f6dcae); }
.char-grad-3 { background: linear-gradient(135deg, #e9f0fd, #c9d9f7); }
.char-grad-4 { background: linear-gradient(135deg, #f2e7fd, #dcc7f5); }
.char-grad-5 { background: linear-gradient(135deg, #e4f9ef, #bfe8d4); }
.char-grad-6 { background: linear-gradient(135deg, #fdeeee, #f6c8c8); }

.char-body {
  padding: 20px 22px 24px;
}

.char-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--plum);
  margin-bottom: 6px;
}

.char-tag {
  display: inline-block;
  background: var(--gold-soft);
  color: #8a6420;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.char-body p {
  font-size: 0.93rem;
  color: var(--text-soft);
}

/* ---------------- Guide page ---------------- */

.step-list {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin: 20px 0 28px;
}

.step-list li {
  counter-increment: step;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px 18px 64px;
  position: relative;
  color: var(--text);
}

.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.tip-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 16px 0 24px;
}

.tip-list li {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--ink);
}

.tip-list li strong { color: var(--plum); }

/* ---------------- Media rows (story/guide images) ---------------- */

.media-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
  margin: 34px 0;
}

.media-row.reversed .media-img { order: 2; }

.media-img img {
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

.media-row h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--plum);
  margin-bottom: 10px;
}

.media-row p {
  margin-bottom: 12px;
  color: var(--text);
}

/* ---------------- FAQ page ---------------- */

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 22px;
  box-shadow: 0 4px 12px rgba(109, 43, 79, 0.05);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--plum);
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 0 20px;
  color: var(--text);
  font-size: 0.96rem;
}

.faq-a p { margin-bottom: 10px; }
.faq-a p:last-child { margin-bottom: 0; }

.table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  font-size: 0.93rem;
}

.table-wrap th,
.table-wrap td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.table-wrap th {
  background: var(--plum);
  color: var(--white);
  font-weight: 600;
}

.table-wrap tr:last-child td { border-bottom: none; }

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.8);
  padding: 28px 0 34px;
  margin-top: 40px;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.copyright {
  font-size: 0.88rem;
}

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.lang-switch a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
}

.lang-switch a:hover { color: var(--gold-soft); }
.lang-switch a.active { color: var(--gold); font-weight: 700; }

/* ---------------- Lightbox ---------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(30, 10, 20, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lb-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.lb-btn:hover { background: rgba(255, 255, 255, 0.25); }

.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------------- Responsive ---------------- */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; }
  .fact-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .quote-grid, .char-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .media-row { grid-template-columns: 1fr; }
  .media-row.reversed .media-img { order: 0; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 6%;
    display: none;
    box-shadow: 0 18px 30px rgba(109, 43, 79, 0.12);
  }
  .site-nav.open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul li { border-bottom: 1px solid var(--line); }
  .site-nav ul a { display: block; padding: 14px 4px; }
  .site-nav .btn-play {
    margin: 16px 0 20px;
    text-align: center;
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero { padding: 48px 0 44px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-subpage { padding: 40px 0 36px; }
  .hero-subpage h1 { font-size: 1.9rem; }
  .section { padding: 48px 0; }
  .cta-banner { padding: 40px 26px; }
  .cta-banner h2 { font-size: 1.6rem; }
  .lightbox { padding: 24px; }
}

@media (max-width: 480px) {
  .fact-strip, .feature-grid, .quote-grid, .char-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 1.8rem; }
  .step-list li { padding-left: 56px; }
  .lang-switch { gap: 6px 14px; }
}
