/* The Rodent Control Network of Eugene — shared stylesheet */
:root {
  --green-900: oklch(0.28 0.05 155);
  --green-700: oklch(0.38 0.06 155);
  --green-600: oklch(0.46 0.08 155);
  --green-500: oklch(0.55 0.09 155);
  --green-50:  oklch(0.965 0.018 155);
  --slate-900: oklch(0.22 0.018 250);
  --slate-700: oklch(0.36 0.02 250);
  --slate-500: oklch(0.55 0.018 250);
  --slate-300: oklch(0.78 0.012 250);
  --slate-200: oklch(0.88 0.008 250);
  --bg:        oklch(0.985 0.005 95);
  --bg-soft:   oklch(0.965 0.008 95);
  --border:    oklch(0.91 0.008 95);
  --amber:     oklch(0.74 0.13 70);
  --shadow-sm: 0 1px 2px rgb(15 23 23 / .06);
  --shadow-md: 0 6px 24px -8px rgb(15 23 23 / .12), 0 1px 2px rgb(15 23 23 / .06);
  --shadow-lg: 0 24px 60px -20px rgb(15 23 23 / .25);
  --radius: 10px;
  --radius-lg: 16px;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.2vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin: 0 0 1em; text-wrap: pretty; }
a  { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--green-900); }

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

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

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(255 255 255 / .92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--slate-900); }
.brand-mark {
  width: 66px; height: 66px; border-radius: 50%;
  background: white;
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-name { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.08rem; letter-spacing: -0.02em; }
.brand-sub { font-size: 0.78rem; color: var(--slate-500); letter-spacing: 0.04em; text-transform: uppercase; }
.brand-stack { display: flex; flex-direction: column; line-height: 1.1; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--slate-700); text-decoration: none; font-weight: 500;
  padding: 8px 12px; border-radius: 8px; font-size: 0.95rem;
}
.nav a:hover { background: var(--bg-soft); color: var(--slate-900); }
.nav a.active { color: var(--green-700); background: var(--green-50); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-link {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--green-700); color: white;
  padding: 8px 16px 8px 10px; border-radius: 11px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background .15s, transform .12s;
}
.phone-link:hover { background: var(--green-900); color: white; transform: translateY(-1px); }
.phone-link-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgb(255 255 255 / .16);
  display: grid; place-items: center; flex-shrink: 0;
}
.phone-link-icon svg { width: 16px; height: 16px; }
.phone-link-text { display: flex; flex-direction: column; line-height: 1.08; }
.phone-link-eyebrow { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: rgb(255 255 255 / .82); white-space: nowrap; }
.phone-link-num { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.04rem; letter-spacing: -0.01em; white-space: nowrap; }
@media (max-width: 540px) {
  .phone-link-eyebrow { display: none; }
  .phone-link { padding: 7px 13px 7px 8px; gap: 9px; }
}

.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--slate-900); margin: 3px 0; }

/* ===== Dropdown nav (Services) ===== */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > .nav-parent { display: inline-flex; align-items: center; gap: 5px; }
.nav-item .caret { width: 13px; height: 13px; opacity: 0.65; transition: transform .2s ease; }
.nav-item:hover .caret, .nav-item:focus-within .caret { transform: rotate(180deg); }
/* invisible bridge so the menu doesn't drop when the cursor crosses the gap */
.nav-item::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 10px; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 212px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 6px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 60;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a { padding: 9px 12px; border-radius: 7px; font-size: 0.93rem; white-space: nowrap; }

@media (max-width: 960px) {
  .nav-item { flex-direction: column; align-items: stretch; }
  .nav-item::after { display: none; }
  .nav-item .caret { display: none; }
  .nav-item > .nav-parent { justify-content: flex-start; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; padding: 0; min-width: 0;
  }
  .dropdown a { padding: 12px 8px 12px 26px; border-radius: 0; border-bottom: 1px solid var(--border); color: var(--slate-500); }
}

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch;
    padding: 12px 24px; gap: 0;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 8px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav a:last-child { border-bottom: none; }
  .brand-sub { display: none; }
  /* keep the call button beside the menu toggle on mobile */
  .brand { order: 1; }
  .header-cta { order: 2; margin-left: auto; }
  .nav-toggle { order: 3; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--green-900);
  color: white;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,40,33,.88) 0%, rgba(20,40,33,.7) 38%, rgba(20,40,33,.25) 70%, rgba(20,40,33,.05) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center right; z-index: 0; opacity: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 96px 0 110px;
  max-width: 760px;
}
.hero h1 { color: white; }
.hero p.lede { color: rgb(255 255 255 / .88); font-size: 1.18rem; max-width: 60ch; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: oklch(0.88 0.06 155);
  background: rgb(255 255 255 / .08);
  border: 1px solid rgb(255 255 255 / .18);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero .eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgb(94 180 142 / .25); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 10px;
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 1rem;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .12s ease, background .15s, color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: white; color: var(--green-900); }
.btn-primary:hover { background: var(--green-50); color: var(--green-900); }
.btn-ghost { background: transparent; color: white; border-color: rgb(255 255 255 / .35); }
.btn-ghost:hover { background: rgb(255 255 255 / .08); color: white; }
.btn-solid { background: var(--green-700); color: white; }
.btn-solid:hover { background: var(--green-900); color: white; }
.btn-outline { background: white; color: var(--green-700); border-color: var(--green-700); }
.btn-outline:hover { background: var(--green-50); }

