/* ==========================================================================
   Mosquito Man Plus — shared stylesheet
   A sister brand of Bugman Plus (Oshawa, ON). Dusk system: the hour
   mosquitoes actually come out. Two accent roles, kept strictly separate —
   gold marks the brand, ember marks the one thing we want you to click.
   ========================================================================== */

:root {
  color-scheme: dark;
  --bg: #16232c;
  --panel: #1d2f3a;
  --panel-strong: #263c47;
  --ink: #fbf8f1;
  --muted: #9fb2b0;
  --soft: #ece7da;
  --line: rgba(255, 255, 255, 0.14);
  --brand: #e3a93c;
  --brand-rgb: 227, 169, 60;
  --brand-deep: #b9822a;
  --brand-light: #f0c36b;
  --on-brand: #1b1712;
  --line-strong: rgba(var(--brand-rgb), 0.35);
  --ember: #dd5b2a;
  --ember-rgb: 221, 91, 42;
  --ember-light: #f0784a;
  --ember-deep: #b8481f;
  --on-ember: #1b1712;
  --paper: #faf4e7;
  --ink-on-paper: #241d14;
  --muted-on-paper: #6e6353;
  --danger: #ff6b4a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
  --max: 1200px;
  --pad: 24px;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Public Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 1000px 560px at 82% -8%, rgba(var(--ember-rgb), 0.1), transparent 62%),
    radial-gradient(ellipse 700px 420px at 10% 8%, rgba(var(--brand-rgb), 0.06), transparent 58%),
    var(--bg);
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

/* Native <select> popup lists ignore most of our custom control styling
   and fall back to the OS/browser's light theme, which pairs white text
   (inherited from the closed control) with a white dropdown panel. Force
   dark-scheme rendering and set explicit option colors so the open list
   stays readable everywhere a <select> is used, on any page. */
select {
  color-scheme: dark;
}

select option {
  background-color: var(--panel-strong);
  color: var(--soft);
}

select option:checked,
select option:hover,
select option:focus {
  background-color: var(--brand);
  color: var(--on-brand);
}

button {
  cursor: pointer;
}

/* Keyboard-only focus ring, site-wide. :focus-visible (not :focus) so it
   shows for Tab navigation but not mouse clicks — matches the two form-input
   groups below, which use :focus since a visible ring on click is normal
   there. */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  overflow: hidden;
}

/* ============ header ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  min-height: 76px;
  padding: 10px max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.28);
  background: rgba(22, 35, 44, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 9px;
  background: #fff;
}

.brand-logo img {
  display: block;
  height: 36px;
  width: auto;
}

.brand-text {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}

.brand-text em {
  color: var(--brand);
  font-style: normal;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(var(--ember-rgb), 0.55);
  border-radius: 999px;
  color: var(--ember-light);
  background: rgba(var(--ember-rgb), 0.12);
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.call-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 3px rgba(var(--ember-rgb), 0.25);
}

.call-link:hover {
  color: var(--on-ember);
  background: var(--ember);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 2px;
  background: var(--ink);
}

/* ============ buttons ============ */
.button,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(var(--brand-rgb), 0.75);
  border-radius: 8px;
  color: var(--on-brand);
  background: var(--brand);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(var(--brand-rgb), 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--brand-light);
}

.button:active,
.btn-primary:active {
  transform: scale(0.97);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* .button-ember: reserved for the single highest-intent action on any given
   screen (call now, submit the quote form). Never used decoratively — if
   everything is ember, nothing reads as "the" action. */
.button-ember {
  border-color: rgba(var(--ember-rgb), 0.85);
  color: var(--on-ember);
  background: var(--ember);
  box-shadow: 0 14px 40px rgba(var(--ember-rgb), 0.32);
}

.button-ember:hover {
  background: var(--ember-light);
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--brand);
  font-weight: 800;
}

.text-link:hover {
  color: var(--brand-light);
}

/* ============ hero ============ */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88vh;
  padding: 130px var(--pad) 64px;
  isolation: isolate;
  overflow: hidden;
}

/* Signature device: a dashed property line running the width of the hero,
   with a tick where the barrier treatment turns a corner — the same line a
   technician actually walks. Reused as a section seam elsewhere. */
