/* ================================================================
   Morton Buildings — Project Estimator
   Brand-aligned stylesheet. No gradients. No gimmicks. Premium flat.
   ================================================================ */

:root {
  --red: #C8102E;
  --red-hover: #a50d25;
  --charcoal: #1a1a1a;
  --steel: #2d3748;
  --slate: #4a5568;
  --mist: #718096;
  --silver: #a0aec0;
  --frost: #e2e8f0;
  --snow: #f7f8fa;
  --white: #ffffff;
  --green: #276749;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --transition: 0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--snow);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-bar {
  background: var(--charcoal);
  border-bottom: 3px solid var(--red);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-accent {
  width: 5px;
  height: 36px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-wordmark {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-tagline {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--silver);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.header-phone-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mist);
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
}

.header-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.header-phone:hover { color: var(--red); }

/* ── PROGRESS BAR ───────────────────────────── */
.progress-bar {
  background: var(--steel);
}

.progress-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  padding: 0 24px;
}

.prog-step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 4px;
  border-bottom: 3px solid transparent;
  color: var(--mist);
  cursor: default;
  transition: all var(--transition);
  user-select: none;
}

.prog-step.active {
  color: var(--white);
  border-bottom-color: var(--red);
}

.prog-step.done {
  color: var(--silver);
  border-bottom-color: var(--green);
}

.prog-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--slate);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  transition: background var(--transition);
}

.prog-step.active .prog-num { background: var(--red); color: var(--white); }
.prog-step.done .prog-num { background: var(--green); color: var(--white); }

.prog-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .prog-label { display: none; }
  .prog-num { width: 28px; height: 28px; font-size: 14px; }
}

/* ── HERO BANNER ─────────────────────────────── */
.hero-banner {
  background: var(--charcoal);
  padding: 32px 24px 28px;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.hero-banner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-banner h1 span { color: var(--red); }

.hero-banner > .hero-inner > p {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.5;
  margin-bottom: 18px;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-icon {
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 600px) {
  .hero-banner h1 { font-size: 28px; }
  .trust-row { gap: 12px; }
  .trust-item { font-size: 11px; }
}

/* ── MAIN LAYOUT ────────────────────────────── */
.main-wrap {
  min-height: calc(100vh - 200px);
  scroll-margin-top: 110px;
}

.main-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ── STEP VISIBILITY ────────────────────────── */
.step { display: none; }
.step.active {
  display: block;
  animation: stepIn 0.3s ease;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── STEP HEADINGS ──────────────────────────── */
.step-head {
  margin-bottom: 32px;
}

.step-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  line-height: 1.1;
}

.step-head h2 span { color: var(--red); }

.step-head p {
  font-size: 15px;
  color: var(--slate);
  margin-top: 6px;
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn-primary:disabled { background: var(--silver); border-color: var(--silver); cursor: not-allowed; }

.btn-ghost {
  background: transparent;
  color: var(--slate);
  border-color: var(--frost);
}

.btn-ghost:hover { border-color: var(--slate); color: var(--charcoal); }

.btn-full { width: 100%; justify-content: center; text-align: center; }

/* ── STEP NAVIGATION ────────────────────────── */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--frost);
}

.step-nav.right-only { justify-content: flex-end; }

/* ── FORM ELEMENTS ──────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

.form-group select,
.form-group input[type="number"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  padding: 12px 14px;
  border: 2px solid var(--frost);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group select:focus,
.form-group input:focus { border-color: var(--red); }

.form-hint {
  font-size: 12px;
  color: var(--mist);
  line-height: 1.4;
}

.form-hint a { color: var(--red); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── STEP 1: LOCATION ──────────────────────── */
.location-card {
  background: var(--white);
  border: 1px solid var(--frost);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 480px;
}

.location-card select {
  font-size: 16px;
  padding: 14px;
}

.region-note {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--snow);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px;
  color: var(--steel);
  line-height: 1.5;
}

.region-note.visible { display: block; }

