/* ============================================
   BedfordCountyHandyman.com
   Updated: lighter palette, full-width mobile forms, image placeholders
   ============================================ */

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

:root {
  --ink:    #111318;
  --dark:   #1c1f26;
  --card:   #242830;
  --card2:  #2e333d;
  --border: #363b47;
  --border2:#444b59;
  --mid:    #5a6070;
  --muted:  #8a9099;
  --light:  #c4c9d4;
  --white:  #f0f2f5;
  --accent: #F5A623;
  --accent2:#e8942a;
  --red:    #d94040;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius: 4px;
  --max: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ---- HEADER ---- */
.hdr {
  position: sticky; top: 0; z-index: 9999;
  background: rgba(17,19,24,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.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: 800; font-size: 20px;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--white);
}
.brand strong span { color: var(--accent); }
.brand em {
  font-style: normal; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius);
  color: var(--light); transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--white); background: var(--card2); }
.nav .quote-link { background: var(--accent); color: var(--ink); font-weight: 700; }
.nav .quote-link:hover { background: var(--accent2); }
.hamb {
  display: none; margin-left: auto;
  background: none; border: 1px solid var(--border);
  color: var(--white); cursor: pointer;
  width: 40px; height: 40px; border-radius: var(--radius); font-size: 18px;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none; position: fixed; top: 0; right: 0;
  width: 280px; height: 100vh;
  background: var(--dark); border-left: 1px solid var(--border);
  z-index: 99999; flex-direction: column; overflow-y: auto;
}
.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-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.mnav-close {
  background: none; border: 1px solid var(--border); color: var(--white);
  cursor: pointer; width: 32px; height: 32px; border-radius: var(--radius); font-size: 18px; line-height: 1;
}
.mobile-menu a {
  display: block; padding: 14px 20px; border-bottom: 1px solid var(--border);
  font-size: 15px; font-weight: 500; color: var(--light); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mnav-cta {
  margin: 16px; padding: 14px 20px !important;
  background: var(--accent) !important; color: var(--ink) !important;
  font-weight: 700 !important; text-align: center;
  border-radius: var(--radius); border: none !important;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 72vh; min-height: 480px; max-height: 700px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.0); } to { transform: scale(1.08); } }
.hero-noise {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(17,19,24,0.85) 0%, rgba(17,19,24,0.5) 50%, rgba(17,19,24,0.78) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 0 24px; width: 100%; }
.hero-eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent); padding: 4px 12px; border-radius: 2px;
  margin-bottom: 18px; opacity: 0; animation: fadeUp 0.6s 0.1s forwards;
}
.hero-copy h1 {
  font-family: var(--font-display); font-size: clamp(56px, 8vw, 96px);
  font-weight: 900; line-height: 0.92; text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 20px; opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.hero-copy h1 .accent { color: var(--accent); }
.hero-copy p {
  font-size: 17px; font-weight: 400; color: var(--light); max-width: 520px; line-height: 1.6;
  opacity: 0; animation: fadeUp 0.7s 0.35s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ---- HERO IMAGE PLACEHOLDER (fallback when no image) ---- */
.hero-bg-placeholder {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #1c2030 0%, #242b3a 50%, #1a2035 100%);
  display: flex; align-items: center; justify-content: center;
}
.img-placeholder-label {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--border2);
  border: 1px dashed var(--border2); padding: 8px 20px; border-radius: 2px;
  pointer-events: none;
}

/* ---- HERO QUICK FORM ---- */
.hero-form-wrap {
  background: var(--dark);
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}
.quick-form { max-width: var(--max); margin: 0 auto; }
.quick-form-head { margin-bottom: 20px; }
.quick-form-head h2 {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--white);
}
.quick-form-head p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px; align-items: end;
}
.quick-grid .field { display: flex; flex-direction: column; gap: 6px; }
.quick-grid label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.quick-grid input,
.quick-grid select {
  background: var(--card2); border: 1px solid var(--border2);
  border-radius: var(--radius); color: var(--white);
  padding: 11px 14px; font-family: var(--font-body); font-size: 14px;
  width: 100%; transition: border-color 0.2s; height: 44px;
}
.quick-grid input:focus,
.quick-grid select:focus { outline: none; border-color: var(--accent); }
.quick-grid select option { background: var(--card); }

