/* ==========================================================================
   Global Stylesheet — EB Website Cloner
   Generated during homepage clone. Shared across all pages.
   ========================================================================== */

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-body);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

/* --- Design Tokens --- */
:root {
  /* Typography */
  --font-family: 'Montserrat', sans-serif;

  /* Brand colours */
  --brand-primary: #000000;
  --brand-accent: #b70000;
  --brand-accent-hover: #9e0000;

  /* Backgrounds */
  --bg-body: #ffffff;
  --bg-light: #e9e9e9;
  --white: #ffffff;
  --black: #000000;

  /* Text */
  --text-primary: #333333;
  --text-muted: #666666;

  /* Borders */
  --border-light: #d9d9d9;

  /* Shadows */
  --shadow-inset: none;
  --shadow-button: none;
}

/* --- Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 896px;
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  font-family: var(--font-family);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  padding: 14px 30px;
  transition: background-color 0.3s ease;
}

.btn--primary {
  background-color: var(--brand-accent);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--brand-accent-hover);
}

.btn--secondary {
  background-color: var(--white);
  color: var(--black);
  border: 2px solid var(--border-light);
}

.btn--secondary:hover {
  background-color: var(--bg-light);
}

/* --- Interactive States --- */
.is-open {
  display: block !important;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-header__top-bar {
  display: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
}

.site-header__logo img {
  height: 60px;
  width: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav-item {
  position: relative;
}

.site-header__nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-header__nav-link:hover {
  color: var(--brand-accent);
}

.site-header__nav-link .dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
}

/* Dropdown */
.site-header__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--brand-accent);
  z-index: 100;
  padding: 8px 0;
}

.site-header__nav-item:hover > .site-header__dropdown {
  display: block;
}

.site-header__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header__dropdown-link:hover {
  background-color: var(--bg-light);
  color: var(--brand-accent);
}

.site-header__cta {
  margin-left: 16px;
}

.site-header__cta .btn {
  font-size: 13px;
  padding: 12px 24px;
  white-space: nowrap;
}

/* Hamburger */
.site-header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.site-header__hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile styles */
@media (max-width: 1024px) {
  .site-header__top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--brand-accent);
    color: var(--white);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
  }

  .site-header__top-bar a {
    color: var(--white);
  }

  .site-header__inner {
    height: 64px;
  }

  .site-header__logo img {
    height: 45px;
  }

  .site-header__hamburger {
    display: flex;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 16px 0;
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .site-header__nav-list {
    flex-direction: column;
    width: 100%;
  }

  .site-header__nav-item {
    width: 100%;
    border-bottom: 1px solid var(--bg-light);
  }

  .site-header__nav-link {
    padding: 14px 20px;
    justify-content: space-between;
  }

  .site-header__dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    background: var(--bg-light);
  }

  .site-header__dropdown-link {
    padding-left: 36px;
  }

  .site-header__cta {
    margin: 12px 20px 0;
    width: calc(100% - 40px);
  }

  .site-header__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 0 0;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.site-footer__brand-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.site-footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.site-footer__brand a {
  color: var(--white);
  transition: color 0.2s ease;
}

.site-footer__brand a:hover {
  color: var(--brand-accent);
}

.site-footer__heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links li {
  margin-bottom: 10px;
}

.site-footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--brand-accent);
}

.site-footer__badges img {
  max-width: 200px;
  margin-bottom: 16px;
}

.site-footer__bottom {
  background-color: var(--brand-accent);
  margin-top: 40px;
  padding: 16px 0;
}

.site-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__copyright {
  font-size: 13px;
  color: var(--white);
}

.site-footer__copyright a {
  color: var(--white);
  text-decoration: underline;
}

.site-footer__copyright a:hover {
  opacity: 0.8;
}

.site-footer__social {
  display: flex;
  gap: 16px;
}

.site-footer__social a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.site-footer__social a:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .site-footer__brand-logo img {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Below this line: styles appended by the assembler during subsequent
   page clones (CSS growth and promotion). Do not manually edit.
   ========================================================================== */

/* Promoted by: septic-services assembler */
/* ==========================================================================
   REVIEWS-WIDGET
   ========================================================================== */
.reviews-widget {
  background-color: var(--brand-accent);
  padding: 60px 0;
}

.reviews-widget__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews-widget__iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: 8px;
  background-color: var(--white);
}

@media (max-width: 768px) {
  .reviews-widget {
    padding: 40px 0;
  }

  .reviews-widget__iframe {
    min-height: 400px;
  }
}

/* Promoted by: septic-services assembler */
/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 80px 0;
  background-color: var(--white);
}

.faq__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq__heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  text-align: center;
  margin-bottom: 48px;
}

.faq__title-accent {
  color: var(--brand-accent);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--border-light);
}

.faq__item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family);
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: var(--brand-accent);
}

