/* =========================================================
   Fence Pros — Design System
   Light-first, forest green + amber accent, Oswald/Inter
   ========================================================= */

:root {
  --charcoal: #1A1F1A;
  --forest: #1E5631;
  --forest-dark: #143d23;
  --forest-light: #3E8E5A;
  --amber: #E8A13C;
  --amber-dark: #cf8a29;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-100: #EFEEE9;
  --gray-300: #D8D6CE;
  --gray-500: #8B8F87;
  --gray-600: #5B605A;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --header-h: 84px;
  --container-w: 1200px;
  --radius: 6px;
  --shadow-sm: 0 2px 8px rgba(26, 31, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 31, 26, 0.14);
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--charcoal);
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--forest); color: var(--white);
  padding: 10px 16px; border-radius: var(--radius);
  z-index: 2000; transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-amber {
  background: var(--amber);
  color: var(--charcoal);
  border-color: var(--amber);
}
.btn-amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); }

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

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

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

.btn-block { width: 100%; }

/* CTA button group — used in hero, mid-page bands, final section */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-group.stack-mobile { flex-direction: row; }
@media (max-width: 640px) {
  .cta-group.stack-mobile { flex-direction: column; align-items: stretch; }
  .cta-group.stack-mobile .btn { width: 100%; }
}

/* Reviews badge, shown to the right of Text Now in the hero CTA group */
.hero-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 0.85rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}
.hero-reviews-badge .stars { color: var(--amber); letter-spacing: 1px; }
@media (max-width: 640px) {
  .hero-reviews-badge { justify-content: flex-start; margin-top: 4px; }
}

/* Google "G" mark, used to the left of star ratings wherever review
   counts appear (hero badge, mobile nav, reviews section) */
.google-g-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.reviews-summary .stars { color: var(--amber); letter-spacing: 1px; }
.reviews-summary .google-g-icon { width: 20px; height: 20px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(10, 14, 10, 0.65) 0%, rgba(10, 14, 10, 0.35) 55%, rgba(10, 14, 10, 0) 100%);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.25s ease;
  flex-shrink: 0;
}
.site-header.is-scrolled .logo { color: var(--forest); }
.logo-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.logo-icon path,
.logo-icon rect,
.logo-icon line { transition: stroke 0.25s ease, fill 0.25s ease; }
.logo-word-pros { color: var(--amber); }

/* Desktop nav */
.main-nav { display: none; }
@media (min-width: 981px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nav-item { position: relative; }
  .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    color: var(--white);
    border-radius: var(--radius);
    transition: color 0.25s ease, background 0.2s ease;
  }
  .site-header.is-scrolled .nav-link { color: var(--charcoal); }
  .nav-link:hover,
  .nav-link[aria-current="page"] { color: var(--amber); }
  .caret { width: 10px; height: 10px; flex-shrink: 0; }

  .dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 640px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 20px;
    display: none;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
  }
  .dropdown-panel.areas-panel { grid-template-columns: repeat(1, 1fr); min-width: 220px; }
  .nav-item:hover .dropdown-panel,
  .nav-item:focus-within .dropdown-panel { display: grid; }
  .dropdown-col-title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-100);
  }
  .dropdown-col-title:hover { color: var(--forest-light); }
  .dropdown-sublist li { margin-bottom: 4px; }
  .dropdown-sublist a {
    display: block;
    font-size: 0.85rem;
    color: var(--charcoal);
    padding: 5px 4px;
    border-radius: 4px;
  }
  .dropdown-sublist a:hover { background: var(--off-white); color: var(--forest); }
  .areas-panel a { font-size: 0.9rem; padding: 8px 4px; }

  /* Phone number, inline with the nav tabs */
  .nav-phone {
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-left: 4px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 18px;
  }
  .site-header.is-scrolled .nav-phone { border-left-color: var(--gray-300); }
  .nav-phone:hover { color: var(--amber); }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-estimate-btn { padding: 11px 20px; font-size: 0.85rem; }

/* Hamburger */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 1100;
}
@media (min-width: 981px) { .hamburger { display: none; } }
.hamburger-bar {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.site-header.is-scrolled .hamburger-bar { background: var(--forest); }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.hamburger[aria-expanded="true"] .hamburger-bar { background: var(--white); }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  background: var(--white);
  box-shadow: -8px 0 30px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1050;
  overflow-y: auto;
  padding: 90px 24px 40px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 10, 0.5);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.is-open { opacity: 1; pointer-events: auto; }
