/* Stillwater Building Cleaning — Theme A: Direct & Operational */

:root {
  --primary: #0d2b45;
  --accent: #e85c2a;
  --accent-light: #fdf0eb;
  --bg: #f8f8f6;
  --text: #1e1e1e;
  --text-muted: #555555;
  --border: #d0ccc4;
  --white: #ffffff;
  --font-head: Arial Black, Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

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

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

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

/* ── LAYOUT ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

@media (max-width: 768px) {
  .two-col, .three-col { grid-template-columns: 1fr; }
}

/* ── HEADER ── */
header {
  background: #2a2a2a;
  color: var(--white);
  padding: 0;
}

.header-top {
  background: var(--primary);
  padding: 8px 0;
  font-size: 0.85rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.header-top .strapline { color: #b0bec5; }
.header-top .strapline strong { color: var(--white); }

.header-main {
  background: #2a2a2a;
  padding: 16px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logo { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); text-decoration: none; }
.logo span { color: var(--accent); }

.header-contact { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.header-phone { font-family: var(--font-head); font-size: 1.2rem; color: var(--accent); text-decoration: none; }
.header-phone:hover { color: #ff7043; }

/* ── NAV ── */
nav { background: var(--primary); }
nav .container { display: flex; gap: 0; flex-wrap: wrap; }
nav a {
  color: #b0bec5;
  text-decoration: none;
  padding: 12px 16px;
  font-size: 0.88rem;
  display: block;
  transition: background 0.15s, color 0.15s;
}
nav a:hover, nav a.active { background: rgba(255,255,255,0.1); color: var(--white); }

/* ── HERO ── */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0;
}

.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }

.hero h1 { font-family: var(--font-head); font-size: 2rem; line-height: 1.2; margin-bottom: 16px; }
.hero p { font-size: 1.05rem; color: #b0bec5; margin-bottom: 24px; }
.hero-tags { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-tag { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 4px 12px; font-size: 0.82rem; color: #cfd8dc; }

/* ── QUOTE FORM ── */
.quote-form {
  background: var(--white);
  padding: 28px;
  border-top: 4px solid var(--accent);
}

.quote-form h2 { font-family: var(--font-head); font-size: 1.1rem; color: var(--primary); margin-bottom: 16px; }
.quote-form label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; margin-top: 12px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-top: 16px;
  width: 100%;
  text-align: center;
}
.btn-primary:hover { background: #d44e22; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  padding: 12px 24px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--accent);
  cursor: pointer;
}
.btn-secondary:hover { background: var(--accent-light); }

.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; }

/* ── SECTIONS ── */
.section { padding: 56px 0; }
.section-alt { background: var(--white); }
.section h2 { font-family: var(--font-head); font-size: 1.6rem; color: var(--primary); margin-bottom: 16px; }
.section h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--primary); margin-bottom: 8px; }
.section p { margin-bottom: 16px; color: var(--text); }
.section p:last-child { margin-bottom: 0; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
}

.card-accent { border-top: 3px solid var(--accent); }

.service-card { padding: 28px; }
.service-card .icon { font-size: 1.6rem; margin-bottom: 12px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.93rem; color: var(--text-muted); }
.service-card a { color: var(--accent); text-decoration: none; font-size: 0.88rem; display: block; margin-top: 12px; }
.service-card a:hover { text-decoration: underline; }

/* ── TABLES ── */
table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.93rem; }
th { background: var(--primary); color: var(--white); text-align: left; padding: 10px 14px; font-family: var(--font-head); font-size: 0.88rem; }
td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
tr:nth-child(even) td { background: #f2f0ed; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--primary); color: var(--white); padding: 24px 0; }
.trust-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.trust-item { text-align: center; }
.trust-item .number { font-family: var(--font-head); font-size: 1.8rem; color: var(--accent); }
.trust-item .label { font-size: 0.82rem; color: #b0bec5; }

/* ── CTA BAND ── */
.cta-band { background: var(--accent); padding: 40px 0; }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.cta-band h2 { font-family: var(--font-head); font-size: 1.4rem; color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); }
.btn-white { background: var(--white); color: var(--accent); padding: 14px 32px; font-family: var(--font-head); text-decoration: none; display: inline-block; }
.btn-white:hover { background: var(--accent-light); }

/* ── TOWN GRID ── */
.town-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 768px) { .town-grid { grid-template-columns: repeat(2, 1fr); } }
.town-link { background: var(--white); border: 1px solid var(--border); padding: 12px 16px; text-decoration: none; color: var(--primary); font-size: 0.9rem; display: block; }
.town-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── PAGE HEADER (inner pages) ── */
.page-header { background: var(--primary); color: var(--white); padding: 40px 0; }
.page-header h1 { font-family: var(--font-head); font-size: 1.8rem; line-height: 1.25; }
.page-header p { color: #b0bec5; margin-top: 10px; font-size: 0.98rem; }
.breadcrumb { font-size: 0.8rem; color: #78909c; margin-bottom: 12px; }
.breadcrumb a { color: #90a4ae; text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }

/* ── CONTENT ── */
.content-body h2 { font-family: var(--font-head); font-size: 1.4rem; color: var(--primary); margin: 32px 0 12px; }
.content-body h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--primary); margin: 24px 0 8px; }
.content-body p { margin-bottom: 16px; }
.content-body ul, .content-body ol { margin: 0 0 16px 24px; }
.content-body li { margin-bottom: 6px; }

/* ── SIDEBAR ── */
.sidebar .card { margin-bottom: 20px; }
.sidebar h3 { font-family: var(--font-head); font-size: 0.95rem; color: var(--primary); margin-bottom: 12px; }
.sidebar a { color: var(--accent); text-decoration: none; display: block; padding: 4px 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.sidebar a:hover { color: var(--primary); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item h3 { font-family: var(--font-head); font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); font-size: 0.95rem; }

/* ── PROCESS STEPS ── */
.process-step { display: grid; grid-template-columns: 60px 1fr; gap: 20px; margin-bottom: 32px; align-items: start; }
.step-num { background: var(--accent); color: var(--white); font-family: var(--font-head); font-size: 1.4rem; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.step-content h3 { font-family: var(--font-head); font-size: 1rem; color: var(--primary); margin-bottom: 6px; }

/* ── FOOTER ── */
footer { background: #1a1a1a; color: #999; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 { font-family: var(--font-head); font-size: 0.88rem; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
footer a { color: #999; text-decoration: none; display: block; margin-bottom: 6px; font-size: 0.88rem; }
footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-phone { color: var(--accent); font-family: var(--font-head); font-size: 1rem; }

/* ── UTILITY ── */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); font-size: 0.9rem; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.alert { background: var(--accent-light); border-left: 4px solid var(--accent); padding: 16px 20px; margin: 20px 0; font-size: 0.93rem; }
