/* ============================================================
   Lantern & Shield Property Inspections
   Classic Professional — Mobile First
   Pikes Peak Web Designs
   ============================================================ */

/* --- DESIGN TOKENS ---------------------------------------- */
:root {
  /* Primary colors from logo */
  --slate:        #2D4A5B;
  --slate-dark:   #1C3040;
  --slate-mid:    #3D5F73;
  --red:          #C0392B;
  --red-hover:    #A93226;

  --white:        #FFFFFF;
  --cream:        #F7F7F5;
  --warm-gray:    #EEECEA;
  --rule:         #D8D5D1;
  --rule-light:   #E8E6E3;

  /* Text — all checked for AA contrast */
  --ink:          #1A1A18;   /* headings on white: 16.7:1 */
  --body:         #2E2E2C;   /* body text on white: 13.5:1 */
  --muted:        #595955;   /* supporting text on white: 7.2:1 */
  --on-dark:      rgba(255,255,255,.88);  /* text on slate-dark */
  --on-dark-sub:  rgba(255,255,255,.68);  /* secondary on slate-dark */
  --placeholder:  #888884;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --container:    1120px;
  --pad:          1.25rem;
  --section:      4.5rem;
  --radius:       3px;

  /* Aliases */
  --border:       #D8D5D1;   /* alias for --rule */
  --text:         #2E2E2C;   /* alias for --body */
  --navy:         #1C3040;   /* alias for --slate-dark */

  /* Shadow */
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07);
  --shadow:       0 2px 10px rgba(0,0,0,.09);
}

/* --- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* --- UTILITIES --------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: var(--section) 0; }
.section--cream { background: var(--cream); }
.section--slate  { background: var(--slate-dark); color: var(--white); }

/* Dark section text overrides */
.section--slate .section-title,
.section--slate h2,
.section--slate h3 { color: var(--white); }
.section--slate .section-sub,
.section--slate p { color: var(--on-dark-sub); }
.section--slate li { color: var(--on-dark-sub); }
.section--slate .section-rule { background: var(--red); }
/* btn-outline on dark backgrounds — switch to light variant behavior */
.section--slate .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.section--slate .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Standards page — division header */
.standards-division-header { text-align: center; margin-bottom: 2.5rem; }
.standards-division-label {
  display: inline-block; font-size: .65rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: .2rem .65rem; border-radius: 2px; margin-bottom: .5rem;
}
.standards-division-label--light { background: rgba(255,255,255,.15); color: var(--white); }
.section-eyebrow--light { color: rgba(255,255,255,.55); }
.section-title--light { color: var(--white); }
.section-sub--light { color: var(--on-dark-sub); }

/* Commercial standard-section variant — slate top border */
.standard-section--commercial { border-top-color: var(--red); }

/* Jump-link nav */
.standards-nav-links { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.5rem; }

/* Read-more link row */
.standards-read-more { display: flex; }

/* value-card dark variant */
.value-card--dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  border-top-color: var(--red);
}
.value-card--dark h3 { color: var(--white); }
.value-card--dark p { color: var(--on-dark-sub); }

/* Section header */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: .75rem;
}
.section--slate .section-title { color: var(--white); }
.section-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 1.25rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.75;
}
.section--slate .section-sub { color: var(--on-dark-sub); }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* --- BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .75rem 1.75rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn-secondary {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
}
.btn-secondary:hover { background: var(--slate-dark); border-color: var(--slate-dark); }
.btn-outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate);
}
.btn-outline:hover { background: var(--slate); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-lg { padding: .875rem 2.25rem; font-size: .9rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .78rem; }
.btn-block { width: 100%; justify-content: center; }

/* --- HEADER ----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.13);
  border-bottom-color: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: .65rem;
  padding-bottom: .65rem;
  transition: padding .25s ease;
}
.site-header.scrolled .header-inner {
  padding-top: .35rem;
  padding-bottom: .35rem;
}
.site-header.scrolled .site-logo-img {
  width: 44px;
  height: 44px;
}
.site-header.scrolled .logo-name { font-size: 1rem; }
.site-header.scrolled .logo-sub  { font-size: .62rem; }

/* Logo — shared styles used in header & footer */
.site-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
  transition: width .25s ease, height .25s ease;
}
.logo-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: .1rem;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Desktop nav — hidden until wide breakpoint */
.site-nav { display: none; margin-left: auto; }
.nav-list { display: flex; align-items: center; flex-wrap: nowrap; gap: 0; }
.nav-link {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--body);
  padding: .45rem .6rem;
  white-space: nowrap;
  border-radius: var(--radius);
  transition: color .15s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: .6rem;
  right: .6rem;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after,
.nav-link--active::after { transform: scaleX(1); }
.nav-link--active { color: var(--ink); }

