/* ==========================================================================
   Westchester Chimney Pro — Global Stylesheet
   Colors: charcoal #222222 (primary), brick red #b94040 (accent), white #ffffff
   Fonts:  Montserrat (headings), Open Sans (body)
   ========================================================================== */

/* ------------------------------------------------------------------ Tokens */
:root {
  --charcoal: #222222;
  --charcoal-light: #3a3a3a;
  --brick: #b94040;
  --brick-dark: #9a3434;
  --white: #ffffff;
  --off-white: #f6f6f4;
  --gray: #6b6b6b;
  --gray-light: #e4e4e1;
  --border: #dddddd;
  --shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --max-width: 1180px;
  --radius: 6px;
  --transition: 0.2s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------- Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.25;
  color: var(--charcoal);
  font-weight: 700;
}

h1 { font-size: 2.5rem; margin-bottom: 0.6em; }
h2 { font-size: 1.9rem; margin-bottom: 0.6em; }
h3 { font-size: 1.35rem; margin-bottom: 0.5em; }
h4 { font-size: 1.1rem; margin-bottom: 0.4em; }

p { margin-bottom: 1.1em; }

a {
  color: var(--brick);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--brick-dark); text-decoration: underline; }

ul, ol { margin: 0 0 1.1em 1.3em; }
li { margin-bottom: 0.5em; }

strong { font-weight: 700; }

/* --------------------------------------------------------------- Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 70px 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-head p { color: var(--gray); font-size: 1.05rem; }
.section--dark .section-head p { color: var(--gray-light); }

.eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 0.6em;
}

.text-center { text-align: center; }

/* ----------------------------------------------------------------- Buttons */
.btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary {
  background: var(--brick);
  color: var(--white);
  border-color: var(--brick);
}
.btn--primary:hover { background: var(--brick-dark); border-color: var(--brick-dark); color: var(--white); }

.btn--secondary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn--secondary:hover { background: #000; color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline:hover { background: var(--charcoal); color: var(--white); }

.btn--light {
  background: var(--white);
  color: var(--brick);
  border-color: var(--white);
}
.btn--light:hover { background: var(--off-white); color: var(--brick-dark); }

.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--block { display: block; width: 100%; }

/* ------------------------------------------------------------------ Header */
.topbar {
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--brick); text-decoration: none; }
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  background: var(--brick);
  color: var(--white);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.brand__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--charcoal);
  line-height: 1.1;
}
.brand__tag {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--gray);
  text-transform: uppercase;
}

/* Logo image (replaces the text brand mark) */
.brand__logo {
  height: 66px;
  width: auto;
  display: block;
}
.brand__logo--footer {
  height: 92px;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
  box-sizing: border-box;
}

/* Header right cluster */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  text-align: right;
  line-height: 1.2;
}
.header-phone__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.header-phone__num {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--charcoal);
  text-decoration: none;
}
.header-phone__num:hover { color: var(--brick); text-decoration: none; }

/* ------------------------------------------------------------- Navigation */
.main-nav { display: flex; align-items: center; }
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}
.main-nav li { margin: 0; position: relative; }
.main-nav > ul > li > a {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 12px 14px;
  border-radius: var(--radius);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--brick);
  text-decoration: none;
}

/* Dropdown */
.has-dropdown > a::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 5px;
  position: relative;
  top: -1px;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 120;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 9px 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-radius: 4px;
}
.dropdown a:hover {
  background: var(--off-white);
  color: var(--brick);
  text-decoration: none;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 0 auto;
  transition: all var(--transition);
}

