/* ============================================================
   CROWN ROOT PLUMBING — "The Old Reliable"
   Deep forest green + brass gold. Image-forward hero, stacked CTA,
   phone as the star. Old-school tradesman.
   Palette: green #2f6b3a / #1d4d2e · brass #c9a04d · cream #faf6ef
   (NO navy, NO orange — HVAC site owns those)
   ============================================================ */
:root {
  --brand: #2f6b3a;          /* forest green */
  --brand-dark: #1d4d2e;
  --brand-light: #c9a04d;    /* brass gold */
  --ink: #1f2420;
  --muted: #5f665f;
  --bg: #faf6ef;             /* cream */
  --bg-soft: #f0ead9;
  --panel: #ffffff;
  --line: #ddd3bd;
  --accent: #173c24;         /* deep green for dark sections */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
}
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Utility bar — old-school tradesman call strip */
.utility-bar {
  background: var(--accent);
  color: #d8d2bd;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.utility-inner {
  max-width: 1080px; margin: 0 auto; padding: 8px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.utility-inner a { color: var(--brand-light); text-decoration: none; font-weight: 600; }

.site-header {
  border-bottom: 3px solid var(--brand-light);
  background: var(--panel);
  position: sticky; top: 0; z-index: 10;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: var(--accent);
  text-decoration: none; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand span { color: var(--brand); }
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a { color: var(--ink); text-decoration: none; font-family: 'Oswald', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.9rem; }
.main-nav a:hover { color: var(--brand-dark); }

.btn {
  display: inline-block; background: var(--brand); color: #fff;
  padding: 13px 28px; text-decoration: none;
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 2px; box-shadow: 0 2px 0 var(--brand-dark);
}
.btn:hover { background: var(--brand-dark); }
.btn-small { padding: 9px 18px; font-size: 0.85rem; }

/* HERO — full-bleed photo, dark green overlay, stacked content */
.hero {
  position: relative;
  background: url('/assets/crown-van.jpg') center 35% / cover no-repeat;
  color: #fff;
  padding: 130px 0 110px;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,60,36,0.82) 0%, rgba(23,60,36,0.55) 55%, rgba(23,60,36,0.9) 100%);
}
.hero-inner { position: relative; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.hero h1 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 3.1rem; line-height: 1.08; margin: 0 auto 14px;
  color: #fff; text-transform: uppercase; letter-spacing: 0.01em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero h1 em { color: var(--brand-light); font-style: normal; }
.hero p { font-size: 1.12rem; color: #e6e2d0; max-width: 560px; margin: 0 auto 26px; }
.hero-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 2.1rem; letter-spacing: 0.04em; margin-bottom: 26px;
}
.hero-phone a { color: #fff; text-decoration: none; border-bottom: 3px solid var(--brand-light); }
.hero-phone a:hover { color: var(--brand-light); }
/* STACKED buttons — one primary, one quiet text link below */
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero .btn { font-size: 1.15rem; padding: 16px 44px; background: var(--brand-light); color: var(--accent); box-shadow: 0 3px 0 var(--brand-dark); }
.hero .btn:hover { background: var(--brand); color: #fff; }
.hero-link { color: #d8d2bd; text-decoration: underline; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; }
.hero-link:hover { color: #fff; }

/* Trust strip — license / insured / 24-7, brass on deep green */
.trust-strip {
  background: var(--accent);
  border-top: 3px solid var(--brand-light);
  padding: 14px 0;
}
.trust-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.9rem; color: var(--brand-light);
}
.trust-inner span::before { content: "◆ "; color: #6d7d5e; font-size: 0.7rem; }

.section { padding: 68px 0; }
.section h2 {
  font-family: 'Oswald', sans-serif; font-size: 2rem; color: var(--accent);
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.02em;
}
.section .lead { color: var(--muted); margin-bottom: 34px; max-width: 640px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.service-card {
  background: var(--panel); border-top: 4px solid var(--brand);
  box-shadow: 0 1px 3px rgba(23,60,36,0.15);
  padding: 26px 24px;
}
.service-card h3 { font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: var(--accent); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.service-card p { font-size: 0.95rem; color: var(--muted); }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.why-item {
  background: var(--accent); color: #d8d2bd; padding: 24px;
  border-left: 4px solid var(--brand-light);
}
.why-item h3 { font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.why-item p { font-size: 0.95rem; color: #a8b8a5; }

.site-footer {
  border-top: 3px solid var(--brand-light);
  background: var(--accent); color: #a8b8a5;
  padding: 44px 0; margin-top: 40px; font-size: 0.92rem;
}
.site-footer a { color: var(--brand-light); }
.site-footer .footer-note { margin-top: 12px; font-size: 0.85rem; color: #7d8a76; }

/* Blog */
.post-list { list-style: none; }
.post-list li { border-bottom: 1px solid var(--line); padding: 22px 0; }
.post-list a { color: var(--accent); text-decoration: none; font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; }
.post-list a:hover { color: var(--brand-dark); }
.post-list .meta { color: var(--muted); font-size: 0.88rem; margin-top: 4px; }
.post-body { max-width: 720px; }
.post-body h2 { font-size: 1.5rem; margin-top: 34px; color: var(--accent); }
.post-body p { margin: 16px 0; }
.post-body ul, .post-body ol { margin: 16px 0 16px 24px; }
.post-body blockquote { border-left: 4px solid var(--brand); padding-left: 18px; color: var(--muted); margin: 20px 0; }

table { width: 100%; border-collapse: collapse; margin: 20px 0; }
th, td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; font-size: 0.95rem; }
th { background: var(--accent); color: #fff; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; }

@media (max-width: 640px) {
  .hero { padding: 90px 0 80px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-phone { font-size: 1.6rem; }
  .main-nav { gap: 14px; }
  .main-nav a:nth-child(3) { display: none; }
  .utility-inner { flex-direction: column; gap: 4px; }
  .trust-inner { gap: 18px; font-size: 0.78rem; }
}
