/* ═══════════════════════════════════════════════
   ACE RECOVERY — SHARED STYLESHEET
   ace-recovery.com
═══════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --ink:       #0d0d0d;
  --charcoal:  #181818;
  --dark:      #242424;
  --mid:       #3a3a3a;
  --muted:     #6b6b6b;
  --rule:      #e2e2e2;
  --fog:       #f5f5f3;
  --white:     #ffffff;
  --red:       #c0001a;
  --red-deep:  #8a0012;
  --max:       980px;
  --oswald:    'Oswald', 'Arial Black', sans-serif;
  --serif:     'Source Serif 4', Georgia, serif;
  --sans:      'Inter', Arial, sans-serif;
}

/* ── BASE ── */
body {
  background: var(--ink);
  font-family: var(--sans);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--white);
}

/* ═══════════════════════════════════════════════
   RIBBON
═══════════════════════════════════════════════ */
.ribbon {
  background: var(--red);
  padding: 7px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ribbon-msg {
  font-family: var(--oswald);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.ribbon-links { display: flex; }

.ribbon-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: color 0.15s;
}

.ribbon-links a:last-child { border-right: none; }
.ribbon-links a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════
   HERO HEADER
═══════════════════════════════════════════════ */
.site-header {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: stretch;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/hero.webp') center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  gap: 20px;
}

.logo-block { display: flex; align-items: center; }
.logo-block img { width: 160px; height: auto; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6)); }

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.hero-tagline {
  font-family: var(--oswald);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--red);
  color: var(--white);
  font-family: var(--oswald);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 30px;
  border-left: 4px solid var(--red-deep);
  transition: background 0.18s;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.phone-cta:hover { background: var(--red-deep); color: var(--white); }
.phone-cta svg { width: 20px; height: 20px; fill: rgba(255,255,255,0.85); flex-shrink: 0; }

.order-btn {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--oswald);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.18s, background 0.18s;
}

.order-btn:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.site-nav {
  background: var(--dark);
  padding: 0 28px;
  display: flex;
  align-items: stretch;
  border-bottom: 3px solid var(--red);
}

.site-nav a {
  font-family: var(--oswald);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.15s, border-color 0.15s;
}

.site-nav a:hover,
.site-nav a.active { color: var(--white); border-bottom-color: var(--red); }

/* ═══════════════════════════════════════════════
   PROOF STRIP
═══════════════════════════════════════════════ */
.proof-strip {
  background: var(--fog);
  border-bottom: 1px solid var(--rule);
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 8px;
  border-right: 1px solid var(--rule);
}

.proof-item:last-child { border-right: none; }

.proof-check {
  width: 22px;
  height: 22px;
  background: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-check svg { width: 12px; height: 12px; fill: var(--white); }

.proof-label {
  font-family: var(--oswald);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  line-height: 1.2;
}

/* 5-column proof strip variant (order page) */
.proof-strip-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* ═══════════════════════════════════════════════
   BODY LAYOUT — TWO COLUMN
═══════════════════════════════════════════════ */
.body-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: start;
}

/* ── MAIN COPY ── */
.main-copy {
  padding: 40px 36px 48px 28px;
  border-right: 1px solid var(--rule);
}

.section-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.main-copy h1 {
  font-family: var(--oswald);
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 24px;
}

.main-copy h1 em { font-style: normal; color: var(--red); }

.rule-line {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 28px;
}

.main-copy h2 {
  font-family: var(--oswald);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}

.main-copy p {
  font-family: var(--serif);
  font-size: 15.5px;
  color: #2a2a2a;
  line-height: 1.8;
  margin-bottom: 20px;
}

.main-copy img {
  width: 100%;
  max-width: 480px;
  margin: 22px 0;
  border-top: 3px solid var(--red);
}

/* ── WHY LIST ── */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.why-list li {
  font-family: var(--oswald);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  padding-left: 20px;
  position: relative;
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--red);
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 4px solid var(--red);
  padding: 14px 20px;
  margin: 30px 0;
  background: var(--fog);
}

.pull-quote p {
  font-family: var(--oswald);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}

/* ── AREA GRID ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
  margin: 12px 0 24px;
}

.area-grid span {
  font-family: var(--sans);
  font-size: 13px;
  color: #333;
  padding: 5px 0 5px 14px;
  border-left: 3px solid var(--red);
  line-height: 1.3;
}

/* ── COVERAGE GRID (coverage page) ── */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0 32px;
}

.coverage-card {
  background: var(--fog);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--red);
  padding: 16px 18px;
  transition: background 0.15s;
}

.coverage-card:hover { background: var(--white); }

.coverage-card a {
  font-family: var(--oswald);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  transition: color 0.15s;
}

.coverage-card a:hover { color: var(--red); }

.coverage-card span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════ */
.sidebar {
  padding: 32px 20px;
  background: var(--fog);
  border-left: 1px solid var(--rule);
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--rule);
  margin-bottom: 20px;
}

.sidebar-card-head {
  background: var(--charcoal);
  padding: 11px 16px;
  font-family: var(--oswald);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}