/* Dropdown nav */
.nav-item--has-children { position: relative; }
.nav-link--parent { display: flex; align-items: center; gap: .25rem; }
.nav-chevron { flex-shrink: 0; transition: transform .2s; }
.nav-item--has-children:hover .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 150px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  z-index: 500;
}
.nav-item--has-children:hover .nav-dropdown,
.nav-item--has-children:focus-within .nav-dropdown { display: block; }
.nav-dropdown-link {
  display: block;
  padding: .6rem 1rem;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--body);
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-dropdown-link:hover,
.nav-dropdown-link--active { color: var(--ink); background: var(--cream); }

/* Service areas dropdown — 2-column grid */
.nav-dropdown--areas {
  display: none;
  columns: 2;
  min-width: 280px;
}
.nav-dropdown--areas li { break-inside: avoid; }
.nav-item--has-children:hover .nav-dropdown--areas,
.nav-item--has-children:focus-within .nav-dropdown--areas { display: block; }

/* Mobile child links — indented under parent */
.mobile-nav-link--child {
  padding-left: calc(var(--pad) + 1.25rem);
  font-size: .82rem;
  color: var(--muted);
  border-bottom-color: transparent;
  border-top: 1px solid var(--rule);
}
.mobile-nav-link--child:first-of-type { border-top: none; }

/* Nav actions — phone + book button */
.nav-actions {
  display: none;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  margin-left: .5rem;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--slate);
  white-space: nowrap;
  border: 1.5px solid var(--slate);
  border-radius: var(--radius);
  padding: .35rem .75rem;
  transition: color .15s, border-color .15s, background .15s;
  text-decoration: none;
}
.nav-phone:hover {
  color: var(--white);
  background: var(--slate);
  border-color: var(--slate);
}
.nav-book {
  white-space: nowrap;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  color: var(--ink);
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .25s, opacity .2s;
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--rule); }
.mobile-nav.is-open { display: block; }
.mobile-nav-list { padding: .5rem 0 1rem; }
.mobile-nav-link {
  display: block;
  padding: .85rem var(--pad);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--body);
  border-bottom: 1px solid var(--rule-light);
  transition: color .12s, background .12s;
}
.mobile-nav-link:hover { color: var(--ink); background: var(--cream); }
.mobile-nav-link--book {
  color: var(--white);
  background: var(--red);
  border-bottom: none;
  margin: .5rem var(--pad) 0;
  text-align: center;
  border-radius: var(--radius);
}
.mobile-nav-link--book:hover { background: var(--red-hover); color: var(--white); }
.mobile-nav-link--cta {
  color: var(--red);
  border-bottom: none;
  margin-top: .35rem;
}

/* --- HERO -------------------------------------------------- */
.hero {
  background: var(--slate-dark);
  color: var(--white);
  padding: 5rem 0 4.5rem;
  border-bottom: 3px solid var(--red);
}
.hero-content { max-width: 620px; }
.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--on-dark-sub);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--on-dark-sub); }
.hero-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--red);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--on-dark-sub);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-trust-item {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--on-dark-sub);
  padding-left: .9rem;
  position: relative;
}
.hero-trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

