/* ============================================================
   PROGUARD FENCING — SHARED STYLESHEET
   Colors: Red #C41E2A | Charcoal #2D2D2D | White | Off-white #F7F7F5
   Fonts: Oswald (headings) | DM Sans (body)
   ============================================================ */

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

:root {
  --red: #C41E2A;
  --red-dark: #A3181F;
  --red-light: #D93240;
  --charcoal: #2D2D2D;
  --charcoal-light: #3D3D3D;
  --dark: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F7F7F5;
  --gray-light: #ECECEA;
  --gray-mid: #999;
  --text: #2D2D2D;
  --text-light: #5A5A5A;
  --star: #F5A623;
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: 72px;
  --max-width: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

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

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.top-bar a:hover { text-decoration: underline; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Wordmark */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-logo { height: 40px; width: auto; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
}
.nav-wordmark .pro { color: var(--charcoal); }
.nav-wordmark .guard { color: var(--red); }
.nav-wordmark .sub {
  display: block;
  font-size: 0.55em;
  color: var(--charcoal);
  letter-spacing: 0.2em;
  font-weight: 600;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-menu > li > a:hover { color: var(--red); background: rgba(196,30,42,0.04); }
.nav-menu > li > a.active { color: var(--red); }
.nav-arrow { font-size: 0.65em; transition: transform 0.2s; }
.nav-menu > li:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdowns */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
  list-style: none;
}
.nav-menu > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--off-white); color: var(--red); }

/* Nav CTAs */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--red-dark); }
.nav-phone {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--red); }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Bottom Bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  z-index: 999;
  padding: 0;
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-bar a:first-child { background: var(--red); }
.mobile-bar a + a { border-left: 1px solid rgba(255,255,255,0.15); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border: 2px solid var(--gray-light); }
.btn-outline-dark:hover { border-color: var(--red); color: var(--red); }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--off-white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 45%, var(--charcoal-light) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding: 72px 24px; }
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.hero-stars { color: var(--star); letter-spacing: 2px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: var(--red-light); }
.hero .lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 30px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page-level hero (inner pages) */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark), var(--charcoal));
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-hero .lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--red);
  color: #fff;
  padding: 16px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-icon { font-size: 1.1rem; }

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section { padding: 72px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-red { background: var(--red); color: var(--white); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 8px;
}
.section-dark .section-label { color: var(--red-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  line-height: 1.15;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 10px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 20px; }
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.service-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}
.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-dark .two-col-text h2 { color: var(--white); }
.two-col-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}
.section-dark .two-col-text p { color: rgba(255,255,255,0.72); }
.two-col-img {
  border-radius: 8px;
  overflow: hidden;
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 400px;
  border-radius: 8px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.feature-check {
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 28px;
}
.review-quote-icon {
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.review-stars {
  color: var(--star);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}
.review-author { font-weight: 700; font-size: 0.85rem; color: var(--charcoal); }
.review-source { font-size: 0.75rem; color: var(--gray-mid); margin-top: 2px; }

.rating-banner {
  margin-top: 48px;
  background: var(--charcoal);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  color: var(--white);
}
.rating-banner-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 4px;
}
.rating-banner-score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
}
.rating-banner-stars {
  font-size: 1.4rem;
  color: var(--star);
  letter-spacing: 4px;
  margin-top: 4px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { text-align: center; padding: 64px 24px; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 1rem;
  margin-bottom: 28px;
  opacity: 0.8;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn + .btn { margin-left: 12px; }

/* ============================================================
   AREA CARDS
   ============================================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s;
}
.area-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.area-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.area-card .badge-hq {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 8px;
  vertical-align: middle;
}
.area-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.contact-info > p { color: var(--text-light); line-height: 1.7; margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: 2px;
}
.contact-detail p,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.contact-detail a:hover { color: var(--red); }

.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.form-card > p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-light);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,42,0.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--red-dark); }

/* ============================================================
   SERVICE PAGE CONTENT
   ============================================================ */
.service-content { max-width: 800px; }
.service-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 32px 0 12px;
}
.service-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}
.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.service-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

/* ============================================================
   LOCATION PAGE
   ============================================================ */