.perimeter-seam {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 18px;
  border-top: 1px dashed rgba(var(--brand-rgb), 0.45);
}

.perimeter-seam::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.perimeter-seam::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #0f1a21;
}

.hero-art .mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(var(--brand-rgb), 0.14) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 75% 60% at 78% 30%, black 0%, transparent 72%);
}

.hero-art svg {
  position: absolute;
  right: -6%;
  top: 8%;
  width: min(62vw, 780px);
  height: auto;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 35, 44, 0.95), rgba(22, 35, 44, 0.6) 48%, rgba(35, 30, 44, 0.22)),
    linear-gradient(180deg, rgba(22, 35, 44, 0.12), var(--bg) 96%);
}

.subhero .hero-art svg {
  width: min(46vw, 420px);
  top: 2%;
  opacity: 0.38;
}

.hero-content {
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 18px;
  max-width: 920px;
  font-family: var(--font-display);
  font-size: 84px;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero h1 em {
  color: var(--brand);
  font-style: italic;
}

.hero-lede {
  max-width: 620px;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 650;
}

.hero-rating-stars {
  color: var(--brand-light);
  font-size: 15px;
  letter-spacing: 1px;
}

.hero-rating strong {
  color: var(--brand-light);
  font-weight: 800;
}

.hero-actions-note {
  flex-basis: 100%;
  margin-top: 2px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12.5px;
}

/* Real, useful facts in place of dashboard-style vanity stats — every value
   here is something that changes what a visitor does next. */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin: 40px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.hero-metrics div {
  padding: 18px 20px;
  background: rgba(22, 35, 44, 0.72);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-metrics span {
  display: block;
  color: var(--soft);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.3;
}

/* ============ ticker ============ */
.ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--brand);
  color: var(--on-brand);
}

.ticker div {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 12px 0;
  animation: ticker 32s linear infinite;
}

.ticker span {
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ trust band ============ */
.trust-band {
  border-bottom: 1px solid var(--line);
  background: var(--panel-strong);
}

.trust-band-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.trust-item::before {
  content: "";
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand);
}

.trust-item strong {
  color: var(--brand-light);
  font-weight: 700;
}

/* ============ trust badges (guarantee section) ============ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(var(--brand-rgb), 0.4);
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.07);
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

/* ============ sections ============ */
.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 112px var(--pad);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.section-heading h2 em,
.about-copy h2 em,
.contact-copy h2 em {
  color: var(--brand);
  font-style: italic;
}

.section-heading p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ============ narrative (about page brand story) ============ */
.narrative-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
}

.narrative-copy {
  color: var(--soft);
  font-size: 21px;
  line-height: 1.7;
}

/* ============ approach / value cards ============ */
.approach-grid,
.values-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* The three steps are a real sequence (a technician walks the property in
   this order), so the connecting line and numbering earn their place here —
   unlike the service grid below, which isn't ordered. */
.approach-grid::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 6%;
  right: 6%;
  z-index: 0;
  border-top: 1px dashed rgba(var(--brand-rgb), 0.3);
}

.approach-card,
.value-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), var(--panel);
}

.approach-card span,
.value-card span {
  display: block;
  color: var(--brand);
  font-weight: 900;
}

.approach-card span {
  margin-bottom: 8px;
}

.value-card span {
  margin-bottom: 54px;
}

.approach-card h3,
.value-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.approach-card p,
.value-card p {
  color: var(--muted);
  line-height: 1.65;
}

/* ============ service cards ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  transition: border-color 220ms ease, transform 220ms ease;
}

.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.service-card > a,
.service-card > div.service-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-icon-band {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 22px;
  background:
    radial-gradient(circle at 30% 20%, rgba(var(--brand-rgb), 0.14), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    #182a31;
  color: var(--brand);
}

/* Hidden: services aren't a ranked/sequential list, so a "01 02 03…" badge
   here would claim an order that doesn't exist. The service-card-meta tags
   below already carry the real distinguishing info (type, season). */
.card-number {
  display: none;
}

.service-card-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--panel);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.service-card-meta span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(var(--brand-rgb), 0.3);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.08);
  font-size: 11px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.service-card p {
  color: var(--soft);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ============ blog ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  transition: border-color 220ms ease, transform 220ms ease;
}