/* ===== Sections ===== */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
section.soft { background: var(--bg-soft); }
section.dark { background: var(--green-900); color: rgb(255 255 255 / .82); }
section.dark h2, section.dark h3 { color: white; }

.section-head { max-width: 740px; margin-bottom: 48px; }
.section-head .eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-700); margin-bottom: 12px;
}
.section-head p { color: var(--slate-500); font-size: 1.08rem; }

/* ===== Grids & Cards ===== */
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--slate-200); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate-500); margin-bottom: 0; }
.card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green-50); color: var(--green-700);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card .icon svg { width: 22px; height: 22px; }
.card .more { display: inline-block; margin-top: 16px; font-weight: 600; font-size: 0.95rem; }

.card-img {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.card-img, .card-img * { text-decoration: none; }
.card-img:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card-img .thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--slate-200); }
.card-img .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card-img:hover .thumb img { transform: scale(1.04); }
.card-img .body { padding: 24px 26px 26px; }
.card-img h3 { margin-bottom: 8px; }
.card-img p { color: var(--slate-500); margin-bottom: 12px; font-size: 0.97rem; }
.card-img .more { font-weight: 600; color: var(--green-700); font-size: 0.93rem; }

/* ===== Split / Feature rows ===== */
.split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split.reverse .split-media { order: 2; }
@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
}
.split-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-media.natural img { aspect-ratio: auto; height: auto; object-fit: contain; background: var(--bg-soft); }
.split h2 { margin-top: 0; }
.split ul.checks { list-style: none; padding: 0; margin: 18px 0 0; }
.split ul.checks li { padding: 9px 0 9px 30px; position: relative; color: var(--slate-700); }
.split ul.checks li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23275c40' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 10.5l3 3 7-7'/></svg>");
  background-repeat: no-repeat; background-position: center;
}

/* ===== Process steps ===== */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 26px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Manrope", sans-serif; font-weight: 800;
  font-size: 1.6rem; color: var(--green-700);
  border-right: 1px solid var(--border); padding-right: 18px;
  display: grid; place-items: center;
}
.step h3 { margin-bottom: 4px; }
.step p { margin: 0; color: var(--slate-500); }

/* ===== Stats / Trust bar ===== */
.trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.trust-bar > div { padding: 24px 28px; border-right: 1px solid var(--border); }
.trust-bar > div:last-child { border-right: none; }
.trust-bar .num { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--slate-900); letter-spacing: -0.02em; line-height: 1; }
.trust-bar .label { color: var(--slate-500); font-size: 0.92rem; margin-top: 6px; }
@media (max-width: 760px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-bar > div:nth-child(2) { border-right: none; }
  .trust-bar > div:nth-child(1), .trust-bar > div:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ===== Service area / chips ===== */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: white; border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 14px; font-size: 0.9rem; color: var(--slate-700);
}
.chip strong { color: var(--slate-900); font-weight: 600; }

/* ===== FAQ ===== */
details.faq {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0 22px;
  margin-bottom: 10px;
}
details.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-family: "Manrope", sans-serif; font-weight: 700; color: var(--slate-900);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; font-size: 1.5rem; line-height: 1; color: var(--green-700);
  transition: transform .2s;
}
details.faq[open] summary::after { content: "–"; }
details.faq .answer { padding: 0 0 20px; color: var(--slate-500); }

/* ===== Callout / CTA strip ===== */
.cta-strip {
  background: var(--green-900); color: white;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-strip h2 { color: white; margin: 0 0 8px; }
.cta-strip p { color: rgb(255 255 255 / .8); margin: 0; }
.cta-strip .actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 760px) { .cta-strip { grid-template-columns: 1fr; padding: 32px; } }