.location-content { max-width: 800px; margin: 0 auto; }
.location-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 28px 0 10px;
}
.location-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 12px;
}
.location-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 32px;
  list-style: none;
}
.location-services li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
}
.location-services li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .nav-wordmark { font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand .nav-wordmark .pro { color: var(--white); }
.footer-brand .nav-wordmark .guard { color: var(--red-light); }
.footer p { font-size: 0.85rem; line-height: 1.6; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 7px; }
.footer ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--red-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-ctas { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 56px; }

  /* Mobile menu overlay */
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    gap: 0;
    overflow-y: auto;
    z-index: 998;
    animation: slideDown 0.25s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-menu.open > li > a { padding: 14px 0; border-bottom: 1px solid var(--gray-light); }
  .nav-menu.open .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
  }

  .hero { min-height: 420px; }
  .hero-bg { width: 100%; opacity: 0.1; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-gallery { grid-template-columns: 1fr 1fr; }
  .top-bar .container { justify-content: center; text-align: center; }
  .cta-banner .btn + .btn { margin-left: 0; margin-top: 10px; }
  .location-services { grid-template-columns: 1fr; }
}


/* ============================================================
   PLACEHOLDER IMAGES (until real photos are added)
   ============================================================ */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(45,45,45,0.35);
}
.img-placeholder.ph-wood { background: linear-gradient(135deg, #d4c4a8 0%, #c2b08a 100%); }
.img-placeholder.ph-vinyl { background: linear-gradient(135deg, #e8e8e4 0%, #d8d8d2 100%); }
.img-placeholder.ph-aluminum { background: linear-gradient(135deg, #c8cdd2 0%, #b0b8c0 100%); }
.img-placeholder.ph-chain { background: linear-gradient(135deg, #c5c5c0 0%, #a8a8a4 100%); }
.img-placeholder.ph-general { background: linear-gradient(135deg, #d0ccc4 0%, #bab4a8 100%); }

/* ============================================================
   SERVICE AREA — FULL PAGE LAYOUT
   ============================================================ */
.area-section-group { margin-bottom: 48px; }
.area-section-group h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.area-section-group .area-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-city-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.area-city-tag:hover { border-color: var(--red); background: rgba(196,30,42,0.03); }
.area-divider {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin: 32px 0;
}

/* ============================================================
   FINANCING CALCULATOR
   ============================================================ */
.calc-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 36px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.calc-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.calc-card > p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 22px;
}
.calc-result {
  text-align: center;
  padding: 24px;
  background: var(--off-white);
  border-radius: 8px;
  margin-top: 20px;
}
.calc-result-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: 4px;
}
.calc-result-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
}
.calc-result-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* ============================================================
   ELFSIGHT WIDGET AREA
   ============================================================ */
.reviews-widget {
  max-width: 900px;
  margin: 0 auto;
  min-height: 200px;
}


/* ============================================================
   SERVICE AREAS — MAP + LAYOUT (April 16)
   ============================================================ */
.area-intro {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 36px;
}
.area-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}
.area-intro strong {
  color: var(--charcoal);
  font-weight: 700;
}

.map-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  overflow: hidden;
}

.area-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.area-column {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  border-top: 4px solid var(--red);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.area-column h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.area-column-sub {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
}
.area-column p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-light);
}

.area-unsure {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
}
.area-unsure p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.area-unsure strong {
  color: var(--white);
  font-weight: 700;
}
.area-unsure .btn + .btn {
  margin-left: 10px;
}
.area-unsure .btn-outline-dark {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.area-unsure .btn-outline-dark:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .area-columns { grid-template-columns: 1fr; }
  .map-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  overflow: hidden;
}

.area-unsure .btn + .btn { margin-left: 0; margin-top: 10px; display: block; }
}





/* ============================================================
   HERO LOCKUP — shield left, content right (home page)
   ============================================================ */
.hero-lockup {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 860px;
}
.hero-shield {
  flex-shrink: 0;
}
.hero-shield img {
  display: block;
  width: auto;
  height: 200px;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}
.hero-lockup .hero-content {
  flex-grow: 1;
  max-width: none;
}
@media (max-width: 860px) {
  .hero-lockup {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero-shield img {
    height: 110px;
  }
}




.area-map {
  width: 100%;
  height: auto;
  display: block;
}
