/* churchcleaningminnetonka.com — Theme A: Direct & Operational */
/* Colors */
:root {
  --primary: #0d2b45;
  --accent: #e85c2a;
  --accent-light: #fdf0eb;
  --bg: #f8f8f6;
  --text: #1e1e1e;
  --text-muted: #555555;
  --border: #d0ccc4;
  --white: #ffffff;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Typography */
h1, h2, h3, h4 {
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
ul, ol { margin: 0 0 1rem 1.5rem; }
li { margin-bottom: 0.35rem; }

/* Header */
.site-header {
  background: #2b2b2b;
  color: var(--white);
  padding: 0;
}
.header-top {
  background: var(--primary);
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.header-strapline {
  font-family: Arial, Helvetica, sans-serif;
  color: #ccc;
}
.header-strapline strong { color: var(--white); }
.header-contact a {
  color: var(--white);
  font-weight: bold;
  font-size: 1.05rem;
}
.header-main {
  background: #2b2b2b;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-name {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 900;
}
.site-name span { color: var(--accent); }

/* Nav */
nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.25rem; }
nav ul li a {
  color: #ccc;
  font-size: 0.875rem;
  padding: 0.35rem 0.65rem;
  display: block;
  transition: color 0.2s;
}
nav ul li a:hover { color: var(--white); text-decoration: none; }

/* Hero / above-fold */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 1.5rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 700px) { .hero-inner { grid-template-columns: 1fr; } }
.hero h1 { color: var(--white); font-size: clamp(1.7rem, 4vw, 2.6rem); }
.hero .lead { font-size: 1.1rem; color: #c8d8e8; margin-bottom: 1.25rem; }
.hero .phone-block { margin-bottom: 1.5rem; }
.hero .phone-block a {
  font-size: 1.75rem;
  font-family: "Arial Black", Arial, sans-serif;
  color: var(--white);
  font-weight: 900;
  display: block;
}
.hero .phone-block .hours { font-size: 0.85rem; color: #aabbc8; }

/* Quote form */
.quote-form {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 0;
  border-top: 4px solid var(--accent);
}
.quote-form h2 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.form-row { margin-bottom: 0.85rem; }
.form-row label { display: block; font-size: 0.85rem; font-weight: bold; margin-bottom: 0.3rem; color: var(--text); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}
.form-row textarea { min-height: 90px; resize: vertical; }
.form-status { margin-top: 0.85rem; font-size: 0.9rem; color: var(--primary); }
.form-status-error { color: #b3261e; }
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: background 0.2s;
}
.btn-primary:hover { background: #c94e20; text-decoration: none; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.65rem 1.4rem;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--accent); color: var(--white); text-decoration: none; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.6rem; text-align: center; }

/* Page content wrapper */
.content-wrap { max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.content-wrap.narrow { max-width: 780px; }

/* Section */
.section { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.section:last-child { border-bottom: none; }

/* Trust bar */
.trust-bar {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.5rem;
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  font-size: 0.9rem;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; }
.trust-item::before { content: "✓"; color: var(--accent); font-weight: bold; }

/* Service cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
}
.card h3 { color: var(--primary); }
.card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0.75rem; }

/* Town list */
.town-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}
.town-link {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: bold;
  transition: border-color 0.2s;
}
.town-link:hover { border-color: var(--accent); text-decoration: none; }

/* Table */
table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.95rem; }
th { background: var(--primary); color: var(--white); padding: 0.65rem 0.85rem; text-align: left; font-family: "Arial Black", Arial, sans-serif; }
td { padding: 0.6rem 0.85rem; border-bottom: 1px solid var(--border); }
tr:nth-child(even) td { background: #f3f2f0; }

/* CTA strip */
.cta-strip {
  background: var(--accent-light);
  border-top: 3px solid var(--accent);
  padding: 2rem 1.5rem;
  text-align: center;
}
.cta-strip h2 { color: var(--primary); margin-bottom: 0.75rem; }
.cta-strip p { margin-bottom: 1.25rem; }
.cta-strip .phone { font-size: 1.6rem; font-family: "Arial Black", Arial, sans-serif; color: var(--primary); display: block; margin-bottom: 0.75rem; }

/* Process steps */
.steps { counter-reset: step; margin-top: 1rem; }
.step { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.step-num {
  counter-increment: step;
  min-width: 2.25rem;
  height: 2.25rem;
  background: var(--primary);
  color: var(--white);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-num::before { content: counter(step); }
.step-body h3 { margin-bottom: 0.25rem; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.faq-q { font-family: "Arial Black", Arial, sans-serif; font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }

/* Breadcrumb */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 0.4rem; }

/* Footer */
footer {
  background: #1e1e1e;
  color: #aaa;
  padding: 2.5rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 0.35rem; }
.footer-col ul li a { color: #aaa; font-size: 0.875rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { font-size: 0.875rem; }
.footer-col .footer-phone { font-size: 1.15rem; color: var(--white); font-weight: bold; display: block; margin-bottom: 0.35rem; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.years-badge { color: var(--accent); font-weight: bold; }

/* Responsive */
@media (max-width: 600px) {
  .header-top { flex-direction: column; gap: 0.35rem; text-align: center; }
  .header-main { flex-direction: column; }
  nav ul { gap: 0; }
  .trust-bar-inner { flex-direction: column; gap: 0.75rem; }
  .footer-bottom { flex-direction: column; }
}