/* ===== Page header (interior pages) ===== */
.page-header {
  background: var(--green-900); color: white;
  padding: 80px 0 64px;
  border-bottom: 6px solid var(--green-700);
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 30%, rgba(94,180,142,.25), transparent 55%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: white; max-width: 22ch; }
.page-header p.lede { color: rgb(255 255 255 / .82); font-size: 1.15rem; max-width: 60ch; margin-bottom: 0; }
.crumbs { font-size: 0.85rem; color: rgb(255 255 255 / .65); margin-bottom: 18px; letter-spacing: 0.04em; }
.crumbs a { color: rgb(255 255 255 / .8); text-decoration: none; }
.crumbs a:hover { color: white; text-decoration: underline; }

/* ===== Content body (prose) ===== */
.prose { max-width: 760px; }
.prose h2 { margin-top: 56px; margin-bottom: 18px; }
.prose h3 { margin-top: 36px; margin-bottom: 10px; }
.prose p, .prose ul, .prose ol { font-size: 1.05rem; color: var(--slate-700); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose blockquote {
  margin: 28px 0; padding: 20px 24px;
  background: var(--green-50); border-left: 4px solid var(--green-700);
  border-radius: 0 var(--radius) var(--radius) 0; color: var(--slate-700);
  font-size: 1.05rem;
}
.prose blockquote p:last-child { margin-bottom: 0; }

/* Layout with sidebar */
.with-aside { display: grid; grid-template-columns: 1fr 320px; gap: 56px; }
@media (max-width: 960px) { .with-aside { grid-template-columns: 1fr; } }
.aside {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  align-self: start; position: sticky; top: 100px;
}
.aside h3 { font-size: 1.05rem; margin-bottom: 14px; }
.aside ul { list-style: none; padding: 0; margin: 0 0 18px; }
.aside ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.aside ul li:last-child { border-bottom: none; }
.aside ul li strong { color: var(--slate-900); }

/* ===== Forms ===== */
.form-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; gap: 18px; margin-bottom: 18px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr; } }
.field label {
  display: block; font-weight: 600; color: var(--slate-900);
  font-size: 0.92rem; margin-bottom: 6px;
}
.field label .req { color: var(--green-700); margin-left: 3px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--slate-200); border-radius: 9px;
  font: inherit; color: var(--slate-900); background: white;
  transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-600);
  box-shadow: 0 0 0 4px oklch(0.92 0.04 155);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 0.83rem; color: var(--slate-500); margin-top: 6px; }

.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 540px) { .choice-grid { grid-template-columns: 1fr; } }
.choice {
  display: flex; align-items: flex-start; gap: 10px;
  border: 1px solid var(--slate-200); border-radius: 9px;
  padding: 12px 14px; cursor: pointer; background: white;
  transition: border .15s, background .15s;
}
.choice:hover { border-color: var(--green-600); background: var(--green-50); }
.choice input { margin-top: 4px; accent-color: var(--green-700); }
.choice span { font-size: 0.95rem; color: var(--slate-700); }
.choice strong { display: block; color: var(--slate-900); font-size: 0.97rem; }

/* ===== Footer ===== */
.site-footer {
  background: oklch(0.18 0.018 250);
  color: oklch(0.78 0.012 250);
  padding: 64px 0 32px;
  margin-top: 0;
}
.site-footer h4 { color: white; font-size: 0.95rem; margin: 0 0 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.site-footer a { color: oklch(0.85 0.01 250); text-decoration: none; }
.site-footer a:hover { color: white; text-decoration: underline; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px; border-bottom: 1px solid oklch(0.30 0.018 250);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 5px 0; font-size: 0.95rem; }
.footer-about p { font-size: 0.95rem; max-width: 36ch; }
.footer-meta {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 14px; padding-top: 24px;
  font-size: 0.85rem; color: oklch(0.62 0.012 250);
}
.footer-meta .ccb {
  background: oklch(0.24 0.02 250); border: 1px solid oklch(0.32 0.018 250);
  padding: 6px 12px; border-radius: 6px; color: oklch(0.88 0.01 250);
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.82rem;
}

/* Utility */
.muted { color: var(--slate-500); }
.center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 24px; }
.lede { font-size: 1.15rem; }
.full-bleed-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin: 28px 0; }
.full-bleed-img.natural { aspect-ratio: auto; height: auto; object-fit: contain; }