/* --------------------------------------------------------------------- Hero */
.hero {
  background: linear-gradient(rgba(34, 34, 34, 0.78), rgba(34, 34, 34, 0.82)),
              repeating-linear-gradient(135deg, #2c2c2c 0 38px, #262626 38px 76px);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
}
.hero h1 { color: var(--white); max-width: 920px; margin: 0 auto 0.4em; font-size: 2.9rem; }
.hero .lead {
  color: var(--gray-light);
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto 1.8em;
}
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__trust {
  margin-top: 36px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--gray-light);
  font-size: 0.9rem;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust b { color: var(--brick); }

/* Page banner (interior pages) */
.page-banner {
  background: linear-gradient(rgba(34, 34, 34, 0.85), rgba(34, 34, 34, 0.88)),
              repeating-linear-gradient(135deg, #2c2c2c 0 38px, #262626 38px 76px);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.page-banner h1 { color: var(--white); margin-bottom: 0.3em; }
.page-banner p { color: var(--gray-light); max-width: 760px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 1em;
}
.breadcrumb a { color: var(--gray-light); }
.breadcrumb a:hover { color: var(--brick); }

/* ----------------------------------------------------- Image placeholders */
.img-ph {
  position: relative;
  width: 100%;
  min-height: 280px;
  background:
    repeating-linear-gradient(45deg, #ececec 0 18px, #e3e3e3 18px 36px);
  border: 2px dashed #c4c4c4;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  color: #7a7a7a;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  padding: 20px;
  overflow: hidden;
}
.img-ph::before {
  content: "🖼 IMAGE";
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #9a9a9a;
}
.img-ph span { max-width: 80%; line-height: 1.4; }
.img-ph--sm { min-height: 200px; }
.img-ph--tall { min-height: 360px; }

/* Real images that replace the placeholders */
.ph-img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  background: #ececec;
}
.feature-row__media .ph-img { height: 380px; }
.article__main .ph-img { height: 360px; margin: 1.4em 0; }
.post-card .ph-img {
  height: 200px;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
@media (max-width: 760px) {
  .feature-row__media .ph-img,
  .article__main .ph-img { height: 260px; }
}

/* ------------------------------------------------------ Alternating rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse .feature-row__media { order: 2; }
.feature-row__body h3 { font-size: 1.6rem; }
.feature-row__body .btn { margin-top: 8px; }

/* ------------------------------------------------------------- Card grids */
.grid {
  display: grid;
  gap: 26px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Icon / service cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(185, 64, 64, 0.1);
  color: var(--brick);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.2rem; }
.card p { color: var(--gray); font-size: 0.96rem; flex-grow: 1; }
.card__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
}
.card__link::after { content: " →"; }

/* ---------------------------------------------------------- Why choose us */
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.trust-item { text-align: center; padding: 10px; }
.trust-item__icon {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--brick);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
}
.trust-item h3 { font-size: 1.05rem; margin-bottom: 0.3em; }
.trust-item p { font-size: 0.88rem; color: var(--gray); margin: 0; }
.section--dark .trust-item p { color: var(--gray-light); }

/* ------------------------------------------------------------ Testimonials */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.testimonial__stars { color: #e8a020; font-size: 1.05rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial__text { font-style: italic; color: var(--charcoal-light); flex-grow: 1; }
.testimonial__author {
  display: flex; align-items: center; gap: 12px; margin-top: 16px;
}
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--charcoal); color: var(--white);
  display: grid; place-items: center;
  font-family: "Montserrat", sans-serif; font-weight: 700;
}
.testimonial__name { font-weight: 700; font-size: 0.95rem; }
.testimonial__meta { font-size: 0.82rem; color: var(--gray); }

/* -------------------------------------------------------------- FAQ blocks */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--brick);
  transition: transform var(--transition);
}
.faq-item.is-open .faq-q::after { content: "–"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a__inner { padding: 0 22px 20px; color: var(--gray); }
.faq-item.is-open .faq-a { max-height: 600px; }

/* Static FAQ (faq.html / always-open accordions still toggle) */
.faq-static .faq-a { max-height: none; }
.faq-static .faq-a__inner { padding-top: 4px; }

/* ----------------------------------------------------------- Blog content */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card .img-ph { min-height: 190px; border: none; border-radius: 0; border-bottom: 1px solid var(--border); }
.post-card__body { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; }
.post-card__date { font-size: 0.8rem; color: var(--brick); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.post-card h3 { font-size: 1.2rem; margin: 8px 0; }
.post-card p { color: var(--gray); font-size: 0.94rem; flex-grow: 1; }

/* Article body (service + blog single) */
.article {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.article__main h2 { margin-top: 1.4em; }
.article__main h3 { margin-top: 1.2em; }
.article__main ul { margin-bottom: 1.4em; }
.article__main .img-ph { margin: 1.4em 0; }
.post-meta {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.6em;
  padding-bottom: 1.2em;
  border-bottom: 1px solid var(--border);
}
.post-meta strong { color: var(--charcoal); }

.checklist { list-style: none; margin-left: 0; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.7em;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brick);
  font-weight: 700;
}

/* Sidebar */
.sidebar { position: sticky; top: 104px; }
.sidebar__box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar__box h3 { font-size: 1.1rem; }
.sidebar__box ul { list-style: none; margin: 0; }
.sidebar__box li { margin-bottom: 8px; }
.sidebar__box a { font-weight: 600; font-size: 0.94rem; }
.sidebar__cta {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}
.sidebar__cta h3 { color: var(--white); }
.sidebar__cta p { color: var(--gray-light); font-size: 0.92rem; }
.sidebar__cta .phone-lg { font-size: 1.5rem; }

/* ------------------------------------------------------------- CTA block */
.cta-block {
  background: var(--brick);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.cta-block h2 { color: var(--white); }
.cta-block p { color: rgba(255, 255, 255, 0.92); max-width: 620px; margin: 0 auto 1.5em; }
.cta-block__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.cta-block .phone-lg { color: var(--white); }
.phone-lg {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brick);
  text-decoration: none;
}
.phone-lg:hover { text-decoration: none; opacity: 0.85; }

/* Full-width CTA strip */
.cta-strip {
  background: var(--charcoal);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); }
.cta-strip p { color: var(--gray-light); max-width: 640px; margin: 0 auto 1.4em; }
.cta-strip__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ----------------------------------------------------------------- Forms */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brick);
  box-shadow: 0 0 0 3px rgba(185, 64, 64, 0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.85rem; color: var(--gray); }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 18px;
  font-weight: 600;
}
.form-success.is-visible { display: block; }
.form-error {
  display: none;
  background: #fdecea;
  border: 1px solid #f5c6c2;
  color: #a3261b;
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 18px;
  font-weight: 600;
}
.form-error.is-visible { display: block; }

