/* Clean Residential — photo-led, asymmetric two-column, gallery-first, generous whitespace
   Generated for layout seed 4160027697. Hero: split-left, cards: bordered.
   Light-ground by design: dark mode on a residential home-services site is a
   SaaS reflex and reads as machine-built. See references/site-design-system.md. */

:root {
  --ink: #1a1d21;
  --ink-soft: #5c646e;
  --ground: #ffffff;
  --ground-alt: #f6f7f9;
  --brand: #1d5a8a;
  --brand-dark: #164a72;
  --accent: #d9822b;
  --line: #e2e5ea;
  --line-strong: #1d5a8a;
  --radius: 8px;
  --radius-sm: 5px;
  --shadow: 0 2px 10px rgba(26,29,33,0.07);
  --band: 88px;
  --font-display: 'Archivo', 'Public Sans', 'Helvetica Neue', sans-serif;
  --font-body: 'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, figure, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

html { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--ground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.15rem); margin-bottom: .6em; }
h3 { font-size: 1.2rem; margin-bottom: .35em; }
p + p { margin-top: 1em; }
a { color: var(--brand-dark); }

.wrap { width: min(1140px, 92vw); margin-inline: auto; }
.band { padding-block: var(--band); }
.band-alt { background: var(--ground-alt); }
.rule { border: 0; border-top: 1px solid var(--line); margin-block: 2rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--brand);
  margin-bottom: .5rem;
}

/* --- Header. Phone is the loudest element on the page. --- */
.site-header {
  background: var(--ground);
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
  position: relative;
}
.header-inner { display: flex; align-items: center; gap: 24px; }
.wordmark {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wordmark span { color: var(--brand); }
.site-nav { margin-left: auto; display: flex; gap: 22px; }
.site-nav a {
  color: var(--ink-soft); text-decoration: none;
  font-size: .95rem; font-weight: 500;
}
.site-nav a:hover { color: var(--brand-dark); text-decoration: underline; }
.header-phone {
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone small {
  display: block; font-family: var(--font-body); font-size: .7rem;
  font-weight: 500; color: var(--ink-soft); letter-spacing: .04em;
  text-transform: none;
}

/* --- Buttons. Flat fills only: gradients on interactive elements are an
       AI-default tell and are blocked by claim_gate.py. --- */
.btn {
  display: inline-block;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--ground-alt); }
.btn-block { display: block; width: 100%; }

/* --- Hero: split-left --- */
.hero { padding-block: calc(var(--band) * .82); }
.hero-photo {
  background: var(--ground-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-size: .85rem;
  text-align: center;
  padding: 1rem;
}
.hero-lede { font-size: 1.12rem; color: var(--ink-soft); margin-top: 1rem; max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.6rem; }
.hero-split { display: grid; gap: 44px; grid-template-columns: 1.05fr .95fr; align-items: center; }

/* --- Proof strip: specific, checkable facts only. No badge soup. --- */
.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--ground-alt);
  padding-block: 20px;
}
.proof-list { display: flex; flex-wrap: wrap; gap: 12px 40px; align-items: center; }
.proof-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: .93rem; color: var(--ink);
}

/* Inline SVG icons. An unsized inline SVG stretches to fill a flex parent,
   so this rule is load-bearing, not cosmetic. */
.ico {
  flex: none;
  width: 19px;
  height: 19px;
  stroke: var(--brand);
  fill: none;
  vertical-align: -3px;
}

/* --- Cards (bordered) --- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.card { background:var(--ground);border:1px solid var(--line);border-radius:var(--radius);box-shadow:none; padding: 26px; }
.card h3 { color: var(--ink); }
.card p { color: var(--ink-soft); font-size: .96rem; }
.card-link {
  display: inline-block; margin-top: 14px; font-weight: 600;
  font-size: .93rem; color: var(--brand-dark);
}

/* --- Trust content: pricing, what goes wrong, who this is not for.
       Caleb Ulku's fifth content type — the reason an LLM recommends you. --- */
.trust-block { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.trust-item { border-left: 3px solid var(--brand); padding-left: 20px; }
.trust-item h3 { font-size: 1.08rem; }
.trust-item p { color: var(--ink-soft); font-size: .96rem; }
.price-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.price-table th, .price-table td {
  text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.price-table th {
  font-family: var(--font-body); font-weight: 600; font-size: .8rem;
  text-transform: none; letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.price-note { font-size: .87rem; color: var(--ink-soft); margin-top: .9rem; }

/* --- Lead form --- */
.lead-form {
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.lead-form h3 { margin-bottom: .2em; }
.form-sub { color: var(--ink-soft); font-size: .93rem; margin-bottom: 1.2rem; }
.field { margin-bottom: 15px; }
.field label {
  display: block; font-size: .85rem; font-weight: 600;
  margin-bottom: 5px; color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; font: inherit; font-size: .97rem;
  color: var(--ink); background: var(--ground);
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--brand); outline-offset: 1px;
}
/* FTC requires the referral disclosure be clear and conspicuous — visible in
   the form, not behind a link. See references/claims-and-compliance.md. */
.form-disclosure {
  font-size: .8rem; line-height: 1.5; color: var(--ink-soft);
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line);
}
.form-success {
  border-left: 3px solid var(--brand);
  padding: 10px 4px 10px 16px;
  font-size: 1.05rem; font-weight: 600; color: var(--ink);
}
.form-error {
  border-left: 3px solid var(--line-strong);
  padding: 10px 4px 10px 16px;
  font-size: .96rem; color: var(--ink-soft);
}
.form-error a { color: var(--brand-dark); font-weight: 600; }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--line); padding-block: 20px; }
.faq-item h3 { font-size: 1.06rem; margin-bottom: .4em; }
.faq-item p { color: var(--ink-soft); font-size: .97rem; }

/* --- Areas served --- */
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1rem; }
.area-list a {
  display: inline-block; padding: 8px 15px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  font-size: .92rem; text-decoration: none; color: var(--ink);
}
.area-list a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* --- Footer --- */
.site-footer {
  background: var(--ink); color: #fff;
  padding-block: 48px 30px; margin-top: var(--band);
}
.site-footer a { color: #fff; }
.footer-grid {
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.2);
}
.footer-grid h4 {
  color: #fff; font-size: .82rem; text-transform: none;
  letter-spacing: 0.02em; margin-bottom: .85em;
}
.footer-grid li { margin-bottom: 7px; font-size: .93rem; }
.footer-grid a { opacity: .82; text-decoration: none; }
.footer-grid a:hover { opacity: 1; text-decoration: underline; }
.disclosure {
  margin-top: 24px; font-size: .84rem; line-height: 1.6;
  opacity: .8; max-width: 78ch;
}
.disclosure strong { opacity: 1; }
.colophon { margin-top: 18px; font-size: .82rem; opacity: .62; }

/* --- Mobile call bar --- */
.call-bar { display: none; }
@media (max-width: 760px) {
  body { padding-bottom: 66px; }
  .site-nav { display: none; }
  .header-inner { gap: 10px; }
  .header-phone { margin-left: auto; font-size: 1.05rem; flex-shrink: 0; }
  .call-bar {
    display: flex; position: fixed; inset: auto 0 0 0; z-index: 50;
    background: var(--brand); border-top: 2px solid var(--brand-dark);
  }
  .call-bar a {
    flex: 1; padding: 17px 10px; text-align: center; color: #fff;
    text-decoration: none; font-weight: 600; font-size: 1rem;
  }
  .call-bar a + a { border-left: 1px solid rgba(255,255,255,.34); }
  .hero-split { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
