/* Rodent Control St. Louis - "Brick & Green" design system
   Light lead-gen build. Cream paper, deep river-green sections, chartreuse accent.
   Bricolage Grotesque (display) / Figtree (body). Rounded cards, pill CTAs.
   Design language drawn from the provided reference: cream page, forest-green
   feature band, lime highlight, oversized rounded hero image, green call button. */

:root {
  --cream: #F4F1E7;        /* page paper */
  --cream-2: #FBFAF3;      /* raised light card */
  --sand: #ECE7D6;         /* subtle panel */
  --forest: #1F3320;       /* deep river green: dark sections, footer */
  --forest-2: #2B4A2E;     /* raised dark panel */
  --forest-3: #37623B;     /* hover dark panel */
  --grass: #3F8F45;        /* primary green CTA */
  --grass-hi: #4CA653;     /* CTA hover */
  --lime: #C7E356;         /* chartreuse accent / announcement */
  --lime-hi: #D6F06B;
  --ink: #1B2A19;          /* text on light */
  --ink-soft: #33452F;     /* headings on light */
  --muted: #56634F;        /* secondary text on light */
  --snow: #F2F5EA;         /* text on dark */
  --muted-d: #AFC0A5;      /* secondary text on dark */
  --line: rgba(31, 51, 32, 0.14);
  --line-soft: rgba(31, 51, 32, 0.08);
  --line-d: rgba(242, 245, 234, 0.16);
  --line-d-soft: rgba(242, 245, 234, 0.09);
  --maxw: 1180px;
  --r: 22px;               /* card radius */
  --r-sm: 14px;
  --disp: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Figtree", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4, .disp {
  font-family: var(--disp);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.28rem; }
p { color: var(--muted); }
p strong { color: var(--ink); font-weight: 600; }
a { color: var(--grass); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* Kicker label (sentence-tracked, lime dot) */
.kicker {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grass);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(199, 227, 86, 0.28);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63, 143, 69, 0.35); }
  60% { box-shadow: 0 0 0 9px rgba(63, 143, 69, 0); }
}
/* Kicker on dark sections */
.on-dark .kicker, .band-dark .kicker, .hero .kicker, .call-band .kicker { color: var(--lime); }

/* Announcement strip */
.announce {
  background: var(--lime);
  color: #1c2a15;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 9px 16px;
}
.announce a { color: #1c2a15; font-weight: 700; text-decoration: underline; }

/* Buttons */
.btn-call {
  display: inline-flex; align-items: center; gap: 13px;
  background: var(--grass); color: #fff;
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(1.15rem, 2.3vw, 1.45rem); letter-spacing: -0.01em;
  padding: 16px 28px; border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(31, 51, 32, 0.55);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn-call:hover { background: var(--grass-hi); text-decoration: none; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(31, 51, 32, 0.6); }
.btn-call svg { width: 23px; height: 23px; flex: none; }
.btn-call small {
  display: block; font-family: var(--body); font-weight: 500;
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: .85;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-soft); font-weight: 700; font-family: var(--disp);
  padding: 15px 24px; border-radius: 999px; border: 1.5px solid var(--line);
  background: transparent;
}
.btn-ghost:hover { color: var(--grass); border-color: var(--grass); text-decoration: none; }
.on-dark .btn-ghost { color: var(--snow); border-color: var(--line-d); }
.on-dark .btn-ghost:hover { color: var(--lime); border-color: var(--lime); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244, 241, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; gap: 22px; padding: 13px 22px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); }
.brand:hover { text-decoration: none; }
.brand .mark { width: 46px; height: 46px; flex: none; }
.wordmark {
  font-family: var(--disp); font-weight: 800;
  font-size: 1.12rem; line-height: 0.98; letter-spacing: -0.02em;
}
.wordmark small {
  display: block; font-family: var(--body); font-weight: 700;
  font-size: 0.58rem; letter-spacing: 0.2em; color: var(--grass); margin-top: 4px; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav-links > a, .sub-toggle {
  color: var(--ink-soft); font-size: 0.95rem; font-weight: 600; cursor: pointer;
}
.nav-links > a:hover, .sub-toggle:hover { color: var(--grass); text-decoration: none; }
.has-sub { position: relative; }
.submenu {
  display: none; position: absolute; top: 100%; left: -12px; min-width: 264px;
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 8px; z-index: 70;
  box-shadow: 0 24px 48px -20px rgba(31, 51, 32, 0.4);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { display: block; }
.submenu a {
  display: block; padding: 9px 12px; border-radius: 8px;
  color: var(--ink-soft); font-size: 0.92rem; font-weight: 500;
}
.submenu a:hover { background: var(--sand); color: var(--grass); text-decoration: none; }
.nav-call {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--grass); color: #fff !important;
  font-family: var(--disp); font-weight: 700; font-size: 0.98rem;
  padding: 11px 20px; border-radius: 999px;
}
.nav-call:hover { background: var(--grass-hi); text-decoration: none; }
.nav-call svg { width: 17px; height: 17px; }
.chip-247 {
  font-family: var(--body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--grass); background: rgba(63,143,69,.1); border: 1px solid rgba(63,143,69,.28);
  padding: 6px 11px; border-radius: 999px; white-space: nowrap; text-transform: uppercase;
}
.menu-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; color: var(--ink-soft); padding: 8px; cursor: pointer; margin-left: auto; }
.menu-toggle svg { width: 24px; height: 24px; display: block; }

