:root {
  --ink: #0f0f0f;
  --paper: #f5f2ed;
  --accent: #c8401e;
  --accent-light: #f0e8e5;
  --mid: #6b6560;
  --border: #d8d3cc;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--white);
  padding: 9px 22px; border-radius: 4px;
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; }

/* BREADCRUMBS */
.breadcrumb-bar {
  padding: 96px 5vw 0; max-width: 1100px; margin: 0 auto;
}
.breadcrumb-bar ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 13px; color: var(--mid);
}
.breadcrumb-bar a { color: var(--mid); text-decoration: none; }
.breadcrumb-bar a:hover { color: var(--accent); }
.breadcrumb-bar li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--border); }

/* HERO */
.hero {
  padding-top: 140px; padding-bottom: 100px;
  padding-left: 5vw; padding-right: 5vw;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero.hero-compact { padding-top: 40px; padding-bottom: 70px; grid-template-columns: 1fr; max-width: 780px; }
.hero-kicker {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -1px; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 18px; color: var(--mid); line-height: 1.65;
  margin-bottom: 36px; font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: var(--white);
  padding: 14px 28px; border-radius: 4px;
  text-decoration: none; font-weight: 500; font-size: 15px;
  transition: opacity .2s; display: inline-block;
}
.btn-primary:hover { opacity: .85; }
.btn-ghost {
  border: 1.5px solid var(--ink); color: var(--ink);
  padding: 13px 28px; border-radius: 4px;
  text-decoration: none; font-weight: 500; font-size: 15px;
  transition: all .2s; display: inline-block;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* HERO CARD */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
  box-shadow: 0 4px 40px rgba(0,0,0,.07);
}
.hero-card-title {
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 20px;
}
.rank-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.rank-row:last-of-type { border-bottom: none; }
.rank-num {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; flex-shrink: 0;
}
.rank-num.you { background: var(--accent); color: var(--white); }
.rank-num.them { background: #e8e4de; color: var(--mid); }
.rank-biz { flex: 1; }
.rank-biz-name { font-size: 13px; font-weight: 500; }
.rank-biz-sub { font-size: 11px; color: var(--mid); }
.rank-stars { font-size: 12px; color: #c8401e; }
.hero-card-badge {
  margin-top: 20px; background: var(--accent-light);
  border-radius: 8px; padding: 12px 14px;
  font-size: 13px; color: var(--accent); font-weight: 500;
}

/* TRUST BAR */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 5vw;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--ink);
  display: block;
}
.trust-label { font-size: 13px; color: var(--mid); }

/* SECTION */
section { padding: 90px 5vw; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-kicker {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  line-height: 1.1; letter-spacing: -.5px; margin-bottom: 18px;
}
.section-sub {
  font-size: 17px; color: var(--mid); font-weight: 300;
  max-width: 580px; line-height: 1.7;
}

/* SERVICES */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; margin-top: 56px;
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.service-card {
  background: var(--white); padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.service-card:hover { background: var(--accent-light); }
.service-icon {
  width: 40px; height: 40px; background: var(--accent-light);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px; font-size: 20px;
}
.service-card h3 { font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--mid); line-height: 1.65; }
.service-price {
  margin-top: 16px; font-size: 13px; font-weight: 500;
  color: var(--accent);
}

/* WHO WE HELP */
.who-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 52px;
}
.who-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 32px;
  position: relative; overflow: hidden;
}
.who-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--accent);
}
.who-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; margin-bottom: 12px;
}
.who-card p { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.who-list { list-style: none; }
.who-list li {
  font-size: 14px; padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.who-list li:last-child { border-bottom: none; }
.who-list li::before { content: '→'; color: var(--accent); font-weight: 500; flex-shrink: 0; }

/* PROCESS */
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; margin-top: 56px;
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.process-step {
  padding: 32px 24px; background: var(--white);
  border-right: 1px solid var(--border);
  position: relative;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 900;
  color: var(--border); line-height: 1;
  margin-bottom: 16px; display: block;
}
.process-step h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* FAQ SECTION */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  color: var(--ink); display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.faq-q:hover { background: var(--accent-light); }
.faq-arrow { font-size: 18px; color: var(--accent); flex-shrink: 0; transition: transform .2s; }
.faq-a {
  display: none; padding: 0 24px 20px;
  font-size: 14px; color: var(--mid); line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }

/* AUDIT CTA */
.audit-section { background: var(--ink); padding: 90px 5vw; }
.audit-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.audit-inner .section-kicker { color: #c8401e; }
.audit-inner .section-title { color: var(--white); }
.audit-inner .section-sub { color: #9a948c; max-width: 100%; }
.audit-form { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.audit-form input {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; padding: 14px 18px; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 15px; width: 100%;
  transition: border-color .2s;
}
.audit-form input::placeholder { color: #7a736b; }
.audit-form input:focus { outline: none; border-color: var(--accent); }
.audit-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.audit-submit {
  background: var(--accent); color: var(--white);
  border: none; border-radius: 6px; padding: 16px;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500;
  cursor: pointer; transition: opacity .2s; width: 100%;
}
.audit-submit:hover { opacity: .85; }
.audit-disclaimer { font-size: 12px; color: #6a635c; margin-top: 10px; }

/* TESTIMONIALS */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 52px;
}
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
}
.testimonial-quote {
  font-size: 15px; color: var(--ink); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-light); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--accent); flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 500; }
.author-biz { font-size: 12px; color: var(--mid); }
.stars { color: var(--accent); font-size: 13px; margin-bottom: 14px; }

/* TOWN GRID (county pages) */
.town-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px; margin-top: 40px;
}
.town-chip {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 16px; font-size: 14px; font-weight: 500;
}

/* FOOTER */
footer {
  background: var(--ink); color: #7a736b;
  padding: 48px 5vw;
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 900; color: var(--white);
}
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: #7a736b; text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-nap {
  font-size: 12px; color: #7a736b; line-height: 1.8;
  width: 100%; padding-top: 20px;
}
.footer-nap a { color: #7a736b; text-decoration: none; }
.footer-nap a:hover { color: var(--white); }
.footer-copy {
  font-size: 12px; width: 100%; padding-top: 20px;
  border-top: 1px solid #2a2520; line-height: 1.7;
}

/* RESPONSIVE */
/* MOBILE STICKY CALL BAR */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--accent); padding: 14px 20px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.mobile-cta-bar a {
  color: var(--white); text-decoration: none;
  font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 8px;
}
@media (min-width: 769px) { .mobile-cta-bar { display: none !important; } }
@media (max-width: 768px) { .mobile-cta-bar { display: flex; } body { padding-bottom: 60px; } }

/* GUARANTEE BADGE */
.guarantee-box {
  background: var(--white); border: 2px solid var(--accent);
  border-radius: 12px; padding: 28px 32px;
  display: flex; align-items: center; gap: 24px;
  margin-top: 48px;
}
.guarantee-icon {
  font-size: 48px; flex-shrink: 0; line-height: 1;
}
.guarantee-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; margin-bottom: 6px;
}
.guarantee-text { font-size: 14px; color: var(--mid); line-height: 1.6; margin: 0; }

/* ABOUT SECTION */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
  margin-top: 52px;
}
.about-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.about-title { font-size: 14px; color: var(--accent); font-weight: 500; margin-bottom: 20px; }
.about-body { font-size: 15px; color: var(--mid); line-height: 1.8; }
.about-stats { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--ink); display: block; }
.about-stat-label { font-size: 12px; color: var(--mid); }

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-card { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .audit-form .row { grid-template-columns: 1fr; }
  .trust-bar { gap: 28px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  #contact .section-inner > div { grid-template-columns: 1fr !important; }
  .about-grid { grid-template-columns: 1fr; }
  .guarantee-box { flex-direction: column; text-align: center; }
  #why-google-maps .section-inner > div { grid-template-columns: 1fr !important; }
  .breadcrumb-bar { padding-top: 80px; }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-kicker { animation: fadeUp .5s ease both; }
.hero h1 { animation: fadeUp .6s .1s ease both; }
.hero-sub { animation: fadeUp .6s .2s ease both; }
.hero-btns { animation: fadeUp .6s .3s ease both; }
.hero-card { animation: fadeUp .7s .2s ease both; }
