@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700&display=swap');

:root {
  --navy: #0b2545;
  --navy-dark: #071a33;
  --orange: #ec6b1f;
  --orange-dark: #c9560f;
  --cream: #f6f3ec;
  --ink: #14213d;
  --gray: #5a6478;
  --line: #dfe1e6;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
h1, h2, h3 {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--navy);
}
p { margin: 0 0 1em; color: var(--gray); }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* header */
.site-header {
  background: var(--navy);
  border-bottom: 4px solid var(--orange);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: 'Archivo Black', sans-serif;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}
.logo span { color: var(--orange); }
.header-phone {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: background 0.15s ease;
}
.header-phone:hover { background: var(--orange-dark); }

/* buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-call { background: var(--orange); color: #fff; }
.btn-call:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: #fff; }
.btn-submit { background: var(--navy); color: #fff; border: none; cursor: pointer; width: 100%; }
.btn-submit:hover { background: var(--navy-dark); }

/* hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 90px 0 70px;
}
.hero-inner { text-align: left; max-width: 760px; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 560px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 24px; }
.hero-trust { list-style: none; display: flex; gap: 24px; padding: 0; margin: 0; flex-wrap: wrap; }
.hero-trust li {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding-left: 20px;
  position: relative;
}
.hero-trust li::before {
  content: "✓";
  color: var(--orange);
  position: absolute; left: 0;
  font-weight: 900;
}

.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 64px 0 50px;
}
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.page-hero .hero-sub { color: rgba(255,255,255,0.85); max-width: 640px; }
.town-hero .hero-ctas { margin-top: 24px; }

/* services */
.services-section { padding: 70px 0; }
.services-section h2, .steps-section h2, .area-section h2, .nearby-section h2, .local-note-section h2 {
  font-size: 1.9rem;
  margin-bottom: 30px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 4px solid var(--orange);
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; margin: 0; }

/* steps */
.steps-section { padding: 60px 0; background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--orange);
  font-family: 'Archivo Black', sans-serif;
  border-radius: 50%;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.92rem; }

/* area / town pills */
.area-section { padding: 60px 0; }
.area-sub { max-width: 520px; }
.town-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.town-pill {
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.15s ease;
}
.town-pill:hover, .town-pill.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* local note */
.local-note-section { padding: 50px 0; background: #fff; }
.local-note-section p { max-width: 680px; font-size: 1.02rem; }

/* nearby */
.nearby-section { padding: 50px 0; }
.nearby-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.nearby-list a { color: var(--navy); font-weight: 600; font-size: 0.95rem; }
.nearby-list a:hover { color: var(--orange); }

/* pricing */
.pricing-section { padding: 20px 0 60px; }
.pricing-table { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.pricing-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-header {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-row:not(.pricing-header) div:first-child { font-weight: 700; color: var(--navy); }
.pricing-row:not(.pricing-header) div:last-child { font-weight: 800; color: var(--orange-dark); font-size: 1.1rem; }
.pricing-note { max-width: 680px; margin-top: 24px; font-size: 0.92rem; }

/* quote form */
.quote-form-section { padding: 70px 0 90px; background: #fff; }
.quote-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.quote-copy h2 { color: #fff; font-size: 1.8rem; }
.quote-copy p { color: rgba(255,255,255,0.8); }
.quote-form { display: flex; flex-direction: column; gap: 14px; }
.quote-form label {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quote-form input, .quote-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  resize: vertical;
}
.quote-form button { margin-top: 4px; padding: 14px; font-size: 1rem; }

/* footer */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 50px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { margin-bottom: 10px; }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-col p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--orange); }
.footer-pills .town-pill { background: transparent; border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); padding: 6px 12px; font-size: 0.8rem; }
.footer-pills .town-pill:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; font-size: 0.8rem; }

/* responsive */
@media (max-width: 860px) {
  .services-grid, .steps-grid { grid-template-columns: 1fr; }
  .quote-box { grid-template-columns: 1fr; padding: 30px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .pricing-row { grid-template-columns: 1fr; gap: 4px; }
  .pricing-row:not(.pricing-header) div:last-child { font-size: 1.3rem; }
}