/* Honeypot — visually hidden, kept in the layout flow for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Disabled/submitting button state */
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Contact split */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info ul { list-style: none; margin-left: 0; }
.contact-info li { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info__icon {
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: var(--radius);
  background: rgba(185, 64, 64, 0.1);
  color: var(--brick);
  display: grid; place-items: center; font-size: 1.2rem;
}
.contact-info h4 { margin-bottom: 2px; }
.contact-info p, .contact-info a { color: var(--gray); margin: 0; }

/* ----------------------------------------------------------- Map embed ph */
.map-ph {
  width: 100%;
  min-height: 360px;
  background:
    linear-gradient(rgba(34,34,34,0.04), rgba(34,34,34,0.04)),
    repeating-linear-gradient(0deg, #e9e9e6 0 28px, #f1f1ee 28px 56px),
    repeating-linear-gradient(90deg, #e9e9e6 0 28px, #f1f1ee 28px 56px);
  border: 2px dashed #c4c4c4;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  color: #6f6f6f;
  font-family: "Montserrat", sans-serif;
  padding: 20px;
}
.map-ph span { max-width: 460px; }
.map-ph b { display: block; font-size: 1.05rem; margin-bottom: 6px; color: var(--charcoal); }

/* Google Maps embed */
.map-embed {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow);
}
@media (max-width: 760px) {
  .map-embed { height: 320px; }
}

/* ------------------------------------------------------------------ Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--gray-light);
  padding: 60px 0 0;
}
.site-footer a { color: var(--gray-light); }
.site-footer a:hover { color: var(--brick); text-decoration: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1em;
}
.footer-col ul { list-style: none; margin: 0; }
.footer-col li { margin-bottom: 9px; font-size: 0.92rem; }
.footer-brand .brand__name { color: var(--white); }
.footer-about { font-size: 0.92rem; margin-bottom: 1em; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.92rem; }
.footer-contact-item b { color: var(--white); }
.footer-phone {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white) !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--gray); }

/* ----------------------------------------------------------------- Prose */
.prose { max-width: 820px; }
.prose h2 { margin-top: 1.5em; }
.prose ul { margin-bottom: 1.4em; }

/* Two-column intro for service overview etc. */
.intro-wide { max-width: 880px; margin: 0 auto; text-align: center; }
.intro-wide p { font-size: 1.08rem; color: var(--gray); }

/* Area chips */
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin-left: 0; }
.chip-list li {
  background: var(--off-white);
  color: var(--charcoal);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0;
}

/* ============================================================ Responsive */
@media (max-width: 980px) {
  .article { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  /* Mobile navigation */
  .nav-toggle { display: flex; }
  .header-phone__label { display: none; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 84%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    box-shadow: -6px 0 30px rgba(0,0,0,0.18);
    padding: 80px 22px 40px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 130;
  }
  .main-nav.is-open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .main-nav > ul > li > a { padding: 14px 6px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 0 0 8px 12px;
    display: none;
  }
  .dropdown.is-open { display: block; }
  .has-dropdown:hover > .dropdown { /* disable hover-open on mobile */ }
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 125;
  }
  .nav-backdrop.is-open { display: block; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  .hero { padding: 64px 0; }
  .hero h1 { font-size: 2.1rem; }
  .hero .lead { font-size: 1.05rem; }
  .section { padding: 50px 0; }
  .feature-row { grid-template-columns: 1fr; gap: 26px; margin-bottom: 44px; }
  .feature-row--reverse .feature-row__media { order: 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-block { padding: 32px 22px; }
  .header-phone__num { font-size: 1.1rem; }
  .topbar__left { gap: 14px; }
  .brand__logo { height: 52px; }
}

@media (max-width: 420px) {
  .brand__tag { display: none; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}
