/* ============================================================
   DESIGN TOKENS — The Editorial
   ============================================================ */
:root {
  --primary:        #111111;
  --primary-deep:   #2A2A2A;
  --primary-mid:    #1C1C1C;
  --accent:         #166534;
  --accent-hover:   #0F4A24;
  --text:           #111111;
  --text-muted:     #444444;
  --text-light:     rgba(255, 255, 255, 0.82);
  --text-light-dim: rgba(255, 255, 255, 0.60);
  --bg-white:       #ffffff;
  --bg-grey:        #f7f7f7;
  --bg-card:        #ffffff;
  --border:         #E5E5E5;
  --border-dark:    rgba(255, 255, 255, 0.12);
  --radius:         8px;
  --radius-lg:      12px;
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.12);
  --transition:     0.2s ease;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text);
  background: var(--bg-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; }
h2 { font-size: 40px; font-weight: 700; }
h3 { font-size: 28px; font-weight: 700; }
h4 { font-size: 20px; font-weight: 700; }

p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--text); }

/* Dark section overrides */
.dark-bg strong { color: rgba(255,255,255,0.95); font-weight: 700; }
.dark-bg a:not(.btn) { color: var(--accent); }
.dark-bg p { color: var(--text-light); }
.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4 { color: #ffffff; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.bg-white { background: var(--bg-white); }
.bg-grey  { background: var(--bg-grey); }

.section { padding: 80px 0; }
.section--sm { padding: 50px 0; }
.section--lg { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header--left {
  text-align: left;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 17px; color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.section-header--left p { margin: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  padding: 13px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  line-height: 1.3;
  white-space: normal;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }

.btn--accent {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.btn--accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #ffffff; }

.btn--outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline-dark:hover { background: var(--primary); color: #fff; }

.btn--lg { font-size: 17px; padding: 16px 36px; white-space: normal; text-align: center; line-height: 1.3; }
.btn--sm { font-size: 13px; padding: 9px 18px; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--primary-deep);
  padding: 8px 0;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 199;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.topbar__phone a { color: #ffffff; }

.topbar__phone svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  flex-shrink: 0;
}

.topbar__badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.topbar__badge::before {
  content: '✔';
  color: var(--accent);
  font-size: 11px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  transition: box-shadow var(--transition);
}

#main {
  padding-top: 136px;
}

#main-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.10); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 20px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav__item { position: relative; }

.nav__item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav__item > a:hover { background: var(--bg-grey); color: var(--primary-deep); }

.nav__item--dropdown > a::after {
  content: '▾';
  font-size: 10px;
  margin-left: 2px;
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 10px;
  min-width: 560px;
  column-count: 2;
  column-gap: 4px;
  z-index: 300;
}

.nav__dropdown.open { display: block; }

.nav__dropdown a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  padding: 7px 12px;
  border-radius: 6px;
  break-inside: avoid;
  transition: background var(--transition);
}

.nav__dropdown a:hover { background: var(--bg-grey); color: var(--primary); }

.nav__cta {
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__mobile-cta { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(17, 17, 17, 0.50) 55%,
    rgba(42, 42, 42, 0.30) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  padding: 60px 24px;
}

.hero__content { max-width: 620px; }
.hero__content--center { max-width: 780px; margin: 0 auto; text-align: center; }
.hero__content--center .hero__btns { justify-content: center; }

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero__p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}

.hero__trust-item::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Hero aside / estimate form */
.hero__aside {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(4px);
}

.hero__aside-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.hero__aside-sub {
  font-size: 13px;
  color: var(--text-light-dim);
  margin-bottom: 24px;
}

.hero__form { display: flex; flex-direction: column; gap: 12px; }

.hero__field {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  color: #ffffff;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}

.hero__field::placeholder { color: rgba(255,255,255,0.45); }
.hero__field:focus { border-color: var(--accent); }

.hero__form-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 14px;
  margin-top: 4px;
}

/* ============================================================
   TRUST / STAT BAR
   ============================================================ */
.stat-bar {
  background: var(--primary-deep);
  padding: 0;
}

.stat-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-bar__item {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-bar__item:last-child { border-right: none; }

.stat-bar__icon {
  font-size: 24px;
  margin-bottom: 6px;
  display: block;
}

.stat-bar__label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.stat-bar__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
  font-weight: 500;
}

/* ============================================================
   ABOUT / IICRC SECTION
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-split__text h2 { margin-bottom: 20px; }
.about-split__text p  { font-size: 16px; color: var(--text); margin-bottom: 16px; }

.about-split__stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.about-split__stat {
  background: var(--bg-grey);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.about-split__quote {
  background: var(--bg-grey);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 24px;
}

.about-split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-grey);
}

.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-grey);
  color: var(--text-muted);
  font-size: 14px;
  border-radius: var(--radius-lg);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.service-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: var(--bg-grey);
}

.service-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background: var(--bg-grey);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.service-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.service-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.service-card:hover .service-card__link { gap: 8px; }

.services-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   LOCAL TEAM / WHY US SECTION
   ============================================================ */
.why-us-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-us-split--reversed .why-us-split__image { order: -1; }

.why-us-split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.why-us-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-split__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border);
  color: var(--text-muted);
  font-size: 14px;
  border-radius: var(--radius-lg);
}

.why-us__reasons { display: flex; flex-direction: column; gap: 28px; }

.why-us__reason-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-us__reason-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.why-us__reason p { font-size: 15px; color: var(--text); margin: 0; }

.why-us__footer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.why-us__footer-stat {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-grey);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ============================================================
   BEFORE / AFTER CAROUSEL
   ============================================================ */
.ba-carousel {
  position: relative;
}

.ba-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.ba-carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ba-carousel__slide {
  flex: 0 0 100%;
  background: #fff;
}

.ba-carousel__slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.ba-carousel__img-placeholder {
  width: 100%;
  height: 420px;
  background: var(--bg-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  font-family: var(--font-body);
}

.ba-carousel__caption {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-body);
  border-top: 1px solid var(--border);
  background: #fff;
}

.ba-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition);
  color: var(--primary);
  z-index: 10;
}

