/* ============================================
   WayTooClean.com
   Window Cleaning — 6 County Central PA
   Design: Bright sky blue, clean, light
   Fonts: Oswald + DM Sans
   Accent: #0EA5E9 (sky blue)
   BG: #ffffff / #F0F9FF
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #061520;
  --dark:    #0C2233;
  --card:    #F0F9FF;
  --card2:   #E0F2FE;
  --border:  #BAE6FD;
  --border2: #7DD3FC;
  --mid:     #5B8FA8;
  --muted:   #64748B;
  --light:   #94A3B8;
  --white:   #FFFFFF;
  --off:     #F0F9FF;
  --accent:  #0EA5E9;
  --accent2: #0284C7;
  --accentL: #38BDF8;
  --accentBg:rgba(14,165,233,0.10);
  --font-display: 'Oswald', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius: 4px;
  --max: 1160px;
  --shadow: 0 2px 12px rgba(14,165,233,0.15);
  --shadow2: 0 8px 32px rgba(14,165,233,0.20);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── HEADER ── */
.hdr {
  position: sticky; top: 0; z-index: 9999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(14,165,233,0.08);
}
.hdr-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 24px; display: flex; align-items: center; gap: 24px; height: 64px;
}
.brand { display: flex; flex-direction: column; gap: 1px; flex-shrink: 0; line-height: 1.1; }
.brand strong {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--dark);
}
.brand strong span { color: var(--accent); }
.brand em {
  font-style: normal; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid);
}
.hdr-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.hdr-nav a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius); color: var(--dark);
  transition: color 0.2s, background 0.2s;
}
.hdr-nav a:hover { color: var(--accent); background: var(--accentBg); }
.hdr-nav .quote-link {
  background: var(--accent); color: #fff !important; font-weight: 700;
  box-shadow: 0 2px 8px rgba(14,165,233,0.35);
}
.hdr-nav .quote-link:hover { background: var(--accent2); }
.hdr-nav .svc-link { color: var(--accent); }
.hamb {
  display: none; margin-left: auto; background: none;
  border: 1px solid var(--border); color: var(--dark); cursor: pointer;
  width: 40px; height: 40px; border-radius: var(--radius); font-size: 18px;
}
.mobile-menu {
  display: none; position: fixed; top: 0; right: 0;
  width: 280px; height: 100vh; background: var(--white);
  border-left: 1px solid var(--border); z-index: 99999;
  flex-direction: column; overflow-y: auto;
  box-shadow: -4px 0 24px rgba(14,165,233,0.15);
}
.mobile-menu.open { display: flex; }
.mnav-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.mnav-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--dark); }
.mnav-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--dark); }
.mobile-menu a {
  padding: 14px 20px; font-size: 16px; font-weight: 600;
  border-bottom: 1px solid var(--border); color: var(--dark);
  transition: background 0.15s;
}
.mobile-menu a:hover { background: var(--accentBg); color: var(--accent); }
.mnav-cta {
  margin: 16px; background: var(--accent) !important;
  color: #fff !important; text-align: center;
  border-radius: var(--radius); border: none !important;
  font-weight: 700 !important;
}

/* ── SEASONAL BAR ── */
.seasonal-bar {
  background: var(--accent); color: #fff;
  text-align: center; padding: 8px 16px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  min-height: 36px;
}
.seasonal-bar:empty, .seasonal-bar span:empty { display: none; }

/* ── HERO ── */
.hero {
  position: relative; height: 82vh; min-height: 520px; max-height: 780px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-noise {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(6,21,32,0.72) 0%, rgba(6,21,32,0.48) 55%, rgba(14,165,233,0.12) 100%);
}
.hero-sparkle {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  width: 100%; display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accentL);
  margin-bottom: 16px; display: block;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.97; letter-spacing: 0.01em;
  text-transform: uppercase; color: #fff;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--accentL); }
.hero h1 .stroke {
  -webkit-text-stroke: 2px #fff; color: transparent;
}
.hero p {
  font-size: 17px; color: rgba(255,255,255,0.82);
  max-width: 480px; line-height: 1.65; margin-bottom: 28px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
}
.hero-trust span {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85);
}
.hero-trust svg { flex-shrink: 0; }

