/* foundation-repair-page.css — /foundation-repair vertical landing page */
/* Owns: foundation-repair-specific overrides (.fr-*) that layer on top of roofing-page.css base classes */
/* Does NOT own: .rf-* base styles (roofing-page.css), theme.css globals, footer, .nav base styles */

/* Foundation repair hero: rust-red/stone gradient evoking structural concrete and earth */
.fr-hero {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(160, 80, 40, 0.08) 0%, transparent 70%);
}

/* Foundation repair founding banner: deep rust-brown to convey structural, grounded, serious */
.fr-banner {
  background: linear-gradient(90deg, #1a0d08 0%, #221208 100%);
  border-bottom: 1px solid rgba(160, 80, 40, 0.25);
}

/* ROI row for foundation — 5 metrics with two-line labels */
.fr-roi-row {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

/* Sample draft block — mimics an email card in the outbox */
.fr-draft-section {
  padding: 80px 0;
  background: #0f0f0f;
}

.fr-draft-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.fr-draft-card {
  background: #151515;
  border: 1px solid rgba(160, 80, 40, 0.25);
  border-radius: 12px;
  overflow: hidden;
}

.fr-draft-header {
  background: rgba(160, 80, 40, 0.08);
  border-bottom: 1px solid rgba(160, 80, 40, 0.15);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fr-draft-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(160, 80, 40, 0.6);
}

.fr-draft-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(160, 80, 40, 0.9);
}

.fr-draft-timestamp {
  margin-left: auto;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.fr-draft-meta {
  padding: 20px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 16px;
}

.fr-draft-meta-row {
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
}

.fr-draft-meta-key {
  color: rgba(255,255,255,0.35);
  min-width: 52px;
}

.fr-draft-meta-val {
  color: rgba(255,255,255,0.75);
}

.fr-draft-body {
  padding: 24px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  white-space: pre-line;
}

.fr-draft-body strong {
  color: rgba(255,255,255,0.9);
}

.fr-draft-actions {
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 12px;
  align-items: center;
}

.fr-draft-btn-send {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
  background: rgba(160, 80, 40, 0.85);
  color: #fff;
  border: none;
  cursor: default;
}

.fr-draft-btn-edit {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: default;
}

.fr-draft-caption {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}