.ba-carousel__btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.ba-carousel__btn--prev { left: -22px; }
.ba-carousel__btn--next { right: -22px; }

.ba-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
}

.ba-carousel__dots {
  display: flex;
  gap: 6px;
}

.ba-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.ba-carousel__dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.ba-carousel__counter {
  font-size: 13px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  font-family: var(--font-body);
}

@media (max-width: 640px) {
  .ba-carousel__split { height: 260px; }
  .ba-carousel__btn--prev { left: -10px; }
  .ba-carousel__btn--next { right: -10px; }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--accent);
  opacity: 0.4;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-note {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.process-note a { color: var(--accent); font-weight: 600; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 600px;
}

.pricing-table thead tr {
  background: var(--primary);
  color: #ffffff;
}

.pricing-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-table tbody tr:nth-child(even) { background: var(--bg-grey); }
.pricing-table tbody tr:nth-child(odd)  { background: var(--bg-card); }

.pricing-table td {
  padding: 14px 18px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.pricing-table td:first-child { font-weight: 600; color: var(--primary); }
.pricing-table td:nth-child(2) { color: var(--primary); font-weight: 700; white-space: nowrap; }

.pricing-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.pricing-note a { color: var(--accent); font-weight: 600; }

/* ============================================================
   INSURANCE SECTION
   ============================================================ */
.insurance-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
}

.insurance-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.insurance-item__num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
}

.insurance-item__body { flex: 1; }

.insurance-item__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.insurance-item__body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   COMMON PROBLEMS
   ============================================================ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
}

.problem-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.problem-card__title::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.problem-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

.problem-card a { color: var(--accent); font-weight: 600; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.areas__city {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.areas__zips {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
}

.areas-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.areas-split__left h2 { margin-bottom: 16px; }
.areas-split__left p  { margin-bottom: 24px; color: var(--text-muted); line-height: 1.7; }

.areas-split__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.areas__zips strong { color: var(--text); }

/* ============================================================
   TIMELINE — WHAT HAPPENS IF YOU WAIT
   ============================================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.timeline__step {
  padding: 28px 22px;
  border-right: 1px solid var(--border);
  position: relative;
}

.timeline__step:last-child { border-right: none; }

.timeline__step:nth-child(1) { background: #FFF8E7; }
.timeline__step:nth-child(2) { background: #FFF1CC; }
.timeline__step:nth-child(3) { background: #FFE0A3; }
.timeline__step:nth-child(4) { background: #FFCB6B; }

.timeline__time {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7A5C00;
  margin-bottom: 8px;
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #3D2E00;
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: 13px;
  color: #5C4500;
  line-height: 1.6;
  margin: 0;
}

.timeline-cta {
  text-align: center;
  margin-top: 36px;
}

/* ============================================================
   WHAT MAKES MARIETTA DIFFERENT
   ============================================================ */
.marietta-diff {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.marietta-diff__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-top: 4px solid var(--accent);
}

.marietta-diff__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.marietta-diff__desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-grey); }

