/* Inver Grove Heights Commercial Cleaners — Theme A: Direct & Operational */
:root {
  --primary: #0d2b45;
  --accent: #e85c2a;
  --accent-light: #fdf0eb;
  --bg: #f8f8f6;
  --text: #1e1e1e;
  --muted: #555555;
  --border: #d0ccc4;
  --white: #ffffff;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

/* ── HEADER ── */
.site-header {
  background: #2c2c2c;
  color: var(--white);
  padding: 0;
}
.header-top {
  background: var(--primary);
  padding: 6px 24px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.header-top a { color: #cce0f5; text-decoration: none; }
.header-top a:hover { text-decoration: underline; }
.header-main {
  background: #2c2c2c;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-logo {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.site-logo span { color: var(--accent); }
.header-cta-group { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.header-phone {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
}
.header-phone:hover { color: var(--accent); }
.btn {
  display: inline-block;
  padding: 10px 22px;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 0;
  cursor: pointer;
  border: none;
  line-height: 1.3;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #c94e22; }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--primary); }

nav { background: var(--primary); }
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.nav-inner a {
  color: #cce0f5;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 16px;
  display: block;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.nav-inner a:hover, .nav-inner a.active { background: rgba(255,255,255,0.1); color: var(--white); }

/* ── HERO ── */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 52px 24px;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b8d0e8;
  margin-bottom: 24px;
}
.hero-bullets { list-style: none; margin-bottom: 28px; }
.hero-bullets li {
  padding: 4px 0 4px 22px;
  position: relative;
  color: #d8eaf8;
  font-size: 0.9rem;
}
.hero-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.hero-phone-display {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
.hero-hours { font-size: 0.8rem; color: #99bcd6; margin-bottom: 20px; }

/* ── QUOTE FORM ── */
.quote-card {
  background: var(--white);
  padding: 28px;
  border-top: 4px solid var(--accent);
}
.quote-card h2 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
}
.quote-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 0;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: -1px;
}
.form-group textarea { height: 70px; resize: vertical; }
.form-submit { width: 100%; padding: 13px; font-size: 1rem; }
.form-note { font-size: 0.75rem; color: var(--muted); margin-top: 8px; text-align: center; }

/* ── MAIN LAYOUT ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.page-section { padding: 52px 24px; }
.page-section.alt { background: var(--white); }
.section-inner { max-width: 1120px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-lead { font-size: 1rem; color: var(--muted); max-width: 640px; margin-bottom: 36px; }

/* ── SERVICE GRID ── */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 24px;
}
.service-card h3 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 14px; }
.service-card a { color: var(--accent); font-weight: 700; font-size: 0.875rem; text-decoration: none; }
.service-card a:hover { text-decoration: underline; }

/* ── TOWN GRID ── */
.town-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.town-link {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 16px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  display: block;
  text-align: center;
}
.town-link:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--primary);
  color: var(--white);
  padding: 18px 24px;
}
.trust-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}
.trust-item { font-size: 0.875rem; }
.trust-item strong {
  display: block;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
}

/* ── PROSE CONTENT ── */
.prose-content { max-width: 760px; }
.prose-content h2 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  margin: 32px 0 14px;
  line-height: 1.25;
}
.prose-content h2:first-child { margin-top: 0; }
.prose-content h3 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  margin: 24px 0 10px;
}
.prose-content p { margin-bottom: 16px; }
.prose-content ul { margin: 0 0 16px 20px; }
.prose-content ul li { margin-bottom: 6px; }
.prose-content a { color: var(--accent); font-weight: 700; }
.prose-content a:hover { text-decoration: underline; }

/* ── TABLE ── */
table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; }
th {
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
tr:nth-child(even) td { background: var(--accent-light); }

/* ── FAQ ── */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 0.975rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
}
.faq-a { font-size: 0.9rem; color: var(--muted); }

/* ── PROCESS STEPS ── */
.process-steps { counter-reset: step; max-width: 760px; }
.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h3 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
}
.step-body p { font-size: 0.9rem; color: var(--muted); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  font-size: 0.8rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 40px 24px;
}
.page-hero-inner { max-width: 1120px; margin: 0 auto; }
.page-hero h1 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 10px;
}
.page-hero p { color: #b8d0e8; font-size: 0.95rem; max-width: 640px; }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--accent);
  padding: 40px 24px;
  text-align: center;
  color: var(--white);
}
.cta-block h2 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.cta-block p { font-size: 0.95rem; margin-bottom: 20px; opacity: 0.9; }
.btn-white { background: var(--white); color: var(--accent); }
.btn-white:hover { background: var(--accent-light); }
.cta-phone { font-family: Arial Black, Arial, sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--white); text-decoration: none; display: block; margin-top: 12px; }
.cta-hours { font-size: 0.8rem; opacity: 0.8; margin-top: 4px; }

/* ── FOOTER ── */
footer {
  background: #1a1a1a;
  color: #b0b0b0;
  padding: 40px 24px 24px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand { font-family: Arial Black, Arial, sans-serif; font-size: 1rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.footer-tagline { font-size: 0.8rem; line-height: 1.6; margin-bottom: 14px; }
.footer-contact { font-size: 0.875rem; line-height: 1.8; }
.footer-contact a { color: #cce0f5; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #999; font-size: 0.85rem; text-decoration: none; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 18px;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .quote-card { margin-top: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .town-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.4rem; }
  .town-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { flex-direction: column; gap: 10px; }
  .header-main { padding: 12px 16px; }
  .nav-inner a { padding: 10px 12px; font-size: 0.8rem; }
}
