/* ── LIVID PRIVATE: DARK INTIMATE THEME ──────── */
.private-page {
  background: #1A1815;
  color: #F2ECE4;
}

/* Hero */
.private-hero {
  padding: 12rem 5vw 6rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(192,154,92,0.15);
}
.private-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(192,154,92,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.private-hero-label {
  font-family: var(--ff-b);
  font-size: 0.95rem; font-weight: 200;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 2rem; display: block;
}
.private-hero-h1 {
  font-family: var(--ff-d);
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 400; line-height: 1.1;
  color: #F2ECE4; max-width: 780px;
  margin-bottom: 2rem;
}
.private-hero-h1 em { font-style: italic; color: var(--gold-bright); }
.private-hero-body {
  font-size: 1.2rem; font-weight: 300;
  line-height: 1.85; color: #C8BDB1;
  max-width: 620px;
}

/* Intro */
.private-intro {
  padding: 5rem 5vw;
  border-bottom: 1px solid rgba(192,154,92,0.12);
}
.private-intro-text {
  font-size: 1.2rem; font-weight: 300;
  line-height: 1.85; color: #C8BDB1;
  max-width: 680px;
}
.private-intro-text strong {
  font-weight: 400; color: #F2ECE4;
}
.private-intro-accent {
  font-family: var(--ff-d);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 300; font-style: italic;
  line-height: 1.55; color: var(--gold-bright);
  margin-top: 2rem;
  max-width: 600px;
}

/* Sections */
.private-section {
  padding: 6rem 5vw;
  border-bottom: 1px solid rgba(192,154,92,0.12);
}
.private-section-label {
  font-family: var(--ff-b);
  font-size: 0.95rem; font-weight: 200;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 2rem; display: block;
}
.private-section-h {
  font-family: var(--ff-d);
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  font-weight: 400; line-height: 1.2;
  color: #F2ECE4; max-width: 650px;
  margin-bottom: 1.5rem;
}
.private-section-h em { font-style: italic; color: var(--gold-bright); }
.private-section-body {
  font-size: 1.2rem; font-weight: 300;
  line-height: 1.85; color: #C8BDB1;
  max-width: 620px;
}

/* Feature grid */
.private-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 3rem;
}
.private-feature {
  border-top: 1px solid rgba(192,154,92,0.2);
  padding-top: 1.8rem;
}
.private-feature-h {
  font-family: var(--ff-d); font-size: 1.4rem; font-weight: 400;
  color: #F2ECE4; margin-bottom: 0.8rem; line-height: 1.25;
}
.private-feature-body {
  font-size: 1.1rem; font-weight: 300;
  line-height: 1.8; color: #C8BDB1;
}

/* Gold ornament divider */
.private-ornament {
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 5vw; gap: 1.5rem;
}
.private-ornament-line {
  width: 60px; height: 1px; background: var(--gold-bright); opacity: 0.3;
}
.private-ornament-diamond {
  width: 8px; height: 8px;
  border: 1px solid var(--gold-bright);
  transform: rotate(45deg); opacity: 0.5;
}

/* CTA */
.private-cta {
  padding: 6rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 4rem; flex-wrap: wrap;
  border-bottom: 1px solid rgba(192,154,92,0.12);
}
.private-cta-h {
  font-family: var(--ff-d);
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  font-weight: 400; line-height: 1.2; color: #F2ECE4;
}
.private-cta-h em { font-style: italic; color: var(--gold-bright); }

/* Override footer */
.private-page footer { border-top: 1px solid rgba(192,154,92,0.12); }

/* Responsive */
@media (max-width: 900px) {
  .private-features { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .private-hero { padding: 9rem 1.5rem 4rem; }
  .private-intro { padding: 4rem 1.5rem; }
  .private-section { padding: 4rem 1.5rem; }
  .private-cta { padding: 4rem 1.5rem; flex-direction: column; text-align: center; }
}