/* --- STATS BAR -------------------------------------------- */
.stats-bar { background: var(--slate); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.stat {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.stat:nth-child(2n) { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* --- SERVICES GRID ---------------------------------------- */
.services-grid { display: grid; gap: 0; border: 1px solid var(--rule); }
.service-card {
  padding: 2rem 1.75rem;
  border-bottom: 1px solid var(--rule);
  transition: background .18s;
}
.service-card:last-child { border-bottom: none; }
.service-card:hover { background: var(--cream); }
.service-card-icon {
  width: 40px;
  height: 40px;
  color: var(--slate);
  margin-bottom: 1rem;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .55rem;
}
.service-card-desc {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-card-link {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--red);
}
.service-card-link:hover { color: var(--red-hover); }

/* --- WHY US ----------------------------------------------- */
.why-grid { display: grid; gap: 3rem; }
.why-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  border-left: 3px solid var(--red);
  padding: .75rem 1.25rem;
  margin: 1.75rem 0 .4rem;
  line-height: 1.65;
  background: var(--cream);
}
.why-attr {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em;
  margin-bottom: 2rem;
  padding-left: 1.25rem;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.why-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: .25rem;
  color: var(--red);
}
.why-list strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .25rem;
}
.why-list p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* Why visual */
.why-visual { display: flex; flex-direction: column; gap: 1.25rem; }
.why-panel {
  background: var(--slate-dark);
  color: var(--white);
  padding: 2rem 1.75rem;
  text-align: center;
  border-top: 3px solid var(--red);
}
.why-panel-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  filter: brightness(0) invert(1) opacity(.85);
}
.why-panel h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
}
.why-panel p { font-size: .88rem; color: var(--on-dark-sub); line-height: 1.65; }
.why-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.why-stat {
  background: var(--white);
  padding: 1.25rem .75rem;
  text-align: center;
}
.why-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .25rem;
}
.why-stat span {
  font-size: .68rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* --- INSPECT GRID ----------------------------------------- */
.inspect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.inspect-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--white);
  padding: .85rem 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--body);
  transition: background .15s;
}
.inspect-item:hover { background: var(--cream); }
.inspect-item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* --- AREA TAGS -------------------------------------------- */
.area-section { text-align: center; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.area-tag {
  color: var(--slate);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border: 1.5px solid var(--slate);
  border-radius: 2px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.area-tag--more {
  background: var(--slate);
  color: var(--white);
}
.area-tags--sm .area-tag { font-size: .7rem; padding: .25rem .7rem; }
.area-note { font-size: .9rem; color: var(--muted); }
.area-note a { color: var(--red); font-weight: 700; }
.area-note a:hover { text-decoration: underline; }

/* --- SERVICE AREAS ---------------------------------------- */
.service-areas-grid {
  display: grid; gap: 1.25rem;
}
.service-area-card {
  display: block; text-decoration: none;
  border: 1px solid var(--rule); border-top: 3px solid var(--slate);
  transition: border-top-color .15s, box-shadow .15s;
}
.service-area-card:hover { border-top-color: var(--red); box-shadow: var(--shadow); }
.service-area-card-inner { padding: 1.5rem; }
.service-area-card-name {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin-bottom: .2rem;
}
.service-area-card-county {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .75rem;
}
.service-area-card-blurb { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: .75rem; }
.service-area-card-link { font-size: .82rem; font-weight: 700; color: var(--red); }
.area-service-link {
  display: inline-block; margin-top: .75rem;
  font-size: .82rem; font-weight: 700; color: var(--red); text-decoration: none;
}
.area-service-link:hover { text-decoration: underline; }

/* --- CTA SECTION ------------------------------------------ */
.cta-section { background: var(--slate-dark); border-top: 3px solid var(--red); }
.cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-sub { font-size: 1.0625rem; color: var(--on-dark-sub); margin-bottom: 2rem; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* --- PAGE HERO -------------------------------------------- */
.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 3rem 0 2.75rem;
}
.page-hero-inner {
  border-left: 3px solid var(--red);
  padding-left: 1.5rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem;
}
.page-hero-sub { font-size: 1.0625rem; color: var(--muted); }

/* --- SERVICE DETAIL --------------------------------------- */
.service-detail { border-bottom: 1px solid var(--rule); }
.service-detail-grid { display: grid; gap: 3rem; }
.service-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}
.service-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.service-detail-content p { color: var(--muted); margin-bottom: .9rem; line-height: 1.75; }
.division-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.service-detail-content ul.feature-list {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: .45rem;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .93rem; color: var(--body);
}
.feature-list li::before {
  content: '—'; color: var(--red); flex-shrink: 0; font-weight: 700; line-height: 1.6;
}
.service-note {
  font-size: .88rem; color: var(--muted); font-style: italic;
  border-left: 2px solid var(--rule); padding-left: .85rem; margin-bottom: 1.25rem;
}
.service-sub-h3 {
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink); margin: 1.5rem 0 .65rem;
}
.service-detail-panel {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 1.75rem;
}
.service-detail-panel h3 {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--rule);
}
.check-list { display: flex; flex-direction: column; gap: .6rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .9rem; color: var(--body); line-height: 1.5;
}
.check-list li::before {
  content: '✓'; flex-shrink: 0; font-weight: 700; color: var(--red); margin-top: .05rem;
}
.tech-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--slate);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.tech-card:last-child { margin-bottom: 0; }
.tech-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: .4rem;
}
.tech-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* --- ABOUT PAGE ------------------------------------------- */
.about-grid { display: grid; gap: 3rem; }
.about-photo-wrap {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem;
}
.about-photo-placeholder {
  width: 100%; background: var(--warm-gray); border: 1px solid var(--rule);
  aspect-ratio: 4/5; display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--placeholder);
  gap: .75rem; font-size: .85rem; text-align: center; padding: 1.5rem;
}
.about-credentials {
  width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem;
}
.credential-badge {
  display: flex; align-items: center; gap: .6rem;
  background: var(--cream); border: 1px solid var(--rule);
  border-left: 3px solid var(--slate);
  padding: .75rem .9rem;
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
}
.mark-credentials {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--slate);
}
.mark-credentials h3 {
  font-family: var(--font-display); font-size: .9rem; font-weight: 700;
  color: var(--ink); margin-bottom: .9rem; text-transform: uppercase;
  letter-spacing: .07em; font-style: normal;
}
.mark-credentials-list { display: flex; flex-direction: column; gap: .75rem; }
.mark-credentials-list li { display: flex; flex-direction: column; gap: .1rem; }
.mark-credentials-list strong { font-size: .9rem; color: var(--ink); }
.mark-credentials-list span { font-size: .82rem; color: var(--muted); }

