/* Osseo Church Cleaning — Theme B: Warm & Local */
:root {
  --primary: #1a2e4a;
  --accent: #b8902a;
  --accent-light: #f5e9c8;
  --bg: #faf8f4;
  --text: #2c2c2c;
  --text-muted: #5a5a5a;
  --border: #d8d0c0;
  --white: #ffffff;
}

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

html { font-size: 16px; }

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--accent); text-decoration: underline; }
a:hover { color: var(--primary); }

/* ── Header ── */
.site-header {
  background: var(--primary);
  color: var(--white);
  padding: 0;
}

.header-strapline {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  padding: 6px 16px;
  letter-spacing: 0.03em;
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-logo {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
}

.site-logo span { color: var(--accent); }

.header-contact {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--accent-light);
  text-align: right;
}

.header-contact a {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: bold;
  text-decoration: none;
  display: block;
}

.header-hours {
  font-size: 0.8rem;
  color: var(--accent-light);
}

/* ── Nav ── */
.site-nav {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.site-nav a {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 12px 14px;
  display: block;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── Hero / Above fold ── */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 52px 20px;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--white);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  line-height: 1.65;
}

.hero-trust {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--accent-light);
  margin-top: 20px;
}

/* ── Quote Form ── */
.quote-form-wrap {
  background: var(--white);
  border-radius: 6px;
  padding: 28px 24px;
  border-top: 4px solid var(--accent);
}

.quote-form-wrap h2 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.quote-form label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  margin-top: 12px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
}

.quote-form textarea { min-height: 80px; resize: vertical; }

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 13px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  margin-top: 16px;
  width: 100%;
  text-align: center;
}

.btn-primary:hover { background: #9a7a24; color: var(--white); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  padding: 11px 24px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  text-decoration: none;
}

.btn-secondary:hover { background: var(--accent); color: var(--white); }

.callback-note {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}

.form-status {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  margin-top: 12px;
  text-align: center;
  min-height: 1em;
}

/* ── Main content ── */
.main-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px;
}

.page-header {
  margin-bottom: 36px;
}

.page-header h1 {
  font-family: Georgia, serif;
  font-size: 1.9rem;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 10px;
}

.page-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
}

h2 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 36px;
  margin-bottom: 12px;
  line-height: 1.3;
}

h3 {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 8px;
}

p { margin-bottom: 16px; }

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  padding: 24px 22px;
}

.card h3 {
  margin-top: 0;
  font-size: 1rem;
  color: var(--primary);
}

.card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 12px; }
.card a { font-family: Arial, sans-serif; font-size: 0.88rem; font-weight: bold; }

/* ── Services grid on homepage ── */
.services-strip {
  background: var(--accent-light);
  padding: 48px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.services-strip h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 1.5rem;
}

/* ── Town list ── */
.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.town-list a {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  color: var(--primary);
  text-decoration: none;
}

.town-list a:hover { background: var(--accent-light); border-color: var(--accent); }

/* ── Trust section ── */
.trust-strip {
  background: var(--primary);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
}

.trust-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.trust-strip h2 { color: var(--white); margin-top: 0; text-align: center; }
.trust-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-stat strong {
  display: block;
  font-size: 2rem;
  font-family: Georgia, serif;
  color: var(--accent);
}

.trust-stat span {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

/* ── Areas section ── */
.areas-section { padding: 48px 20px; }
.areas-inner { max-width: 1080px; margin: 0 auto; }

/* ── Resource list ── */
.resource-list { list-style: none; margin-top: 16px; }
.resource-list li {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.resource-list li:last-child { border-bottom: none; }
.resource-list a { font-size: 1rem; font-weight: bold; }
.resource-list p { font-size: 0.9rem; color: var(--text-muted); margin: 4px 0 0; }

/* ── CTA box ── */
.cta-box {
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: 4px;
  padding: 28px 24px;
  margin: 36px 0;
}

.cta-box h2 { margin-top: 0; font-size: 1.2rem; }
.cta-box p { margin-bottom: 16px; }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
}

.breadcrumb-inner {
  max-width: 1080px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Footer ── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 48px 20px 24px;
  margin-top: 48px;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
}

.footer-col h4 {
  font-family: Georgia, serif;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.footer-col a:hover { color: var(--accent); }

.footer-phone {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}

.footer-bottom {
  max-width: 1080px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.years-badge {
  color: var(--accent);
  font-weight: bold;
}

/* ── FAQ ── */
details {
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 12px;
  background: var(--white);
}

summary {
  padding: 16px 18px;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: bold;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }
summary::after { content: ' +'; color: var(--accent); }
details[open] summary::after { content: ' −'; }

details p {
  padding: 0 18px 16px;
  font-size: 0.94rem;
  color: var(--text);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .trust-stats { gap: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; align-items: flex-start; }
}