/* Pill stack for service area */
.neighborhood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px) { .neighborhood-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .neighborhood-grid { grid-template-columns: 1fr; } }
.nbhd {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
}
.nbhd strong { display: block; color: var(--slate-900); font-family: "Manrope", sans-serif; font-size: 1.05rem; margin-bottom: 4px; }
.nbhd span { font-size: 0.9rem; color: var(--slate-500); }

/* ===== Call-first CTA system ===== */
/* Big white click-to-call button used on dark green surfaces (hero + cta-strip) */
.callbtn {
  display: inline-flex; align-items: center; gap: 16px;
  background: white; color: var(--green-900);
  padding: 14px 26px 14px 16px; border-radius: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgb(255 255 255 / .65);
  transition: transform .12s ease, box-shadow .15s ease;
}
.callbtn:hover { transform: translateY(-2px); color: var(--green-900); box-shadow: 0 30px 70px -22px rgb(15 23 23 / .4); }
.callbtn .callbtn-icon {
  position: relative;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-700); color: white;
  display: grid; place-items: center; flex-shrink: 0;
}
.callbtn .callbtn-icon svg { width: 23px; height: 23px; }
.callbtn-text { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.callbtn-label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-700); white-space: nowrap; }
.callbtn-num { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.85rem; letter-spacing: -0.015em; color: var(--green-900); white-space: nowrap; }

@media (prefers-reduced-motion: no-preference) {
  .callbtn .callbtn-icon::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    box-shadow: 0 0 0 0 rgb(56 122 92 / .55);
    animation: callpulse 2.2s cubic-bezier(.36,.11,.25,1) infinite;
  }
}
@keyframes callpulse {
  0%   { box-shadow: 0 0 0 0 rgb(56 122 92 / .5); }
  70%  { box-shadow: 0 0 0 14px rgb(56 122 92 / 0); }
  100% { box-shadow: 0 0 0 0 rgb(56 122 92 / 0); }
}

/* secondary quiet link beneath/beside the call button */
.cta-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgb(255 255 255 / .8); font-size: 0.95rem; font-weight: 500;
  text-decoration: none; text-underline-offset: 3px;
}
.cta-secondary:hover { color: white; text-decoration: underline; }

/* In the hero, lay the call button + secondary out with breathing room */
.hero-call { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; margin-top: 32px; }
.callbtn-sub { color: rgb(255 255 255 / .82); font-size: 0.98rem; max-width: 30ch; }
@media (max-width: 560px) {
  .callbtn { gap: 13px; padding: 12px 20px 12px 13px; width: 100%; }
  .callbtn-num { font-size: 1.5rem; }
  .callbtn .callbtn-icon { width: 42px; height: 42px; }
}

/* cta-strip: stack the call button + secondary link vertically in the actions cell */
.cta-strip .actions { flex-direction: column; align-items: flex-start; gap: 12px; }
@media (max-width: 760px) { .cta-strip .actions { align-items: stretch; } }

/* ===== Mobile sticky click-to-call bar ===== */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; align-items: center; justify-content: center; gap: 11px;
  background: var(--green-900); color: white; text-decoration: none;
  padding: 13px 18px calc(13px + env(safe-area-inset-bottom));
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 1.02rem;
  border-top: 3px solid var(--amber);
  box-shadow: 0 -8px 26px rgb(15 23 23 / .22);
  transform: translateY(110%);
  transition: transform .26s cubic-bezier(.22,.61,.36,1);
}
.call-bar.visible { transform: translateY(0); }
.call-bar:hover { color: white; }
.call-bar .call-bar-icon { width: 26px; height: 26px; border-radius: 50%; background: rgb(255 255 255 / .15); display: grid; place-items: center; flex-shrink: 0; }
.call-bar .call-bar-icon svg { width: 15px; height: 15px; }
.call-bar strong { font-weight: 800; }
@media (max-width: 760px) {
  .call-bar { display: flex; }
  body { padding-bottom: 62px; }
}
@media print { .call-bar { display: none !important; } }

/* ===== Mid-page call-to-action band ===== */
.call-section {
  background: var(--green-900); color: white;
  border-radius: var(--radius-lg); padding: 52px 48px;
  text-align: center; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.call-section::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(94,180,142,.22), transparent 60%);
  pointer-events: none;
}
.call-section-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.call-section h2 { color: white; margin: 0; }
.call-section p { color: rgb(255 255 255 / .82); max-width: 56ch; margin: 0 0 22px; }
.call-section .callbtn { margin-top: 4px; }
@media (max-width: 600px) { .call-section { padding: 38px 24px; } }