.blog-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.blog-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.blog-card-date {
  display: block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.blog-card p {
  flex: 1;
  margin-bottom: 16px;
  color: var(--soft);
  line-height: 1.55;
}

.blog-card .text-link {
  margin-top: auto;
}

.blog-empty {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 17px;
}

.blog-article {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article .blog-card-date {
  margin-bottom: 16px;
}

.blog-article h1 {
  margin-bottom: 20px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.blog-article h2 {
  margin: 40px 0 14px;
  font-size: 30px;
  line-height: 1.15;
}

.blog-article h3 {
  margin: 28px 0 12px;
  font-size: 22px;
}

.blog-article p {
  margin-bottom: 18px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.75;
}

.blog-article ul,
.blog-article ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.75;
}

.blog-article li {
  margin-bottom: 8px;
}

.blog-cta {
  margin-top: 44px;
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.1), rgba(var(--brand-rgb), 0.02));
  text-align: center;
}

.blog-cta h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.blog-cta p {
  margin-bottom: 20px;
  color: var(--muted);
}

.blog-related-service {
  margin-top: 24px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.blog-related-service h3 {
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-related-service p {
  margin: 0;
  color: var(--soft);
}

.blog-related-service a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(var(--brand-rgb), 0.4);
}

.blog-related-service a:hover {
  color: var(--brand-light);
}

.blog-back-link {
  display: inline-flex;
  margin-bottom: 32px;
}

.blog-featured-image {
  margin: 0 0 28px;
}

.blog-featured-image img {
  width: 100%;
  height: 360px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.blog-featured-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.blog-tldr,
.blog-takeaways,
.blog-toc {
  margin-bottom: 28px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.blog-tldr {
  border-color: var(--line-strong);
  background: rgba(var(--brand-rgb), 0.06);
}

.blog-tldr-label,
.blog-takeaways-label,
.blog-toc-title {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-tldr p:last-child,
.blog-takeaways ul,
.blog-toc ol {
  margin-bottom: 0;
}

.blog-toc ol {
  padding-left: 20px;
}

.blog-toc a {
  color: var(--brand);
  font-weight: 700;
}

.blog-toc a:hover {
  color: var(--brand-light);
}

.blog-article a:not(.button) {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(var(--brand-rgb), 0.4);
}

.blog-article a:not(.button):hover {
  color: var(--brand-light);
}

.blog-faq {
  margin-top: 40px;
}

.blog-faq h3 {
  margin-top: 24px;
  font-size: 19px;
}

.blog-author {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.blog-author-label {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-author p {
  margin-bottom: 0;
  color: var(--muted);
}

/* ============ about band ============ */
.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: center;
  max-width: none;
  padding-left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  padding-right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #1a2932;
}

.about-band-art {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  background:
    radial-gradient(circle at 70% 30%, rgba(var(--brand-rgb), 0.16), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(var(--brand-rgb), 0.12), transparent 50%),
    #16242b;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-band-art svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-copy {
  max-width: 640px;
}

/* ============ location grid / chips ============ */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.location-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  transition: border-color 180ms ease, background 180ms ease;
}

.location-chip:hover {
  border-color: var(--line-strong);
  background: #24373f;
}

.location-chip span {
  font-weight: 850;
}

.location-chip small {
  color: var(--brand);
  font-weight: 900;
}

/* ============ areas page ============ */
.locations-overview {
  padding-top: 56px;
}

.service-area-panel {
  display: grid;
  gap: 18px;
}

.area-group {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 30px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.07), transparent 42%), var(--panel);
}

.area-group-copy p {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.area-group-copy h3 {
  max-width: 460px;
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.08;
}

.area-group-copy span {
  display: block;
  max-width: 540px;
  color: var(--muted);
  line-height: 1.65;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.area-list a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.area-list a::after {
  content: "View";
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.area-list a:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--brand-rgb), 0.4);
  background: rgba(var(--brand-rgb), 0.07);
}

.area-toggle {
  display: inline-flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 48px;
  margin-top: 16px;
  padding: 0 22px;
  border: 1px solid rgba(var(--brand-rgb), 0.75);
  border-radius: 8px;
  color: var(--on-brand);
  background: var(--brand);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(var(--brand-rgb), 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.area-toggle:hover {
  transform: translateY(-2px);
  background: var(--brand-light);
}

.area-toggle:active {
  transform: scale(0.97);
}

.area-toggle[data-area-toggle-arrow-flip] [data-area-toggle-arrow] {
  transform: rotate(180deg);
}

/* Closed by default: zero max-height keeps it out of layout flow while still
   letting the expand/collapse transition animate smoothly (display:none
   can't be transitioned). */
.area-collapsible {
  grid-column: 1 / -1;
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  transition: max-height 500ms ease, opacity 400ms ease, margin-top 500ms ease;
}

.area-collapsible.is-expanded {
  max-height: 2000px;
  margin-top: 18px;
  opacity: 1;
}

.area-collapsible .area-list {
  margin-top: 0;
}

/* ============ contact ============ */
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.contact-methods a {
  display: inline-flex;
  color: var(--brand);
  font-size: 20px;
  font-weight: 900;
}

.contact-methods.large a {
  font-size: 32px;
}

.quote-stack {
  display: grid;
  gap: 16px;
}

.call-now-card {
  display: grid;
  gap: 4px;
  align-items: center;
  justify-items: center;
  min-height: 106px;
  padding: 22px;
  border: 1px solid rgba(var(--brand-rgb), 0.75);
  border-radius: 10px;
  color: var(--on-brand);
  background: linear-gradient(135deg, var(--brand), var(--brand-light)), var(--brand);
  box-shadow: 0 18px 48px rgba(var(--brand-rgb), 0.22);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.call-now-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(var(--brand-rgb), 0.3);
}

.call-now-card span {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.call-now-card strong {
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
}

.quote-form {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(16, 20, 17, 0.82);
  box-shadow: var(--shadow);
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  padding: 0 14px;
  outline: none;
}

.quote-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%239db3a9' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.3);
}

.quote-form input:invalid:not(:placeholder-shown),
.quote-form.was-validated input:invalid,
.quote-form.was-validated select:invalid,
.quote-form.was-validated textarea:invalid {
  border-color: var(--danger);
}

.quote-form textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
}

.form-full {
  grid-column: 1 / -1;
}

.quote-form .button {
  margin-top: 18px;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.form-note.is-error {
  color: var(--danger);
}

/* ============ accordion ============ */
.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 850;
  font-size: 15.5px;
}

.accordion-mark {
  flex-shrink: 0;
  color: var(--brand);
  font-size: 22px;
  font-weight: 900;
}

.accordion-panel {
  overflow: hidden;
  max-height: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
  opacity: 0;
  transition: max-height 220ms ease, opacity 200ms ease;
}

.accordion-panel.is-expanded {
  opacity: 1;
}

/* ============ subhero (inner pages) ============ */
.subhero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 480px;
  padding: 140px var(--pad) 60px;
  isolation: isolate;
  overflow: hidden;
}

.subhero-content {
  width: min(860px, 100%);
  max-width: var(--max);
  margin: 0 auto;
}

.subhero h1 {
  margin-bottom: 16px;
  font-size: 68px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.subhero p {
  max-width: 680px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.6;
}

/* ============ footer ============ */
.site-footer {
  max-width: calc(var(--max) + 48px);
  margin: 80px auto 24px;
  padding: 42px 42px 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #16232c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.6fr 1.1fr;
  gap: 42px;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer a:hover {
  color: var(--brand);
}

.footer-links {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.footer-brand .brand-text {
  font-size: 17px;
}

.footer-brand p {
  margin-top: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 50px;
  color: var(--muted);
  font-size: 13px;
}

.back-to-top {
  display: inline-flex;
  min-width: 44px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.back-to-top:hover {
  border-color: var(--line-strong);
  color: var(--brand);
}

/* ============ mobile call float ============ */
.mobile-call-float {
  display: none;
}

/* ============ 5% new-customer popup ============ */
.discount-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.discount-modal[hidden] {
  display: none;
}

.discount-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 250ms ease;
}

.discount-dialog {
  position: relative;
  width: min(100%, 480px);
  padding: 34px;
  border: 1px solid rgba(var(--brand-rgb), 0.42);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.1), rgba(255, 255, 255, 0.025)), #1b2a32;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 250ms ease, transform 250ms ease;
}

.discount-modal.is-open .discount-backdrop {
  opacity: 1;
}

.discount-modal.is-open .discount-dialog {
  opacity: 1;
  transform: scale(1);
}

.discount-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  font-size: 26px;
  line-height: 1;
}

.discount-close:hover {
  border-color: var(--line-strong);
  color: var(--brand);
}

.discount-dialog h2 {
  max-width: 360px;
  margin-bottom: 14px;
  font-size: 36px;
  line-height: 1.06;
}

.discount-dialog > p {
  color: var(--soft);
  line-height: 1.6;
}

.discount-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  opacity: 1;
  transition: opacity 160ms ease;
}

.discount-form.is-leaving {
  opacity: 0;
}

.discount-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

.discount-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  padding: 0 14px;
  outline: none;
}

