:root {
  --blue: #0a5;
  --blue-dark: #073;
  --ink: #11202b;
  --muted: #5a6770;
  --bg: #ffffff;
  --bg-alt: #f4f7f5;
  --band: #073;
  --accent: #f3a712;
  --maxw: 1080px;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(0,0,0,.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 .6em; }
h3 { font-size: 1.15rem; margin: 0 0 .4em; }
p { margin: 0 0 1em; }

a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Top bar */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e6ece9;
}
.topbar-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 20px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; }
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--blue-dark); color: #fff;
  border-radius: 8px; font-size: .85rem; letter-spacing: .5px;
}
.brand-name { font-size: 1rem; }
.nav { margin-left: auto; display: flex; gap: 22px; align-items: center; }
.nav a { color: var(--ink); font-weight: 500; padding: 6px 2px; border-bottom: 2px solid transparent; transition: border-color .15s ease, color .15s ease; }
.nav a:hover { text-decoration: none; color: var(--blue-dark); border-bottom-color: var(--accent); }
.cta-phone {
  background: var(--blue-dark); color: #fff !important;
  padding: 10px 16px; border-radius: 8px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s ease;
}
.cta-phone:hover { text-decoration: none; background: var(--blue); }
.cta-phone-icon { font-size: .95rem; }

/* Hamburger button — hidden on desktop, visible on mobile */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #d6e0db;
  border-radius: 8px;
  width: 44px; height: 44px;
  padding: 0;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: background .15s ease, border-color .15s ease;
}
.nav-toggle:hover { background: #f4f7f5; border-color: var(--blue-dark); }
.nav-toggle:focus-visible { outline: 3px solid rgba(0,170,85,.35); outline-offset: 2px; }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .2s ease, opacity .15s ease, margin .2s ease;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #e6ece9;
    box-shadow: 0 8px 16px rgba(0,0,0,.06);
    padding: 8px 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
  }
  .nav.nav-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f4f1;
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a:hover { border-bottom-color: #f0f4f1; background: #f7faf8; }
  .topbar { position: sticky; }
  .topbar-inner { position: relative; }
}

