/* ============================================
   MAPLE AI — Design System v2
   Warm, professional, local — not techy
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,600&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --bg:         #f7f8f4;
  --bg-2:       #ffffff;
  --bg-card:    #ffffff;
  --bg-card-h:  #f2f6ef;
  --accent:     #1d6b3a;
  --accent-mid: rgba(29, 107, 58, 0.12);
  --accent-low: rgba(29, 107, 58, 0.06);
  --accent-glow:rgba(29, 107, 58, 0.2);
  --gold:       #c17f24;
  --gold-mid:   rgba(193, 127, 36, 0.14);
  --gold-low:   rgba(193, 127, 36, 0.07);
  --text:       #1a231c;
  --text-2:     #4a6450;
  --text-3:     #8aa48e;
  --border:     #dde8df;
  --border-h:   #a8c8b0;
  --shadow-sm:  0 1px 4px rgba(26,35,28,0.06), 0 4px 16px rgba(26,35,28,0.06);
  --shadow-md:  0 4px 12px rgba(26,35,28,0.08), 0 12px 36px rgba(26,35,28,0.08);
  --radius:     10px;
  --radius-lg:  16px;
  --font-d:     'Fraunces', Georgia, serif;
  --font-b:     'Plus Jakarta Sans', -apple-system, sans-serif;
  --max:        1140px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utilities ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.accent { color: var(--accent); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 8px var(--accent-glow);
}
.btn-primary:hover {
  background: #165a30;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-h);
}
.btn-ghost:hover {
  background: var(--accent-low);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn-sm {
  font-size: 0.84rem;
  padding: 9px 20px;
}

/* ── Navigation ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s var(--ease);
}
#nav.scrolled {
  padding: 12px 0;
  background: rgba(247, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-logo svg { width: 24px; height: 24px; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-2);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { font-size: 1rem; padding: 14px 36px; margin-top: 8px; }

/* ── Hero ── */
#hero {
  padding: 148px 0 100px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
/* Subtle texture — light leaf-like blobs */
#hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(29,107,58,0.06) 0%, transparent 65%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(29,107,58,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-low);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
h1 {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--text-3);
}
.hero-trust::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--border-h);
}

/* ── Proof Bar ── */
#proof-bar {
  padding: 20px 0;
  background: var(--accent);
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.proof-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.proof-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.tool-pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.tool-pill:hover { color: #fff; background: rgba(255,255,255,0.15); }

/* ── Section Base ── */
section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}
h2 {
  font-family: var(--font-d);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
h3 {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}
p { color: var(--text-2); line-height: 1.75; }

/* ── Problem Section ── */
#problem {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.problem-copy p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.stat-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: all 0.22s var(--ease);
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat-card:hover {
  border-color: var(--border-h);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.stat-number {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 500;
}

/* ── Services ── */
#services { background: var(--bg-2); }
.section-header { max-width: 560px; margin-bottom: 48px; }
.section-header p { font-size: 1.02rem; margin-top: 10px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--border-h);
  background: var(--bg-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card p { font-size: 0.93rem; flex: 1; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
  margin-top: auto;
}
.service-link:hover { gap: 10px; }
.service-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ── Process ── */
#process { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.22s var(--ease);
  box-shadow: var(--shadow-sm);
}
.step:hover {
  border-color: var(--border-h);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.step-num {
  font-family: var(--font-d);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { font-size: 0.92rem; }
.process-cta { text-align: center; margin-top: 36px; }
.process-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}
.process-link:hover { gap: 12px; }
.process-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ── About ── */
#about-blurb { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-card {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.about-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 150px; height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.about-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.about-location svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.big-quote {
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.about-copy p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-copy .btn { margin-top: 10px; }

/* ── Locations ── */
#locations { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 36px;
  margin-bottom: 24px;
}
.location-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.location-link::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-h);
  flex-shrink: 0;
  transition: background 0.2s;
}
.location-link:hover {
  color: var(--accent);
  border-color: var(--border-h);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.location-link:hover::before { background: var(--accent); }
.locations-note { font-size: 0.88rem; color: var(--text-3); text-align: center; }
.locations-note a { color: var(--accent); font-weight: 500; }

/* ── FAQ ── */
#faq { background: var(--bg-2); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.faq-intro h2 { margin-bottom: 14px; }
.faq-intro p { font-size: 1.02rem; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--border-h);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-b);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s;
}
.faq-q:hover { background: var(--bg); }
.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.22s var(--ease);
}
.faq-icon svg {
  width: 10px; height: 10px;
  stroke: var(--accent); fill: none;
  stroke-width: 2.5; stroke-linecap: round;
  transition: transform 0.22s var(--ease);
}
.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
  background: var(--bg);
}
.faq-a-inner {
  padding: 16px 20px 18px;
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ── Contact ── */
#contact { background: var(--bg); border-top: 1px solid var(--border); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { font-size: 1.02rem; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
}
.contact-item-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 15px; height: 15px;
  stroke: var(--accent); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.contact-item a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--accent); }
.contact-item span { color: var(--text-2); }
.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
input, select, textarea {
  font-family: var(--font-b);
  font-size: 0.93rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,107,58,0.1);
  background: var(--bg-2);
}
select { appearance: none; cursor: pointer; }
textarea { resize: vertical; min-height: 110px; }
input::placeholder, textarea::placeholder { color: var(--text-3); }
.form-submit { width: 100%; margin-top: 6px; justify-content: center; }

/* ── Footer ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 48px;
}
footer .nav-logo { color: #ffffff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── Gold Accent Utilities ── */
.gold { color: var(--gold); }
.stat-card.gold-card .stat-number { color: var(--gold); }
.service-card.more-card {
  background: var(--gold-low);
  border-color: rgba(193, 127, 36, 0.25);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  min-height: 180px;
}
.service-card.more-card:hover {
  background: var(--gold-mid);
  border-color: rgba(193, 127, 36, 0.45);
}
.more-card-label {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.more-card-sub {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}
.tool-pill-more {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.15);
  letter-spacing: 0.04em;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .problem-grid, .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .process-steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  section { padding: 68px 0; }
  .services-grid-3 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .proof-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
}