.discount-form input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.3);
}

.discount-note {
  min-height: 20px;
  margin: 4px 0 0;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.discount-note.is-error {
  color: var(--danger);
}

.discount-success {
  margin: 4px 0 0;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}

.discount-success.is-visible {
  opacity: 1;
  transform: scale(1);
}

.discount-call {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.discount-call:hover {
  color: var(--brand-light);
}

/* ============ reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============ city landing pages (expanded area content) ============ */
.city-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px var(--pad) 64px;
  text-align: center;
  background: radial-gradient(ellipse 700px 380px at 50% 0%, rgba(var(--brand-rgb), 0.12), transparent 65%);
}

.city-hero h1 {
  margin-bottom: 16px;
  font-size: 56px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.city-tagline {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--soft);
  font-size: 19px;
  line-height: 1.6;
}

.city-intro,
.city-problem,
.city-how,
.city-cost,
.city-safety,
.city-timing,
.city-neighborhoods,
.city-services,
.city-guarantee,
.city-faq {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px var(--pad);
  border-top: 1px solid var(--line);
}

.city-intro h2,
.city-problem h2,
.city-how h2,
.city-cost h2,
.city-safety h2,
.city-timing h2,
.city-neighborhoods h2,
.city-services h2,
.city-guarantee h2,
.city-faq h2 {
  margin-bottom: 20px;
  max-width: 720px;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.city-intro p,
.city-problem p,
.city-how p,
.city-cost p,
.city-safety p,
.city-timing p,
.city-neighborhoods p,
.city-guarantee p {
  max-width: 720px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.7;
}

.city-intro p + p {
  margin-top: 18px;
}

.city-problem ul,
.city-neighborhoods ul,
.city-services ul,
.city-how ol {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.city-problem li,
.city-neighborhoods li,
.city-services li,
.city-how li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--soft);
  font-size: 16px;
  line-height: 1.6;
}

.city-problem strong,
.city-neighborhoods strong,
.city-services strong {
  color: var(--brand);
}

.city-neighborhoods ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-neighborhoods li {
  display: inline-flex;
  padding: 10px 16px;
  font-weight: 700;
}

.city-how ol {
  counter-reset: city-step;
}

.city-how li {
  position: relative;
  padding-left: 54px;
  counter-increment: city-step;
}

.city-how li::before {
  content: counter(city-step);
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--on-brand);
  font-size: 13px;
  font-weight: 900;
}