.faq-question__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--primary-deep);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--primary-deep);
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--text-light);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 36px;
}

.final-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta__nap {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
  color: var(--text-light-dim);
  line-height: 1.8;
}

.final-cta__nap strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--bg-grey);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '›';
  margin-right: 6px;
  color: var(--text-muted);
  font-size: 15px;
}

.breadcrumb__link {
  color: var(--accent);
  font-weight: 500;
}

.breadcrumb__link:hover { text-decoration: underline; }

.breadcrumb__item--current {
  color: var(--text);
  font-weight: 500;
}

/* ============================================================
   SERVICE PAGES — SHARED
   ============================================================ */
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  counter-reset: steps;
}

.steps-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  line-height: 1.6;
  counter-increment: steps;
}

.steps-list li::before {
  content: counter(steps);
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.timeline-damage {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.timeline-damage__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-damage__item:last-child { border-bottom: none; }

.timeline-damage__time {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 2px;
}

/* ============================================================
   OUR PROCESS PAGE
   ============================================================ */
.process-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.process-overview__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.process-overview__num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.process-overview__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  max-width: 90px;
  line-height: 1.3;
}

.process-overview__arrow {
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
  margin-top: -18px;
  padding: 0 2px;
}

.process-detail {
  max-width: 900px;
  margin: 0 auto;
}

.process-detail__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.process-detail__num {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
}

.process-detail__title {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}

.process-detail__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}

.process-detail__body h3 {
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 24px;
  color: var(--text);
}

.process-detail__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 24px;
}

.process-detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-detail__list li {
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
  font-size: 15px;
}

.process-detail__list li::before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.process-detail__note {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--bg-grey);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.mid-cta {
  background: var(--primary-deep);
  padding: 24px 0;
}

.mid-cta .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mid-cta p {
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.expect-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.expect-item:last-child { border-bottom: none; }

.expect-item__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.equipment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.equipment-table th {
  background: var(--primary);
  color: #ffffff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
}

.equipment-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

.equipment-table td:first-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  width: 40%;
}