.coverage-link {
  display: block;
  border: 1px solid var(--rule);
  transition: border-color 0.15s;
}

.coverage-link:hover { border-color: var(--red); }
.coverage-link img { width: 100%; height: auto; }

.sidebar-btn {
  display: block;
  background: var(--red);
  color: var(--white);
  font-family: var(--oswald);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 15px;
  margin-top: 16px;
  border-top: 3px solid var(--red-deep);
  transition: background 0.18s;
}

.sidebar-btn:hover { background: var(--red-deep); color: var(--white); }

/* ── OTHER CITIES ── */
.other-cities {
  background: var(--white);
  border: 1px solid var(--rule);
  margin-top: 20px;
}

.other-cities-body { padding: 14px 16px; }

.other-cities-body a {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--red);
  padding: 5px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.15s;
}

.other-cities-body a:last-child { border-bottom: none; }
.other-cities-body a:hover { color: var(--red-deep); }

/* ── CITY LIST (scrollable) ── */
.city-list-card {
  background: var(--white);
  border: 1px solid var(--rule);
  margin-top: 20px;
}

.city-list-body {
  padding: 14px 16px;
  max-height: 340px;
  overflow-y: auto;
}

.city-list-body p {
  font-family: var(--sans);
  font-size: 11.5px;
  color: #444;
  line-height: 2;
}

/* ── CONTACT CARD ── */
.sidebar-contact {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 18px 16px;
  margin-top: 20px;
}

.contact-head {
  font-family: var(--oswald);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-row:last-child { margin-bottom: 0; }

.contact-icon {
  width: 28px;
  height: 28px;
  background: var(--ink);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg { width: 13px; height: 13px; fill: var(--white); }
.contact-text { font-family: var(--sans); font-size: 13px; color: var(--ink); font-weight: 500; }
.contact-sub { font-size: 11px; color: var(--muted); font-weight: 400; }

/* ═══════════════════════════════════════════════
   ORDER PAGE STEPS
═══════════════════════════════════════════════ */
.main-content {
  padding: 48px 40px 56px;
}

.main-content > p {
  font-family: var(--serif);
  font-size: 15.5px;
  color: #2a2a2a;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 680px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  border: 1px solid var(--rule);
  background: var(--white);
}

.step-num {
  min-width: 60px;
  align-self: stretch;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--oswald);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-right: 3px solid var(--red);
}

.step-body { padding: 20px 24px; flex: 1; }

.step-body h3 {
  font-family: var(--oswald);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-body p {
  font-family: var(--serif);
  font-size: 15px;
  color: #333;
  line-height: 1.75;
  margin-bottom: 0;
}

.step-body a { color: var(--red); }
.step-body a:hover { color: var(--red-deep); }

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--oswald);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  margin-top: 14px;
  border: 2px solid var(--red-deep);
  transition: background 0.18s;
}

.download-btn:hover { background: var(--red-deep); color: var(--white); }
.download-btn svg { width: 16px; height: 16px; fill: var(--white); flex-shrink: 0; }

.note-box {
  background: var(--fog);
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-family: var(--sans);
  font-size: 13.5px;
  color: #333;
  line-height: 1.6;
}

.note-box strong {
  font-family: var(--oswald);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.divider { border: none; border-top: 1px solid var(--rule); margin: 32px 0; }

.call-section h2 {
  font-family: var(--oswald);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 12px;
}

.call-section p {
  font-family: var(--serif);
  font-size: 15px;
  color: #333;
  line-height: 1.75;
  margin-bottom: 12px;
}

.call-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--oswald);
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.call-phone svg { width: 22px; height: 22px; fill: var(--red); }
.call-phone:hover { color: var(--red-deep); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer-nav {
  background: var(--dark);
  border-top: 3px solid var(--red);
  padding: 20px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--oswald);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #777;
  padding: 6px 20px;
  border-right: 1px solid #333;
  transition: color 0.15s;
}

.footer-nav a:last-child { border-right: none; }
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  background: var(--charcoal);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid var(--mid);
}

.footer-bottom img { opacity: 0.5; filter: brightness(0) invert(1); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 720px) {
  .ribbon { display: none; }

  .site-header { min-height: 200px; }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
    gap: 16px;
  }

  .logo-block img { width: 120px; }

  .hero-cta { align-items: flex-start; }

  .phone-cta { font-size: 22px; padding: 12px 20px; }

  .site-nav { padding: 0 12px; flex-wrap: wrap; }
  .site-nav a { padding: 10px 10px; font-size: 12px; }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
    padding: 0 16px;
  }

  .proof-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .proof-item:nth-child(odd) { border-right: 1px solid var(--rule); }

  .body-grid { grid-template-columns: 1fr; }

  .main-copy {
    padding: 28px 16px;
    border-right: none;
  }

  .sidebar {
    border-left: none;
    border-top: 3px solid var(--red);
    padding: 24px 16px;
  }

  .main-content { padding: 28px 16px 40px; }

  .coverage-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }

  .footer-nav { padding: 14px 12px; }
  .footer-nav a { padding: 6px 12px; font-size: 11px; }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    padding: 14px;
  }
}