.region-note strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

/* ── STEP 2: BUILDING TYPE ─────────────────── */
.building-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 12px;
}

@media (max-width: 720px) { .building-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .building-grid { grid-template-columns: 1fr; } }

.building-card {
  background: var(--white);
  border: 2px solid var(--frost);
  border-radius: var(--radius);
  padding: 22px 18px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  text-align: left;
}

.building-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}

.building-card.selected {
  border-color: var(--red);
  background: #fef5f6;
}

.building-card.selected::after {
  content: '\2713';
  position: absolute;
  top: 10px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  font-weight: 700;
}

.building-card-icon {
  width: 40px;
  height: 40px;
  color: var(--red);
  margin-bottom: 10px;
}

.building-card.selected .building-card-icon { color: var(--red-hover); }

.building-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  line-height: 1.2;
}

.building-card-desc {
  font-size: 13px;
  color: var(--mist);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── STEP 3: DIMENSIONS ────────────────────── */
.presets-wrap { margin-bottom: 28px; }

.presets-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 10px;
}

.presets-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preset-btn {
  background: var(--white);
  border: 2px solid var(--frost);
  border-radius: 4px;
  padding: 8px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.preset-btn:hover { border-color: var(--red); color: var(--red); }
.preset-btn.active { border-color: var(--red); background: var(--red); color: var(--white); }

.dim-form { margin-bottom: 8px; }

.sqft-display {
  margin-top: 18px;
}

.sqft-badge {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
}

.sqft-badge span { color: var(--red); }

/* ── STEP 4: TIER CARDS ────────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

@media (max-width: 700px) { .tier-grid { grid-template-columns: 1fr; } }

.tier-card {
  background: var(--white);
  border: 2px solid var(--frost);
  border-radius: var(--radius);
  padding: 24px 20px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.tier-card:hover { border-color: var(--red); }

.tier-card.selected {
  border-color: var(--red);
  background: #fef5f6;
}

.tier-card.popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 12px;
  border-radius: 0 0 4px 4px;
}

.tier-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.tier-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 14px;
}

.tier-features {
  list-style: none;
  font-size: 13px;
  color: var(--slate);
  line-height: 1.9;
}

.tier-features li::before {
  content: '\2014\00a0';
  color: var(--silver);
}

/* ── STEP 4: COLORS ────────────────────────── */
.color-section { margin-top: 8px; }

.color-head h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--charcoal);
}

.color-head h3 span { color: var(--red); }

.color-head p {
  font-size: 13px;
  color: var(--slate);
  margin-top: 4px;
  margin-bottom: 18px;
}

.color-group {
  background: var(--white);
  border: 1px solid var(--frost);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.color-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  user-select: none;
  background: var(--snow);
  border-bottom: 1px solid var(--frost);
  transition: background var(--transition);
}

.color-group-header:hover { background: #eef0f3; }

.color-group-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.color-preview {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mist);
  text-transform: none;
  letter-spacing: 0;
}

.color-preview-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
}

.color-chevron {
  font-size: 11px;
  color: var(--mist);
  transition: transform 0.2s;
}

.color-group.open .color-chevron { transform: rotate(180deg); }

.color-group-body {
  display: none;
  padding: 16px 18px;
}

.color-group.open .color-group-body { display: block; }

.color-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 10px;
}

.swatch-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px 6px 8px;
  border: 2px solid var(--frost);
  border-radius: var(--radius);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
}

.swatch-btn:hover { border-color: #bbb; }

.swatch-btn.selected {
  border-color: var(--red);
  background: #fef5f6;
}

.swatch-btn.selected::after {
  content: '\2713';
  position: absolute;
  top: 4px;
  right: 5px;
  background: var(--red);
  color: var(--white);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 9px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
}

.swatch-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.swatch-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate);
  text-align: center;
  line-height: 1.3;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.swatch-tag {
  font-size: 10px;
  color: var(--red);
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
}

