/* Lake Elmo Church Cleaning — Theme B: Warm & Local */
/* Colors */
:root {
  --primary: #1a2e4a;
  --accent: #b8902a;
  --accent-light: #f5e9c8;
  --bg: #faf8f4;
  --text: #2c2c2c;
  --text-muted: #5a5a5a;
  --border: #d8d0c0;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); }
a:hover { color: var(--accent); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--primary);
  line-height: 1.3;
}
h1 { font-size: 2rem; margin-bottom: 0.75rem; }
h2 { font-size: 1.5rem; margin-bottom: 0.6rem; margin-top: 2rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1.1rem; }
ul, ol { margin-bottom: 1.1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.35rem; }

/* Layout */
.container { max-width: 1060px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
header {
  background: var(--primary);
  padding: 0.85rem 0;
  border-bottom: 3px solid var(--accent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-brand { text-decoration: none; }
.site-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--white);
  display: block;
  line-height: 1.2;
}
.site-strapline {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--accent-light);
  display: block;
  letter-spacing: 0.03em;
}
.header-contact {
  text-align: right;
  font-family: var(--sans);
}
.header-phone {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--accent-light);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.header-phone:hover { color: var(--white); }
.header-hours {
  font-size: 0.75rem;
  color: #b0a890;
  display: block;
}

/* Nav */
nav {
  background: var(--primary);
  border-bottom: 1px solid rgba(184,144,42,0.35);
  padding: 0.45rem 0;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}
.nav-list a {
  font-family: var(--sans);
  font-size: 0.83rem;
  color: #c8c0b0;
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  display: block;
  transition: background 0.15s, color 0.15s;
}
.nav-list a:hover, .nav-list a.active {
  background: rgba(184,144,42,0.2);
  color: var(--accent-light);
}

/* Hero / above-fold */
.hero {
  background: var(--primary);
  padding: 2.5rem 0 2rem;
  color: var(--white);
}
.hero-inner { display: flex; gap: 2.5rem; align-items: flex-start; flex-wrap: wrap; }
.hero-content { flex: 1 1 320px; }
.hero h1 { color: var(--white); font-size: 2.1rem; }
.hero .hero-lead {
  font-size: 1.08rem;
  color: #ccc4b0;
  margin-bottom: 1.2rem;
}
.hero-cta-block { margin-top: 1.25rem; display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  font-family: var(--sans);
  font-weight: bold;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  transition: background 0.15s;
}
.btn-primary:hover { background: #9a7a22; color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--accent-light);
  font-family: var(--sans);
  font-weight: bold;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--accent);
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(184,144,42,0.15); color: var(--accent-light); }

/* Quote form */
.quote-box {
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 5px;
  padding: 1.5rem;
  flex: 0 0 320px;
  min-width: 270px;
}
.quote-box h3 {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}
.form-field { margin-bottom: 0.85rem; }
.form-field label {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-weight: bold;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text);
}
.form-field textarea { height: 70px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--sans);
  font-weight: bold;
  padding: 0.7rem;
  border: none;
  border-radius: 3px;
  font-size: 0.95rem;
  cursor: pointer;
}
.form-submit:hover { background: #9a7a22; }
.form-note {
  font-family: var(--sans);
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

/* Main content */
main { padding: 2.5rem 0 3rem; }
.content-narrow { max-width: 760px; }

/* Cards / service grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 3px;
  padding: 1.2rem 1.1rem;
}
.card h3 { color: var(--primary); font-size: 1rem; margin-bottom: 0.4rem; }
.card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* Town list */
.town-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0;
}
.town-link {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.55rem 0.9rem;
  border-radius: 3px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--primary);
  transition: border-color 0.15s, background 0.15s;
}
.town-link:hover { border-color: var(--accent); background: var(--accent-light); }

/* Trust bar */
.trust-bar {
  background: var(--accent-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  margin: 2rem 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
}
.trust-item {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-item strong { font-weight: bold; }

/* Process steps */
.steps { margin: 1.5rem 0; }
.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  background: var(--accent);
  color: var(--white);
  font-family: var(--sans);
  font-weight: bold;
  font-size: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.step-body h3 { margin-top: 0; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: var(--serif);
  font-weight: bold;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--text-muted); text-decoration: underline; }
.breadcrumb span { margin: 0 0.35rem; }

/* Sidebar layout */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: 1.5rem;
}
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 3px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.sidebar-box h3 {
  font-size: 0.95rem;
  font-family: var(--sans);
  margin-bottom: 0.75rem;
  color: var(--primary);
}

/* Page hero (non-home) */
.page-hero {
  background: var(--primary);
  padding: 1.75rem 0 1.5rem;
  color: var(--white);
  border-bottom: 3px solid var(--accent);
}
.page-hero h1 { color: var(--white); font-size: 1.75rem; }
.page-hero p { color: #b8b0a0; margin-bottom: 0; font-size: 0.95rem; }

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-family: var(--sans);
  font-size: 0.88rem;
}
th {
  background: var(--primary);
  color: var(--white);
  padding: 0.55rem 0.75rem;
  text-align: left;
  font-weight: bold;
}
td { padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--border); }
tr:nth-child(even) td { background: var(--accent-light); }

/* Callout box */
.callout {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 3px 3px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.callout strong { color: var(--primary); }

/* Footer */
footer {
  background: var(--primary);
  color: #b0a890;
  padding: 2rem 0 1.25rem;
  border-top: 3px solid var(--accent);
  margin-top: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}
.footer-col p, .footer-col a {
  font-size: 0.83rem;
  color: #a0988a;
  text-decoration: none;
  display: block;
  line-height: 1.8;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-col .footer-phone {
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--accent-light);
}
.footer-bottom {
  border-top: 1px solid rgba(184,144,42,0.25);
  padding-top: 1rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: #786860;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.small { font-size: 0.85rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  .hero-inner { flex-direction: column; }
  .quote-box { flex: 1 1 100%; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .header-inner { flex-direction: column; text-align: center; }
  .header-contact { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
