/* ============================================================
   Mr Haul Hero — Site Styles
   Palette: navy #0A1B3D, silver #C7CCD4, light #F7F8FA, white
   Type: Poppins (display) + Inter (body)
   ============================================================ */

:root {
  --navy: #0A1B3D;
  --navy-2: #132A55;
  --navy-3: #1C2E5A;
  --steel: #3C5A8C;
  --silver: #C7CCD4;
  --silver-2: #B7BEC8;
  --gray: #5C6577;
  --gray-2: #8B93A6;
  --line: #D6D9DE;
  --line-2: #C9CED5;
  --bg: #F7F8FA;
  --bg-2: #E9EBEE;
  --white: #ffffff;
  --text: #0A1B3D;
  --text-soft: #3C4658;

  --maxw: 1140px;
  --radius: 0px;         /* sharp corners */
  --shadow: 0 4px 16px rgba(10, 27, 61, 0.06);
  --shadow-lg: 0 10px 30px rgba(10, 27, 61, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  margin: 0;
  line-height: 1.15;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .18s ease, color .18s ease, transform .1s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: #0e254f; }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); border-color: #fff; }
.btn-light:hover { background: var(--bg); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.3px;
  color: var(--navy);
  flex-shrink: 0;
}
.brand img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--text-soft);
}
.nav-links > a,
.nav-item > a {
  padding: 6px 0;
  transition: color .15s ease;
}
.nav-links > a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; border-bottom: 2px solid var(--navy); padding-bottom: 4px; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 500;
}

/* ---------- Dropdown (Service Area) ---------- */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.dropdown-caret { font-size: 15px; transition: transform .2s ease; }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  min-width: 420px;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-item:hover .dropdown-caret { transform: rotate(180deg); }

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 8px;
}
.dropdown-grid a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-soft);
  padding: 8px 10px;
  transition: background .12s ease, color .12s ease;
}
.dropdown-grid a:hover { background: var(--bg); color: var(--navy); }
.dropdown-grid .ti { font-size: 14px; color: var(--navy); }
.dropdown-footer {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.dropdown-footer a { font-size: 13px; font-weight: 500; color: var(--navy); }

/* ---------- Mobile nav ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: var(--navy);
  padding: 4px;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .25s ease;
    border-top: 1px solid var(--line);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a,
  .nav-item > a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a.active { border-bottom: 1px solid var(--line); }
  .nav-phone { padding: 14px 24px; border-bottom: 1px solid var(--line); }
  .nav .btn { margin: 12px 24px; }

  /* dropdown becomes accordion on mobile */
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: hidden;
    min-width: 0;
    max-height: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
    transition: max-height .28s ease, visibility .28s;
  }
  .nav-item.expanded .dropdown {
    visibility: visible;
    max-height: 800px;
    padding: 8px 12px 14px;
    background: var(--bg);
  }
  .nav-item:hover .dropdown { /* disable hover-open on mobile */
    visibility: hidden;
    max-height: 0;
  }
  .nav-item.expanded:hover .dropdown {
    visibility: visible;
    max-height: 800px;
  }
  .dropdown-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-item.expanded .dropdown-caret { transform: rotate(180deg); }
}

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-sm { padding: 44px 0; }
.section-bg { background: var(--bg); }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 { font-size: 28px; font-weight: 600; }
.section-head p { color: var(--gray); font-size: 14px; margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--bg) 0%, #fff 65%);
  padding: 64px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.badge-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E4E7EB;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  border-left: 3px solid var(--navy);
  text-transform: uppercase;
}
.hero h1 { font-size: 46px; font-weight: 600; margin-bottom: 20px; }
.hero-sub { font-size: 16px; line-height: 1.7; color: var(--text-soft); max-width: 460px; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust > div { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-soft); }
.hero-trust .ti { font-size: 18px; color: var(--navy); }

