/* ════════════════════════════════════════════════════
   cta-footer.css — Final CTA section + Footer
════════════════════════════════════════════════════ */

/* ── Final CTA ───────────────────────────────────── */
.final-cta {
  text-align: center;
  padding:    140px 52px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  position:   relative;
  overflow:   hidden;
}

/* Thin vertical line above headline */
.cta-line {
  width:      1px;
  height:     80px;
  background: linear-gradient(transparent, var(--sage));
  margin:     0 auto 56px;
}

.final-cta h2 {
  font-family:    'Fraunces', serif;
  font-size:      clamp(38px, 6.5vw, 70px);
  font-weight:    300;
  letter-spacing: -0.04em;
  color:          var(--text);
  margin-bottom:  18px;
  line-height:    1.1;
}
.final-cta h2 em { font-style: italic; color: var(--sage); }

.final-cta p {
  font-size:   18px;
  color:       var(--text-muted);
  margin-bottom: 48px;
  max-width:   460px;
  margin-left:  auto;
  margin-right: auto;
  line-height: 1.75;
  font-weight: 300;
}

.cta-note {
  margin-top:     24px;
  font-size:      11px;
  color:          var(--text-light);
  font-family:    'DM Mono', monospace;
  letter-spacing: 0.08em;
}

/* ── Footer ──────────────────────────────────────── */
footer {
  padding:         48px 52px;
  border-top:      1px solid var(--border);
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  flex-wrap:       wrap;
  gap:             24px;
  background:      var(--surface);
}

.footer-links {
  display:   flex;
  gap:       28px;
  flex-wrap: wrap;
}

.flink {
  color:           var(--text-light);
  text-decoration: none;
  font-size:       12px;
  font-family:     'DM Mono', monospace;
  letter-spacing:  0.04em;
  transition:      color 0.2s;
}
.flink:hover { color: var(--sage); }

.fcopy {
  font-size:   13px;
  color:       var(--text-light);
  font-family: 'DM Mono', monospace;
}

.ftagline {
  font-size:      11px;
  color:          var(--text-light);
  font-family:    'DM Mono', monospace;
  letter-spacing: 0.06em;
}
