/* Scottsdale Building Cleaning Co — Theme A: Direct & Operational */

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

:root {
  --primary:      #0d2b45;
  --accent:       #e85c2a;
  --accent-light: #fdf0eb;
  --bg:           #f8f8f6;
  --text:         #1e1e1e;
  --muted:        #555555;
  --border:       #d0ccc4;
  --white:        #ffffff;
}

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: var(--primary);
  color: var(--white);
  padding: 0;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.brand-block { flex: 1 1 auto; }
.brand-name {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--white);
  text-decoration: none;
}
.brand-strapline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  margin-top: 2px;
}
.header-cta { text-align: right; }
.header-phone {
  display: block;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.header-hours {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
}
.site-nav {
  background: rgba(0,0,0,0.25);
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.site-nav a {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 10px 14px;
  transition: color 0.15s, background 0.15s;
}
.site-nav a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* ── HERO / ABOVE FOLD ──────────────────── */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 48px 24px 40px;
}
.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.hero h1 {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
}
.hero-points {
  list-style: none;
  margin-bottom: 24px;
}
.hero-points li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 0.94rem;
}
.hero-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── QUOTE FORM ─────────────────────────── */
.quote-form-card {
  background: var(--white);
  padding: 24px;
  border-top: 4px solid var(--accent);
}
.quote-form-card h2 {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--border);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}
.btn-primary {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: var(--white);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 0;
  text-decoration: none;
}
.btn-primary:hover { background: #d04e1f; }
.form-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}
.form-status {
  margin-top: 12px;
  padding: 10px 12px;
  font-size: 0.85rem;
  border-radius: 0;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: #e6f4ea;
  color: #1e5e33;
  border: 1px solid #b7dcc2;
}
.form-status.is-error {
  background: #fdecea;
  color: #7a2119;
  border: 1px solid #f3c1bb;
}
.btn-primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── MAIN CONTENT ───────────────────────── */
.content-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px;
}
.content-wrap-wide {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION LABELS ─────────────────────── */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-title {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.6rem;
  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: 32px;
}

/* ── SERVICE GRID ───────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--white);
  padding: 28px 24px;
  border-left: 4px solid var(--accent);
}
.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 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.service-card a:hover { text-decoration: underline; }

/* ── TOWN LIST ──────────────────────────── */
.town-section { background: var(--white); padding: 40px 24px; margin-bottom: 0; }
.town-section .content-wrap-wide { padding-top: 0; padding-bottom: 0; }
.town-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 24px;
}
.town-link {
  display: block;
  padding: 12px 14px;
  background: var(--bg);
  color: var(--primary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid var(--border);
  transition: background 0.12s, border-color 0.12s;
}
.town-link:hover { background: var(--accent-light); border-color: var(--accent); }

/* ── TRUST BAR ──────────────────────────── */
.trust-bar {
  background: var(--primary);
  color: var(--white);
  padding: 28px 24px;
}
.trust-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-item-num {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.trust-item-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* ── CONTENT SECTIONS ───────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.content-section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.content-section:last-child { border-bottom: none; }

h2 {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 14px;
}
h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 20px; margin-bottom: 14px; }
li { margin-bottom: 6px; }
a { color: var(--accent); }

/* ── DATA TABLE ─────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.data-table th {
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.data-table tr:nth-child(even) td { background: var(--accent-light); }

/* ── PROCESS STEPS ──────────────────────── */
.process-steps { list-style: none; padding: 0; }
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  padding-top: 2px;
}
.step-body h3 { margin-bottom: 6px; }

/* ── FAQ ────────────────────────────────── */
.faq-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

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

/* ── PAGE HERO (non-home) ───────────────── */
.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 36px 24px 32px;
}
.page-hero-inner { max-width: 960px; margin: 0 auto; }
.page-hero h1 {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}
.page-hero p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
  max-width: 640px;
}

/* ── CTA STRIP ──────────────────────────── */
.cta-strip {
  background: var(--accent);
  padding: 32px 24px;
  text-align: center;
}
.cta-strip h2 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cta-strip p { color: rgba(255,255,255,0.88); margin-bottom: 20px; font-size: 0.95rem; }
.btn-white {
  display: inline-block;
  padding: 13px 32px;
  background: var(--white);
  color: var(--accent);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 0;
}
.btn-white:hover { background: var(--bg); }

/* ── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 40px 24px 24px;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand-name {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-strapline {
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.footer-contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}
.footer-contact p { font-size: 0.82rem; margin-bottom: 4px; }
.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 960px;
  margin: 20px auto 0;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── RESOURCE ARTICLE ───────────────────── */
.article-body { max-width: 720px; }
.article-body h2 { margin-top: 32px; margin-bottom: 12px; }
.article-body h3 { margin-top: 24px; margin-bottom: 8px; }

/* ── UTILITY ────────────────────────────── */
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.text-muted { color: var(--muted); }
.inline-phone {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; gap: 8px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .town-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.3rem; }
  .header-top { flex-direction: column; align-items: flex-start; }
  .header-cta { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