/* ── HERO QUICK FORM ── */
.hero-form-card {
  background: rgba(255,255,255,0.97);
  border-radius: 8px; padding: 28px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 4px 16px rgba(14,165,233,0.2);
}
.hero-form-card h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; text-transform: uppercase;
  color: var(--dark); margin-bottom: 4px; letter-spacing: 0.02em;
}
.hero-form-card p {
  font-size: 13px; color: var(--muted); margin-bottom: 18px; line-height: 1.4;
}
.quick-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.quick-grid .field { display: flex; flex-direction: column; gap: 4px; }
.quick-grid .field label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--mid);
}
.quick-grid .field input,
.quick-grid .field select {
  padding: 11px 13px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 14px; color: var(--dark); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.quick-grid .field input:focus,
.quick-grid .field select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accentBg);
}
.quick-grid select { appearance: none; }
.quick-grid .btn-full {
  grid-column: 1 / -1;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 14px 28px; border-radius: var(--radius);
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(14,165,233,0.35);
  line-height: 1;
}
.btn:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: var(--shadow2); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent); box-shadow: none;
}
.btn-outline:hover { background: var(--accentBg); }
.btn-white {
  background: #fff; color: var(--accent); box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--off); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--accent); padding: 0; overflow: hidden;
}
.trust-inner {
  display: flex; gap: 0; animation: marquee 24s linear infinite;
  width: max-content;
}
.trust-inner:hover { animation-play-state: paused; }
.trust-item {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 36px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: #fff; white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.2);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── QUICK FORM (BELOW HERO) ── */
.hero-form-wrap {
  background: var(--off); border-bottom: 1px solid var(--border);
  padding: 36px 24px;
}
.quick-form {
  max-width: 900px; margin: 0 auto;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 8px; padding: 28px 32px;
  box-shadow: var(--shadow);
}
.quick-form-head { margin-bottom: 20px; }
.quick-form-head h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  text-transform: uppercase; color: var(--dark); margin-bottom: 4px;
}
.quick-form-head p { font-size: 14px; color: var(--muted); }
.quick-form .quick-grid { grid-template-columns: 1fr 1fr 1fr 1fr auto; }
.quick-form .quick-grid .field label { display: none; }
@media(max-width:860px) { .quick-form .quick-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:520px) { .quick-form .quick-grid { grid-template-columns: 1fr; } }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section.bg-dark { background: var(--dark); color: var(--white); }
.section.bg-off { background: var(--off); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head p { font-size: 16px; color: var(--muted); max-width: 580px; margin: 12px auto 0; }
.bg-dark .section-head p { color: rgba(255,255,255,0.6); }
.tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); background: var(--accentBg);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 50px; padding: 5px 14px; margin-bottom: 12px;
}
.bg-dark .tag { color: var(--accentL); background: rgba(14,165,233,0.12); border-color: rgba(56,189,248,0.25); }
.h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.8vw, 44px); line-height: 1.05;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--dark);
}
.bg-dark .h2 { color: var(--white); }
.h2 span { color: var(--accent); }
.bg-dark .h2 span { color: var(--accentL); }

