/* ============================================
   NRG EXTERMINATING - DESIGN TOKENS
   ============================================ */
:root {
  --navy: #0A2E52;
  --navy-dark: #06203B;
  --navy-light: #144270;
  --cream: #FAF8F3;
  --cream-dark: #F0EBDD;
  --charcoal: #20221F;
  --gold: #E6A800;
  --gold-dark: #C28E00;
  --gold-light: #F4C430;
  --white: #FFFFFF;
  --line: rgba(32, 34, 31, 0.12);

  /* legacy aliases so existing rules keep working */
  --pine: var(--navy);
  --pine-dark: var(--navy-dark);
  --pine-light: var(--navy-light);
  --rust: var(--gold);
  --rust-dark: var(--gold-dark);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1160px;
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream);
  background-image: radial-gradient(rgba(10, 46, 82, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: var(--pine);
  text-decoration: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.15;
  color: var(--pine-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 500; }

p { color: var(--charcoal); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 4px 0 var(--gold-dark);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--gold-dark); }
.btn-primary:active { transform: translateY(1px); box-shadow: 0 2px 0 var(--gold-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(247, 244, 237, 0.1); }

.btn-pine {
  background: var(--pine);
  color: var(--cream);
  box-shadow: 0 4px 0 var(--pine-dark);
}
.btn-pine:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--pine-dark); }

.btn-block { width: 100%; }

/* ============================================
   HEADER / NAV
   ============================================ */
header.site-header {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(230, 168, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img.logo-mark {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a {
  color: var(--cream-dark);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
nav.main-nav a:hover { color: var(--gold); }
nav.main-nav a.active { color: var(--gold); }
nav.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-facebook {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(230, 168, 0, 0.14);
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.nav-facebook svg { width: 18px; height: 18px; }
.nav-facebook:hover { background: rgba(230, 168, 0, 0.26); }

.nav-estimate-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-dark);
  background: var(--gold);
  padding: 11px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 3px 0 var(--gold-dark);
}
.nav-estimate-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-estimate-btn:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--gold-dark); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  nav.main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 280px;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    gap: 22px;
  }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav a { color: var(--cream); font-size: 1.1rem; }
  nav.main-nav a.active { color: var(--gold); }
  nav.main-nav a.active::after { background: var(--gold); }
  .menu-toggle { display: block; }
  .nav-estimate-btn span { display: inline; }
  .nav-estimate-btn { padding: 10px 16px; font-size: 0.85rem; }
}
@media (max-width: 420px) {
  .nav-facebook { display: none; }
}

/* ============================================
   TROUBLE TICKER (signature element)
   ============================================ */
.ticker-wrap {
  background: var(--pine);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--pine-dark);
}
.ticker-wrap::before, .ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--pine), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(270deg, var(--pine), transparent); }

@media (max-width: 600px) {
  .ticker-wrap::before, .ticker-wrap::after { width: 24px; }
  .ticker-track span { padding: 0 18px; font-size: 0.8rem; }
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  padding: 11px 0;
}
.ticker-track span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream-dark);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ticker-track span.gone {
  text-decoration: none;
}
.ticker-track span::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.ticker-track span:first-child::before { display: none; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   ROUTE STRIP (service-area motif)
   ============================================ */
.route-strip {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.route-towns {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  width: 100%;
}
.route-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 14px;
}
.route-town {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pine-dark);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .route-row { column-gap: 20px; }
  .route-town { white-space: normal; }
}
.route-town .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rust);
  border: 2px solid var(--cream-dark);
  box-shadow: 0 0 0 2px var(--rust);
  flex-shrink: 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--pine-dark);
  color: var(--cream);
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* Full-bleed hero photo (homepage): photo only; the intro copy lives
   in the .hero-intro section right below it, on the page background. */
.hero-full-bleed {
  min-height: clamp(460px, 84vh, 760px);
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6,32,59,0.3) 0%, rgba(6,32,59,0.02) 26%, rgba(6,32,59,0.02) 70%, rgba(6,32,59,0.4) 100%);
}
.hero-location-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 32, 59, 0.55);
  backdrop-filter: blur(4px);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(230, 168, 0, 0.5);
  white-space: nowrap;
}
.hero-location-badge svg { width: 15px; height: 15px; flex-shrink: 0; }