/* ---- BUTTON ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--ink);
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 28px; border: none; border-radius: var(--radius);
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s, transform 0.15s; height: 44px;
}
.btn:hover { background: var(--accent2); transform: translateY(-1px); }
.btn.slim { padding: 10px 22px; font-size: 14px; height: 40px; }

/* ---- SECTIONS ---- */
.section { padding: 80px 24px; }
.wrap { max-width: var(--max); margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; }
.tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25); padding: 4px 12px; border-radius: 2px; margin-bottom: 14px;
}
.h2 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px);
  font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 0.95; color: var(--white); margin-bottom: 16px;
}
.h2 span { color: var(--accent); }
.section-head p { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ---- IMAGE PLACEHOLDER BLOCKS ---- */
.img-block {
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.img-block img { width: 100%; object-fit: cover; display: block; }
.img-block-placeholder {
  background: var(--card2);
  border: 2px dashed var(--border2);
  border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--mid);
  padding: 40px 20px; text-align: center;
}
.img-block-placeholder .ph-icon { line-height: 0; }
.img-block-placeholder .ph-icon svg { display: block; }
.img-block-placeholder .ph-label {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.img-block-placeholder .ph-sub { font-size: 12px; color: var(--mid); }

/* ---- TWO-COL SPLIT (homepage service showcase) ---- */
.split-section { padding: 80px 24px; }
.split-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split-grid.reverse .split-img { order: 2; }
.split-grid.reverse .split-copy { order: 1; }
.split-img { position: relative; }
.split-img .img-block-placeholder { aspect-ratio: 4/3; }
.split-img .img-block img { aspect-ratio: 4/3; }
.split-copy h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
  font-weight: 900; text-transform: uppercase; line-height: 0.95;
  color: var(--white); margin-bottom: 16px;
}
.split-copy h2 span { color: var(--accent); }
.split-copy p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.split-copy ul {
  list-style: none; margin-bottom: 28px;
}
.split-copy ul li {
  font-size: 14px; color: var(--light); padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.split-copy ul li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ---- SERVICE CARDS ---- */
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-bottom: 40px;
}
.svc-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; transition: border-color 0.2s, transform 0.2s;
}
.svc-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.svc-icon { padding: 28px 24px 0; line-height: 0; }
.svc-icon svg { display: block; }
.svc-body { padding: 16px 24px 28px; }
.svc-body h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--white); margin-bottom: 10px;
}
.svc-body p { font-size: 14px; color: var(--light); line-height: 1.65; }

/* ---- SCOPE NOTE ---- */
.scope-note {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(217,64,64,0.07); border: 1px solid rgba(217,64,64,0.2);
  border-left: 4px solid var(--red); border-radius: var(--radius);
  padding: 18px 20px; margin-bottom: 40px;
  font-size: 14px; color: var(--light); line-height: 1.6;
}
.scope-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.scope-note strong { color: var(--white); }

/* ---- LOCAL / GRAY SECTION ---- */
.local { background: var(--dark); }
.local-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-bottom: 40px;
}
.local-card {
  background: var(--card2); border: 1px solid var(--border2); border-radius: 6px;
  padding: 28px 24px; transition: border-color 0.2s;
}
.local-card:hover { border-color: var(--accent); }
.local-card h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--accent); margin-bottom: 10px;
}
.local-card p { font-size: 14px; color: var(--light); line-height: 1.65; }

