/* ─── LANDING PAGE SHARED STYLES (lp.css) ────────────
   Loaded after ../styles.css on all pages in /lp/.
   Inherits all CSS variables and base styles.
   ──────────────────────────────────────────────────── */

/* ─── LAYOUT ──────────────────────────────────────── */

.lp-container {
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}

.lp-section {
  padding: 5rem 2rem;
}

.lp-section--off   { background: var(--off-white); }
.lp-section--white { background: var(--white); }
.lp-section--navy  { background: var(--navy); }

/* ─── SHARED TYPE ─────────────────────────────────── */

.lp-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.lp-eyebrow--light { color: var(--gold-light); }

.lp-section-title {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.lp-section-title em { font-style: italic; }
.lp-section-title--light { color: var(--white); }

.lp-section-intro {
  font-size: 1.0625rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ─── PROSE SECTIONS ──────────────────────────────── */

.lp-prose { /* narrower reading column, already set by lp-container */ }

.lp-body-text p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.375rem;
}

.lp-body-text p:last-child { margin-bottom: 0; }

.lp-body-text p em {
  font-style: italic;
  color: var(--text-dark);
}

.lp-body-text p strong {
  font-weight: 500;
  color: var(--text-dark);
}

.lp-body-text--light p { color: rgba(250,250,248,0.72); }
.lp-body-text--light p em { color: var(--white); }

/* ─── HERO ────────────────────────────────────────── */

.lp-hero {
  background: var(--navy);
  padding: 8rem 2rem 5.5rem;
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.375rem;
}

.lp-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.lp-hero-sub {
  font-size: 1.0625rem;
  color: rgba(250,250,248,0.68);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.lp-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  align-items: flex-start;
}

/* ─── TEXT LINKS ──────────────────────────────────── */

.lp-text-link {
  font-size: 0.9375rem;
  color: rgba(250,250,248,0.6);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}

.lp-text-link em { font-style: italic; }
.lp-text-link:hover { color: var(--gold-light); }
.lp-text-link--light { color: rgba(250,250,248,0.5); }
.lp-text-link--light:hover { color: var(--gold-light); }

/* ─── STEPS (Section 2) ───────────────────────────── */

.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.lp-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.375rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s;
}

.lp-step:last-child { border-bottom: none; }
.lp-step:hover { background: var(--gold-pale); }

.lp-step-num {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  min-width: 1.75rem;
  padding-top: 2px;
}

.lp-step-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.lp-step-desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── REFRAME CALLOUT ─────────────────────────────── */

.lp-reframe-callout {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 6px 6px 0;
}

/* ─── FAQ GRID ────────────────────────────────────── */

.lp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.lp-faq-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.lp-faq-q {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.625rem;
  line-height: 1.4;
}

.lp-faq-a {
  font-size: 0.9375rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
}

/* ─── FINAL CTA ───────────────────────────────────── */

.lp-final-cta {
  background: var(--navy-mid);
  padding: 6rem 2rem;
  text-align: center;
}

.lp-final-cta-inner {
  max-width: 640px;
}

.lp-final-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.lp-final-title em {
  font-style: italic;
  color: var(--gold-light);
}

.lp-final-sub {
  font-size: 1.0625rem;
  color: rgba(250,250,248,0.65);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.lp-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125rem;
}

/* ─── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 700px) {
  .lp-section  { padding: 4rem 1.25rem; }
  .lp-hero     { padding: 6.5rem 1.25rem 4rem; }
  .lp-final-cta { padding: 4rem 1.25rem; }
  .lp-faq-grid { grid-template-columns: 1fr; }
  .lp-step     { padding: 1.125rem 1.25rem; gap: 1rem; }
}