@media (min-width: 981px) { .mobile-nav, .mobile-nav-overlay { display: none; } }

.mobile-nav-list > li { border-bottom: 1px solid var(--gray-100); }
.mobile-nav-link {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--charcoal);
}
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 14px 4px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--charcoal);
  text-align: left;
}
.mobile-nav-toggle .caret { width: 12px; height: 12px; transition: transform 0.2s ease; }
.mobile-nav-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding-left: 12px;
}
.mobile-submenu.is-open { max-height: 1400px; }
.mobile-subgroup-title {
  display: block;
  padding: 10px 4px 4px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--forest);
}
.mobile-submenu a {
  display: block;
  padding: 9px 4px;
  font-size: 0.92rem;
  color: var(--gray-600);
}
.mobile-nav-contact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--gray-100);
}
.mobile-nav-contact .header-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
}
.mobile-nav-contact .header-reviews {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-600);
  margin: 4px 0 16px;
}
.mobile-nav-contact .header-reviews .stars { color: var(--amber); }
.mobile-nav-contact .header-reviews .google-g-icon { vertical-align: -3px; margin-right: 4px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  width: 100vw;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}
.hero-scrim-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 14, 10, 0.72) 0%, rgba(10, 14, 10, 0.45) 30%, rgba(10, 14, 10, 0) 45%);
}
.hero-scrim-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  align-items: safe center;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 110px 20px 0;
}
.hero-text {
  max-width: 480px;
  color: var(--white);
}
.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  margin-bottom: 0.4em;
}
.hero-text .hero-subhead {
  color: var(--gray-100);
  font-size: 1.05rem;
  margin-bottom: 1.6em;
  max-width: 440px;
}

.mobile-break { display: none; }

@media (max-width: 780px) {
  .hero { height: 92vh; min-height: 660px; }
  .hero-media img { object-position: 68% center; }
  .hero-scrim-left {
    display: block;
    background: linear-gradient(to right, rgba(6, 10, 6, 0.82) 0%, rgba(6, 10, 6, 0.55) 40%, rgba(6, 10, 6, 0) 60%);
  }
  .hero-content { align-items: flex-start; padding: clamp(90px, 17vh, 128px) 20px 16px; }
  .hero-text { max-width: 58%; }
  .mobile-break { display: inline; }
  .hero-text h1 { font-size: 1.7rem; }
  .hero-text .hero-subhead { font-size: 0.9rem; margin-bottom: 0.9em; }
  .hero-text .cta-group { gap: 9px; }
  .hero-text h1, .hero-text .hero-subhead {
    text-shadow: 0 2px 10px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.9);
  }
}

/* Extra-compact hero copy for short mobile viewports (e.g. iPhone SE) */
@media (max-width: 780px) and (max-height: 700px) {
  .hero { height: 98vh; min-height: 540px; }
  .hero-content { padding-top: 66px; padding-bottom: 6px; }
  .hero-text h1 { font-size: 1.25rem; margin-bottom: 0.25em; }
  .hero-text .hero-subhead { font-size: 0.75rem; margin-bottom: 0.4em; }
  .hero-text .cta-group { gap: 5px; }
  .hero-text .cta-group .btn { padding: 8px 18px; font-size: 0.78rem; }
  .hero-reviews-badge { font-size: 0.72rem; }
}

/* =========================================================
   Generic Sections
   ========================================================= */
.section { padding: 72px 0; }
.section-alt { background: var(--off-white); }
.section-forest { background: var(--forest); color: var(--white); }
.section-forest h2, .section-forest h3 { color: var(--white); }
.section-head { max-width: 700px; margin: 0 0 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--forest-light);
  margin-bottom: 10px;
}
.section-forest .eyebrow { color: var(--amber); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
.lead { font-size: 1.1rem; color: var(--gray-600); }

/* Page header banner for interior pages */
.page-banner {
  position: relative;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 60px;
  overflow: hidden;
  color: var(--white);
}
.page-banner-media { position: absolute; inset: 0; }
.page-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.page-banner-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,14,10,0.86) 0%, rgba(10,14,10,0.68) 55%, rgba(10,14,10,0.45) 100%);
}
.page-banner-inner { position: relative; z-index: 2; }
.page-banner h1 { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: var(--gray-300);
}
.breadcrumbs a { color: var(--gray-100); }
.breadcrumbs a:hover { color: var(--amber); }
.breadcrumbs .sep { color: var(--gray-500); }
.breadcrumbs [aria-current="page"] { color: var(--amber); }