/* ── STEP 5: ADD-ONS ───────────────────────── */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

@media (max-width: 600px) { .addons-grid { grid-template-columns: 1fr; } }

.addon-item {
  background: var(--white);
  border: 2px solid var(--frost);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.addon-item:hover { border-color: #ccc; }
.addon-item.checked { border-color: var(--red); background: #fef5f6; }

.addon-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.addon-info { flex: 1; }

.addon-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.addon-hint {
  font-size: 12px;
  color: var(--mist);
  margin-top: 2px;
}

.interior-sub {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--frost);
}

.interior-sub.visible { display: block; }

.int-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.int-opts { display: flex; gap: 8px; flex-wrap: wrap; }

.int-opt {
  padding: 6px 14px;
  border: 2px solid var(--frost);
  border-radius: 4px;
  font-size: 13px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.12s;
  text-transform: uppercase;
  background: var(--white);
  color: var(--slate);
}

.int-opt:hover { border-color: var(--red); }
.int-opt.active { border-color: var(--red); background: var(--red); color: var(--white); }

/* ── STEP 6: RESULTS ───────────────────────── */
.estimate-hero {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.estimate-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--red);
}

.estimate-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}

.estimate-total {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) { .estimate-total { font-size: 32px; } }

.estimate-total .sep { color: var(--mist); font-weight: 400; }

.estimate-meta {
  font-size: 14px;
  color: var(--silver);
  margin-top: 10px;
}

.estimate-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.etag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--silver);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 3px;
}

/* ── RESULTS: REGION CALLOUT ── */
.region-callout {
  display: none;
  background: var(--snow);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--steel);
  line-height: 1.5;
}

.region-callout.visible { display: block; }
.region-callout strong { color: var(--charcoal); }

/* ── RESULTS: BREAKDOWN TABLE ── */
.breakdown-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--frost);
  overflow: hidden;
  margin-bottom: 20px;
}

.breakdown-head {
  background: var(--snow);
  padding: 14px 20px;
  border-bottom: 1px solid var(--frost);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  display: flex;
  justify-content: space-between;
}

.brow {
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--snow);
  font-size: 14px;
}

.brow:last-child { border-bottom: none; }

.brow-label { color: var(--slate); }

.brow-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  text-align: right;
}

.brow-total {
  background: var(--snow);
  border-top: 2px solid var(--frost);
}

.brow-total .brow-label {
  font-weight: 700;
  color: var(--charcoal);
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brow-total .brow-val { color: var(--red); font-size: 17px; font-weight: 800; }

/* ── RESULTS: DISCLAIMER ── */
.disclaimer {
  background: #fffcf5;
  border: 1px solid #e8dcc0;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  color: #6b4f1d;
  line-height: 1.6;
  margin-bottom: 28px;
}

.disclaimer strong { color: #5a3e12; }

/* ── RESULTS: CTA GRID ── */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 700px) { .cta-grid { grid-template-columns: 1fr; } }

.cta-card {
  background: var(--white);
  border: 2px solid var(--frost);
  border-radius: var(--radius);
  padding: 28px;
}

.cta-card--primary { border-color: var(--red); }

.cta-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.cta-card p {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ── LEAD FORM ── */
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--frost);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--charcoal);
}

.lead-form input:focus,
.lead-form select:focus { border-color: var(--red); }

.lead-form .btn { margin-top: 4px; }

.phone-cta {
  margin-top: 20px;
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
}

.phone-cta a { color: var(--charcoal); text-decoration: none; }
.phone-cta a:hover { color: var(--red); }

/* ── SUCCESS MESSAGE ── */
.lead-success {
  text-align: center;
  padding: 20px 0;
}

.lead-success h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.lead-success p {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 0;
}

/* ── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  border-top: 3px solid var(--red);
  padding: 20px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--mist);
}

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

.footer-links a {
  font-size: 12px;
  color: var(--silver);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .estimate-hero { padding: 28px 24px; }
  .cta-card { padding: 22px; }
}