@media (max-width: 520px) {
  .brand-name { display: none; }
  .cta-phone { padding: 8px 12px; font-size: .9rem; }
  .cta-phone-num { display: none; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #073 0%, #0a5 100%);
  color: #fff;
  padding: 90px 0 80px;
}
.hero-inner { text-align: center; }
.hero h1 { color: #fff; max-width: 880px; margin-left: auto; margin-right: auto; }
.hero .lede { font-size: 1.15rem; max-width: 720px; color: #e7f5ed; margin-left: auto; margin-right: auto; }
.hero-bullets {
  list-style: none; padding: 0; margin: 22px auto 30px;
  display: inline-grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 6px 32px;
  color: #e7f5ed;
  text-align: left;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; justify-content: center; }
.hero-trust { color: #cfead9; font-size: .95rem; margin: 0; }

@media (max-width: 600px) {
  .hero-bullets { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 22px; border-radius: 8px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid transparent;
  transition: transform .05s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #11202b !important; }
.btn-primary:hover { background: #ffb830; }
.btn-secondary { background: rgba(255,255,255,.12); color: #fff !important; border-color: rgba(255,255,255,.4); }
.btn-secondary:hover { background: rgba(255,255,255,.2); }
.btn-large { padding: 16px 28px; font-size: 1.05rem; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section > .wrap > h2,
.section > .wrap > .section-lede { text-align: center; }
.section-lede { font-size: 1.05rem; color: var(--muted); max-width: 720px; margin: 0 auto 40px; }

/* Grids */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid #e6ece9;
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow);
}
.card h3 { color: var(--blue-dark); }
.card p { margin: 0; color: var(--ink); }

/* Band CTA */
.band {
  background: var(--band); color: #fff;
  padding: 50px 0;
}
.band-inner { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.band-inner > div { flex: 1 1 460px; }
.band .band-title { color: #fff; }
.band p { color: #d6ece1; margin: 0; }

/* Area columns */
.area-col h3 { color: var(--blue-dark); margin-bottom: 8px; }
.area-col ul { margin: 0; padding-left: 18px; color: var(--ink); }
.area-col li { margin-bottom: 3px; }

/* Reviews */
.review {
  margin: 0;
  background: #fff;
  border: 1px solid #e6ece9;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.review .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 6px; }
.review p { margin: 0 0 10px; font-style: italic; }
.review footer { color: var(--muted); font-size: .9rem; }

/* FAQ */
details {
  background: #fff;
  border: 1px solid #e6ece9;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 10px;
}
details summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
details summary::after {
  content: "+";
  position: absolute; right: 0; top: 0;
  font-size: 1.4rem; line-height: 1; color: var(--blue-dark);
}
details[open] summary::after { content: "–"; }
details p { margin: 12px 0 0; color: var(--ink); }

/* =========  CONTACT SECTION  =========
   Two-panel layout: personal "Talk to Hank" aside + form card.
   Aim: warm, human, not corporate. Generous spacing. */

#contact.contact {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #f4f7f5 100%);
  padding: 90px 0 110px;
  overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 90% 0%, rgba(0,170,85,.10), transparent 70%),
    radial-gradient(50% 40% at 10% 100%, rgba(243,167,18,.08), transparent 70%);
  pointer-events: none;
}
.contact .wrap { position: relative; z-index: 1; }

.contact-head { text-align: center; margin-bottom: 48px; }
.contact-head .eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(0,170,85,.1);
  border-radius: 100px;
}
.contact-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}
.contact-head .section-lede { margin-bottom: 0; max-width: 620px; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 2.2fr);
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 24px; }
}

/* ---- Personal aside (left) ---- */
.contact-side {
  background: var(--blue-dark);
  background: linear-gradient(160deg, #084d33 0%, #0a5 100%);
  color: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 20px 40px -20px rgba(7,51,34,.45);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.contact-side::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(243,167,18,.18) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.contact-hero-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800; font-size: 1.4rem;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-hero-name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.contact-hero-role {
  font-size: .9rem;
  color: #cfead9;
  margin-top: 2px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  margin: 0 -14px 8px;
  border-radius: 10px;
  color: #fff !important;
  transition: background .15s ease, transform .1s ease;
}
.contact-method:hover { text-decoration: none; background: rgba(255,255,255,.08); transform: translateX(2px); }
.contact-method-static { cursor: default; }
.contact-method-static:hover { background: transparent; transform: none; }
.contact-method-primary {
  background: rgba(243,167,18,.12);
  border: 1px solid rgba(243,167,18,.35);
  margin-bottom: 10px;
}
.contact-method-primary:hover { background: rgba(243,167,18,.22); }

.contact-method-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.10);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.contact-method-primary .contact-method-icon {
  background: var(--accent);
  color: var(--ink);
}
.contact-method-body { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.contact-method-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #cfead9;
  font-weight: 600;
}
.contact-method-primary .contact-method-label { color: #ffd479; }
.contact-method-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-top: 2px;
  line-height: 1.4;
  word-break: break-word;
}

.contact-aside-note {
  margin: auto 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .9rem;
  color: #cfead9;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .contact-aside-note { margin-top: 24px; }
}

/* ---- Form card (right) ---- */
.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 50px -15px rgba(7,51,34,.18), 0 2px 4px rgba(0,0,0,.04);
  border: 1px solid #e6ece9;
}
@media (max-width: 600px) {
  .contact-form { padding: 28px 22px; }
  .contact-side { padding: 28px 24px; }
}

.contact-form-head { margin-bottom: 28px; }
.contact-form-head h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.contact-form-head .form-lede {
  color: var(--muted);
  font-size: .98rem;
  margin: 0;
  line-height: 1.5;
}

.form-section {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
}
.form-section legend {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue-dark);
  padding: 0;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.form-section legend::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e6ece9;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.field:last-child { margin-bottom: 0; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-row .field { margin-bottom: 16px; }
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
.field label {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field-hint {
  color: var(--muted);
  font-weight: 400;
  font-size: .85rem;
  margin-left: 4px;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #dce4df;
  border-radius: 10px;
  background: #fafcfb;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #98a5aa; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #b8c5be; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,170,85,.12);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6770' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  padding-right: 40px;
  cursor: pointer;
}

/* Submit button */
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--accent) 0%, #e89a08 100%);
  color: var(--ink);
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px -8px rgba(243,167,18,.55);
  transition: transform .1s ease, box-shadow .15s ease, background .15s ease;
  margin-top: 8px;
}
.btn-submit:hover {
  background: linear-gradient(135deg, #ffb830 0%, #f3a712 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(243,167,18,.65);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit svg { transition: transform .15s ease; }
.btn-submit:hover svg { transform: translateX(3px); }
.btn-submit:disabled {
  background: #d6d6d6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.form-promises {
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid #f0f4f1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .9rem;
  color: var(--muted);
}
.form-promises li { display: flex; gap: 10px; align-items: baseline; }
.form-promises span { color: var(--blue); font-weight: 700; flex-shrink: 0; }

.form-success {
  margin-top: 20px;
  padding: 18px 20px;
  background: #e7f7ee;
  border: 1.5px solid #9ed3b3;
  border-radius: 10px;
  color: #0b5b2c;
  font-size: .98rem;
  line-height: 1.5;
}
.form-success strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }
.form-success a { color: #0b5b2c; text-decoration: underline; }

.form-error {
  margin-top: 20px;
  padding: 18px 20px;
  background: #fdecec;
  border: 1.5px solid #e6a6a6;
  border-radius: 10px;
  color: #8a1f1f;
  font-size: .98rem;
  line-height: 1.5;
}
.form-error strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }
.form-error a { color: #8a1f1f; text-decoration: underline; }

/* Sticky mobile call CTA */
.mobile-call {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  background: var(--accent);
  color: #11202b !important;
  text-align: center;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  z-index: 60;
}
.mobile-call:hover { text-decoration: none; background: #ffb830; }

@media (max-width: 720px) {
  .mobile-call { display: block; }
  /* leave room above the footer copyright so sticky button doesn't sit on top */
  .footer { padding-bottom: 80px; }
}

/* Subtle card polish — only the service cards */
#services .card { transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
#services .card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.08); border-color: #cfead9; }

/* Footer */
.footer {
  background: #0c1b22; color: #cfd8df;
  padding: 36px 0 18px;
  margin-top: 0;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between;
}
.footer a { color: #fff; }
.copyright {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #1d2f37;
  font-size: .9rem; color: #8c9aa3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.site-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8c9aa3 !important;
  text-decoration: none;
  opacity: .85;
  transition: opacity .15s ease;
}
.site-by:hover { opacity: 1; }
.site-by img {
  height: 20px;
  width: auto;
  display: block;
}