/* Hero (rounded overlay image, reference-style) */
.hero { padding: 26px 0 8px; }
.hero-card {
  position: relative; border-radius: 28px; overflow: hidden;
  min-height: 540px; display: flex; align-items: center;
  box-shadow: 0 30px 60px -30px rgba(31,51,32,.5);
}
.hero-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(24,40,25,.92) 0%, rgba(24,40,25,.72) 44%, rgba(24,40,25,.30) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 56px clamp(24px, 5vw, 68px); max-width: 760px; }
.hero-inner .kicker { color: var(--lime); }
.hero h1 { color: #fff; margin: 18px 0 18px; }
.hero .lede { color: rgba(242,245,234,.9); font-size: 1.18rem; max-width: 40em; }
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 32px; }
.hero-cta .btn-ghost { color: #fff; border-color: rgba(242,245,234,.4); }
.hero-cta .btn-ghost:hover { color: var(--lime); border-color: var(--lime); }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.hero-chips span {
  font-family: var(--body); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.03em;
  color: #eef3e6; background: rgba(242,245,234,.12); border: 1px solid rgba(242,245,234,.2);
  padding: 7px 13px; border-radius: 999px;
}

/* Trust strip under hero */
.trust-strip { padding: 22px 0 4px; }
.trust-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 30px; text-align: center; }
.trust-strip .t {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; color: var(--ink-soft); font-size: 0.95rem;
}
.trust-strip .t svg { width: 19px; height: 19px; color: var(--grass); flex: none; }
.trust-strip .sep { color: var(--line); }