.faq__question-text {
  font-size: 17px;
  font-weight: 600;
  color: inherit;
  padding-right: 16px;
}

.faq__icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--brand-accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq__answer {
  display: none;
  padding: 0 0 20px;
}

.faq__answer.is-open {
  display: block;
}

.faq__answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .faq {
    padding: 60px 0;
  }

  .faq__heading {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 48px 0;
  }

  .faq__heading {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .faq__question-text {
    font-size: 15px;
  }

  .faq__question {
    padding: 16px 0;
  }
}

/* Promoted by: about assembler */
/* ==========================================================================
   PAGE-HEADER
   ========================================================================== */
.page-header {
  background-color: #f4f5fb;
  padding: 48px 0;
  text-align: center;
}

.page-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-header__breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.page-header__breadcrumb-link {
  color: var(--brand-accent);
  font-weight: 600;
  transition: color 0.2s ease;
}

.page-header__breadcrumb-link:hover {
  color: var(--brand-accent-hover);
}

.page-header__breadcrumb-sep {
  margin: 0 8px;
  color: var(--text-muted);
}

.page-header__breadcrumb-current {
  color: var(--text-primary);
  font-weight: 500;
}

.page-header__title {
  font-size: 42px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .page-header {
    padding: 40px 0;
  }

  .page-header__title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 32px 0;
  }

  .page-header__title {
    font-size: 28px;
  }
}

/* Promoted by: evidence-reviews-testimonials assembler */
/* ==========================================================================
   SERVICE-AREAS
   ========================================================================== */
.service-areas {
  padding: 80px 0;
  background-color: var(--white);
}

.service-areas__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.service-areas__heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-accent);
  margin-bottom: 12px;
}

.service-areas__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.service-areas__counties {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.service-areas__county-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

.service-areas__county-btn:hover {
  background-color: #222222;
}

.service-areas__pin {
  font-size: 16px;
}

.service-areas__cities {
  background-color: var(--brand-accent);
  border-radius: 8px;
  padding: 32px 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.service-areas__city-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.service-areas__city-group::after {
  content: "|";
  color: rgba(255, 255, 255, 0.5);
  margin-left: 8px;
  font-weight: 300;
}

.service-areas__city-group:last-child::after {
  display: none;
}

.service-areas__city {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.service-areas__city::after {
  content: ",";
  margin-right: 4px;
}

.service-areas__city:last-child::after {
  content: "";
  margin-right: 0;
}

@media (max-width: 1024px) {
  .service-areas {
    padding: 60px 0;
  }

  .service-areas__heading {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .service-areas {
    padding: 48px 0;
  }

  .service-areas__heading {
    font-size: 26px;
  }

  .service-areas__counties {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .service-areas__county-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .service-areas__cities {
    padding: 24px 20px;
    flex-direction: column;
    gap: 8px;
  }

  .service-areas__city-group {
    justify-content: center;
  }

  .service-areas__city-group::after {
    display: none;
  }
}


/* template-render placeholders — added by scripts/render-template-build.mjs */
.logo-text { font-weight: 800; font-size: 1.4rem; letter-spacing: 0.02em; color: inherit; text-transform: uppercase; }
.site-header__logo .logo-text { color: #000; }
.site-footer__logo .logo-text, .site-footer__brand .logo-text { color: #fff; }
.placeholder-img {
  background: repeating-linear-gradient(135deg, #d8d8d8 0 12px, #c8c8c8 12px 24px);
  display: flex; align-items: center; justify-content: center;
  color: #555; font-family: ui-monospace, monospace; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase; text-align: center;
  border: 1px dashed #888;
}
.placeholder-img::before { content: attr(data-placeholder-label) " — placeholder"; padding: 0.5rem 1rem; }
.hero__bg.placeholder-img { background-color: #2a2a2a; background-image: none; }
.hero__bg.placeholder-img::before { color: #aaa; }
.intro__image.placeholder-img { min-height: 320px; }
.about__image.placeholder-img, .why-choose__image.placeholder-img { min-height: 280px; }
.site-header__logo-img { max-height: 56px; width: auto; display: block; }
.intro__image img, .why-choose__image img, .about-content__image img { width: 100%; height: auto; display: block; border-radius: 6px; }
.hero__skip-cta { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hero__skip-cta:focus { left: 50%; top: 1rem; transform: translateX(-50%); width: auto; height: auto; padding: 0.75rem 1.5rem; background: #b70000; color: #fff; z-index: 99; border-radius: 4px; }
.about-content__contact-dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.5rem 1.25rem; margin: 1rem 0 1.5rem; }
.about-content__contact-dl dt { font-weight: 600; color: #1a1a1a; }
.about-content__contact-dl dd { margin: 0; color: #555; }
@media (max-width: 640px) { .about-content__contact-dl { grid-template-columns: 1fr; gap: 0.25rem; } .about-content__contact-dl dt { margin-top: 0.75rem; } }
