/*
 * seattleconcretecontractor.com styles
 *
 * Distinct visual identity from buildwithportal.com (which uses amber/cream + serif headings).
 * Here: utilitarian contractor look — slate blue + warm gray, system serif for body, sans for UI.
 * Mobile-first. Single phone CTA repeated. No carousels, no sticky widgets, nothing that competes
 * with calling.
 */

:root {
  --ink: #1a2233;
  --slate: #2c3e52;
  --slate-mid: #4a5c75;
  --warm: #6b6258;
  --rule: #d9d4cc;
  --bg: #fafaf7;
  --bg-band: #f1ede5;
  --accent: #b8542b;
  --accent-dark: #94411f;
  --cream: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: var(--accent-dark);
  text-decoration: underline;
}

a:hover {
  color: var(--accent);
}

/* Hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.55;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  width: 100%;
  background: linear-gradient(to bottom, rgba(26,34,51,0.0) 0%, rgba(26,34,51,0.85) 75%);
  padding: 5rem 1.25rem 2.5rem;
}

.hero-content {
  max-width: 740px;
  margin: 0 auto;
  color: var(--cream);
}

.hero-content .eyebrow {
  margin: 0 0 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e8c19a;
}

.hero-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.hero-content .lead {
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 1.75rem;
  color: rgba(255,255,255,0.92);
}

.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--cream);
  padding: 0.9rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.01em;
  transition: background 0.15s ease;
}

.cta-primary:hover {
  background: var(--accent-dark);
  color: var(--cream);
}

.cta-sub {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  font-style: italic;
}

.cta-alt {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
}

.cta-alt a {
  color: #e8c19a;
  text-decoration: underline;
  font-weight: 600;
}

.cta-alt a:hover {
  color: #ffd8b3;
}

.cta-alt-band {
  color: var(--slate-mid);
  margin-top: 1rem;
}

.cta-alt-band a {
  color: var(--accent-dark);
}

/* Prose --------------------------------------------------------------- */

main {
  background: var(--bg);
}

.prose {
  max-width: 740px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
}

.prose h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.55rem;
  margin: 2.5rem 0 1rem;
  color: var(--slate);
  letter-spacing: -0.005em;
  font-weight: 700;
}

.prose h2:first-of-type {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1.15rem;
}

.prose ul.services,
.prose ol.steps {
  padding-left: 1.25rem;
  margin: 0 0 1.5rem;
}

.prose ul.services li,
.prose ol.steps li {
  margin: 0 0 0.65rem;
  padding-left: 0.25rem;
}

.prose ul.services li strong {
  color: var(--slate);
  font-weight: 700;
}

.dba-note {
  font-size: 0.92rem;
  color: var(--warm);
  border-left: 3px solid var(--rule);
  padding: 0.25rem 0 0.25rem 1rem;
  margin-top: 1.25rem;
}

/* CTA band ------------------------------------------------------------ */

.cta-band {
  background: var(--bg-band);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 3rem 1.25rem;
  text-align: center;
}

.cta-band h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.cta-band > p {
  margin: 0 0 1.5rem;
  color: var(--slate-mid);
  font-size: 1.1rem;
}

.cta-band .cta-secondary {
  margin: 1.5rem auto 0;
  max-width: 540px;
  color: var(--slate-mid);
  font-size: 0.98rem;
}

.cta-band .signoff {
  margin: 2rem 0 0;
  font-style: italic;
  color: var(--warm);
  font-size: 0.92rem;
}

/* Footer -------------------------------------------------------------- */

footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 1.75rem 1.25rem;
  font-size: 0.85rem;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

footer p {
  margin: 0;
  max-width: 740px;
  margin: 0 auto;
}

footer a {
  color: rgba(255,255,255,0.85);
}

footer a:hover {
  color: var(--cream);
}

/* Responsive ---------------------------------------------------------- */

@media (min-width: 768px) {
  .hero {
    min-height: 75vh;
  }
  .hero-overlay {
    padding: 6rem 2rem 3rem;
  }
  .prose {
    padding: 4rem 2rem 2.5rem;
  }
  .cta-band {
    padding: 4rem 2rem;
  }
}