/* ── SERVICE GRID ── */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media(max-width:700px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 6px; overflow: visible;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.svc-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.bg-dark .svc-card { background: rgba(255,255,255,0.04); border-color: rgba(14,165,233,0.15); }
.bg-dark .svc-card:hover { border-color: var(--accent); }
.how-card-img { aspect-ratio: 16/9; overflow: hidden; border-radius: 5px 5px 0 0; }
.how-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.svc-card:hover .how-card-img img { transform: scale(1.04); }
.svc-card > *:not(.how-card-img):not(.btn) { padding: 0 24px 24px; }
.svc-num {
  font-family: var(--font-display); font-size: 42px; font-weight: 700;
  color: var(--accent); opacity: 0.25; line-height: 1; margin-top: 20px; margin-bottom: 4px;
}
.svc-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--dark); margin-bottom: 10px;
}
.bg-dark .svc-card h3 { color: var(--white); }
.svc-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.bg-dark .svc-card p { color: rgba(255,255,255,0.65); }
.svc-card ul { margin-top: 12px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.svc-card ul li { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.bg-dark .svc-card ul li { color: rgba(255,255,255,0.6); }
.svc-card ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.svc-card .btn { display: flex; justify-content: center; align-items: center; margin: 16px 24px 24px; width: calc(100% - 48px); box-sizing: border-box; }

/* ── SPLIT SECTION ── */
.split-section { padding: 80px 0; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media(max-width:860px) { .split-grid { grid-template-columns: 1fr; gap: 32px; } }
.split-img { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow2); position: relative; }
.split-img img { width: 100%; height: auto; display: block; }
.split-copy { }
.split-copy h2 { margin-bottom: 16px; }
.bg-dark .split-copy h2 { color: var(--white); }
.split-copy p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.bg-dark .split-copy p { color: rgba(255,255,255,0.7); }
.split-copy ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.split-copy ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--dark); line-height: 1.5; }
.bg-dark .split-copy ul li { color: rgba(255,255,255,0.8); }
.split-copy ul li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media(max-width:700px) { .how-grid { grid-template-columns: 1fr; } }
.how-card {
  background: var(--off); border: 1px solid var(--border);
  border-radius: 6px; padding: 28px 24px;
  transition: border-color 0.2s;
}
.how-card:hover { border-color: var(--accent); }
.bg-dark .how-card { background: rgba(255,255,255,0.04); border-color: rgba(14,165,233,0.15); }
.how-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 700;
  color: var(--accent); opacity: 0.3; line-height: 1; margin-bottom: 12px;
}
.how-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  text-transform: uppercase; color: var(--dark); margin-bottom: 10px;
}
.bg-dark .how-card h3 { color: var(--white); }
.how-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.bg-dark .how-card p { color: rgba(255,255,255,0.6); }

/* ── WARNING / INFO BOX ── */
.warning-box {
  background: var(--accentBg); border: 1px solid rgba(14,165,233,0.3);
  border-left: 4px solid var(--accent);
  border-radius: 4px; padding: 20px 24px; margin-top: 32px;
}
.warning-box h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  text-transform: uppercase; color: var(--accent2); margin-bottom: 8px;
}
.warning-box p { font-size: 14px; color: var(--dark); line-height: 1.65; }
.bg-dark .warning-box { background: rgba(14,165,233,0.1); border-color: rgba(14,165,233,0.3); }
.bg-dark .warning-box p { color: rgba(255,255,255,0.75); }
.bg-dark .warning-box h3 { color: var(--accentL); }

/* ── SIGNS GRID ── */
.signs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media(max-width:860px) { .signs-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:520px) { .signs-grid { grid-template-columns: 1fr; } }
.sign-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(14,165,233,0.15);
  border-radius: 6px; padding: 22px 20px;
  transition: border-color 0.2s, background 0.2s;
}
.sign-card:hover { border-color: var(--accent); background: rgba(14,165,233,0.06); }
.sign-card h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  text-transform: uppercase; color: var(--accentL); margin-bottom: 8px;
}
.sign-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ── AREAS GRID ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px; margin-top: 8px;
}
.areas-grid-hidden { display: none; }
.areas-grid-hidden.open { display: grid; }
@media(max-width:860px) { .areas-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:520px) { .areas-grid { grid-template-columns: repeat(2,1fr); } }
.county-label {
  grid-column: 1 / -1; font-family: var(--font-display);
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent2);
  padding: 16px 0 4px; border-top: 1px solid var(--border);
  margin-top: 8px;
}
.bg-dark .county-label { color: var(--accentL); border-top-color: rgba(14,165,233,0.2); }
.area-link {
  background: var(--accentBg); border: 1px solid rgba(14,165,233,0.25);
  border-radius: 4px; padding: 9px 12px; font-size: 13px; font-weight: 600;
  color: var(--accent2); transition: all 0.15s; text-align: center;
}
.area-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.bg-dark .area-link { background: rgba(255,255,255,0.06); border-color: rgba(14,165,233,0.2); color: rgba(255,255,255,0.8); }
.bg-dark .area-link:hover { background: var(--accentBg); border-color: var(--accent); color: var(--accentL); }
.areas-toggle-btn {
  margin-top: 16px; background: none; border: 1px solid var(--border);
  color: var(--accent); padding: 10px 24px; border-radius: var(--radius);
  cursor: pointer; font-size: 13px; font-weight: 600; transition: all 0.2s;
}
.areas-toggle-btn:hover { background: var(--accentBg); border-color: var(--accent); }