.cert-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.cert-gallery img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--rule); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.cert-placeholder {
  display: flex; align-items: center; justify-content: center;
  min-height: 160px; border: 2px dashed var(--rule);
  border-radius: var(--radius);
  font-size: .82rem; color: var(--muted);
  grid-column: 1 / -1;
}

.about-lead {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 400;
  font-style: italic; color: var(--ink); margin-bottom: 1.25rem; line-height: 1.65;
}
.about-content p { color: var(--muted); margin-bottom: .9rem; line-height: 1.75; }
.about-quote {
  border-left: 3px solid var(--red); padding: 1rem 1.25rem;
  margin: 1.75rem 0; background: var(--cream);
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--ink); font-style: italic; line-height: 1.65;
}
.about-quote cite {
  display: block; font-size: .75rem; font-weight: 700; font-style: normal;
  color: var(--muted); margin-top: .6rem; letter-spacing: .07em; text-transform: uppercase;
}
.values-grid { display: grid; gap: 1.5rem; }
.value-card {
  padding: 1.75rem; border-top: 2px solid var(--red);
  border-left: 1px solid var(--rule); border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.value-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--ink); margin-bottom: .6rem;
}
.value-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* --- REPORTS PAGE ----------------------------------------- */
.report-intro-grid { display: grid; gap: 3rem; }
.report-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin: 1.75rem 0;
}
.report-stat { background: var(--white); padding: 1.5rem .75rem; text-align: center; }
.report-stat-num {
  display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
  color: var(--ink); line-height: 1; margin-bottom: .35rem;
}
.report-stat-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--muted);
}
.report-features { background: var(--cream); border: 1px solid var(--rule); padding: 1.75rem; }
.report-features h3 {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--rule);
}
.process-steps { display: grid; gap: 1.5rem; }
.process-step {
  padding: 1.75rem 1.5rem; border: 1px solid var(--rule); border-top: 2px solid var(--slate);
}
.process-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: var(--rule); line-height: 1; margin-bottom: .5rem; user-select: none;
}
.process-step h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--ink); margin-bottom: .4rem;
}
.process-step p { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.process-arrow { display: none; }
.sample-report-cta {
  border: 1px solid var(--rule); border-top: 3px solid var(--slate);
  padding: 2.5rem; display: grid; gap: 1.5rem; text-align: center;
}
.sample-report-text h2 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--ink); margin-bottom: .5rem;
}
.sample-report-text p { font-size: .93rem; color: var(--muted); }
.sample-report-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* --- CONTACT PAGE ----------------------------------------- */
.contact-grid { display: grid; gap: 3rem; }
.contact-info-title {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--ink);
  margin-bottom: .5rem; padding-bottom: .75rem; border-bottom: 1px solid var(--rule);
}
.contact-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 0; border-bottom: 1px solid var(--rule-light);
}
.contact-card-icon { flex-shrink: 0; width: 36px; height: 36px; color: var(--slate); }
.contact-card-text { display: flex; flex-direction: column; gap: .2rem; }
.contact-card-text strong {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.contact-card-text small { font-size: .78rem; color: var(--placeholder); }
.contact-phone {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ink);
}
.contact-email { font-size: .95rem; color: var(--body); font-weight: 600; word-break: break-all; }
.contact-service-areas { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
.contact-service-areas h3 {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .85rem;
}
.contact-form-wrap { background: var(--cream); border: 1px solid var(--rule); padding: 2rem 1.75rem; }
.contact-form-title {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--ink); margin-bottom: .3rem;
}
.contact-form-sub {
  font-size: .9rem; color: var(--muted);
  margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--rule);
}
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; gap: 1rem; }
.form-label {
  display: block; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--body); margin-bottom: .4rem;
}
.form-label span { color: var(--red); }
.form-input {
  width: 100%; padding: .7rem 1rem; font-family: var(--font-body);
  font-size: .95rem; color: var(--ink); background: var(--white);
  border: 1px solid var(--rule); border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s; appearance: none;
}
.form-input:focus {
  outline: none; border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(45,74,91,.1);
}
.form-input::placeholder { color: var(--placeholder); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23595955' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-privacy { font-size: .78rem; color: var(--placeholder); text-align: center; margin-top: .85rem; }
.form-error { border-color: var(--red) !important; box-shadow: 0 0 0 3px rgba(192,57,43,.1) !important; }
.contact-book-cta {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--rule); text-align: center;
}
.contact-book-cta p { font-size: .9rem; color: var(--muted); margin-bottom: .75rem; }

