:root {
  --ink: #102236;
  --ink-soft: #2a3d54;
  --muted: #5a6b7e;
  --paper: #ffffff;
  --paper-soft: #f4f8fc;
  --paper-warm: #fbf6ee;
  --line: #dde6ef;
  --sky: #1e6fb8;
  --sky-deep: #144e84;
  --sky-bright: #2f8cd6;
  --sun: #f29a23;
  --sun-bright: #ffb648;
  --green: #2e7d32;
  --red: #c0392b;
  --shadow-sm: 0 1px 2px rgba(16, 34, 54, 0.06), 0 2px 8px rgba(16, 34, 54, 0.06);
  --shadow-md: 0 6px 24px rgba(16, 34, 54, 0.10);
  --shadow-lg: 0 18px 50px rgba(16, 34, 54, 0.18);
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 {
  font-family: 'Bitter', Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { color: var(--ink-soft); }
.muted { color: var(--muted); }
a { color: var(--sky); text-decoration: none; }
a:hover { color: var(--sky-deep); }
.inline-link { font-weight: 600; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 12px;
}

/* ─── Topbar ─── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--sky); color: white;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Bitter', Georgia, serif; font-weight: 800; font-size: 1.05rem; }
.brand-tag { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

.cta-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sun);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease, transform 0.15s ease;
}
.cta-phone:hover { background: var(--sun-bright); transform: translateY(-1px); }

/* ─── Hero ─── */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(30, 111, 184, 0.10), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(242, 154, 35, 0.08), transparent 55%),
    var(--paper-soft);
  padding: 56px 0 72px;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .lead {
  font-size: 1.15rem;
  margin: 18px 0 30px;
  max-width: 540px;
  color: var(--ink-soft);
}
.hero h1 { margin-top: 6px; }
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 22px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--sun);
  color: white !important;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--sun-bright); transform: translateY(-1px); }
.btn-ghost {
  background: white;
  color: var(--sky-deep) !important;
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--sky); }
.btn-full { width: 100%; padding: 16px 22px; font-size: 1.05rem; }

.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-trust li strong { color: var(--ink); font-weight: 700; display: block; font-size: 1.05rem; }

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  margin-left: auto;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: -20px -20px 20px -20px;
  background: linear-gradient(135deg, rgba(30, 111, 184, 0.15), transparent 60%);
  border-radius: 22px;
  z-index: -1;
}
.hero-photo-caption {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

/* ─── Sections ─── */
.section { padding: 76px 0; }
.section-alt { background: var(--paper-soft); }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.service-card {
  background: white;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 111, 184, 0.25);
}
.service-icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(30, 111, 184, 0.08);
  color: var(--sky-deep);
  border-radius: 12px;
  margin-bottom: 16px;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 6px; }
.service-card p { font-size: 0.95rem; color: var(--muted); }

/* ─── Places (residential / commercial) ─── */
.places-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.place-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.place-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--paper-soft);
  overflow: hidden;
}
.place-photo svg { width: 100%; height: 100%; display: block; }
.place-card h3 { padding: 18px 22px 4px; }
.place-card p { padding: 0 22px 22px; color: var(--muted); font-size: 0.95rem; }

.counties {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.county-pill {
  background: white;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--line);
}

/* ─── Pricing ─── */
.section-pricing { padding: 56px 0; background: white; }
.pricing-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, var(--sky-deep), var(--sky-bright));
  color: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}
.pricing-card h2, .pricing-card .eyebrow { color: white; }
.pricing-card .eyebrow { color: var(--sun-bright); }
.pricing-card h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 4px 0 10px; }
.pricing-headline p { color: rgba(255,255,255,0.85); max-width: 480px; font-size: 1.05rem; }
.pricing-pay { text-align: center; }
.pay-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun-bright);
  font-weight: 600;
  margin-bottom: 12px;
}
.pay-methods {
  display: flex; flex-direction: column; gap: 8px;
}
.pay-methods span {
  background: rgba(255,255,255,0.12);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ─── Contact ─── */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-copy p { font-size: 1.05rem; margin-bottom: 24px; max-width: 420px; }
.contact-direct {
  list-style: none;
  display: flex; flex-direction: column; gap: 16px;
}
.contact-direct li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.contact-direct strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.contact-direct a, .contact-direct span {
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
}
.contact-direct a:hover { color: var(--sky); }

.contact-form {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input, .field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper-soft);
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: white;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.sms-consent {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 4px 0 18px;
  line-height: 1.5;
}
.form-status {
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.4em;
}
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--red); }

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 36px 0 28px;
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.footer .brand-name { color: white; font-size: 1.1rem; }
.footer .brand-tag { color: rgba(255,255,255,0.55); }
.footer-brand { display: flex; flex-direction: column; }
.footer-meta {
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 0.95rem;
}
.footer-meta a { color: white; font-weight: 600; }
.footer-meta a:hover { color: var(--sun-bright); }
.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 16px;
}

/* ─── Responsive ─── */
@media (max-width: 860px) {
  .hero { padding: 40px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { max-width: 360px; margin: 0 auto; aspect-ratio: 4 / 5; }
  .hero-trust { gap: 18px; }
  .places-grid { grid-template-columns: 1fr; }
  .pricing-card { grid-template-columns: 1fr; padding: 30px 26px; }
  .pricing-pay { text-align: left; }
  .pay-methods { flex-direction: row; flex-wrap: wrap; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 56px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { align-items: flex-start; }
  .brand-tag { display: none; }
  .cta-phone { padding: 9px 14px; font-size: 0.88rem; }
}

@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