/* Sections */
section { padding: 84px 0; }
.band { background: var(--cream-2); }
.band-sand { background: var(--sand); }
.band-dark { background: var(--forest); color: var(--snow); }
.band-dark h2, .band-dark h3, .band-dark h4 { color: var(--snow); }
.band-dark p { color: var(--muted-d); }
.band-dark a { color: var(--lime); }
.sec-head { max-width: 760px; margin-bottom: 46px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { margin: 14px 0 14px; }
.sec-head p { font-size: 1.08rem; }

/* Why-choose feature cards (dark band, lime circle icons) */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat {
  background: var(--forest-2); border: 1px solid var(--line-d-soft);
  border-radius: var(--r); padding: 30px 26px; transition: transform .15s ease, background .15s ease;
}
.feat:hover { transform: translateY(-4px); background: var(--forest-3); }
.feat .ic {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--lime); color: #1c2a15;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feat .ic svg { width: 27px; height: 27px; }
.feat h3 { color: var(--snow); font-size: 1.18rem; margin-bottom: 10px; }
.feat p { color: var(--muted-d); font-size: 0.96rem; }

/* Species panel */
.species { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.spec-card {
  border: 1px solid var(--line); border-radius: var(--r); padding: 34px 32px;
  background: var(--cream-2); box-shadow: 0 20px 40px -30px rgba(31,51,32,.4);
}
.spec-card .glyph {
  width: 56px; height: 56px; border-radius: 16px; background: var(--forest);
  color: var(--lime); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.spec-card .glyph svg { width: 30px; height: 30px; }
.spec-card h3 { font-size: 1.55rem; margin-bottom: 6px; }
.spec-card .latin { font-family: var(--body); font-size: 0.76rem; font-weight: 700; color: var(--grass); letter-spacing: 0.1em; text-transform: uppercase; }
.spec-card > p { margin-top: 14px; font-size: 1rem; }
.spec-card ul { margin-top: 16px; }
.spec-card li { padding: 9px 0 9px 26px; position: relative; color: var(--muted); font-size: 0.96rem; border-top: 1px solid var(--line-soft); }
.spec-card li::before { content: ""; position: absolute; left: 2px; top: 17px; width: 10px; height: 10px; background: var(--lime); border: 1.5px solid var(--grass); border-radius: 3px; }

/* Services grid */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc {
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  background: var(--cream-2); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 26px 48px -28px rgba(31,51,32,.45); }
.svc img { height: 190px; width: 100%; object-fit: cover; }
.svc-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc h3 { margin-bottom: 10px; font-size: 1.24rem; }
.svc h3 a { color: var(--ink-soft); }
.svc h3 a:hover { color: var(--grass); text-decoration: none; }
.svc p { font-size: 0.96rem; flex: 1; }
.svc .go { margin-top: 18px; font-family: var(--disp); font-weight: 700; font-size: 0.92rem; color: var(--grass); }

/* Big image band with overlay card (reference "proactive" band) */
.showband { padding: 0; }
.showband .inner {
  position: relative; border-radius: 28px; overflow: hidden; margin: 0 22px;
  min-height: 380px; display: flex; align-items: center; justify-content: center; text-align: center;
}
.showband .inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.showband .inner::after { content: ""; position: absolute; inset: 0; background: rgba(24,40,25,.72); z-index: 1; }
.showband .panel { position: relative; z-index: 2; max-width: 760px; padding: 64px 32px; }
.showband h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.9rem); }
.showband p { color: rgba(242,245,234,.9); font-size: 1.1rem; margin: 16px auto 26px; max-width: 42em; }

/* Entry points (reference feature-card idiom) */
.entry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: entry; }
.entry {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 26px; counter-increment: entry; position: relative;
}
.entry::before {
  content: counter(entry, decimal-leading-zero);
  font-family: var(--disp); font-weight: 800; font-size: 1.05rem;
  color: var(--grass); background: rgba(63,143,69,.1); border: 1px solid rgba(63,143,69,.25);
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.entry h3 { font-size: 1.1rem; margin-bottom: 8px; }
.entry p { font-size: 0.94rem; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step {
  background: var(--forest-2); border: 1px solid var(--line-d-soft);
  border-radius: var(--r); padding: 26px 22px;
}
.step .num { font-family: var(--disp); font-weight: 800; font-size: 0.86rem; color: var(--lime); letter-spacing: 0.05em; }
.step h3 { color: var(--snow); font-size: 1.08rem; margin: 12px 0 8px; }
.step p { color: var(--muted-d); font-size: 0.9rem; }

/* Areas */
.area-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.area-links a {
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: 16px 18px;
  color: var(--ink-soft); font-weight: 600; background: var(--cream-2);
  display: flex; align-items: center; gap: 10px; transition: border-color .15s ease, color .15s ease;
}
.area-links a svg { width: 17px; height: 17px; color: var(--grass); flex: none; }
.area-links a:hover { border-color: var(--grass); text-decoration: none; color: var(--grass); }
.band-dark .area-links a { background: var(--forest-2); border-color: var(--line-d-soft); color: var(--snow); }
.band-dark .area-links a svg { color: var(--lime); }
.band-dark .area-links a:hover { border-color: var(--lime); color: var(--lime); }

/* Estimate factors */
.factors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.factor { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 28px; border-top: 4px solid var(--grass); }
.factor h3 { font-size: 1.12rem; margin-bottom: 8px; }
.factor p { font-size: 0.96rem; }

/* FAQ */
.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 18px;
  padding: 22px 0; font-family: var(--disp); font-weight: 700; font-size: 1.12rem; color: var(--ink-soft);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--grass); font-size: 1.4rem; flex: none; line-height: 1;
  width: 30px; height: 30px; border-radius: 50%; background: rgba(63,143,69,.1);
  display: inline-flex; align-items: center; justify-content: center;
}
.faq details[open] summary::after { content: "\2013"; background: var(--grass); color: #fff; }
.faq details p { padding: 0 0 22px; max-width: 62em; }
.band-dark .faq details { border-color: var(--line-d-soft); }
.band-dark .faq summary { color: var(--snow); }
.band-dark .faq summary::after { color: var(--lime); background: rgba(199,227,86,.14); }
.band-dark .faq details[open] summary::after { background: var(--lime); color: #1c2a15; }

/* Call band */
.call-band { background: var(--forest); color: var(--snow); text-align: center; }
.call-band h2 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 16px 0 14px; }
.call-band p { color: var(--muted-d); max-width: 44em; margin: 0 auto 32px; font-size: 1.08rem; }
.call-band .kicker { color: var(--lime); justify-content: center; }

/* Prose pages + service/area layout */
.page-hero { padding: 30px 0 0; }
.page-hero .inner {
  position: relative; border-radius: 26px; overflow: hidden; padding: 56px clamp(24px,4vw,56px);
  background: var(--forest); color: var(--snow);
}
.page-hero .inner::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  border-radius: 50%; background: radial-gradient(circle, rgba(199,227,86,.22), transparent 70%);
}
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.3rem); margin: 14px 0 14px; position: relative; }
.page-hero .lede { color: rgba(242,245,234,.9); font-size: 1.14rem; max-width: 42em; position: relative; }
.page-hero .kicker { color: var(--lime); }
.page-hero .hero-cta { margin-top: 26px; }
.crumbs { font-family: var(--body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; color: rgba(242,245,234,.7); margin-bottom: 4px; position: relative; }
.crumbs a { color: rgba(242,245,234,.7); }
.crumbs a:hover { color: var(--lime); }

.article { padding: 60px 0 72px; }
.article-grid { display: grid; grid-template-columns: 1fr 330px; gap: 56px; align-items: start; }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { margin-top: 1.9em; font-size: clamp(1.5rem, 2.8vw, 2.05rem); }
.prose p { font-size: 1.03rem; }
.prose ul { margin-top: 1em; }
.prose li { padding: 11px 0 11px 28px; position: relative; color: var(--muted); border-top: 1px solid var(--line-soft); }
.prose li::before { content: ""; position: absolute; left: 2px; top: 20px; width: 10px; height: 10px; background: var(--lime); border: 1.5px solid var(--grass); border-radius: 3px; }
.prose li strong { color: var(--ink); }
.prose img { border-radius: var(--r); border: 1px solid var(--line); }
.side { position: sticky; top: 92px; display: grid; gap: 20px; }
.side-card { border: 1px solid var(--line); border-radius: var(--r); padding: 26px 26px; background: var(--cream-2); }
.side-card.dark { background: var(--forest); border-color: var(--forest-2); }
.side-card.dark h3 { color: #fff; }
.side-card.dark p { color: var(--muted-d); }
.side-card h3 { margin-bottom: 12px; }
.side-card p { font-size: 0.95rem; }
.side-card .btn-call { width: 100%; justify-content: center; margin-top: 16px; font-size: 1.08rem; padding: 15px 18px; }
.side-card ul { margin-top: 6px; }
.side-card li { border-top: 1px solid var(--line-soft); padding: 9px 0; font-size: 0.94rem; }
.side-card li:first-child { border-top: none; }
.side-card li a { color: var(--ink-soft); font-weight: 500; }
.side-card li a:hover { color: var(--grass); }

/* Footer */
.site-footer { background: var(--forest); color: var(--snow); padding: 68px 0 0; }
.footer-call-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 44px; border-bottom: 1px solid var(--line-d-soft); }
.footer-call-row h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); max-width: 13em; }
.giant-phone { font-family: var(--disp); font-weight: 800; font-size: clamp(1.7rem, 4.6vw, 2.7rem); color: var(--lime); letter-spacing: -0.01em; }
.giant-phone:hover { color: var(--lime-hi); text-decoration: none; }
.giant-phone small { display: block; font-family: var(--body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; color: var(--muted-d); margin-top: 4px; text-transform: uppercase; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 46px 0; }
.footer-grid h4 { font-family: var(--body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.footer-grid > div > p { color: var(--muted-d); font-size: 0.94rem; }
.footer-grid li { padding: 5px 0; }
.footer-grid li a { color: var(--muted-d); font-size: 0.94rem; }
.footer-grid li a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid var(--line-d-soft); padding: 28px 0 100px; }
.disclaimer { font-size: 0.82rem; color: #8aa080; max-width: 74em; line-height: 1.6; }
.copyright { font-family: var(--body); font-size: 0.78rem; color: #6f8567; margin-top: 14px; }

/* Sticky mobile call bar */
.mobile-call {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  background: var(--grass); color: #fff; font-family: var(--disp); font-weight: 800;
  font-size: 1.14rem; letter-spacing: -0.01em;
  padding: 16px; border-radius: 999px; text-align: center;
  align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 10px 30px -6px rgba(31,51,32,.55);
}
.mobile-call svg { width: 20px; height: 20px; }
.mobile-call:hover { text-decoration: none; }

/* Responsive */
@media (max-width: 1000px) {
  .features { grid-template-columns: 1fr 1fr; }
  .entry-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .article-grid { grid-template-columns: 1fr; }
  .side { position: static; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .area-links { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .species { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 58px 0; }
  .hero { padding: 16px 0 4px; }
  .hero-card { min-height: 0; }
  .hero-inner { padding: 44px 26px; }
  .menu-toggle { display: block; }
  .chip-247 { display: none; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream-2); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 14px 22px 20px; gap: 2px;
    max-height: calc(100dvh - 70px); overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .sub-toggle { padding: 11px 0; display: block; }
  .submenu { display: block; position: static; border: none; background: none; padding: 0 0 6px 14px; min-width: 0; box-shadow: none; }
  .submenu a { padding: 8px 0; }
  .nav-call { justify-content: center; margin-top: 10px; }
  .features, .svc-grid, .steps, .factors, .entry-grid, .area-links, .footer-grid { grid-template-columns: 1fr; }
  .showband .inner { margin: 0 14px; }
  .mobile-call { display: flex; }
  .btn-call { width: 100%; justify-content: center; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn-ghost, .page-hero .btn-ghost { width: 100%; justify-content: center; }
}