/* --- YOUR INSPECTION PAGE --------------------------------- */
.inspection-intro { display: grid; gap: 3rem; }
.inspection-intro-content p { color: var(--muted); margin-bottom: .9rem; line-height: 1.75; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex; gap: 1.25rem; padding-bottom: 2rem; position: relative;
}
.timeline-item::before {
  content: ''; position: absolute; left: 18px; top: 38px;
  width: 1px; height: calc(100% - 20px); background: var(--rule);
}
.timeline-item:last-child::before { display: none; }
.timeline-num {
  flex-shrink: 0; width: 38px; height: 38px;
  background: var(--slate-dark); color: var(--white);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; position: relative; z-index: 1;
}
.timeline-body h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--ink); margin-bottom: .4rem; padding-top: .35rem;
}
.timeline-body p { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.prep-grid { display: grid; gap: 1.25rem; }
.prep-card {
  background: var(--cream); border: 1px solid var(--rule);
  border-left: 3px solid var(--slate); padding: 1.5rem;
}
.prep-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: .6rem;
}
.prep-card p, .prep-card ul { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.prep-card ul { padding-left: 1rem; list-style: disc; margin-top: .4rem; display: flex; flex-direction: column; gap: .2rem; }
.standards-grid { display: grid; gap: 1.25rem; }
.standard-section {
  background: var(--white); border: 1px solid var(--rule);
  border-top: 3px solid var(--slate); padding: 1.5rem;
}
.standard-section h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: .75rem;
}

.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  font-family: var(--font-body); font-size: .95rem; font-weight: 700;
  color: var(--ink); cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; transition: background .15s;
}
.faq-question:hover { background: var(--cream); }
.faq-question[aria-expanded="true"] { background: var(--cream); color: var(--red); }
.faq-icon { flex-shrink: 0; transition: transform .2s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; }
.faq-answer.is-open { display: block; }
.faq-answer p { font-size: .93rem; color: var(--muted); line-height: 1.7; }

/* --- COMMERCIAL PAGE -------------------------------------- */
.commercial-intro { display: grid; gap: 3rem; }
.commercial-intro p { color: var(--muted); margin-bottom: .9rem; line-height: 1.75; }
.property-types-grid { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.property-type {
  background: var(--white); padding: 1.25rem 1.5rem;
  transition: background .15s;
}
.property-type:hover { background: var(--cream); }
.property-type h3 {
  font-family: var(--font-body); font-size: .88rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-bottom: .25rem;
}
.property-type p { font-size: .85rem; color: var(--muted); }
.callout-box {
  background: var(--slate-dark); color: var(--white);
  border-top: 3px solid var(--red); padding: 2rem 1.75rem;
}
.callout-box h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: .75rem;
}
.callout-box p { font-size: .93rem; color: var(--on-dark-sub); margin-bottom: 1.25rem; line-height: 1.7; }

/* --- ENVIRONMENTAL PAGE ----------------------------------- */
.env-intro { display: grid; gap: 3rem; }
.env-intro p { color: var(--muted); margin-bottom: .9rem; line-height: 1.75; }
.concern-grid { display: grid; gap: 1.5rem; }
.concern-card {
  padding: 1.75rem; border: 1px solid var(--rule); border-top: 2px solid var(--slate);
}
.concern-card h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--ink); margin-bottom: .5rem;
}
.concern-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.disclaimer-box {
  background: var(--cream); border: 1px solid var(--rule);
  border-left: 3px solid var(--slate); padding: 1.5rem;
  font-size: .88rem; color: var(--muted); line-height: 1.7;
}
.disclaimer-box strong { color: var(--ink); }

/* --- BOOKING PAGE ----------------------------------------- */
.booking-layout { display: grid; gap: 2rem; }
.booking-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.booking-info-card {
  background: var(--cream); border: 1px solid var(--rule);
  border-left: 3px solid var(--slate); padding: 1.5rem;
}
.booking-info-card h2 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: .6rem;
}
.booking-info-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.booking-phone {
  display: inline-block; margin-top: .5rem;
  font-size: 1rem; font-weight: 700; color: var(--red);
  text-decoration: none;
}
.booking-phone:hover { color: var(--red-hover); text-decoration: underline; }
.booking-form-area { min-height: 900px; }
.airtable-embed { display: block; border-radius: var(--radius); }


