:root {
  --ink: #16232b;
  --ink-soft: #4a5862;
  --bg: #ffffff;
  --bg-alt: #f4f7f9;
  --brand: #0d4f6b;
  --brand-dark: #093a52;
  --accent: #d97706;
  --accent-hover: #b45309;
  --line: #d8e0e6;
  --radius: 6px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --maxw: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--accent-hover); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }
.muted { color: var(--ink-soft); font-size: 0.95em; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.25; margin: 1.4em 0 0.5em; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; margin: 0 0 1em; }
li { margin-bottom: 0.4em; }

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  flex-wrap: wrap;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
}
.brand-mark {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  text-align: center;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.primary-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  flex-wrap: wrap;
}
.primary-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.primary-nav a:hover, .primary-nav a.active {
  color: var(--brand);
  text-decoration: underline;
}
.phone-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  background: var(--brand);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  line-height: 1.15;
  font-weight: 600;
}
.phone-cta:hover { background: var(--brand-dark); color: #fff !important; }
.phone-label { font-size: 0.7rem; font-weight: 500; opacity: 0.9; }
.phone-number { font-size: 1.05rem; }

/* Hero */
.hero {
  background: linear-gradient(180deg, #f4f7f9 0%, #ffffff 100%);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  align-items: start;
}
.hero h1 { font-size: 2.6rem; margin-top: 0; }
.lede { font-size: 1.15rem; color: var(--ink-soft); }
.serving { font-size: 0.98rem; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1em; }
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.hero-card h2 { margin-top: 0; font-size: 1.1rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.price-list { list-style: none; padding: 0; margin: 0 0 12px; }
.price-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.price-list li:last-child { border-bottom: 0; }

/* Page hero (non-homepage) */
.page-hero { background: var(--bg-alt); padding: 48px 0 32px; border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-top: 0; }

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff !important; }
.btn-primary:hover { background: var(--accent-hover); color: #fff !important; }
.btn-secondary { background: #fff; color: var(--brand) !important; border-color: var(--brand); }
.btn-secondary:hover { background: var(--brand); color: #fff !important; }

/* Sections */
.section { padding: 48px 0; }
.section-alt { background: var(--bg-alt); }

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 1em;
}
.card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.1s, box-shadow 0.1s, border-color 0.1s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
  color: var(--ink);
}
.card h3 { margin: 0 0 6px; color: var(--brand); }
.card p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }

/* Step list */
.step-list { padding-left: 1.4em; }
.step-list li { margin-bottom: 0.6em; }

/* Link list (service areas) */
.link-list { columns: 2; column-gap: 24px; padding-left: 1.4em; }
.link-list li { margin-bottom: 0.4em; }

.city-row { line-height: 1.9; }

/* Tables */
.price-table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.price-table th, .price-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--bg-alt); }

/* CTA band */
.cta-band {
  background: var(--brand);
  color: #fff;
  padding: 44px 0;
}
.cta-band h2 { color: #fff; margin: 0 0 0.4em; }
.cta-band p { color: rgba(255,255,255,0.92); margin: 0 0 1.2em; }
.cta-content { text-align: center; }
.cta-content .btn-secondary { background: transparent; color: #fff !important; border-color: #fff; }
.cta-content .btn-secondary:hover { background: #fff; color: var(--brand) !important; }

/* Contact form */
.quote-form { display: grid; gap: 14px; margin-top: 1em; }
.quote-form label { display: flex; flex-direction: column; gap: 4px; font-weight: 500; font-size: 0.95rem; }
.quote-form input, .quote-form textarea, .quote-form select {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.quote-form textarea { resize: vertical; }
.quote-form button { justify-self: start; }
.big-phone { font-size: 2rem; font-weight: 700; }
.big-phone a { color: var(--brand); text-decoration: none; }

/* Footer */
.site-footer {
  background: #0e1b22;
  color: #c8d3da;
  padding: 48px 0 24px;
  margin-top: 24px;
}
.site-footer h3, .site-footer h4 { color: #fff; margin-top: 0; }
.site-footer a { color: #9fc5d6; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 6px; font-size: 0.95rem; }
.footer-fine {
  border-top: 1px solid #1f3540;
  margin-top: 28px;
  padding-top: 18px;
  font-size: 0.85rem;
  color: #8a99a3;
}
.footer-fine .disclosure { margin-top: 6px; font-style: italic; }

/* Responsive */
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .link-list { columns: 1; }
  .primary-nav { order: 3; width: 100%; }
  .phone-cta { order: 2; margin-left: auto; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.65rem; }
  h1 { font-size: 1.7rem; }
}