.equipment-table tr:nth-child(even) td { background: var(--bg-grey); }
.equipment-table tr:hover td { background: rgba(22,101,52,0.05); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--bg-grey);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-top: 3px solid var(--accent);
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.cert-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cert-list li {
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.cert-list li::before {
  content: '✔';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 13px;
  top: 3px;
}

/* ============================================================
   MOLD TYPES
   ============================================================ */
.mold-types {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mold-type {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.mold-type:last-child { border-bottom: none; }

.mold-type__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.mold-type__meta {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap h2,
.contact-info h2 { margin-bottom: 12px; }
.contact-form { margin-top: 24px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text); }
.form-required { color: #b91c1c; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: -8px; }
.form-note a { color: var(--accent); }
.contact-info { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 40px 36px; }
.contact-info__item { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
.contact-info__item:first-of-type { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.contact-info__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info__value { font-size: 17px; font-weight: 600; color: var(--text); display: block; }
.contact-info__phone { font-size: 22px; color: var(--accent); }
.contact-info__sub { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.contact-info__note {
  margin-top: 28px;
  padding: 16px 18px;
  background: #fef2f2;
  border-left: 3px solid #b91c1c;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
}

@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { order: -1; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-info { padding: 28px 20px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary-deep);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer__brand-name span { color: var(--accent); }

.footer__brand-desc {
  font-size: 14px;
  color: var(--text-light-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__brand-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer__links { display: flex; flex-direction: column; gap: 8px; }

.footer__links a {
  font-size: 14px;
  color: var(--text-light-dim);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--accent); }

.footer__hours {
  font-size: 14px;
  color: var(--text-light-dim);
  line-height: 1.75;
}

.footer__hours strong { color: rgba(255,255,255,0.8); font-weight: 600; display: block; margin-bottom: 4px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer__bottom-links a:hover { color: var(--accent); }

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: block;
}

.float-call a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 40px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-call a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201, 168, 76, 0.55);
}

/* ============================================================
   PROJECT CAROUSEL
   ============================================================ */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--primary);
  margin-bottom: 20px;
}

.carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel__slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  background: #1a1a1a;
  overflow: hidden;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.carousel__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1a1a1a;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}

.carousel__placeholder-icon { font-size: 32px; opacity: 0.4; }

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10;
  line-height: 1;
}

.carousel__btn:hover { background: var(--accent); border-color: var(--accent); }
.carousel__btn--prev { left: 14px; }
.carousel__btn--next { right: 14px; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.carousel__dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.carousel__counter {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================================
   PLACEHOLDER PAGES
   ============================================================ */
.page-placeholder {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  padding: 80px 24px;
}

.page-placeholder h1 { color: var(--primary); }
.page-placeholder p  { color: var(--text-muted); font-size: 17px; }

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3)::after { display: none; }
}

/* ============================================================
   RESPONSIVE — 960px
   ============================================================ */
@media (max-width: 960px) {
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }

  .nav__links  { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #ffffff; padding: 16px; box-shadow: var(--shadow-md); z-index: 300; gap: 4px; }
  .nav__links.open { display: flex; }
  .nav__item { width: 100%; }
  .nav__item > a { width: 100%; padding: 12px 16px; border-radius: var(--radius); }
  .nav__dropdown { position: static; box-shadow: none; border: none; background: var(--bg-grey); border-radius: var(--radius); column-count: 1; min-width: unset; margin-top: 4px; }
  .nav__dropdown.open { display: block; }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }
  .nav__mobile-cta { display: block; margin-top: 8px; width: 100%; }
  .nav__mobile-cta .btn { width: 100%; justify-content: center; }
  .nav__inner { height: 72px; }
  .nav__logo-img { height: 72px; }
  .topbar { top: 72px; }
  #main { padding-top: 108px; }

  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__aside { display: none; }
  .hero { min-height: auto; }
  .hero__inner { padding: 60px 24px; }

  .stat-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-bar__item:nth-child(2) { border-right: none; }

  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .about-split__image { order: -1; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-us-split { grid-template-columns: 1fr; gap: 36px; }
  .why-us-split--reversed .why-us-split__image { order: 0; }

  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-step::after { display: none; }

  .areas-split { grid-template-columns: 1fr; }
  .areas-split__map { height: 300px; position: static; }

  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline__step { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .timeline__step:last-child { border-bottom: none; }

  .marietta-diff { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .section-header { margin-bottom: 36px; }
}

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */
@media (max-width: 640px) {
  h2 { font-size: 26px; }
  h3 { font-size: 21px; }

  .section { padding: 56px 0; }
  .section--lg { padding: 64px 0; }

  .topbar__badges { display: none; }
  .topbar__inner { justify-content: center; }

  .stat-bar__grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }

  .problems-grid { grid-template-columns: 1fr; }

  .insurance-item { gap: 20px; }
  .insurance-item__num { font-size: 28px; min-width: 40px; }

  .timeline { grid-template-columns: 1fr; }

  .marietta-diff { grid-template-columns: 1fr; }

  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }

  .final-cta h2 { font-size: 26px; }
  .final-cta__btns { flex-direction: column; align-items: stretch; }
  .final-cta__btns .btn { width: 100%; justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }

  .float-call { display: block; }

  .faq-question { font-size: 15px; padding: 16px 18px; }
  .faq-answer  { padding: 0 18px 16px; padding-top: 12px; }

  .about-split__stats { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr !important; }
  .timeline-damage__item { grid-template-columns: 1fr; gap: 8px; }
  .process-detail__cols { grid-template-columns: 1fr; gap: 0; }
  .process-detail__header { flex-direction: column; gap: 12px; }
  .process-overview__arrow { display: none; }
  .process-overview { gap: 12px; justify-content: flex-start; }
  .mid-cta .container { flex-direction: column; gap: 14px; text-align: center; }
  .equipment-table td:first-child { white-space: normal; width: auto; }

  /* Force all inline grid-column overrides to stack on small screens */
  .mold-types,
  .mold-type__meta { display: block; }
  .mold-type { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
  .mold-type:last-child { border-bottom: none; }
}

/* ============================================================
   RESPONSIVE — 400px
   ============================================================ */
@media (max-width: 400px) {
  .process-steps { grid-template-columns: 1fr; }
  .stat-bar__grid { grid-template-columns: 1fr 1fr; }
}