/* -------------------- Service cards (home) -------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.service-card-img { height: 190px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body .lead { font-size: 0.95rem; margin-bottom: 14px; }
.service-card-list { margin-bottom: 18px; flex: 1; }
.service-card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  margin-bottom: 7px;
  color: var(--gray-600);
}
.service-card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  background: var(--forest-light);
  border-radius: 50%;
}
.service-card-list a { color: var(--charcoal); }
.service-card-list a:hover { color: var(--forest); text-decoration: underline; }
.explore-link {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.explore-link:hover { color: var(--forest-light); }

/* -------------------- CTA band -------------------- */
.cta-band {
  background: var(--forest);
  color: var(--white);
  padding: 44px 0;
}
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 4px; }
.cta-band p { color: var(--gray-100); margin: 0; }

/* -------------------- Our story -------------------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 861px) { .story-grid { grid-template-columns: 1fr 1fr; } }
.story-media { position: relative; }
.story-media img { border-radius: var(--radius); }
.years-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--amber);
  color: var(--charcoal);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.1;
}
.years-badge strong { font-size: 2rem; }
.years-badge span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* -------------------- Process steps -------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.process-step { position: relative; padding-top: 8px; }
.process-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gray-300);
  line-height: 1;
  margin-bottom: 10px;
}
.section-forest .process-num { color: rgba(255,255,255,0.25); }

/* -------------------- Areas -------------------- */
.area-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
  align-items: center;
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 861px) { .area-feature { grid-template-columns: 1fr 1fr; } }
.area-feature img { height: 100%; min-height: 260px; object-fit: cover; }
.area-feature-body { padding: 32px; }
@media (min-width: 861px) { .area-feature-body { padding: 40px; } }
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}
.area-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.area-card:hover { border-color: var(--forest-light); transform: translateY(-2px); }
.area-card h3 { margin-bottom: 4px; font-size: 1.1rem; }
.area-card span { font-size: 0.85rem; color: var(--gray-600); }
.more-communities {
  font-size: 0.92rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-100);
  padding-top: 20px;
}
.more-communities strong { color: var(--charcoal); }

/* -------------------- Reviews -------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 10px; }
.review-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 14px;
}

/* -------------------- FAQ accordion -------------------- */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--charcoal);
}
.faq-question .caret { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.2s ease; color: var(--forest); }
.faq-question[aria-expanded="true"] .caret { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer.is-open { max-height: 600px; }
.faq-answer p { padding: 0 4px 20px; color: var(--gray-600); }

/* -------------------- Find us -------------------- */
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 861px) { .find-us-grid { grid-template-columns: 1fr 1fr; } }
.find-us-details dt {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--forest);
  margin-top: 18px;
}
.find-us-details dt:first-child { margin-top: 0; }
.find-us-details dd { margin: 4px 0 0; color: var(--gray-600); }
.map-placeholder {
  background: var(--gray-100);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--gray-300);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

/* -------------------- Estimate / contact form -------------------- */
.estimate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 861px) { .estimate-grid { grid-template-columns: 1fr 1fr; } }
.trust-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--forest);
  font-weight: bold;
  background: var(--off-white);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--forest-light);
  outline-offset: 1px;
}

/* -------------------- Content pages (about, service detail) -------------------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.4em; }
.prose p { color: var(--charcoal); }
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 861px) { .two-col { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.benefits-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}
.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
}
.flagship-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}
.flagship-card {
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  padding: 24px;
}
.flagship-card h3 { margin-bottom: 8px; }
.flagship-card a.btn { margin-top: 12px; }
.anchor-section {
  scroll-margin-top: 110px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
  margin-top: 40px;
}
.crosslink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.crosslink-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color 0.2s ease;
}
.crosslink-card:hover { border-color: var(--forest-light); }
.crosslink-card span { font-size: 0.85rem; color: var(--forest); font-family: var(--font-display); text-transform: uppercase; }

.sibling-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}
.sibling-links a {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.9rem;
}
.sibling-links a:hover { border-color: var(--forest); color: var(--forest); }

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--charcoal);
  color: var(--gray-300);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 641px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 981px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.footer-col li { margin-bottom: 9px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--amber); }
.footer-col address { font-style: normal; }
.footer-communities { font-size: 0.85rem; margin-top: 10px; color: var(--gray-500); }
.footer-entity {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--gray-500);
  max-width: 900px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray-500);
}
.footer-bottom a:hover { color: var(--amber); }

/* -------------------- Utility -------------------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
@media (min-width: 1px) {
  body.no-scroll { overflow: hidden; }
}