/* ── INTERNAL LINKS HUB ── */
.hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media(max-width:700px) { .hub-grid { grid-template-columns: 1fr; } }
.hub-card {
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: 6px; padding: 24px; transition: all 0.2s;
}
.hub-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.hub-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  text-transform: uppercase; color: var(--dark); margin-bottom: 12px;
}
.hub-city-links { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; max-height: 120px; overflow: hidden; position: relative; }
.hub-city-links::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: linear-gradient(transparent, var(--white)); pointer-events: none; }
.hub-card:hover .hub-city-links { max-height: none; }
.hub-card:hover .hub-city-links::after { display: none; }
.hub-city-link {
  font-size: 12px; font-weight: 600; color: var(--accent);
  background: var(--accentBg); border: 1px solid rgba(14,165,233,0.2);
  border-radius: 50px; padding: 4px 12px; transition: all 0.15s;
}
.hub-city-link:hover { background: var(--accent); color: #fff; }
.hub-all-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--accent);
  margin-top: 14px; text-decoration: underline; text-underline-offset: 2px;
}

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.faq-item { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--accent); }
.bg-dark .faq-item { border-color: rgba(14,165,233,0.15); }
.bg-dark .faq-item.open { border-color: var(--accent); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 20px; font-family: var(--font-body); font-size: 15px;
  font-weight: 600; color: var(--dark); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.bg-dark .faq-q { color: var(--white); }
.faq-q span { font-size: 20px; font-weight: 400; color: var(--accent); flex-shrink: 0; line-height: 1; transition: transform 0.3s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 14px; line-height: 1.75; color: var(--muted); }
.bg-dark .faq-a { color: rgba(255,255,255,0.65); }
.faq-item.open .faq-a { display: block; }

/* ── QUOTE SECTION ── */
.quote-section { background: var(--off); padding: 80px 0 100px; border-top: 1px solid var(--border); overflow-x: hidden; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media(max-width:860px) { .quote-grid { grid-template-columns: 1fr; gap: 28px; } }
.quote-left h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px,4vw,44px); text-transform: uppercase; color: var(--dark); margin-bottom: 12px; line-height: 1.05; }
.quote-left h2 span { color: var(--accent); }
.quote-left p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.quote-left .quote-img { border-radius: 6px; overflow: hidden; margin-top: 20px; box-shadow: var(--shadow); }
.quote-box {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 8px; padding: 28px;
  box-shadow: 0 4px 24px rgba(14,165,233,0.1);
  width: 100%; max-width: 100%; box-sizing: border-box; overflow: hidden;
}
.quote-box-head { margin-bottom: 20px; }
.quote-box-head h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  text-transform: uppercase; color: var(--dark); margin-bottom: 4px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .field { display: flex; flex-direction: column; gap: 5px; }
.form-grid .field.full { grid-column: 1 / -1; }
.form-grid label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid); }
.form-grid input, .form-grid select, .form-grid textarea {
  padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 14px; color: var(--dark); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  width: 100%; box-sizing: border-box; max-width: 100%;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accentBg);
}
.form-grid textarea { resize: vertical; min-height: 80px; }
.form-grid select { appearance: none; }
.form-submit { margin-top: 16px; }
.form-submit .btn { width: 100%; }
.form-note { font-size: 12px; color: var(--light); margin-top: 4px; }
input[type="file"] { font-size: 13px; }
.upload-preview { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.upload-preview img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; }

/* ── NEARBY GRID ── */
.nearby-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 24px; }
@media(max-width:700px) { .nearby-grid { grid-template-columns: repeat(2,1fr); } }
.nearby-card {
  background: var(--off); border: 1px solid var(--border);
  border-radius: 4px; padding: 12px 16px; font-size: 13px; font-weight: 600;
  color: var(--dark); text-align: center; transition: all 0.15s;
}
.nearby-card:hover { background: var(--accentBg); border-color: var(--accent); color: var(--accent); }
.nearby-toggle {
  margin-top: 12px; background: none; border: 1px solid var(--border);
  color: var(--accent); padding: 8px 20px; border-radius: var(--radius);
  cursor: pointer; font-size: 13px; font-weight: 600; transition: all 0.2s;
}
.nearby-toggle:hover { background: var(--accentBg); border-color: var(--accent); }

