/* ═══════════════════════════════════════════════════════════════
   GENERIC CONTENT PAGE (Privacy Policy, Terms & Conditions, etc.)
   Reuses every design token already defined in style.css.
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════
   HERO — same treatment as other page heroes
═══════════════════════════════════════ */
.lp-hero {
  position: relative;
  min-height: clamp(280px, 38vh, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: en-hero-zoom 14s ease-out both;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,12,20,0.5) 0%, rgba(10,12,20,0.68) 100%);
}

.lp-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(110px, 16vh, 150px) var(--gutter) 50px;
  text-align: center;
}

.lp-hero-title {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 5.5vw, 52px);
  color: var(--white);
  line-height: 1.15;
}

.lp-hero-subtitle {
  margin-top: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   CONTENT BODY — typography for admin-authored HTML
═══════════════════════════════════════ */
.lp-section {
  background: var(--cream-1);
  padding: 80px 0 100px;
}

.lp-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.8;
}

.lp-content .terms_title,
.lp-content h2 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--navy);
  margin: 40px 0 14px;
}

.lp-content .terms_title:first-child,
.lp-content h2:first-child {
  margin-top: 0;
}

.lp-content .terms_subtitle,
.lp-content p {
  margin-bottom: 16px;
  color: var(--mid-gray);
}

.lp-content .privacy_list,
.lp-content ul,
.lp-content ol {
  margin: 0 0 16px 22px;
  color: var(--mid-gray);
}

.lp-content .privacy_list li,
.lp-content li {
  margin-bottom: 8px;
}

.lp-content a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.lp-content strong,
.lp-content b {
  color: var(--charcoal);
}

/* Safety net for whatever the admin's editor actually contains (Privacy
   Policy / Terms pages are the most likely to get a pasted table or an
   oversized image) — never let it force horizontal scroll on mobile. */
.lp-content {
  overflow-wrap: break-word;
  word-break: break-word;
}

.lp-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 12px 0;
}

.lp-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.lp-content iframe,
.lp-content video {
  max-width: 100%;
}

@media (max-width: 767px) {
  .lp-hero-inner { padding-top: 100px; }
  .lp-content { padding: 0 24px; font-size: 15px; }
  .lp-content .terms_title,
  .lp-content h2 { font-size: 21px; margin-top: 30px; }
}