@media (max-width: 700px) {
  .hero-location-badge { top: 16px; right: 16px; }
  /* On tall narrow phones, an 84vh box crops most of a wide landscape
     photo to a sliver. Size the hero off viewport WIDTH instead so the
     full photo stays visible, just shorter. */
  .hero-full-bleed { min-height: 0; aspect-ratio: 16 / 10; }
}
@media (max-width: 480px) {
  .hero-location-badge { display: none; }
}

/* Intro copy below the hero photo */
.hero-intro {
  padding: 64px 0 56px;
}
.hero-intro-inner { max-width: 640px; }
.hero-intro h1 { margin-bottom: 18px; }
.hero-intro h1 em {
  font-style: normal;
  color: var(--gold-dark);
}
.hero-intro .lede { margin-bottom: 30px; }
.hero-intro .hero-actions { margin-bottom: 30px; }
.hero-intro .hero-trust { color: var(--charcoal); opacity: 0.75; }
.hero-intro .hero-trust svg { color: var(--gold-dark); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { background: rgba(10, 46, 82, 0.06); }

.lede {
  font-size: 1.15rem;
  color: var(--charcoal);
  opacity: 0.85;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.hero-trust div { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE HERO (non-home pages)
   ============================================ */
.page-hero {
  background: var(--pine-dark);
  color: var(--cream);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(rgba(230, 168, 0, 0.14) 1px, transparent 1px),
    linear-gradient(100deg, rgba(6,32,59,0.94) 0%, rgba(6,32,59,0.86) 38%, rgba(6,32,59,0.55) 100%);
  background-size: 22px 22px, auto;
}
.page-hero .container { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: var(--cream-dark); font-size: 1.1rem; max-width: 600px; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before { background: var(--gold); }

.page-about .page-hero { background-image: url('../images/about-hero.jpg'); }
.page-general-pest .page-hero { background-image: url('../images/general-pest-hero.jpg'); }
.page-termites .page-hero { background-image: url('../images/termites-hero.jpg'); }
.page-rodents .page-hero { background-image: url('../images/rodents-hero.jpg'); }
.page-testimonials .page-hero { background-image: url('../images/testimonials-hero.jpg'); }
.page-faq .page-hero { background-image: url('../images/about-hero.jpg'); }
.page-contact .page-hero { background-image: url('../images/bridge-hero.jpg'); }
.page-gallery .page-hero { background-image: url('../images/gallery-hero.jpg'); background-position: center 30%; }

/* ============================================
   SECTIONS (general)
   ============================================ */
section { padding: 78px 0; }
.section-cream-dark { background: var(--cream-dark); }
.section-pine {
  background: var(--pine);
  color: var(--cream);
}
.section-pine h2, .section-pine h3 { color: var(--white); }
.section-pine p { color: var(--cream-dark); }
.section-pine .eyebrow { color: var(--gold); border-color: rgba(230, 168, 0, 0.5); }
.section-pine .eyebrow::before { background: var(--gold); }
.section-pine .why-item .check { color: var(--gold); border-color: var(--gold); }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.08rem; opacity: 0.9; }

/* ============================================
   SERVICE LEDGER (itemized list, not a card grid)
   ============================================ */
.service-ledger {
  border-top: 1px solid var(--line);
}
.ledger-row {
  display: grid;
  grid-template-columns: 64px minmax(180px, 260px) 1fr 28px;
  align-items: center;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.25s ease, background 0.25s ease;
}
.ledger-row:hover {
  background: rgba(230, 168, 0, 0.06);
  padding-left: 14px;
}
.ledger-index {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ledger-index svg { width: 20px; height: 20px; color: var(--navy); }
.ledger-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--pine-dark);
}
.ledger-desc { font-size: 0.96rem; opacity: 0.85; }
.ledger-arrow {
  color: var(--pine);
  transition: transform 0.2s ease;
  justify-self: end;
}
.ledger-arrow svg { width: 18px; height: 18px; }
.ledger-row:hover .ledger-arrow { transform: translateX(4px); }

@media (max-width: 760px) {
  .ledger-row {
    grid-template-columns: 48px 1fr;
    grid-template-areas: "index title" "desc desc" "arrow arrow";
    gap: 8px 18px;
    padding: 22px 0;
  }
  .ledger-row:hover { padding-left: 0; }
  .ledger-index { grid-area: index; width: 40px; height: 40px; }
  .ledger-title { grid-area: title; align-self: center; }
  .ledger-desc { grid-area: desc; }
  .ledger-arrow { grid-area: arrow; justify-self: start; margin-top: 4px; }
}

/* ============================================
   WHY US / FEATURE LIST
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border: 1.5px solid var(--gold-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.why-item .check svg { width: 14px; height: 14px; }
.why-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.why-item p { font-size: 0.93rem; opacity: 0.85; }

.why-art {
  background: var(--navy);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 20px 50px rgba(6, 32, 59, 0.25);
}
.why-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-art { order: -1; aspect-ratio: 16/9; }
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 860px) {
  .approach-list { grid-template-columns: 1fr; gap: 22px; }
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy-dark);
  border-top: 2px solid rgba(230, 168, 0, 0.35);
  border-bottom: 2px solid rgba(230, 168, 0, 0.35);
  position: relative;
}
.stat {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(250, 248, 243, 0.2);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
}
.stat .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--cream-dark);
  opacity: 0.8;
}

@media (max-width: 760px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(250, 248, 243, 0.2); }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-wall {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.testimonial-featured {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 48px 44px;
  position: relative;
}
.testimonial-featured::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
}
.testimonial-featured .stars { color: var(--gold); margin-bottom: 22px; }
.testimonial-featured p.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
}
.testimonial-featured .author { color: var(--gold); font-weight: 700; }
.testimonial-featured .town { color: var(--cream-dark); opacity: 0.75; }

.testimonial-list { display: flex; flex-direction: column; }
.testimonial-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.testimonial-list .testimonial-row:first-child { padding-top: 0; }
.stars { display: flex; gap: 3px; margin-bottom: 12px; color: var(--gold); }
.stars svg { width: 14px; height: 14px; }
.testimonial-row p.quote {
  font-size: 0.94rem;
  margin-bottom: 12px;
  opacity: 0.9;
}
.testimonial-row .author {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--pine-dark);
}
.testimonial-row .town {
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .testimonial-wall { grid-template-columns: 1fr; gap: 36px; }
  .testimonial-featured { padding: 36px 28px; }
  .testimonial-featured p.quote { font-size: 1.3rem; }
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--navy-dark);
  color: var(--cream);
  padding: 56px 0;
  border-top: 1px solid rgba(230, 168, 0, 0.35);
  border-bottom: 1px solid rgba(230, 168, 0, 0.35);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; font-size: 1.9rem; }
.cta-band p { color: var(--cream-dark); }
.cta-band .btn-pine { background: var(--gold); color: var(--navy-dark); box-shadow: 0 4px 0 var(--gold-dark); }
.cta-band .btn-pine:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--gold-dark); }
.cta-band .btn-pine:active { transform: translateY(1px); box-shadow: 0 2px 0 var(--gold-dark); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { display: flex; flex-direction: column; max-width: 760px; border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pine-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item.open .faq-question { color: var(--gold-dark); }
.faq-question .plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-question .plus::before, .faq-question .plus::after {
  content: '';
  position: absolute;
  background: var(--rust);
  transition: transform 0.2s ease;
}
.faq-question .plus::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-question .plus::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item.open .faq-question .plus::after { transform: translateX(-50%) scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 4px 24px;
  max-width: 620px;
  font-size: 0.96rem;
  opacity: 0.85;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info-card {
  background: var(--pine);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 20px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-row svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-row a, .contact-row span { color: var(--cream-dark); }
.contact-row a { font-weight: 700; color: var(--white); }
.contact-row .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.65; display: block; margin-bottom: 2px; }

.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(247,244,237,0.12);
  display: flex; align-items: center; justify-content: center;
}
.social-row a svg { width: 18px; height: 18px; color: var(--cream); }
.social-row a:hover { background: var(--rust); }

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--pine-dark);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--white);
  color: var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--rust);
  border-color: var(--rust);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; opacity: 0.65; }
.form-success {
  display: none;
  background: var(--cream-dark);
  border: 1px solid var(--pine-light);
  border-radius: var(--radius);
  padding: 18px;
  font-size: 0.92rem;
  color: var(--pine-dark);
  font-weight: 600;
}
.form-success.show { display: block; }

.form-error {
  display: none;
  background: #FBEAEA;
  border: 1px solid #C24242;
  border-radius: var(--radius);
  padding: 18px;
  font-size: 0.92rem;
  color: #7A1F1F;
  font-weight: 600;
}
.form-error.show { display: block; }
.form-error a { color: #7A1F1F; text-decoration: underline; }

.btn[disabled] { opacity: 0.7; cursor: not-allowed; }
.btn[disabled]:hover { transform: none; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   MAP
   ============================================ */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 56px;
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-art {
  background: var(--navy);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 20px 50px rgba(6, 32, 59, 0.3);
}
.about-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-art { order: -1; aspect-ratio: 16/9; }
}

.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item .year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}
.timeline-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.timeline-item p { font-size: 0.92rem; opacity: 0.8; }