/* ── MID CTA ── */
.mid-cta { text-align: center; margin-top: 36px; }

/* ── SEO CONTENT BODY ── */
.content-body { max-width: 820px; }
.content-body h2 { font-family: var(--font-display); font-weight: 700; font-size: 26px; text-transform: uppercase; color: var(--dark); margin: 36px 0 12px; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; text-transform: uppercase; color: var(--accent2); margin: 28px 0 10px; }
.content-body p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.content-body ul { margin-bottom: 16px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.content-body ul li { font-size: 15px; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.content-body ul li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.content-sidebar { position: sticky; top: 80px; }
.sidebar-card { background: var(--off); border: 1.5px solid var(--border); border-radius: 6px; padding: 22px; margin-bottom: 16px; }
.sidebar-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 16px; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
.sidebar-links { display: flex; flex-direction: column; gap: 6px; }
.sidebar-links a { font-size: 13px; font-weight: 600; color: var(--accent); padding: 7px 10px; border-radius: 4px; background: var(--accentBg); border: 1px solid rgba(14,165,233,0.15); transition: all 0.15s; }
.sidebar-links a:hover { background: var(--accent); color: #fff; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
@media(max-width:900px) { .content-grid { grid-template-columns: 1fr; } .content-sidebar { position: static; } }

/* ── FOOTER ── */
.foot { background: var(--ink); color: rgba(255,255,255,0.6); padding: 56px 0 24px; }
.foot-top { margin-bottom: 40px; }
.foot-brand strong {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  text-transform: uppercase; color: #fff; letter-spacing: 0.04em;
}
.foot-brand strong span { color: var(--accentL); }
.foot-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-top: 8px; max-width: 400px; }
.foot-links-row { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-top: 12px; }
.foot-links-row a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.foot-links-row a:hover { color: #fff; }
.foot-counties { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; margin-bottom: 32px; }
@media(max-width:900px) { .foot-counties { grid-template-columns: repeat(3,1fr); } }
@media(max-width:520px) { .foot-counties { grid-template-columns: repeat(2,1fr); } }
.foot-col-head {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accentL); margin-bottom: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
}
.foot-arrow { transition: transform 0.3s; display: inline-block; }
.foot-col-links { display: flex; flex-direction: column; gap: 5px; }
.foot-col-links a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.15s; }
.foot-col-links a:hover { color: rgba(255,255,255,0.85); }
@media(max-width:520px) { .foot-col-links { display: none; } .foot-col-links.open { display: flex; } }
.fine {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
  font-size: 12px; color: rgba(255,255,255,0.28); line-height: 1.7;
}
.fine a { color: rgba(255,255,255,0.4); text-decoration: underline; }

/* ── STICKY CTA ── */
/* ── STICKY CTA — desktop pill ── */
.sticky-cta {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  z-index: 9990; background: #fff; border: 1.5px solid var(--border);
  border-radius: 50px; padding: 6px 6px 6px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 40px rgba(14,165,233,0.25), 0 2px 8px rgba(0,0,0,0.1);
  opacity: 0; transition: opacity 0.35s, transform 0.35s;
  white-space: nowrap;
}
.sticky-cta.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.sticky-copy span { font-size: 13px; font-weight: 700; color: var(--dark); }
.sticky-copy small { display: block; font-size: 11px; color: var(--muted); }
.sticky-cta .btn { padding: 10px 20px; font-size: 13px; border-radius: 50px; }
/* ── STICKY CTA — mobile full bar ── */
@media(max-width:640px) {
  .sticky-cta {
    bottom: 0; left: 0; right: 0; width: 100%;
    transform: translateY(100%);
    border-radius: 0; border: none; border-top: 1px solid var(--border);
    padding: 12px 16px; gap: 0;
    justify-content: space-between;
    box-shadow: 0 -4px 24px rgba(14,165,233,0.15);
  }
  .sticky-cta.show { transform: translateY(0); }
  .sticky-copy span { font-size: 14px; }
  .sticky-copy small { font-size: 11px; }
  .sticky-cta .btn { border-radius: var(--radius); padding: 12px 20px; font-size: 14px; }
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { display: none; }
  .hero { height: auto; min-height: 420px; padding: 80px 0 60px; }
}
@media(max-width:768px) {
  .hdr-nav { display: none; }
  .hamb { display: flex; align-items: center; justify-content: center; }
  .hero-inner { padding: 0 20px; }
  .hero h1 { font-size: clamp(36px, 8vw, 56px); }
  .section { padding: 56px 0; }
  .split-section { padding: 56px 0; }
  .signs-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  /* sticky handled above */
  .signs-grid { grid-template-columns: 1fr; }
}

/* ── KEN BURNS HERO ── */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img {
  width: 110%; height: 110%; object-fit: cover; object-position: center;
  animation: kenburns 18s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  25%  { transform: scale(1.06) translate(-1.5%, 0.5%); }
  50%  { transform: scale(1.04) translate(0.5%, -1%); }
  75%  { transform: scale(1.08) translate(-1%, 0.8%); }
  100% { transform: scale(1.05) translate(1%, -0.5%); }
}
/* Each hero gets a slightly offset animation so they don't all move identically */
.hero-kb-2 .hero-bg img { animation-name: kenburns2; animation-duration: 20s; }
@keyframes kenburns2 {
  0%   { transform: scale(1.05) translate(1%, -0.5%); }
  33%  { transform: scale(1.0) translate(-0.5%, 0.8%); }
  66%  { transform: scale(1.07) translate(0.5%, -1.2%); }
  100% { transform: scale(1.03) translate(-1%, 0.3%); }
}
.hero-kb-3 .hero-bg img { animation-name: kenburns3; animation-duration: 22s; }
@keyframes kenburns3 {
  0%   { transform: scale(1.06) translate(-0.5%, 1%); }
  50%  { transform: scale(1.02) translate(1%, -0.8%); }
  100% { transform: scale(1.08) translate(-1%, 0%); }
}

/* ── PHOTO UPLOAD ── */
.photo-upload-wrap { margin-top: 4px; }
.photo-upload-label {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 14px 16px; transition: border-color 0.2s, background 0.2s;
  background: var(--off);
}
.photo-upload-label:hover { border-color: var(--accent); background: var(--accentBg); }
.photo-upload-label svg { color: var(--accent); flex-shrink: 0; }
.photo-upload-label span { font-size: 13px; color: var(--muted); }
.photo-upload-label strong { font-size: 13px; color: var(--accent); font-weight: 700; }
input[type="file"].photo-input { display: none; }
.upload-preview { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.upload-preview img { width: 72px; height: 72px; object-fit: cover; border-radius: 4px; border: 1px solid var(--border); }

/* ── HERO SLIDESHOW ── */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 110%; height: 110%; object-fit: cover; object-position: center;
  animation: kenburns 18s ease-in-out infinite alternate;
}
.hero-slide:nth-child(2) img { animation-name: kenburns2; animation-duration: 20s; }
.hero-slide:nth-child(3) img { animation-name: kenburns3; animation-duration: 22s; }
/* Slide dots */
.slide-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 4;
}
.slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s; padding: 0;
}
.slide-dot.active { background: #fff; transform: scale(1.25); }

/* ── CITY HUB — clean list style ── */
.hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media(max-width:700px) { .hub-grid { grid-template-columns: 1fr; } }
.hub-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 6px; overflow: hidden;
}
.hub-card-head {
  background: var(--accent); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.hub-card-head h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  text-transform: uppercase; color: #fff; letter-spacing: 0.04em;
}
.hub-card-head a { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85); text-decoration: underline; }
.hub-counties { padding: 0; }
.hub-county-row {
  border-bottom: 1px solid var(--border); padding: 0;
}
.hub-county-row:last-child { border-bottom: none; }
.hub-county-name {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid);
  padding: 10px 20px 4px; display: block;
}
.hub-county-cities {
  display: flex; flex-wrap: wrap; gap: 0; padding: 0 12px 10px;
}
.hub-county-cities a {
  font-size: 13px; font-weight: 500; color: var(--accent2);
  padding: 3px 8px; border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}
