/* ============================================================
   EcoPest Termite and Pest Control, Inc. — styles.css
   Static site, no build step. Colors pulled from the EcoPest
   logo: eco green + pest red on white.
   ============================================================ */

:root {
  /* Brand */
  --green: #1c6b35;
  --green-dark: #145227;
  --green-deep: #0d2e18;
  --green-soft: #eaf4ec;
  --red: #c23a2b;
  --red-dark: #a52e21;

  /* Neutrals */
  --ink: #182420;
  --muted: #56655c;
  --line: #dfe8e0;
  --bg: #ffffff;
  --bg-soft: #f4f8f4;

  /* Type */
  --font-head: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(13, 46, 24, 0.08);
  --shadow-md: 0 8px 28px rgba(13, 46, 24, 0.1);
  --shadow-lg: 0 18px 48px rgba(13, 46, 24, 0.16);

  --header-h: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.15rem, 4.6vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }

p { margin: 0 0 1em; }
a { color: var(--green); }
ul { padding-left: 1.2em; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section { padding: clamp(60px, 8.5vw, 104px) 0; }
.section-soft { background: var(--bg-soft); }
.section-dark {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(255, 255, 255, 0.07), transparent 60%),
    linear-gradient(160deg, var(--green-deep), #123b1f 70%);
  color: #e9f3ea;
}
.section-dark h2, .section-dark h3 { color: #ffffff; }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}
.section-head.align-left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 10px;
}
.section-dark .eyebrow { color: #8fd3a1; }

.lede { font-size: 1.08rem; color: var(--muted); }
.section-dark .lede, .section-dark p { color: #cfe3d3; }

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(194, 58, 43, 0.32);
}
.btn-primary:hover { background: var(--red-dark); color: #fff; }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(28, 107, 53, 0.28);
}
.btn-green:hover { background: var(--green-dark); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green-soft); }

.btn-white {
  background: #fff;
  color: var(--green-dark);
}
.btn-white:hover { color: var(--green); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------------- Top bar ---------------- */

.topbar {
  background: var(--green-deep);
  color: #d9eadd;
  font-size: 0.86rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 38px;
  padding: 4px 0;
}
.topbar p { margin: 0; }
.topbar-links { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar a:hover { text-decoration: underline; }
.topbar svg { width: 14px; height: 14px; }

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand img { width: auto; height: 54px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.42rem;
  letter-spacing: 0.01em;
}
.brand-name .eco { color: var(--green); }
.brand-name .pest { color: var(--red); }
.brand-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.site-nav { display: flex; gap: 4px; }
.site-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-nav a:hover { background: var(--green-soft); color: var(--green-dark); }
.site-nav a.active { color: var(--green-dark); background: var(--green-soft); }

.header-cta { display: flex; gap: 10px; }
.header-cta .btn { padding: 12px 20px; font-size: 0.94rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
}
.nav-toggle:hover { background: var(--green-soft); }
.nav-toggle svg { width: 26px; height: 26px; display: block; stroke: var(--ink); }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-menu { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 14px 0 22px;
}
.nav-open .mobile-nav { display: block; }
.mobile-nav > a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  text-decoration: none;
  padding: 13px 6px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav > a.active { color: var(--green-dark); }
.mobile-nav .btn-row { margin-top: 18px; }
.mobile-nav .btn { width: 100%; }

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 8% -8%, rgba(28, 107, 53, 0.1), transparent 60%),
    radial-gradient(760px 420px at 100% 4%, rgba(194, 58, 43, 0.07), transparent 55%),
    linear-gradient(180deg, #f6faf6, #ffffff);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(52px, 7vw, 96px) 0 clamp(56px, 7vw, 90px);
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--green); }
.hero .lede { font-size: 1.12rem; margin-bottom: 26px; max-width: 34em; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--green-dark);
}
.hero-badges svg { width: 18px; height: 18px; flex: none; }

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 3vw, 40px);
  text-align: center;
  justify-self: center;
  width: min(430px, 100%);
}
.hero-card img { margin: 0 auto 14px; width: min(320px, 80%); }
.hero-card p {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.02rem;
}
.hero-card .sub { font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: 0.88rem; margin-top: 4px; }

/* ---------------- Trust bar ---------------- */

.trust-bar { border-top: 1px solid var(--line); background: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: center;
}
.trust-item svg { width: 34px; height: 34px; flex: none; }
.trust-item strong { font-family: var(--font-head); font-size: 0.99rem; display: block; line-height: 1.25; }
.trust-item span { font-size: 0.83rem; color: var(--muted); display: block; }

