/* ============================================================
   Spokane Stump Co — site.css
   ============================================================ */

:root {
  --green:       #2a6e2a;
  --green-dark:  #1d4d1d;
  --orange:      #e07b0f;
  --orange-dark: #c06a00;
  --dark:        #1c1c1c;
  --mid:         #555;
  --light-bg:    #f7f7f4;
  --white:       #ffffff;
  --border:      #ddd;
  --max-w:       1100px;
  --radius:      5px;
}

/* ── Scroll ─────────────────────────────────────── */
html { scroll-behavior: smooth; }

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--dark);
  line-height: 1.65;
  font-size: 16px;
  background: var(--white);
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 5px; }

/* ── Layout ─────────────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ── Header ─────────────────────────────────────── */
.site-header { background: var(--dark); padding: 13px 0; }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.site-logo a { color: #fff; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.3px; }
.site-logo a:hover { text-decoration: none; }
.header-phone a {
  background: var(--orange); color: #fff; padding: 9px 20px;
  border-radius: var(--radius); font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
.header-phone a:hover { background: var(--orange-dark); text-decoration: none; }

/* ── Nav ─────────────────────────────────────────── */
.site-nav { background: var(--green-dark); }
.site-nav .wrap { display: flex; flex-wrap: wrap; }
.site-nav a {
  color: rgba(255,255,255,.82); padding: 10px 15px;
  font-size: .88rem; display: block; font-weight: 500;
}
.site-nav a:hover, .site-nav a.active {
  background: rgba(255,255,255,.12); color: #fff; text-decoration: none;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  background: linear-gradient(rgba(26,58,26,0.74), rgba(18,44,18,0.82)),
              url(/assets/spokane-grand-blvd.jpg) center/cover no-repeat;
  color: #fff; padding: 58px 0 50px;
}
.hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.8rem);
  font-weight: 800; line-height: 1.18; margin-bottom: 14px;
}
.hero .subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.96); max-width: 620px; margin-bottom: 28px;
}