/* --- PRICING PAGE ----------------------------------------- */
.pricing-grid { display: grid; gap: 1.5rem; }
.pricing-card {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--slate);
  display: flex; flex-direction: column;
}
.pricing-card--featured { border-top-color: var(--red); }
.pricing-card-head {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
}
.pricing-card-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); display: block; margin-bottom: .5rem;
}
.pricing-card-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--ink); margin-bottom: .4rem;
}
.pricing-card-desc { font-size: .9rem; color: var(--muted); }
.pricing-card-price {
  padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--rule);
}
.price-from {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .25rem;
}
.price-amount {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--ink);
  line-height: 1;
}
.price-note { font-size: .82rem; color: var(--muted); margin-top: .3rem; }
.pricing-card-body { padding: 1.5rem 1.75rem; flex: 1; }
.pricing-card-body > p { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.pricing-card-foot { padding: 0 1.75rem 1.75rem; }
.pricing-note {
  background: var(--cream); border: 1px solid var(--rule);
  border-left: 3px solid var(--slate); padding: 1.25rem 1.5rem;
  font-size: .88rem; color: var(--muted); line-height: 1.7;
}
.pricing-note strong { color: var(--ink); }
.pricing-includes {
  background: var(--slate-dark); color: var(--white);
  border-top: 3px solid var(--red); padding: 2.5rem 2rem;
}
.pricing-includes h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: .6rem;
}
.pricing-includes > p { font-size: .95rem; color: var(--on-dark-sub); margin-bottom: 2rem; }
.includes-grid { display: grid; gap: 1rem; }
.include-item {
  display: flex; gap: .75rem; align-items: flex-start;
}
.include-check {
  flex-shrink: 0; width: 16px; height: 16px; margin-top: .2rem; color: var(--red);
}
.include-item strong { display: block; font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: .1rem; }
.include-item p { font-size: .82rem; color: var(--on-dark-sub); margin: 0; }

/* --- PRICING TABLE ---------------------------------------- */
.pricing-table {
  width: 100%; border-collapse: collapse; font-size: .9rem;
  border: 1px solid var(--rule);
}
.pricing-table th {
  background: var(--slate-dark); color: var(--white);
  font-family: var(--font-body); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .85rem 1.25rem; text-align: left;
}
.pricing-table td {
  padding: .85rem 1.25rem; border-bottom: 1px solid var(--rule-light); color: var(--body);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--cream); }
.pricing-table td:nth-child(2) { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.pricing-table td:nth-child(3) { color: var(--muted); font-size: .85rem; }

/* --- THANK YOU PAGE --------------------------------------- */
.thankyou-section { min-height: 60vh; display: flex; align-items: center; }
.thankyou-inner {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem; padding: 3rem 0;
}
.thankyou-icon {
  width: 64px; height: 64px; border: 2px solid var(--red); color: var(--red);
  font-size: 1.5rem; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.thankyou-title {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--ink);
}
.thankyou-sub { font-size: 1.05rem; color: var(--muted); max-width: 520px; line-height: 1.75; }

/* --- FOOTER ----------------------------------------------- */
.site-footer { background: var(--slate-dark); border-top: 3px solid var(--red); }
.footer-grid { display: grid; gap: 2.5rem; padding-top: 3.5rem; padding-bottom: 2.5rem; }

/* Footer logo — reuses header classes; override text colors for dark bg */
.footer-logo-link { margin-bottom: 1rem; }
.site-footer .logo-name { color: var(--white); }
.site-footer .logo-sub  { color: var(--on-dark-sub); }
.footer-blurb { font-size: .84rem; color: var(--on-dark-sub); line-height: 1.7; margin-bottom: .75rem; max-width: 36ch; }
.footer-tagline { font-size: .88rem; color: var(--on-dark-sub); margin-bottom: .35rem; }
.footer-cert {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(192,57,43,.85);
}
.footer-heading {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
  margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-list { display: flex; flex-direction: column; gap: .55rem; }
.footer-list a { font-size: .88rem; color: var(--on-dark-sub); transition: color .15s; }
.footer-list a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: .65rem; }
.footer-contact a { font-size: .88rem; color: var(--on-dark-sub); transition: color .15s; }
.footer-contact a:hover { color: var(--white); }
.footer-phone {
  display: block; font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 700; color: var(--white) !important;
}
.footer-phone-note { display: block; font-size: .72rem; color: rgba(255,255,255,.42); margin-top: .1rem; }
.footer-area { font-size: .82rem; color: rgba(255,255,255,.42); }
.footer-cta { margin-top: 1rem; }
.footer-heading--payment { margin-top: 1.75rem; }
.footer-payment { font-size: .82rem; color: var(--on-dark-sub); line-height: 1.65; margin-bottom: .65rem; }
.footer-payment-list { display: flex; flex-direction: column; gap: .45rem; }
.footer-payment-list a { font-size: .88rem; color: var(--on-dark-sub); transition: color .15s; }
.footer-payment-list a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.footer-bottom-inner {
  display: flex; flex-direction: column; gap: .3rem;
  font-size: .75rem; color: rgba(255,255,255,.38);
}
.footer-bottom-inner a { color: rgba(255,255,255,.48); transition: color .15s; }
.footer-bottom-inner a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE — Tablet 600px+
   ============================================================ */
@media (min-width: 600px) {
  :root { --pad: 2rem; --section: 5.5rem; }

  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: none; }
  .stat:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.1); }
  .stat:last-child { border-right: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { border-right: 1px solid var(--rule); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-last-child(-n+2) { border-bottom: none; }

  .inspect-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .form-row--2 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .prep-grid { grid-template-columns: repeat(2, 1fr); }
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
  .service-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .property-types-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — Desktop 1160px+ (nav fully expands)
   ============================================================ */
@media (min-width: 1160px) {
  :root { --section: 6.5rem; }

  .site-nav { display: block; }
  .nav-actions { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .hero { padding: 7rem 0 6rem; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card:nth-child(2n) { border-right: 1px solid var(--rule); }
  .service-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .service-card:nth-child(4n) { border-right: none; }
  .service-card:nth-last-child(-n+4) { border-bottom: none; }

  .why-grid { grid-template-columns: 1fr 400px; align-items: start; gap: 5rem; }
  .about-grid { grid-template-columns: 280px 1fr; align-items: start; gap: 5rem; }
  .service-detail-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 5rem; }
  .service-detail-grid--reverse > :first-child { order: 2; }
  .service-detail-grid--reverse > :last-child  { order: 1; }
  .report-intro-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 5rem; }
  .contact-grid { grid-template-columns: 1fr 1.5fr; align-items: start; gap: 5rem; }
  .inspection-intro { grid-template-columns: 1fr 1fr; align-items: start; gap: 5rem; }
  .commercial-intro { grid-template-columns: 1fr 1fr; align-items: start; gap: 5rem; }
  .env-intro { grid-template-columns: 1fr 1fr; align-items: start; gap: 5rem; }
  .concern-grid { grid-template-columns: repeat(3, 1fr); }
  .property-types-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .standards-grid { grid-template-columns: repeat(3, 1fr); }
  .service-areas-grid { grid-template-columns: repeat(4, 1fr); }
  .booking-layout { grid-template-columns: 240px 1fr; align-items: start; gap: 3rem; }
  .process-steps { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }

  .sample-report-cta {
    grid-template-columns: auto 1fr auto;
    text-align: left; align-items: center;
  }
}

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */

/* Rating Summary */
.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.rating-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.rating-stars {
  display: flex;
  gap: 0.25rem;
  color: #F59E0B;
}
.rating-stars svg { width: 28px; height: 28px; }
.rating-source {
  font-size: 0.85rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rating-blurb { max-width: 520px; }
.rating-blurb p { margin-bottom: 1.25rem; }

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.testimonial-date {
  font-size: 0.78rem;
  color: var(--slate);
}
.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  color: #F59E0B;
  margin-left: auto;
}
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-text {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--body);
  font-style: italic;
  border-left: 3px solid var(--red);
  padding-left: 1rem;
}
.testimonial-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate);
  font-weight: 600;
}