/* ---- HOW IT WORKS ---- */
.how-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px;
}
.how-card {
  background: var(--card2); border: 1px solid var(--border2);
  padding: 36px 28px; position: relative; transition: border-color 0.2s;
}
.how-card:hover { border-color: var(--accent); }
.how-card:first-child { border-radius: 6px 0 0 6px; }
.how-card:last-child  { border-radius: 0 6px 6px 0; }
.num {
  font-family: var(--font-display); font-size: 72px; font-weight: 900;
  line-height: 1; color: var(--border2); margin-bottom: 12px; transition: color 0.2s;
}
.how-card:hover .num { color: var(--accent); }
.how-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--white); margin-bottom: 10px;
}
.how-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; background: none; border: none; color: var(--white); cursor: pointer;
  padding: 20px 0; font-family: var(--font-body); font-size: 15px; font-weight: 500;
  text-align: left; line-height: 1.4;
}
.faq-q span { font-size: 22px; color: var(--accent); flex-shrink: 0; font-weight: 300; transition: transform 0.2s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { display: none; font-size: 14px; color: var(--muted); line-height: 1.7; padding: 0 0 20px; }
.faq-item.open .faq-a { display: block; }

/* ---- QUOTE SECTION ---- */
.quote-section { background: var(--dark); padding: 80px 24px; border-top: 1px solid var(--border); }
.quote-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}
.quote-left h2 {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900; text-transform: uppercase; line-height: 0.95; color: var(--white); margin-bottom: 16px;
}
.quote-left p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.quote-img { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.quote-img img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.quote-img .img-block-placeholder { aspect-ratio: 4/3; }

.quote-box {
  background: var(--card); border: 1px solid var(--border2); border-radius: 8px; padding: 36px;
}
.quote-box-head { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.quote-box-head h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--white);
}