/* ---------------- Cards / grids ---------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  margin-bottom: 18px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.97rem; margin-bottom: 14px; }
.card ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
}
.card ul li {
  padding: 4px 0 4px 26px;
  position: relative;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  background: var(--green);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / contain no-repeat;
}
.card .card-link {
  margin-top: auto;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.card .card-link:hover { color: var(--red); }
.card .card-link svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.card .card-link:hover svg { transform: translateX(3px); }

/* ---------------- Why choose us ---------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 15px; }
.feature-list .fl-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
}
.feature-list .fl-icon svg { width: 24px; height: 24px; }
.feature-list strong { font-family: var(--font-head); display: block; font-size: 1.04rem; }
.feature-list p { margin: 2px 0 0; color: var(--muted); font-size: 0.95rem; }

/* ---------------- Areas ---------------- */

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 11px 20px;
  border-radius: 999px;
}
.chip svg { width: 15px; height: 15px; opacity: 0.85; }

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
}
.area-card .card-icon { width: 46px; height: 46px; border-radius: 12px; margin: 0; flex: none; }
.area-card .card-icon svg { width: 22px; height: 22px; }
.area-card h3 { font-size: 1.12rem; margin-bottom: 4px; }
.area-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.map-frame {
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

/* ---------------- Testimonials ---------------- */

.review-card { position: relative; }
.stars { display: inline-flex; gap: 3px; color: #eab308; margin-bottom: 12px; }
.stars svg { width: 18px; height: 18px; }
.review-card blockquote {
  margin: 0 0 16px;
  font-size: 0.99rem;
  color: var(--ink);
}
.review-card figcaption {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--green-dark);
}
.review-card figcaption span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------------- FAQ ---------------- */

.faq-wrap { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.03rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item summary .faq-icon svg { width: 15px; height: 15px; }
.faq-item[open] summary .faq-icon { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--muted); font-size: 0.97rem; }
.faq-item .faq-body p { margin-bottom: 0.6em; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------------- CTA banner ---------------- */

.cta-banner {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(135deg, var(--green-dark), var(--green) 60%, #2b8446);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: clamp(38px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: #dcedde; margin: 0; max-width: 34em; }

/* ---------------- Page hero (inner pages) ---------------- */

.page-hero {
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(194, 58, 43, 0.08), transparent 55%),
    linear-gradient(180deg, #f4f9f4, #ffffff);
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 8px; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lede { max-width: 44em; margin-bottom: 0; }

/* ---------------- Service detail sections ---------------- */

.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: clamp(30px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.service-detail + .service-detail { margin-top: 22px; }
.service-detail .card-icon { margin: 0; width: 64px; height: 64px; }
.service-detail .card-icon svg { width: 32px; height: 32px; }
.service-detail h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: 8px; }
.service-detail p { color: var(--muted); }
.service-detail ul {
  columns: 2;
  gap: 28px;
  margin: 14px 0 20px;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 0.97rem;
}
.service-detail ul li {
  padding: 5px 0 5px 26px;
  position: relative;
  break-inside: avoid;
}
.service-detail ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  background: var(--green);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / contain no-repeat;
}

/* ---------------- Contact page ---------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(26px, 3.4vw, 40px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: #fbfdfb;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(28, 107, 53, 0.14);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.84rem; color: var(--muted); margin: 12px 0 0; }

.info-stack { display: grid; gap: 16px; }
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-card .card-icon { width: 48px; height: 48px; border-radius: 13px; margin: 0; flex: none; }
.info-card .card-icon svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.06rem; margin-bottom: 4px; }
.info-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.info-card a { color: var(--green-dark); font-weight: 600; text-decoration: none; }
.info-card a:hover { text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table td { padding: 5px 0; color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 600; }

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

.site-footer {
  background: var(--green-deep);
  color: #b9d2be;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(46px, 6vw, 70px) 0 40px;
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 14px; }
.footer-brand p { margin: 0 0 16px; max-width: 30em; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #dfeee2;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  margin: 0 8px 8px 0;
}
.footer-badge svg { width: 14px; height: 14px; }

.site-footer h4 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 16px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-links a { color: #b9d2be; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }

.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: #8fd3a1; }
.footer-contact a { color: #dfeee2; text-decoration: none; font-weight: 600; }
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.84rem;
  color: #93ac98;
}
.footer-bottom p { margin: 0; }

/* ---------------- Reveal animation ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}

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

@media (max-width: 1020px) {
  .site-nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .trust-item { justify-content: flex-start; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { width: min(390px, 100%); justify-self: start; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail ul { columns: 1; }
  .topbar p.topbar-note { display: none; }
  .topbar-inner { justify-content: center; }
}

@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .topbar a[href^="mailto"] { display: none; }
  .brand img { height: 46px; }
  .brand-name { font-size: 1.22rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { text-align: left; }
  .btn-row .btn { width: 100%; }
  .hero .btn-row .btn { width: 100%; }
  .map-frame { height: 320px; }
}