@media (max-width: 560px) {
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ============================================
   SERVICE DETAIL PAGE (termites / rodents / general)
   ============================================ */
.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
}
.detail-body h2 { margin-top: 36px; margin-bottom: 14px; }
.detail-body h2:first-child { margin-top: 0; }
.detail-body p { margin-bottom: 16px; opacity: 0.88; }
.detail-body ul { margin: 0 0 16px 0; padding-left: 0; list-style: none; }
.detail-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.97rem;
  opacity: 0.88;
}
.detail-body ul li svg { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; margin-top: 3px; }

.detail-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 8px 0 32px;
}
.detail-photo-row figure { margin: 0; }
.detail-photo-row img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
}
.detail-photo-row figcaption {
  font-size: 0.78rem;
  color: var(--charcoal);
  opacity: 0.6;
  margin-top: 8px;
}
.detail-photo-row.single { grid-template-columns: 1fr; max-width: 420px; }
@media (max-width: 600px) {
  .detail-photo-row { grid-template-columns: 1fr; }
}

/* ============================================
   FIELD PHOTO GALLERY
   ============================================ */
.field-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.field-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.field-item:hover, .field-item:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10, 46, 82, 0.16);
}
.field-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.field-thumb {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.field-item:hover .field-thumb, .field-item:focus-within .field-thumb {
  transform: scale(1.06);
}
.field-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 32, 59, 0.28);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.field-item:hover .field-photo::after, .field-item:focus-within .field-photo::after {
  opacity: 1;
}
.field-photo .expand-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250, 248, 243, 0.92);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.field-photo .expand-icon svg { width: 18px; height: 18px; }
.field-item:hover .expand-icon, .field-item:focus-within .expand-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.field-item figcaption {
  padding: 12px 14px;
  font-size: 0.82rem;
  color: var(--charcoal);
  opacity: 0.75;
  line-height: 1.4;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 32, 59, 0.92);
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox-figure {
  margin: 0;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-figure figcaption {
  color: var(--cream);
  font-size: 0.95rem;
  margin-top: 16px;
  text-align: center;
  max-width: 640px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(250, 248, 243, 0.12);
  border: 1px solid rgba(250, 248, 243, 0.3);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lightbox-close:hover { background: rgba(250, 248, 243, 0.25); }
.lightbox-close svg { width: 20px; height: 20px; }
@media (max-width: 600px) {
  .lightbox { padding: 20px 14px; }
  .lightbox-close { top: 10px; right: 10px; }
}
@media (max-width: 900px) {
  .field-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .field-gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .field-item figcaption { font-size: 0.78rem; padding: 10px 12px; }
}

.sidebar-card {
  background: var(--white);
  border: 1px solid rgba(32, 34, 31, 0.22);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.sidebar-card.cta-card {
  background: var(--pine);
  color: var(--cream);
}
.sidebar-card.cta-card h3 { color: var(--white); }
.sidebar-card.cta-card p { color: var(--cream-dark); font-size: 0.9rem; margin-bottom: 18px; }
.sidebar-list { display: flex; flex-direction: column; gap: 10px; }
.sidebar-list a {
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
}
.sidebar-list a:hover { color: var(--navy); }
.sidebar-list a:last-child { border-bottom: none; }
.sidebar-list a.active { color: var(--navy); font-weight: 700; }

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
footer.site-footer {
  background: var(--pine-dark);
  color: var(--cream-dark);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo span.accent { color: var(--rust); }
.footer-grid p { color: var(--cream-dark); font-size: 0.9rem; opacity: 0.8; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--cream-dark);
  font-size: 0.92rem;
  margin-bottom: 11px;
  opacity: 0.85;
}
.footer-col a:hover { color: var(--gold); opacity: 1; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(247,244,237,0.1);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a svg { width: 16px; height: 16px; color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(247,244,237,0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  opacity: 0.65;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
@media (max-width: 760px) {
  section { padding: 56px 0; }
  .stats-strip { gap: 0; }
}


/* Uploaded NRG photo cards */
.sidebar-photo-card { padding: 0; overflow: hidden; }
.sidebar-photo-card img { width: 100%; height: 240px; object-fit: cover; display: block; }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 0.8, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 0.8, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Per-page animation variants: each page uses a different motion
   so the site doesn't feel like one template stamped out repeatedly. */
.reveal.reveal-left { transform: translateX(-44px); }
.reveal.reveal-right { transform: translateX(44px); }
.reveal.reveal-scale { transform: scale(0.92); }
.reveal.reveal-down { transform: translateY(-30px); }
.reveal.reveal-tilt { transform: translateY(26px) rotate(-2deg); }
.reveal.reveal-pop { transform: translateY(18px) scale(0.95); }
.reveal.reveal-fade { transform: none; }

.reveal-fade {
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================
   STICKY MOBILE CALL BAR
   ============================================ */
.mobile-call-bar {
  display: none;
}
@media (max-width: 700px) {
  .mobile-call-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--navy-dark);
    border-top: 2px solid var(--gold);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
  }
  .mobile-call-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 10px;
    border-radius: var(--radius);
    min-height: 44px;
  }
  .mobile-call-bar .call {
    background: var(--gold);
    color: var(--navy-dark);
  }
  .mobile-call-bar .estimate {
    background: transparent;
    border: 2px solid var(--cream-dark);
    color: var(--cream);
  }
  .mobile-call-bar svg { width: 18px; height: 18px; flex-shrink: 0; }
  /* keep footer content clear of the fixed bar */
  body { padding-bottom: 68px; }
}

/* ============================================
   DOT-GRID TEXTURE ON NAVY SURFACES
   (matches the cream body texture, breaks up flat blue)
   ============================================ */
.section-pine,
.stats-strip,
.testimonial-featured,
.cta-band,
.contact-info-card,
.sidebar-card.cta-card,
footer.site-footer {
  background-image: radial-gradient(rgba(230, 168, 0, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ============================================
   TESTIMONIALS PAGE: "THE FAYETTE COUNTY
   TRADING POST" — old-timey newspaper treatment.
   Scoped entirely to this page; nothing else
   on the site is affected.
   ============================================ */
.page-testimonials {
  --paper: #F1E6C8;
  --paper-dark: #E6D6AC;
  --ink: #2B2318;
  --ink-soft: rgba(43, 35, 24, 0.72);
  --rust: #8C3B2B;
}
.page-testimonials body,
.page-testimonials .post-content {
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(43, 35, 24, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(43, 35, 24, 0.035) 1px, transparent 1px);
  background-size: 3px 3px, 47px 47px;
  background-position: 0 0, 12px 18px;
}
.page-testimonials .site-header { position: static; }

/* ---- Masthead ---- */
.post-masthead-section {
  background: var(--paper);
  padding: 28px 0 24px;
}
.post-rule { height: 1px; background: var(--ink); }
.post-rule-hair { opacity: 0.5; }
.post-rule-thick { height: 5px; background: var(--ink); margin: 10px 0 4px; }
.post-extra {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--rust);
  padding-top: 10px;
}
.post-dateline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.post-nameplate {
  font-family: 'Rye', var(--font-display);
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 5.4vw, 3.4rem);
  line-height: 1.3;
  margin: 6px 0 8px;
}
.post-subhead {
  font-family: 'IM Fell DW Pica', var(--font-display);
  font-style: italic;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 4px;
}

/* ---- Content section ---- */
.post-content { padding: 56px 0; }
.post-section-label {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--rust);
  margin-bottom: 36px;
}

/* ---- Lead story (featured testimonial) ---- */
.page-testimonials .testimonial-featured {
  background: var(--paper);
  border-top: 4px double var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 8px 0 32px;
}
.page-testimonials .testimonial-featured::before { display: none; }
.page-testimonials .testimonial-featured .stars { justify-content: flex-start; }
.page-testimonials .testimonial-featured p.quote {
  font-family: 'IM Fell DW Pica', var(--font-display);
  font-style: normal;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.5;
}
.drop-cap {
  float: left;
  font-family: 'UnifrakturMaguntia', var(--font-display);
  font-size: 4.6rem;
  line-height: 0.78;
  padding: 4px 8px 0 0;
  color: var(--rust);
}
.page-testimonials .testimonial-featured .author { color: var(--ink); font-family: var(--font-display); }
.page-testimonials .testimonial-featured .town { color: var(--ink-soft); font-style: italic; }

/* ---- Old newsprint-photo insert ---- */
.post-photo {
  clear: both;
  position: relative;
  margin: 26px 0 0;
  border: 1px solid var(--ink);
  padding: 8px;
  background: var(--paper-dark);
}
.post-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.05);
}
.post-photo::after {
  /* halftone dot screen, like old newsprint printing */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(43, 35, 24, 0.5) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: 0.35;
}
.post-photo figcaption {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
  padding-top: 8px;
}
.post-photo-small { max-width: 220px; margin-left: auto; margin-right: auto; }

/* ---- Newsprint columns for the rest ---- */
.page-testimonials .testimonial-list {
  column-count: 2;
  column-gap: 40px;
  column-rule: 1px solid rgba(43, 35, 24, 0.25);
  display: block;
}
.page-testimonials .testimonial-row {
  break-inside: avoid;
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px dotted rgba(43, 35, 24, 0.35);
}
.page-testimonials .testimonial-row p.quote {
  font-family: 'IM Fell DW Pica', var(--font-display);
  color: var(--ink);
  font-size: 1.05rem;
  opacity: 1;
}
.page-testimonials .author {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.page-testimonials .author::before { content: '\2014\A0'; }
.page-testimonials .town {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-soft);
}
.page-testimonials .town::before { content: 'of '; }

/* ---- Stars as ink-stamped asterisks, not modern icons ---- */
.page-testimonials .stars svg { display: none; }
.page-testimonials .stars {
  font-family: var(--font-display);
  color: var(--rust);
  font-size: 1rem;
  letter-spacing: 2px;
  gap: 0;
}
.page-testimonials .stars::before { content: '\2605\2605\2605\2605\2605'; }

/* ---- Ornament + review link ---- */
.post-ornament {
  text-align: center;
  color: var(--rust);
  font-size: 1.2rem;
  margin: 8px 0 24px;
  letter-spacing: 10px;
}
.post-review-link {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 10px 22px;
}
.post-review-link:hover { background: rgba(43, 35, 24, 0.06); }

/* ---- CTA band reskinned as a boxed notice ---- */
.page-testimonials .cta-band {
  background: var(--paper);
  background-image: none;
  color: var(--ink);
  border: 3px double var(--ink);
  border-left: none;
  border-right: none;
  padding: 40px 0;
}
.page-testimonials .cta-band h2 {
  font-family: 'IM Fell DW Pica', var(--font-display);
  font-style: italic;
  color: var(--ink);
}
.page-testimonials .cta-band p { color: var(--ink-soft); }
.page-testimonials .cta-band .btn-pine {
  background: var(--rust);
  color: var(--paper);
  box-shadow: 0 4px 0 #6b2b1f;
  border-radius: 2px;
}
.page-testimonials .cta-band .btn-pine:hover { box-shadow: 0 6px 0 #6b2b1f; }

@media (max-width: 700px) {
  .page-testimonials .testimonial-list { column-count: 1; }
  .post-dateline { flex-direction: column; gap: 2px; text-align: center; }
  .drop-cap { font-size: 3.4rem; }
}