.hub-county-cities a:hover { background: var(--accentBg); color: var(--accent); }
.hub-view-all {
  display: block; text-align: center; padding: 12px;
  background: var(--off); border-top: 1px solid var(--border);
  font-size: 13px; font-weight: 700; color: var(--accent);
  transition: background 0.15s;
}
.hub-view-all:hover { background: var(--accentBg); }

/* ── PAGE HERO CONTENT CENTERING ── */
.page-hero .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.page-hero .hero-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.page-hero .hero-copy p { max-width: 580px; margin-left: auto; margin-right: auto; }
.page-hero .hero-trust { justify-content: center; }
.page-hero h1 { font-size: clamp(44px, 6.5vw, 88px); }
/* Service hub and city hero = page-hero */

/* ── MOBILE FORM FIXES ── */
@media(max-width:600px) {
  .quote-section { padding: 56px 0 100px; }
  .quote-box { padding: 20px 16px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .quote-grid { padding: 0; }
  .wrap { padding: 0 16px; }
}

/* ── FOOTER MOBILE PADDING FOR STICKY BAR ── */
@media(max-width:640px) {
  .foot { padding-bottom: 80px; }
}

/* ── HUB PAGE HERO — centered single column ── */
@media(min-width:901px) {
  .page-hero-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
    justify-items: center;
  }
  .page-hero-inner .hero-copy {
    max-width: 960px;
    width: 100%;
    text-align: center;
  }
  .page-hero-inner .hero-copy h1 {
    font-size: clamp(44px, 6.5vw, 88px);
    text-align: center;
    white-space: nowrap;
  }
  .page-hero-inner .hero-copy p { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
  .page-hero-inner .hero-trust { justify-content: center; }
}

/* ── CITY PAGE HERO — desktop centered, mobile left (existing) ── */
@media(min-width:901px) {
  .hero-city .hero-inner {
    grid-template-columns: 1fr !important;
    justify-items: center;
    text-align: center;
    max-width: var(--max);
  }
  .hero-city .hero-copy {
    max-width: 960px;
    width: 100%;
    text-align: center;
  }
  .hero-city .hero-copy h1 {
    font-size: clamp(48px, 6.5vw, 88px) !important;
    text-align: center;
    white-space: nowrap;
  }
  .hero-city .hero-copy p { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-city .hero-trust { justify-content: center; }
}


/* ── DESKTOP HERO FORM CONSISTENCY — v5 ── */
@media (min-width:901px) {
  .hero.hero-with-form {
    min-height: 560px;
  }
  .hero.hero-with-form .hero-inner,
  .hero.hero-with-form .page-hero-inner,
  .hero.hero-with-form.hero-city .hero-inner {
    grid-template-columns: minmax(0, 1fr) 400px !important;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    justify-items: stretch !important;
    text-align: left !important;
  }
  .hero.hero-with-form .hero-copy,
  .hero.hero-with-form .page-hero-inner .hero-copy,
  .hero.hero-with-form.hero-city .hero-copy {
    max-width: 620px !important;
    width: 100%;
    margin: 0 !important;
    text-align: left !important;
  }
  .hero.hero-with-form h1,
  .hero.hero-with-form .hero-copy h1,
  .hero.hero-with-form .page-hero-inner .hero-copy h1,
  .hero.hero-with-form.hero-city .hero-copy h1 {
    font-size: clamp(42px, 5.2vw, 76px) !important;
    line-height: 0.96;
    text-align: left !important;
    white-space: normal !important;
  }
  .hero.hero-with-form .hero-copy p,
  .hero.hero-with-form .page-hero-inner .hero-copy p,
  .hero.hero-with-form.hero-city .hero-copy p {
    max-width: 560px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
  .hero.hero-with-form .hero-trust,
  .hero.hero-with-form .page-hero-inner .hero-trust,
  .hero.hero-with-form.hero-city .hero-trust {
    justify-content: flex-start !important;
  }
  .hero-form-card.desktop-hero-form {
    display: block;
  }
  .hero-form-card.desktop-hero-form .quick-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-form-card.desktop-hero-form .btn-full {
    width: 100%;
  }
  .hero-form-wrap {
    display: none;
  }
}

@media (max-width:900px) {
  .hero.hero-with-form .hero-form-card.desktop-hero-form {
    display: none;
  }
  .hero-form-wrap {
    display: block;
  }
}

@media (max-width:768px) {
  .hero-home h1 {
    font-size: clamp(42px, 10.5vw, 64px) !important;
  }
}

/* ── v6 UX polish: keep CTAs on-page + consistent mobile section headings ── */
#request,
.quote-section {
  scroll-margin-top: 88px;
}

@media (max-width:768px) {
  .section-head,
  .section-head[style],
  .quote-left,
  .quote-left[style] {
    text-align: left !important;
  }

  .section-head p,
  .section-head[style] p,
  .quote-left p,
  .quote-left[style] p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .section-head .h2,
  .section-head h2,
  .section-head[style] .h2,
  .section-head[style] h2,
  .quote-left h2,
  .quote-left[style] h2 {
    text-align: left !important;
  }

  .mid-cta {
    text-align: left !important;
  }
}


/* ── v8 heading/font consistency + clean county modal area picker ── */
.split-copy h2,
.section-head h2,
.quote-left h2,
.content-body h2,
.content-body h3,
.warning-box h3,
.sign-card h3,
.sidebar-card h4,
.town-modal-panel h3,
.town-modal-service h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.split-copy h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  color: var(--dark);
}
.split-copy h2 span { color: var(--accent); }
.bg-dark .split-copy h2 { color: var(--white); }
.bg-dark .split-copy h2 span { color: var(--accentL); }

.section-head-slim { margin-bottom: 34px; }
.county-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.county-picker-card {
  appearance: none;
  border: 1.5px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, var(--off) 100%);
  border-radius: 8px;
  padding: 22px 20px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(14,165,233,0.08);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
.county-picker-card:hover,
.county-picker-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow2);
  outline: none;
}
.county-picker-card span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  line-height: 1.05;
}
.county-picker-card strong {
  display: inline-flex;
  width: fit-content;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 5px 10px;
}
.county-picker-card em {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
.area-shortcuts {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.area-shortcuts a {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent2);
  background: var(--accentBg);
  border: 1px solid rgba(14,165,233,0.22);
  border-radius: 999px;
  padding: 9px 15px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.area-shortcuts a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.town-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.town-modal.open { display: flex; }
.town-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,21,32,0.66);
  backdrop-filter: blur(6px);
}
.town-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.32);
}
.town-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--off);
  color: var(--dark);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.town-modal-panel h3 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
  color: var(--dark);
  margin-bottom: 8px;
}
.town-modal-panel > p {
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 22px;
}
.town-modal-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.town-modal-service {
  border: 1px solid var(--border);
  background: var(--off);
  border-radius: 8px;
  padding: 18px;
}
.town-modal-service h4 {
  font-size: 18px;
  color: var(--accent2);
  margin-bottom: 12px;
}
.town-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.town-link-grid a {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent2);
  background: #fff;
  border: 1px solid rgba(14,165,233,0.22);
  border-radius: 999px;
  padding: 6px 11px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.town-link-grid a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

@media(max-width:768px) {
  .county-picker-grid { grid-template-columns: 1fr; gap: 10px; }
  .county-picker-card {
    min-height: 0;
    padding: 18px 16px;
  }
  .county-picker-card span { font-size: 22px; }
  .area-shortcuts { justify-content: flex-start; }
  .town-modal { padding: 12px; align-items: flex-end; }
  .town-modal-panel {
    max-height: calc(100vh - 24px);
    padding: 22px 16px 24px;
    border-radius: 10px 10px 0 0;
  }
  .town-modal-services { grid-template-columns: 1fr; gap: 12px; }
  .town-modal-panel h3 { font-size: 30px; }
  .town-modal-close { top: 10px; right: 10px; }
}

/* Spam protection honeypot fields */
.hp-field{position:absolute!important;left:-10000px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important;opacity:0!important;pointer-events:none!important;}
.hp-field label,.hp-field input{position:absolute!important;left:-10000px!important;visibility:hidden!important;}