.city-how li strong {
  color: var(--ink);
}

.city-guarantee {
  text-align: center;
}

.city-guarantee p {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 28px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), var(--panel);
  font-size: 17px;
}

.faq-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.faq-item:first-of-type {
  padding-top: 24px;
  border-top: none;
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.faq-item p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.city-cta {
  padding: 84px var(--pad);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #1a2932;
}

.city-cta h2 {
  max-width: 640px;
  margin: 0 auto 16px;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.city-cta p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.7;
}

/* ============ responsive ============ */
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .primary-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(22, 35, 44, 0.97);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav.is-open.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 46px;
  }

  .header-actions {
    justify-self: end;
  }

  .call-link {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-art svg {
    width: 70vw;
    opacity: 0.32;
  }

  .hero-metrics,
  .approach-grid,
  .values-grid,
  .service-grid,
  .blog-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-band,
  .contact-split,
  .narrative-grid,
  .area-group {
    grid-template-columns: 1fr;
  }

  .area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subhero h1 {
    font-size: 52px;
  }

  .city-hero h1 {
    font-size: 44px;
  }

  .city-intro h2,
  .city-problem h2,
  .city-how h2,
  .city-services h2,
  .city-guarantee h2,
  .city-faq h2,
  .city-cta h2 {
    font-size: 32px;
  }
}

