:root {
  --primary: #f1592a;
  --secondary: #363636;
  --text: #231f20;
  --muted: #6f6f6f;
  --line: #e5e0dc;
  --soft: #f7f3ef;
  --white: #fff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}
a { color: #e55b23; text-decoration: none; }
a:hover { color: #bf1e2e; }
img { max-width: 100%; height: auto; }
.topbar {
  display: flex;
  gap: 22px;
  justify-content: center;
  padding: 9px 16px;
  color: #fff;
  background: var(--secondary);
  font-size: 14px;
}
.topbar a { color: #fff; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 20px;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
.brand strong { display: block; font-size: 24px; line-height: 1.1; }
.brand small { color: var(--muted); }
.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  padding: 10px 12px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--primary);
}
.nav-toggle { display: none; }
.home-hero,
.page-hero {
  background: linear-gradient(90deg, rgba(35,31,32,.88), rgba(35,31,32,.52)), url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
.home-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-copy,
.page-hero > div {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.hero-copy { max-width: 700px; margin-left: max(20px, calc((100% - 1120px) / 2)); }
.eyebrow {
  color: #febe14;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.2; color: inherit; }
.home-hero h1 {
  max-width: 680px;
  margin: 8px 0 16px;
  font-size: clamp(38px, 7vw, 68px);
}
.home-hero p { max-width: 620px; font-size: 19px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.button.secondary { background: #fff; color: var(--secondary); }
.page-hero { padding: 70px 0; }
.page-hero h1 { margin: 0 0 10px; font-size: clamp(32px, 5vw, 52px); }
.content-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0;
}
.content-wrap h2,
.content-wrap h3 { color: var(--secondary); }
.content-wrap iframe { max-width: 100%; }
.notice.error {
  padding: 12px 14px;
  border-left: 4px solid #bf1e2e;
  background: #fff0f0;
}
.contact-form {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 22px 0;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid.thirds { grid-template-columns: repeat(3, minmax(0, 1fr)); }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  font: inherit;
}
textarea { resize: vertical; }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 44px; }
.post-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.post-card img {
  width: 220px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.post-card h2 { margin: 4px 0 10px; }
time, .meta { color: var(--muted); font-size: 14px; }
.read-more { font-weight: 700; }
.sidebar {
  padding: 22px;
  background: var(--soft);
}
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar li { border-bottom: 1px solid var(--line); }
.sidebar li a { display: block; padding: 8px 0; }
.search-form { display: flex; gap: 8px; margin-bottom: 24px; }
.pagination { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 28px; }
.pagination a {
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--line);
}
.pagination a.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.article-wrap { max-width: 860px; }
.article-wrap .featured {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  margin-bottom: 24px;
}
.site-footer {
  color: #fff;
  background: var(--secondary);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
}
.site-footer a { color: #fff; }
.site-footer h2 { color: #fff; font-size: 20px; }
.copyright {
  padding: 16px 20px;
  text-align: center;
  background: #252525;
}
@media (max-width: 840px) {
  .topbar { flex-direction: column; align-items: center; gap: 3px; }
  .header-inner { align-items: flex-start; }
  .nav-toggle { display: inline-flex; margin-top: 8px; }
  .main-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 132px;
    z-index: 3;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
  }
  .main-nav.open { display: flex; }
  .home-hero { min-height: 460px; }
  .form-grid,
  .form-grid.thirds,
  .blog-layout,
  .post-card,
  .footer-grid { grid-template-columns: 1fr; }
  .post-card img { width: 100%; }
}

.ads-landing-page {
  background: #fff;
  color: #211f1f;
}
.ads-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(24px, calc((100% - 1160px) / 2));
  border-bottom: 1px solid #ebe5df;
  background: rgba(255,255,255,.96);
}
.ads-logo img {
  display: block;
  width: 210px;
  height: auto;
}
.ads-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}
.ads-header-actions span {
  color: #4a403b;
  font-size: 14px;
}
.ads-call-link,
.ads-call-link:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  background: #f1592a;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}
.ads-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  min-height: 650px;
  padding: 70px max(24px, calc((100% - 1160px) / 2));
  background: linear-gradient(90deg, rgba(33,31,31,.92) 0%, rgba(33,31,31,.78) 42%, rgba(33,31,31,.28) 100%), url('../site/main/uploads/2016/11/Hero-Image-1.jpg');
  background-size: cover;
  background-position: center right;
  color: #fff;
}
.ads-hero-copy {
  max-width: 690px;
  align-self: center;
}
.ads-kicker {
  margin: 0 0 10px;
  color: #febe14;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ads-hero h1 {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: 58px;
  line-height: 1.04;
}
.ads-lead {
  max-width: 650px;
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
}
.ads-hero-actions,
.ads-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.ads-button,
.ads-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 2px solid #f1592a;
  background: #f1592a;
  color: #fff;
  font-weight: 800;
  text-align: center;
}
.ads-button:hover,
.ads-button:focus,
.ads-call-link:hover,
.ads-call-link:focus {
  background: #cf4319;
  border-color: #cf4319;
  color: #fff;
}
.ads-button-light,
.ads-button-light:visited {
  border-color: #fff;
  background: #fff;
  color: #211f1f;
}
.ads-button-light:hover,
.ads-button-light:focus {
  border-color: #febe14;
  background: #febe14;
  color: #211f1f;
}
.ads-button-call {
  font-size: 18px;
}
.ads-trust-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.ads-trust-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
}
.ads-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: #febe14;
}
.ads-form-card {
  align-self: center;
  padding: 24px;
  border-top: 5px solid #f1592a;
  border-radius: 8px;
  background: #fff;
  color: #211f1f;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.ads-form-card h2 {
  margin: 0 0 8px;
  color: #211f1f;
  font-size: 28px;
}
.ads-form-card p {
  margin: 0 0 16px;
}
.ads-lead-form {
  display: grid;
  gap: 12px;
}
.ads-lead-form label {
  display: grid;
  gap: 5px;
  margin: 0;
  color: #4a403b;
  font-size: 13px;
  font-weight: 800;
}
.ads-lead-form input,
.ads-lead-form select,
.ads-lead-form textarea {
  min-height: 42px;
  border: 1px solid #d7cec7;
  border-radius: 4px;
  background: #fff;
  color: #211f1f;
  font-size: 15px;
}
.ads-lead-form textarea {
  min-height: 96px;
}
.ads-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}
.ads-lead-form button {
  min-height: 50px;
  margin-top: 2px;
  border-radius: 0;
  font-size: 17px;
}
.ads-form-note {
  margin: 14px 0 0;
  font-size: 14px;
  text-align: center;
}
.ads-recaptcha-disclosure {
  margin: 10px 0 0;
  color: #6b625d;
  font-size: 11px;
  line-height: 1.4;
}
.ads-recaptcha-disclosure a {
  font-weight: 700;
}
.ads-landing-page .grecaptcha-badge {
  visibility: hidden;
}
.ads-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #e7dfd7;
}
.ads-proof-strip > div {
  display: grid;
  align-content: center;
  min-height: 116px;
  padding: 22px max(24px, calc((100vw - 1160px) / 6));
  background: #fbf8f4;
}
.ads-proof-strip strong,
.ads-proof-strip span {
  display: block;
}
.ads-proof-strip strong {
  font-size: 20px;
  color: #211f1f;
}
.ads-proof-strip span {
  color: #5d5551;
}
.ads-bbb {
  justify-items: center;
}
.ads-bbb img {
  max-width: 230px;
}
.ads-section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}
.ads-two-col,
.ads-map-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 46px;
  align-items: center;
}
.ads-section h2,
.ads-cta-band h2,
.ads-final-cta h2 {
  margin: 0 0 16px;
  color: #211f1f;
  font-size: 38px;
}
.ads-section p {
  font-size: 17px;
}
.ads-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.ads-check-grid span {
  min-height: 72px;
  padding: 16px;
  border-left: 4px solid #f1592a;
  background: #fbf8f4;
  font-weight: 700;
}
.ads-section-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(33,31,31,.12);
}
.ads-section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}
.ads-process {
  width: 100%;
  padding-right: max(24px, calc((100% - 1160px) / 2));
  padding-left: max(24px, calc((100% - 1160px) / 2));
  background: #2f3437;
}
.ads-process .ads-section-heading h2,
.ads-process .ads-section-heading p {
  color: #fff;
}
.ads-process-grid,
.ads-review-grid,
.ads-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.ads-process-grid article,
.ads-review-grid article,
.ads-faq details {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(33,31,31,.08);
}
.ads-process-grid article {
  padding: 24px;
}
.ads-process-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: #febe14;
  color: #211f1f;
  font-weight: 800;
}
.ads-process-grid h3,
.ads-process-grid p {
  color: #211f1f;
}
.ads-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px max(24px, calc((100% - 1160px) / 2));
  background: #f1592a;
  color: #fff;
}
.ads-cta-band h2,
.ads-cta-band .ads-kicker {
  color: #fff;
}
.ads-cta-band .ads-hero-actions {
  margin-top: 0;
}
.ads-finance-card {
  padding: 28px;
  border-radius: 8px;
  background: #0f6f86;
  color: #fff;
}
.ads-finance-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.2;
}
.ads-finance-card p {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.26);
  color: #fff;
  font-weight: 700;
}
.ads-text-link {
  font-weight: 800;
}
.ads-reviews {
  border-top: 1px solid #ebe5df;
}
.ads-review-grid article {
  overflow: hidden;
  padding: 24px;
}
.ads-review-grid strong,
.ads-review-grid span {
  display: block;
}
.ads-review-grid strong {
  font-size: 22px;
}
.ads-review-grid span {
  margin: 3px 0 16px;
  color: #0f6f86;
  font-weight: 800;
}
.ads-review-grid p {
  margin: 0;
  font-size: 18px;
}
.ads-review-image {
  padding: 0 !important;
}
.ads-review-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.ads-map-section {
  width: 100%;
  padding-right: max(24px, calc((100% - 1160px) / 2));
  padding-left: max(24px, calc((100% - 1160px) / 2));
  background: #fbf8f4;
}
.ads-service-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #ddd1c8;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.58) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.58) 1px, transparent 1px),
    #dce8e8;
  background-size: 42px 42px;
}
.ads-map-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 2px solid rgba(241,89,42,.36);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ring-one {
  width: 190px;
  height: 190px;
}
.ring-two {
  width: 330px;
  height: 330px;
}
.ads-map-pin {
  position: absolute;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  border: 2px solid #fff;
  border-radius: 8px;
  background: #211f1f;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(33,31,31,.2);
}
.pin-nashville { left: 45%; top: 45%; background: #f1592a; }
.pin-brentwood { left: 34%; top: 61%; }
.pin-franklin { left: 28%; top: 72%; }
.pin-murfreesboro { right: 12%; bottom: 18%; }
.pin-hendersonville { right: 18%; top: 24%; }
.pin-clarksville { left: 10%; top: 14%; }
.ads-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ads-faq details {
  padding: 20px;
}
.ads-faq summary {
  cursor: pointer;
  color: #211f1f;
  font-size: 18px;
  font-weight: 800;
}
.ads-faq details p {
  margin: 12px 0 0;
}
.ads-final-cta {
  padding: 74px 24px 92px;
  background: #211f1f;
  color: #fff;
  text-align: center;
}
.ads-final-cta h2 {
  color: #fff;
}
.ads-final-cta .ads-hero-actions {
  justify-content: center;
}
.ads-mobile-bar {
  display: none;
}
@media (max-width: 980px) {
  .ads-header {
    position: static;
    padding-right: 20px;
    padding-left: 20px;
  }
  .ads-header-actions span {
    display: none;
  }
  .ads-hero,
  .ads-two-col,
  .ads-map-section {
    grid-template-columns: 1fr;
  }
  .ads-hero {
    min-height: auto;
    padding: 44px 20px;
  }
  .ads-hero h1 {
    font-size: 42px;
  }
  .ads-form-card {
    align-self: start;
  }
  .ads-proof-strip,
  .ads-process-grid,
  .ads-review-grid,
  .ads-faq-grid {
    grid-template-columns: 1fr;
  }
  .ads-section,
  .ads-process,
  .ads-map-section {
    width: 100%;
    padding: 54px 20px;
  }
  .ads-cta-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 20px;
  }
}
@media (max-width: 640px) {
  .ads-landing-page {
    padding-bottom: 68px;
  }
  .ads-header {
    gap: 12px;
  }
  .ads-logo img {
    width: 168px;
  }
  .ads-call-link {
    min-height: 38px;
    min-width: 148px;
    padding: 8px;
    font-size: 12px;
  }
  .ads-hero {
    padding-top: 34px;
    background-position: 62% center;
  }
  .ads-hero h1,
  .ads-section h2,
  .ads-cta-band h2,
  .ads-final-cta h2 {
    font-size: 32px;
  }
  .ads-lead {
    font-size: 17px;
  }
  .ads-hero-actions,
  .ads-band-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .ads-button,
  .ads-button:visited {
    width: 100%;
  }
  .ads-form-row,
  .ads-check-grid {
    grid-template-columns: 1fr;
  }
  .ads-form-card {
    padding: 18px;
  }
  .ads-service-map {
    min-height: 360px;
  }
  .ads-map-pin {
    font-size: 12px;
  }
  .pin-clarksville { left: 4%; top: 12%; }
  .pin-murfreesboro { right: 5%; bottom: 15%; }
  .ads-mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -8px 22px rgba(0,0,0,.18);
  }
  .ads-mobile-bar a {
    display: grid;
    min-height: 58px;
    place-items: center;
    background: #f1592a;
    color: #fff;
    font-weight: 800;
  }
  .ads-mobile-bar a + a {
    background: #211f1f;
  }
}