.hero-visual { position: relative; }
.hero-art {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-tag {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: #fff;
  border: 1px solid var(--line-2);
  padding: 14px 20px;
}
.hero-tag .num { font-size: 20px; font-weight: 600; font-family: 'Poppins', sans-serif; color: var(--navy); }
.hero-tag .lbl { font-size: 12px; color: var(--text-soft); }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero { background: var(--bg); padding: 48px 0 40px; text-align: center; }
.page-hero h1 { font-size: 34px; font-weight: 600; margin-bottom: 12px; }
.page-hero p { font-size: 15px; color: var(--gray); max-width: 540px; margin: 0 auto; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.feature {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px 20px;
}
.feature .ico {
  width: 44px; height: 44px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature .ico .ti { font-size: 22px; color: var(--silver); }
.feature h3 { font-size: 15px; font-weight: 500; margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.feature p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ---------- Service cards ---------- */
.svc-card { border: 1px solid var(--line); background: #fff; }
.svc-card .svc-art {
  height: 150px;
  background: #D6DAE0;
  display: flex; align-items: center; justify-content: center;
}
.svc-card .svc-body { padding: 22px; }
.svc-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.svc-card p { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.svc-card .price { font-size: 13px; font-weight: 500; color: var(--navy); }

/* ---------- Photo placeholders (swap in real photos by matching the img src filename) ---------- */
.photo-ph {
  position: relative;
  height: 150px;
  background: #D6DAE0;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.photo-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-ph-label {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; color: var(--gray); text-align: center; padding: 0 12px;
}
.photo-ph-label .ti { font-size: 22px; color: var(--gray-2); }
.photo-ph-lg { height: 260px; }

/* ---------- Residential / Commercial tabs ---------- */
.rc-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.rc-tab {
  background: #fff; border: 1.5px solid var(--navy); color: var(--navy);
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px;
  padding: 11px 28px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.rc-tab .ti { margin-right: 6px; }
.rc-tab.active, .rc-tab:hover { background: var(--navy); color: #fff; }
.rc-panel { display: none; }
.rc-panel.active { display: block; }
.rc-intro { max-width: 640px; margin: 0 auto 28px; text-align: center; color: var(--text-soft); font-size: 14px; line-height: 1.7; }
.rc-check-list { max-width: 520px; margin: 0 auto; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.rc-check-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--navy); padding: 13px 18px; }
.rc-check-list .ti { color: var(--navy); font-size: 16px; flex-shrink: 0; }

/* ---------- Donation banner ---------- */
.donate-box {
  max-width: 920px; margin: 0 auto;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr;
}
.donate-box .donate-copy { padding: 32px; background: var(--bg); }
.donate-box .donate-copy h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.donate-box .donate-copy p { font-size: 14px; color: var(--text-soft); line-height: 1.7; margin-bottom: 16px; }
.donate-box .donate-perks { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; }
.donate-box .donate-perks li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-soft); }
.donate-box .donate-perks .ti { color: var(--navy); font-size: 16px; }
.donate-box .donate-price {
  background: var(--navy); color: #fff; padding: 32px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px;
}
.donate-box .donate-price .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 34px; }
.donate-box .donate-price .lbl { font-size: 13px; color: var(--silver-2); margin-bottom: 18px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.step { text-align: center; padding: 0 24px; }
.step + .step { border-left: 1px solid var(--line); }
.step .ico {
  width: 56px; height: 56px;
  background: var(--bg-2);
  border: 1.5px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step .ico .ti { font-size: 26px; color: var(--navy); }
.step h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ---------- Discount banner ---------- */
.discount {
  max-width: 460px;
  margin: 0 auto;
  background: var(--navy);
  border: 2px solid var(--navy);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.discount .tag {
  position: absolute;
  top: -10px; left: -10px;
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  letter-spacing: 0.4px;
}
.discount .pct {
  width: 52px; height: 52px;
  background: var(--silver);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
}
.discount .d-title { color: #fff; font-weight: 600; font-size: 15px; }
.discount .d-sub { color: #fff; font-size: 12px; }

/* ---------- Pricing ---------- */
.price-box {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.price-box-head {
  background: var(--navy);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.price-box-head .ico {
  width: 44px; height: 44px;
  background: var(--silver);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.price-box-head .ico .ti { font-size: 22px; color: var(--navy); }
.price-box-head h3 { color: #fff; font-size: 20px; font-weight: 600; }
.price-box-head p { color: #fff; font-size: 13px; margin-top: 2px; }
.price-box-body { padding: 28px 32px; background: var(--bg); }
.tier-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.tier {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px 10px;
  text-align: center;
}
.tier .t-label { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
.tier .t-price { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 18px; }
.tier.tier-full { background: var(--navy); border-color: var(--navy); }
.tier.tier-full .t-label { color: var(--silver-2); }
.tier.tier-full .t-price { color: #fff; }
.price-note {
  display: flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: 12px; color: var(--gray);
}
.price-note .ti { font-size: 15px; color: var(--gray-2); }

.item-list { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.item-row {
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.item-row span:first-child { font-size: 14px; }
.item-row .i-price { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; }
.fine { text-align: center; font-size: 12px; color: var(--gray-2); margin-top: 20px; }

/* ---------- Booking form ---------- */
.form-wrap { max-width: 640px; margin: 0 auto; background: var(--bg); border: 1px solid var(--line); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; }
.field.full { margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.field input,
.field select,
.field textarea {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 2px solid var(--navy); outline-offset: -1px; }
.field-file {
  background: #fff;
  border: 1.5px dashed var(--line-2);
  padding: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--gray-2);
  cursor: pointer;
}
.form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 14px; }

/* ---------- Map + service area ---------- */
.map-embed { width: 100%; height: 100%; min-height: 280px; border: 0; }
.area-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: stretch; }
.area-map { background: var(--bg-2); border: 1px solid var(--line-2); min-height: 280px; display: flex; }
.city-box { background: #fff; border: 1px solid var(--line); padding: 24px; }
.city-box h3 { font-size: 14px; font-weight: 500; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.city-links { display: grid; grid-template-columns: 1fr 1fr; grid-auto-flow: column; grid-template-rows: repeat(11, auto); gap: 8px 16px; font-size: 13px; }
.city-links a { display: flex; align-items: center; gap: 6px; color: var(--text-soft); }
.city-links a:hover { color: var(--navy); }
.city-links .ti { font-size: 13px; color: var(--navy); }

.city-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.city-card {
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow .15s ease, transform .1s ease;
}
.city-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.city-card span { font-size: 15px; font-weight: 500; }
.city-card .ti { color: var(--navy); font-size: 18px; }

/* ---------- FAQ ---------- */
.faq { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  gap: 16px;
}
.faq-q .ti { font-size: 16px; color: var(--gray); transition: transform .2s ease; flex-shrink: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-a-inner { padding: 0 28px 18px 4px; font-size: 13px; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .faq-q .ti { transform: rotate(180deg); }

/* ---------- Reviews placeholder ---------- */
.reviews-ph {
  max-width: 480px; margin: 0 auto;
  background: #fff;
  border: 1px dashed var(--line-2);
  padding: 36px 24px;
  text-align: center;
}
.reviews-ph .ti { font-size: 28px; color: var(--silver-2); }
.reviews-ph p { font-size: 14px; color: var(--gray); margin-top: 14px; line-height: 1.7; }

/* ---------- CTA banner ---------- */
.cta-band {
  background: var(--navy);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-band h3 { color: #fff; font-weight: 600; font-size: 18px; margin-bottom: 6px; }
.cta-band p { color: var(--silver-2); font-size: 13px; }

/* ---------- Breadcrumb ---------- */
.crumb { padding: 10px 0; font-size: 12px; color: var(--gray-2); background: var(--bg); }
.crumb a:hover { color: var(--navy); }
.crumb .here { color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--silver); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 34px; }
.footer-brand span { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; color: #fff; }
.footer-col h4 { font-size: 13px; font-weight: 500; color: #fff; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.footer-col a, .footer-col div.line { font-size: 13px; color: var(--gray-2); line-height: 2.2; display: block; }
.footer-col a:hover { color: #fff; }
.footer-about { font-size: 13px; line-height: 1.7; color: var(--gray-2); max-width: 220px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: var(--gray-2); font-size: 18px; }
.footer-social a:hover { color: #fff; }
.footer-contact div { display: flex; align-items: center; gap: 8px; }
.footer-contact .ti { font-size: 14px; }
.footer-bottom {
  border-top: 1px solid #2A3550;
  padding-top: 18px;
  text-align: center;
  font-size: 12px;
  color: var(--gray);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero-visual { order: -1; }
  .grid-4, .grid-3, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step + .step { border-left: none; border-top: 1px solid var(--line); padding-top: 28px; }
  .area-grid { grid-template-columns: 1fr; }
  .city-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .donate-box { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid-4, .grid-3, .grid-6, .city-cards { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .city-links { grid-template-columns: 1fr; grid-auto-flow: row; grid-template-rows: none; }
  .hero h1 { font-size: 30px; }
  .page-hero h1 { font-size: 26px; }
  .dropdown-grid { grid-template-columns: 1fr; }
}