/* ── CTAs ────────────────────────────────────────── */
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-call {
  background: var(--orange); color: #fff; padding: 13px 26px;
  border-radius: var(--radius); font-weight: 700; font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
}
.btn-call:hover { background: var(--orange-dark); text-decoration: none; }
.btn-form {
  background: transparent; color: #fff; padding: 13px 26px;
  border-radius: var(--radius); font-weight: 700; font-size: .98rem;
  display: inline-flex; align-items: center; gap: 7px;
  border: 2px solid rgba(255,255,255,.85);
}
.btn-form::after { content: " ↓"; font-size: .9em; opacity: .8; }
.btn-form:hover { background: rgba(255,255,255,.12); border-color: #fff; text-decoration: none; color: #fff; }

/* ── Trust Bar ───────────────────────────────────── */
.trust-bar { background: var(--light-bg); border-bottom: 1px solid var(--border); padding: 13px 0; }
.trust-bar .wrap { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.trust-item { font-size: .88rem; color: var(--mid); display: flex; align-items: center; gap: 5px; }
.trust-item strong { color: var(--dark); }

/* ── Sections ────────────────────────────────────── */
section { padding: 52px 0; }
section.bg-light { background: var(--light-bg); }

h2 {
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  font-weight: 700; line-height: 1.25; margin-bottom: 14px;
}
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
p { margin-bottom: 14px; color: #555; }
p:last-child { margin-bottom: 0; }

/* ── Step Cards ──────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px; margin-top: 26px;
}
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; }
.step-num {
  width: 34px; height: 34px; background: var(--green); color: #fff;
  border-radius: 50%; display: inline-flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: .9rem; margin-bottom: 10px;
}

/* ── Card Grid ───────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 24px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; }
.card h3 { color: var(--green-dark); }
.card p { font-size: .93rem; }
.card a { font-size: .9rem; font-weight: 600; }

/* ── Compare Grid ────────────────────────────────── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.compare-col { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.compare-col-head { background: var(--green); color: #fff; padding: 14px 18px; font-weight: 700; }
.compare-col-body { padding: 18px; }
.compare-col-body ul { padding-left: 1.3rem; }
.compare-col-body li { color: #555; font-size: .92rem; }

/* ── Cost Factor Cards ───────────────────────────── */
.factor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; margin-top: 24px; }
.factor-card {
  background: #fff; border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 16px;
}
.factor-card h3 { color: var(--green-dark); font-size: 1rem; margin-bottom: 6px; }
.factor-card p { font-size: .88rem; margin: 0; }

/* ── FAQ ─────────────────────────────────────────── */
.faq { margin-top: 22px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
details summary {
  padding: 15px 0; cursor: pointer; font-weight: 600; font-size: .97rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 1.35rem; color: var(--green); flex-shrink: 0; line-height: 1; }
details[open] summary::after { content: '\2212'; }
details > p, details > div { padding: 2px 0 16px; font-size: .93rem; color: #555; }

/* ── CTA Block ───────────────────────────────────── */
.cta-block { background: var(--green); color: #fff; text-align: center; padding: 50px 0; }
.cta-block h2 { color: #fff; margin-bottom: 10px; }
.cta-block > .wrap > p { color: rgba(255,255,255,.88); margin-bottom: 26px; font-size: 1.05rem; }
.cta-center { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Form ────────────────────────────────────────── */
.form-wrap {
  max-width: 560px; margin: 24px auto 0; background: #fff;
  border-radius: var(--radius); padding: 28px 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group textarea {
  padding: 9px 11px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: .94rem; font-family: inherit;
  color: var(--dark); background: #fff; width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  outline: 2px solid var(--green); outline-offset: -1px;
}
.form-group textarea { min-height: 88px; resize: vertical; }
.honeypot { display: none !important; visibility: hidden !important; }
.btn-submit {
  background: var(--orange); color: #fff; border: none; padding: 12px 0;
  width: 100%; border-radius: var(--radius); font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: inherit; margin-top: 4px;
}
.btn-submit:hover { background: var(--orange-dark); }
.form-disclosure { font-size: .78rem; color: #888; margin-top: 12px; line-height: 1.55; text-align: center; }
.form-disclosure a { color: #888; text-decoration: underline; }

/* ── Area list / cards ───────────────────────────── */
.area-list { columns: 3; column-gap: 24px; list-style: none; padding: 0; margin: 16px 0; }
.area-list li { padding: 6px 0; border-bottom: 1px solid var(--border); color: var(--mid); font-size: .94rem; break-inside: avoid; }
.area-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-top: 24px; }
.area-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; background: #fff; }
.area-card h3 { font-size: .97rem; color: var(--green-dark); margin-bottom: 3px; }
.area-card p { font-size: .82rem; color: var(--mid); margin: 0; }

/* ── Prose (Privacy / Terms) ─────────────────────── */
.prose { max-width: 760px; }
.prose h2 { margin-top: 34px; margin-bottom: 10px; font-size: 1.3rem; }
.prose h3 { margin-top: 22px; margin-bottom: 7px; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 14px; }
.prose li { color: #555; font-size: .94rem; }
.prose a { text-decoration: underline; }
.page-intro { padding: 38px 0 14px; }
.page-intro h1 { margin-bottom: 10px; }
.page-intro p { max-width: 640px; font-size: 1.05rem; }

/* ── Thank You ───────────────────────────────────── */
.thank-you { text-align: center; padding: 80px 20px 100px; max-width: 560px; margin: 0 auto; }
.thank-you h1 { margin-bottom: 16px; }
.thank-you p { font-size: 1.05rem; margin-bottom: 24px; color: #555; }

/* ── Footer ──────────────────────────────────────── */
.site-footer { background: #111; color: rgba(255,255,255,.6); padding: 38px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 28px; margin-bottom: 28px; }
.footer-col h4 { color: rgba(255,255,255,.88); font-size: .82rem; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,.6); display: block; margin-bottom: 8px; font-size: .88rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-col p { font-size: .86rem; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.09); margin-bottom: 18px; }
.footer-disclosure { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 16px; }
.footer-bottom { font-size: .78rem; color: rgba(255,255,255,.38); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: #fff; text-decoration: none; }

/* ── Testimonials ─────────────────────────────────── */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 28px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 22px; position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-size: 3.5rem; line-height: 1; color: var(--green);
  position: absolute; top: 10px; left: 18px; font-family: Georgia, serif;
}
.testimonial-card p { padding-top: 22px; color: #444; font-size: .95rem; line-height: 1.65; }
.testimonial-card cite { display: block; margin-top: 14px; font-size: .85rem; color: var(--mid); font-style: normal; font-weight: 600; }

/* ── Local Photo Split ──────────────────────────── */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 28px;
}
.photo-split img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: var(--radius); display: block;
}
.photo-split figcaption {
  font-size: .8rem; color: var(--mid); margin-top: 7px; text-align: center; line-height: 1.45;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 680px) {
  .form-row { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .photo-split { grid-template-columns: 1fr; }
  .area-list { columns: 2; }
  .hero { padding: 38px 0 34px; }
  .trust-bar .wrap { flex-direction: column; align-items: flex-start; gap: 10px; }
  .form-wrap { padding: 20px 16px; }
}
@media (max-width: 440px) {
  .area-list { columns: 1; }
  .header-phone a { font-size: .92rem; padding: 8px 14px; }
  .site-logo a { font-size: 1.1rem; }
}