/* ---- FORMS ---- */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px;
}
.form-grid .field { display: flex; flex-direction: column; gap: 6px; }
.form-grid .field.full { grid-column: 1 / -1; }
.form-grid label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.form-grid input,
.form-grid select,
.form-grid textarea {
  background: var(--card2); border: 1px solid var(--border2); border-radius: var(--radius);
  color: var(--white); padding: 11px 14px; font-family: var(--font-body); font-size: 14px;
  width: 100%; transition: border-color 0.2s;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus { outline: none; border-color: var(--accent); }
.form-grid select option { background: var(--card); }
.form-grid textarea { min-height: 100px; resize: vertical; line-height: 1.5; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 6px; }
.upload-preview { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.upload-preview img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; border: 1px solid var(--border); }
.form-submit .btn { width: 100%; height: 52px; font-size: 18px; }

/* ---- MID CTA ---- */
.mid-cta { text-align: center; padding-top: 16px; }

/* ---- NEARBY / AREAS ---- */
.areas-subtle { padding: 60px 24px; border-top: 1px solid var(--border); }
.nearby-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.nearby-card {
  background: var(--card2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px 18px; font-size: 14px; font-weight: 500; color: var(--light);
  transition: border-color 0.2s, color 0.2s;
}
.nearby-card:hover { border-color: var(--accent); color: var(--accent); }

/* ---- FOOTER ---- */
.foot { background: var(--dark); border-top: 1px solid var(--border); padding: 56px 24px 32px; }
.foot-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.foot-grid strong { font-family: var(--font-display); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 10px; }
.foot-grid p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.foot-grid h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 14px; }
.foot-grid a { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; transition: color 0.2s; }
.foot-grid a:hover { color: var(--accent); }
.fine { max-width: var(--max); margin: 0 auto; font-size: 12px; color: var(--mid); border-top: 1px solid var(--border); padding-top: 24px; line-height: 1.65; }

/* ---- STICKY CTA — mobile only, never on desktop ---- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8888;
  background: rgba(17,19,24,0.97); border-top: 2px solid var(--accent);
  padding: 10px 16px;
  display: none; /* hidden by default, JS shows on mobile scroll */
}
.sticky-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sticky-inner span { font-family: var(--font-display); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.sticky-inner small { display: block; font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }

/* ---- SUPPORT PAGES ---- */
.support-hero-small { height: 40vh !important; min-height: 280px !important; }
.support-section { padding: 80px 24px; }
.support-card { background: var(--card); border: 1px solid var(--border2); border-radius: 8px; padding: 40px; margin-bottom: 32px; }
.support-card h2 { font-family: var(--font-display); font-size: 36px; font-weight: 800; text-transform: uppercase; margin-bottom: 16px; }
.support-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.support-card p:last-child { margin-bottom: 0; }
.support-how .how-card { background: var(--ink); }
.slim-card { text-align: center; }

/* ---- HOMEPAGE AREAS GRID ---- */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; }
.area-link {
  background: var(--card2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; font-size: 14px; font-weight: 500; color: var(--light);
  display: flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.area-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(245,166,35,0.04); }
.area-link::before { content: '→'; color: var(--accent); font-size: 12px; flex-shrink: 0; }

/* ---- HERO STATS ---- */
.hero-stats { display: flex; gap: 32px; margin-top: 32px; opacity: 0; animation: fadeUp 0.7s 0.5s forwards; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--accent); line-height: 1; }
.hero-stat span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.trust-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--light);
  letter-spacing: 0.04em;
}
.trust-item .ti { display: flex; align-items: center; line-height: 0; }
.trust-item .ti svg { display: block; }
.scope-icon { display: flex; align-items: flex-start; flex-shrink: 0; line-height: 0; padding-top: 2px; }
.scope-icon svg { display: block; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .split-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hamb { display: flex; align-items: center; justify-content: center; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-left { order: 1; }
  .quote-box { order: 2; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-grid .btn { grid-column: 1 / -1; width: 100%; }
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .split-grid.reverse .split-img { order: 1; }
  .split-grid.reverse .split-copy { order: 2; }
}

@media (max-width: 600px) {
  /* Hero */
  .hero { height: 58vh; min-height: 380px; }
  .hero-copy h1 { font-size: 48px; }
  .hero-stats { flex-direction: column; gap: 14px; }

  /* Forms — full device width, no side padding bleed */
  .hero-form-wrap { padding: 24px 16px; }
  .quick-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .quick-grid .btn { grid-column: 1; width: 100%; height: 50px; font-size: 17px; }
  .quick-grid input,
  .quick-grid select { height: 48px; font-size: 15px; padding: 13px 14px; }

  .quote-section { padding: 48px 16px; }
  .quote-box { padding: 24px 16px; border-radius: 6px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid input,
  .form-grid select,
  .form-grid textarea { font-size: 15px; padding: 13px 14px; }
  .form-submit .btn { height: 56px; font-size: 19px; }

  /* Sections */
  .section { padding: 56px 16px; }
  .split-section { padding: 48px 16px; }
  .support-section { padding: 48px 16px; }
  .areas-subtle { padding: 48px 16px; }

  /* Layout */
  .svc-grid { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 8px; }
  .how-card:first-child { border-radius: 6px 6px 0 0; }
  .how-card:last-child  { border-radius: 0 0 6px 6px; }
  .foot-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 18px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }

  /* Sticky — mobile only, JS handles show/hide */
}

/* ---- COLLAPSIBLE NEARBY TOWNS ---- */
.nearby-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  background: none;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.nearby-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ---- COLLAPSIBLE AREAS GRID ---- */
.areas-grid-hidden { display: none; margin-top: 8px; }
.areas-toggle-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: none;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.areas-toggle-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ---- ENSURE KEN BURNS ON ALL HERO IMAGES ---- */
.hero-bg img {
  animation: kenburns 18s ease-in-out infinite alternate;
}

/* ---- SERVICE CARD IMAGES ---- */
.svc-card-img {
  width: 100%; overflow: hidden;
  aspect-ratio: 16/9;
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.04); }
/* Push icon down slightly when card has image */
.svc-card .svc-icon { padding-top: 20px; }

/* ---- LEGAL PAGE ---- */
.legal-toc {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 14px 20px;
  font-size: 14px; color: var(--muted); margin-bottom: 48px;
}
.legal-toc a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-block {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.legal-block:last-of-type { border-bottom: none; }
.legal-block h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 4px;
}
.legal-block h2::after {
  content: ''; display: block; width: 48px; height: 3px;
  background: var(--accent); margin-top: 10px; margin-bottom: 28px;
}
.legal-effective {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
}
.legal-block h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent); margin: 28px 0 10px;
}
.legal-block p {
  font-size: 14px; color: var(--light); line-height: 1.8;
  margin-bottom: 12px;
}
.legal-block a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-list {
  list-style: none; margin: 12px 0 16px 0;
}
.legal-list li {
  font-size: 14px; color: var(--light); line-height: 1.7;
  padding: 8px 0 8px 20px; border-bottom: 1px solid var(--border);
  position: relative;
}
.legal-list li::before {
  content: '—'; color: var(--accent); position: absolute; left: 0;
}
.legal-back { margin-top: 40px; }