@media (max-width: 680px) {
  :root {
    --pad: 18px;
  }

  .site-header {
    min-height: 64px;
    gap: 10px;
  }

  .site-shell {
    padding-bottom: 92px;
  }

  .mobile-call-float {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 80;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    border: 1px solid rgba(var(--brand-rgb), 0.8);
    border-radius: 10px;
    color: var(--on-brand);
    background: linear-gradient(90deg, var(--brand), var(--brand-light), var(--brand));
    background-size: 260% 100%;
    box-shadow: 0 18px 52px rgba(var(--brand-rgb), 0.26);
    animation: mobileCallColor 4s ease-in-out infinite;
  }

  @keyframes mobileCallColor {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .mobile-call-float span {
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-call-float strong {
    font-size: 19px;
    line-height: 1;
    font-weight: 950;
    white-space: nowrap;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 104px;
    padding-bottom: 40px;
  }

  .city-hero {
    padding-top: 104px;
  }

  .city-intro,
  .city-problem,
  .city-how,
  .city-services,
  .city-guarantee,
  .city-faq,
  .city-cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(22, 35, 44, 0.94), rgba(22, 35, 44, 0.68)),
      linear-gradient(180deg, rgba(22, 35, 44, 0.1), var(--bg) 96%);
  }

  .discount-modal {
    padding: 14px;
  }

  .discount-dialog {
    padding: 28px 18px 20px;
  }

  .discount-dialog h2 {
    font-size: 30px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .hero-lede,
  .subhero p {
    font-size: 16.5px;
  }

  .hero-metrics,
  .approach-grid,
  .values-grid,
  .service-grid,
  .blog-grid,
  .area-list,
  .location-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 26px;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-heading.split {
    display: grid;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .blog-article h1 {
    font-size: 32px;
  }

  .blog-article h2 {
    font-size: 24px;
  }

  .blog-featured-image img {
    height: 220px;
  }

  .about-band {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .subhero {
    min-height: 400px;
    padding-top: 104px;
    padding-bottom: 40px;
  }

  .subhero h1 {
    font-size: 38px;
  }

  .contact-methods.large a {
    font-size: 24px;
  }

  .call-now-card {
    min-height: 92px;
    padding: 18px;
  }

  .call-now-card strong {
    font-size: 27px;
  }

  .quote-form {
    padding: 18px;
  }

  .site-footer {
    margin-top: 46px;
    padding: 24px 18px;
  }

  .footer-bottom {
    display: grid;
    margin-top: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.nearby-areas { background: var(--panel-strong); padding: 3rem 1.5rem; }
.nearby-areas h2 { color: var(--brand); font-size: 1.4rem; margin-bottom: 1.2rem; }
.nearby-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.nearby-list a { color: var(--ink); border: 1px solid var(--line-strong); padding: 0.4rem 0.9rem; border-radius: 4px; text-decoration: none; font-size: 0.95rem; transition: background 180ms ease, color 180ms ease; }
.nearby-list a:hover { background: var(--brand); color: var(--on-brand); }

.blog-areas { margin: 3rem 0 1rem; padding: 1.5rem; background: var(--panel-strong); border-left: 4px solid var(--brand); }
.blog-areas h3 { color: var(--brand); margin-bottom: 1rem; font-size: 1.1rem; }
.blog-area-links { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.blog-area-links a { color: var(--ink); border: 1px solid var(--line); padding: 0.3rem 0.7rem; border-radius: 3px; font-size: 0.9rem; text-decoration: none; transition: border-color 180ms ease, color 180ms ease; }
.blog-area-links a:hover { border-color: var(--brand); color: var(--brand); }