/* LinkedIn button */
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
  margin-top: 0.5rem;
}
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 2px solid #0A66C2;
  color: #0A66C2;
  background: transparent;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.btn-linkedin:hover {
  background: #0A66C2;
  color: var(--white);
}
.btn-linkedin svg { flex-shrink: 0; }

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-summary { flex-direction: row; text-align: left; align-items: flex-start; }
  .rating-score { align-items: flex-start; }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   PRICING PAGE — UPDATED LAYOUT
   ============================================================ */

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.pricing-section-header { margin-bottom: 1.75rem; }
.pricing-section-header .section-sub { max-width: 560px; }

.pricing-table--lg tbody td { font-size: 1rem; }
.price-cell {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  white-space: nowrap;
}
.pricing-table-callrow .price-cell { font-weight: 600; }
.pricing-call-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
}
.pricing-call-link:hover { text-decoration: underline; }

/* Add-ons card */
.addons-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
}
.addons-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.addons-card-sub {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 1.25rem;
}
.addon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.addon-item:last-child { border-bottom: none; }
.addon-item--bundle { align-items: flex-start; }
.addon-name {
  color: var(--body);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.addon-name small {
  font-size: 0.78rem;
  color: var(--slate);
}
.addon-price {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Commercial + Standalone two-col */
.pricing-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.pricing-alt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}
.pricing-alt-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.35rem 0 0.875rem;
}

/* About actions */
.about-actions { margin-top: 1.5rem; }

@media (min-width: 900px) {
  .pricing-layout { grid-template-columns: 1fr 320px; }
  .pricing-two-col { grid-template-columns: 1fr 1fr; }
}

/* Linked area tags */
a.area-tag--link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
a.area-tag--link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Footer service areas column */
.footer-areas-list { columns: 2; column-gap: 1rem; }
.footer-areas-list li { break-inside: avoid; }

/* Pricing card action row */
.pricing-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Footer service areas strip */
.footer-service-areas {
  background: rgba(0,0,0,.15);
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-areas-line {
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  margin: 0;
  line-height: 1.6;
  flex-wrap: wrap;
}
.footer-areas-label {
  color: rgba(255,255,255,.35);
  margin-right: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.footer-areas-line a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-areas-line a:hover { color: var(--white); }

/* Process page jump nav */
.process-jump-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.process-jump-nav .container {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.process-jump-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate);
  margin-right: 0.5rem;
}
.process-jump-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.process-jump-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Footer social links */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.footer-social-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
}
.footer-social-link svg { flex-shrink: 0; opacity: 0.85; }

/* Booking form wrapper */
.booking-form-area {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.booking-form-area iframe {
  border-radius: 6px;
  display: block;
}

/* ============================================================
   REPORTS PAGE — DIVISION CARDS
   ============================================================ */

.report-division-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.report-division-card:last-child { margin-bottom: 0; }

.report-division-badge {
  padding: 0.5rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}
.report-division-badge--residential { background: var(--slate); }
.report-division-badge--commercial  { background: var(--slate-dark); }
.report-division-badge--environmental { background: #3A6B3A; }

.report-division-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.report-division-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.report-division-list { margin-top: 1rem; }
.report-division-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  align-items: center;
}

@media (min-width: 768px) {
  .report-division-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .report-division-info { flex: 1; }
  .report-division-cta {
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    border-top: none;
    border-left: 1px solid var(--border);
    padding-top: 0;
    padding-left: 2rem;
  }
  .report-division-cta .btn { text-align: center; }
}

/* ============================================================
   COMMERCIAL DELIVERABLES
   ============================================================ */
.comm-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: .5rem;
}
.comm-deliverable-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.comm-deliverable-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.comm-deliverable-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .65rem;
}
.comm-deliverable-card > p {
  font-size: .9rem;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.comm-deliverable-list {
  font-size: .85rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.comm-deliverable-list li { margin-bottom: .3rem; }
.comm-deliverable-link {
  font-size: .84rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  margin-top: auto;
}
.comm-deliverable-link:hover { text-decoration: underline; }
.comm-deliverables-cta {
  margin-top: 2rem;
  text-align: center;
  font-size: .95rem;
  color: var(--muted);
}
.comm-deliverables-cta a { color: var(--red); }

/* ============================================================
   BLOG
   ============================================================ */

/* --- Blog listing grid ------------------------------------ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.blog-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
}
.blog-category {
  display: inline-block;
  background: var(--cream);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 4px;
}
.blog-date {
  font-size: .8rem;
  color: var(--muted);
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .65rem;
}
.blog-card-title a {
  color: var(--ink);
  text-decoration: none;
}
.blog-card-title a:hover { color: var(--red); }
.blog-card-excerpt {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.blog-read-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  margin-top: auto;
}
.blog-read-more:hover { text-decoration: underline; }
.blog-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--muted);
}
.blog-empty p { margin-bottom: 1.25rem; }

/* --- Post layout ------------------------------------------ */
.post-article { background: var(--white); }
.post-header {
  background: var(--slate);
  padding: 3rem 0 2.5rem;
}
.post-header-inner { max-width: 760px; }
.post-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.post-meta time { font-size: .85rem; color: rgba(255,255,255,.6); }
.post-header .blog-category {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
.post-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.post-excerpt {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.post-byline {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  display: flex;
  gap: .5rem;
  align-items: center;
}
.post-byline strong { color: rgba(255,255,255,.85); }
.post-byline-sep { opacity: .4; }

/* --- Post body + sidebar ---------------------------------- */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
  align-items: start;
}
.post-body {
  min-width: 0;
  line-height: 1.8;
  color: var(--body);
}
.post-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate);
  margin: 2.25rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--rule);
}
.post-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.75rem 0 .5rem;
}
.post-body p { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.post-body li { margin-bottom: .4rem; }
.post-body strong { color: var(--ink); }
.post-body a { color: var(--red); }
.post-body a:hover { text-decoration: underline; }
.post-body hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}
.post-cta-inline {
  background: var(--cream);
  border-left: 4px solid var(--red);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-top: 2.5rem;
  font-size: .95rem;
}

/* --- Post sidebar ----------------------------------------- */
.post-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.post-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}
.post-sidebar-card h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.post-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-sidebar-list li {
  border-bottom: 1px solid var(--rule);
  padding: .45rem 0;
}
.post-sidebar-list li:last-child { border-bottom: none; }
.post-sidebar-list a {
  font-size: .88rem;
  color: var(--body);
  text-decoration: none;
}
.post-sidebar-list a:hover { color: var(--red); }

/* --- Responsive ------------------------------------------- */
@media (max-width: 860px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .post-sidebar { order: -1; }
  .blog-grid { grid-template-columns: 1fr; }
}
