/*
Theme Name: New Breed Haulage
Theme URI: https://newbreedhaulage.com
Author: New Breed Haulage
Description: Modern, mobile-first WordPress theme for New Breed Haulage — Long Island's new standard in junk removal and dumpster rental. Transparent pricing, online booking, and aggressive local SEO built in.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: newbreed
Tags: junk-removal, dumpster-rental, long-island, hauling, service-business
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Brand Colors */
  --clr-primary:     #1B3D22;   /* Deep Green */
  --clr-primary-dk:  #122a18;   /* Darker green for hover */
  --clr-secondary:   #1A2133;   /* Dark Navy */
  --clr-accent:      #FF4D00;   /* Orange CTA */
  --clr-accent-dk:   #d94000;   /* Darker orange for hover */
  --clr-bg:          #F4F5F3;   /* Off-white background */
  --clr-body:        #212121;   /* Body text */
  --clr-muted:       #5a6270;   /* Muted text */
  --clr-border:      #dde1d8;   /* Borders */
  --clr-white:       #ffffff;
  --clr-success:     #2E7D32;
  --clr-overlay:     rgba(27, 61, 34, 0.82); /* Hero overlay */

  /* Typography */
  --ff-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  1.875rem;
  --fs-4xl:  2.25rem;
  --fs-5xl:  3rem;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semi:   600;
  --fw-bold:   700;
  --fw-black:  900;
  --lh-tight:  1.2;
  --lh-snug:   1.4;
  --lh-base:   1.65;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container:    1200px;
  --container-sm: 780px;
  --container-lg: 1440px;

  /* Borders & Shadows */
  --radius-sm:  3px;
  --radius:     6px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow:     0 3px 10px rgba(0,0,0,0.10);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.15);

  /* Transitions */
  --transition: 0.18s ease;
  --transition-md: 0.3s ease;

  /* Header */
  --header-h: 110px;
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: var(--ff-base);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--clr-body);
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-accent); }
/* Body-copy links (inside paragraphs/prose) get underlines so they're
   distinguishable by more than color alone — WCAG 1.4.1 */
p a, li a, .legal-content a { text-decoration: underline; text-underline-offset: 3px; }
p a:hover, li a:hover, .legal-content a:hover { text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-body);
}
h1 { font-size: clamp(2rem, 4vw, var(--fs-5xl)); }
h2 { font-size: clamp(1.5rem, 3vw, var(--fs-4xl)); }
h3 { font-size: clamp(1.2rem, 2.5vw, var(--fs-2xl)); }
h4 { font-size: var(--fs-xl); }
p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container--sm { max-width: var(--container-sm); }
.container--lg { max-width: var(--container-lg); }

.section { padding-block: var(--space-20); }
.section--sm { padding-block: var(--space-12); }
.section--lg { padding-block: var(--space-24); }
.section--dark { background: var(--clr-secondary); color: var(--clr-white); }
.section--green { background: var(--clr-primary); color: var(--clr-white); }
.section--bg { background: var(--clr-bg); }

/* Parallax photo sections — fixed bg scrolls beneath content overlay */
.section--parallax-dark,
.section--parallax-green {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--clr-white);
}
.section--parallax-dark::before,
.section--parallax-green::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section--parallax-dark > * { position: relative; z-index: 1; }
.section--parallax-green > * { position: relative; z-index: 1; }

.section--parallax-dark {
  background-image: url('assets/images/dumpster-20yd.jpg');
}
.section--parallax-dark::before {
  background: rgba(26, 33, 51, 0.87);
}
.section--parallax-green {
  background-image: url('assets/images/dumpster-5yd.jpg');
}
.section--parallax-green::before {
  background: rgba(27, 61, 34, 0.86);
}

/* ── Reusable parallax photo bands ── */
.parallax-band {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: var(--space-20) 0;
}
.parallax-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}
.parallax-band > * { position: relative; z-index: 1; }

.parallax-band--truck-side {
  background-image: url('assets/images/20yd_on_truck.jpg');
  background-position: center 40%;
}
.parallax-band--truck-side::before { background: rgba(26, 33, 51, 0.83); }

.parallax-band--truck-front {
  background-image: url('assets/images/NewBreedLot.jpg');
  background-position: center 35%;
}
.parallax-band--truck-front::before { background: rgba(27, 61, 34, 0.84); }

.parallax-band--truck-door {
  background-image: url('assets/images/closeup.jpg');
  background-position: center 50%;
}
.parallax-band--truck-door::before { background: rgba(26, 33, 51, 0.88); }

.parallax-band--dusk-site {
  background-image: url('assets/images/job-site-dusk.jpg');
  background-position: center 60%;
}
.parallax-band--dusk-site::before { background: rgba(26, 33, 51, 0.85); }

.parallax-band--dumpster-rear {
  background-image: url('assets/images/dumpster_back.jpg');
  background-position: center 45%;
}
.parallax-band--dumpster-rear::before { background: rgba(26, 33, 51, 0.86); }

.parallax-band__eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--clr-accent);
  margin: 0 0 var(--space-3);
}
.parallax-band__heading {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: var(--clr-white);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-4);
  max-width: 680px;
}
.parallax-band__sub {
  color: rgba(255,255,255,0.82);
  font-size: var(--fs-lg);
  max-width: 560px;
  line-height: var(--lh-base);
  margin: 0 0 var(--space-8);
}
.parallax-band--center { text-align: center; }
.parallax-band--center .parallax-band__heading,
.parallax-band--center .parallax-band__sub { margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
  .parallax-band { background-attachment: scroll; padding: var(--space-16) 0; }
  .parallax-band__heading { font-size: var(--fs-2xl); }
  .parallax-band__sub { font-size: var(--fs-base); }
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-3);
}
.section-title { margin-bottom: var(--space-4); }
.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-muted);
  max-width: 600px;
  margin-bottom: var(--space-10);
  line-height: var(--lh-base);
}
.section-header { margin-bottom: var(--space-12); }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-inline: auto; }

.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { align-items: center; }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  line-height: 1;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}
.btn--primary:hover { background: var(--clr-accent-dk); border-color: var(--clr-accent-dk); color: var(--clr-white); }

.btn--green {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}
.btn--green:hover { background: var(--clr-primary-dk); border-color: var(--clr-primary-dk); color: var(--clr-white); }

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

.btn--outline-dark {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.btn--outline-white {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
}
.btn--outline-dark:hover { background: var(--clr-primary); color: var(--clr-white); }

.btn--lg { padding: 1rem 2.25rem; font-size: var(--fs-lg); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: var(--fs-sm); }
.btn--full { width: 100%; justify-content: center; }

.btn-group { display: flex; gap: var(--space-4); flex-wrap: wrap; }

/* Phone CTA */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--clr-accent);
  transition: color var(--transition);
}
.btn-phone:hover { color: var(--clr-accent-dk); }
.btn-phone svg { width: 20px; height: 20px; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition-md);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-top-bar {
  background: var(--clr-secondary);
  color: var(--clr-white);
  font-size: var(--fs-sm);
  padding-block: var(--space-2);
}
.header-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top-bar a { color: var(--clr-white); opacity: 0.9; }
.header-top-bar a:hover { opacity: 1; color: var(--clr-accent); }
.top-bar-trust { display: flex; gap: var(--space-4); flex-wrap: nowrap; overflow: hidden; }
.top-bar-trust span { display: flex; align-items: center; gap: var(--space-1); white-space: nowrap; }
.top-bar-trust span::before { content: '✓'; color: var(--clr-accent); font-weight: var(--fw-bold); }

.header-main {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  padding-block: 15px;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
/* Logo image — covers all WP custom logo wrapper variations */
.site-logo img,
.site-logo .custom-logo,
.site-logo .custom-logo-link img,
.site-logo .wp-block-site-logo img { height: 80px; width: auto; display: block; }
/* Strip WP's default figure/link margins that can offset the logo */
.site-logo .custom-logo-link,
.site-logo figure { display: block; line-height: 0; margin: 0; }
.site-logo .wp-block-site-logo { margin: 0; }
.site-logo-text { display: flex; flex-direction: column; }
.site-logo-text .brand-name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--clr-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.site-logo-text .brand-tagline {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; }
.main-nav > ul { display: flex; align-items: center; gap: var(--space-1); }
.main-nav a {
  padding: var(--space-2) var(--space-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--clr-body);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--clr-primary); background: var(--clr-bg); }
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 50;
}
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .dropdown a {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-radius: 0;
  border-bottom: 1px solid var(--clr-border);
}
.main-nav .dropdown li:last-child a { border-bottom: none; }

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.header-phone .phone-label {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  font-weight: var(--fw-medium);
}
.header-phone a {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--clr-primary);
}
.header-phone a:hover { color: var(--clr-accent); }

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-body);
  transition: all var(--transition-md);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile sticky bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--clr-secondary);
  color: var(--clr-white);
  padding: var(--space-3) var(--space-4);
  gap: var(--space-3);
}
.mobile-sticky-bar a {
  flex: 1;
  text-align: center;
  padding: var(--space-3);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}
.mobile-sticky-bar .sticky-call { background: var(--clr-accent); color: var(--clr-white); }
.mobile-sticky-bar .sticky-quote { background: var(--clr-primary); color: var(--clr-white); border: 1px solid rgba(255,255,255,0.2); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background: var(--clr-secondary);
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
/* Hero inner container — padding controlled here, not via inline style */
.hero > .container { padding-top: 4.5rem; padding-bottom: 4rem; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--clr-white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,77,0,0.15);
  border: 1px solid rgba(255,77,0,0.4);
  color: #ffa07a;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
  margin-bottom: var(--space-5);
}
.hero-badge::before { content: '●'; color: var(--clr-accent); font-size: 8px; }
.hero h1 {
  color: var(--clr-white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: var(--fw-black);
  line-height: 1.1;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--clr-accent); }
.hero-sub {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
  line-height: var(--lh-base);
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-10);
}
.hero-phone-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--clr-white);
  text-decoration: none;
}
.hero-phone-cta .phone-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-phone-cta .phone-text .phone-label {
  display: block;
  font-size: var(--fs-xs);
  opacity: 0.7;
  font-weight: var(--fw-medium);
}
.hero-phone-cta .phone-text .phone-number {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  line-height: 1.1;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.8);
  font-weight: var(--fw-medium);
}
.hero-trust-item::before {
  content: '✓';
  color: var(--clr-accent);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  background: var(--clr-primary);
  color: var(--clr-white);
  padding-block: var(--space-5);
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  white-space: nowrap;
}
.trust-item .trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  line-height: 1;
}
.service-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-3);
  color: var(--clr-primary);
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-base);
  flex: 1;
  margin-bottom: var(--space-5);
}
.service-sizes {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.size-badge {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  color: var(--clr-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--clr-primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.service-link::after { content: ' →'; }
.service-link:hover { color: var(--clr-accent); }

/* ==========================================================================
   HOW IT WORKS — 4 EASY STEPS
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

/* Connecting dashed line between steps */
.steps-grid--4::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5%);
  width: calc(75%);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--clr-accent) 0, var(--clr-accent) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.step-num-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: var(--fw-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(255,77,0,0.4);
}
.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover .step-icon {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step h3 {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
  color: var(--clr-secondary);
}
.step p {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-base);
}
.step p a { color: var(--clr-accent); font-weight: var(--fw-semi); }

.steps-cta {
  text-align: center;
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.steps-cta__hours {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
}

/* ==========================================================================
   PROHIBITED ITEMS
   ========================================================================== */
/* Responsive — steps grid */
@media (max-width: 900px) {
  .steps-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid--4::before { display: none; }
}
@media (max-width: 600px) {
  .steps-grid--4 { grid-template-columns: 1fr; }
  /* Compact step cards on small screens */
  .steps-grid--4 .step { display: flex; gap: var(--space-4); text-align: left; align-items: flex-start; }
  .steps-grid--4 .step-icon-wrap { margin: 0; flex-shrink: 0; width: 56px; height: 56px; }
  .steps-grid--4 .step-icon-wrap svg { width: 24px; height: 24px; }
  .steps-grid--4 .step h3 { font-size: var(--fs-base); margin-bottom: var(--space-1); }
  .steps-grid--4 .step p { font-size: var(--fs-sm); }
}

/* ==========================================================================
   PROHIBITED ITEMS — HAZMAT WARNING SECTION
   ========================================================================== */
.hazmat-section {
  background: #0b140d;
  padding-block: var(--space-20);
  position: relative;
  overflow: hidden;
}

/* Industrial diagonal stripe texture */
.hazmat-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 52px,
    rgba(255,255,255,0.016) 52px,
    rgba(255,255,255,0.016) 104px
  );
  pointer-events: none;
}

/* Decorative ghost circle top-right */
.hazmat-section::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  border: 2px solid rgba(220, 38, 38, 0.05);
  pointer-events: none;
}

/* Header */
.hazmat-hdr {
  text-align: center;
  margin-bottom: var(--space-16);
  position: relative;
  z-index: 1;
}

.hazmat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.13);
  border: 1px solid rgba(220, 38, 38, 0.32);
  border-radius: 100px;
  padding: 6px 18px;
  color: #f87171;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.hazmat-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-black);
  color: #ffffff;
  line-height: 1.08;
  margin: 0 0 var(--space-5);
  letter-spacing: -0.02em;
}

.hazmat-sub {
  color: rgba(255, 255, 255, 0.42);
  font-size: var(--fs-base);
  max-width: 520px;
  margin: 0 auto;
  line-height: var(--lh-base);
}

/* Body — two stacked strips */
.hazmat-body {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
}

.hazmat-strip {
  padding: var(--space-8) var(--space-8);
}

.hazmat-strip + .hazmat-strip {
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* Strip row header */
.hazmat-strip-hdr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hazmat-strip--allowed .hazmat-strip-hdr { color: #4ade80; }
.hazmat-strip--denied  .hazmat-strip-hdr { color: #f87171; }

/* Allowed — 2×2 card grid */
.hazmat-allowed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.hazmat-allowed-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: 10px;
  color: rgba(255,255,255,0.65);
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  transition: background 0.18s, border-color 0.18s;
}

.hazmat-allowed-card:hover {
  background: rgba(74, 222, 128, 0.09);
  border-color: rgba(74, 222, 128, 0.22);
}

.hazmat-allowed-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Not Allowed — 3×3 horizontal chip grid */
.hazmat-denied-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.hazmat-chip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(220, 38, 38, 0.07);
  border: 1px solid rgba(220, 38, 38, 0.14);
  border-radius: 10px;
  transition: background 0.18s, border-color 0.18s;
}

.hazmat-chip:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.28);
}

.hazmat-chip-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.14);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hazmat-chip-name {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  line-height: 1.25;
}

/* CTA line */
.hazmat-cta {
  text-align: center;
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.36);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  position: relative;
  z-index: 1;
}

.hazmat-cta a {
  color: #f87171;
  font-weight: var(--fw-semi);
  text-decoration: none;
  transition: color 0.18s;
}

.hazmat-cta a:hover { color: #fff; }

/* Responsive */
@media (max-width: 700px) {
  .hazmat-allowed-grid { grid-template-columns: 1fr; }
  .hazmat-denied-grid  { grid-template-columns: repeat(2, 1fr); }
  .hazmat-strip { padding: var(--space-6); }
  .hazmat-title { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .hazmat-denied-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRICING TABLE
   ========================================================================== */
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: var(--space-4) var(--space-6);
  text-align: left;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-table th:first-child { border-radius: var(--radius) 0 0 0; }
.pricing-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.pricing-table td {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--clr-border);
  vertical-align: middle;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--clr-bg); }
.pricing-table tr:hover td { background: rgba(27,61,34,0.04); }
.pricing-table .size-col { font-weight: var(--fw-bold); color: var(--clr-primary); font-size: var(--fs-lg); }
.pricing-table .price-col { font-weight: var(--fw-black); font-size: var(--fs-xl); color: var(--clr-accent); }
.pricing-table .popular-row td { background: rgba(27,61,34,0.06); }
.popular-badge {
  display: inline-block;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: var(--space-2);
  vertical-align: middle;
}
.pricing-note {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--clr-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--clr-primary);
}

/* Pricing Cards (alternative to table) */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.pricing-card {
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { border-color: var(--clr-primary); box-shadow: var(--shadow-md); }
.pricing-card.featured { border-color: var(--clr-primary); background: rgba(27,61,34,0.03); }
.pricing-card .card-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-1) var(--space-4);
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card .size { font-size: var(--fs-4xl); font-weight: var(--fw-black); color: var(--clr-primary); line-height: 1; margin-bottom: var(--space-2); }
.pricing-card .size-unit { font-size: var(--fs-base); color: var(--clr-muted); }
.pricing-card .price-from { font-size: var(--fs-xs); color: var(--clr-muted); margin-bottom: var(--space-2); text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-card .price { font-size: var(--fs-4xl); font-weight: var(--fw-black); color: var(--clr-accent); margin-bottom: var(--space-6); line-height: 1; }
.pricing-card .dimensions { font-size: var(--fs-sm); color: var(--clr-muted); margin-bottom: var(--space-6); }
.pricing-card .card-photo {
  margin: calc(var(--space-8) * -1) calc(var(--space-8) * -1) var(--space-6);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-bottom: 3px solid var(--clr-primary);
}
.pricing-card .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform 0.4s ease;
}
.pricing-card:hover .card-photo img { transform: scale(1.03); }
.pricing-card ul { text-align: left; margin-bottom: var(--space-8); }
.pricing-card ul li {
  font-size: var(--fs-sm);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--clr-muted);
}
.pricing-card ul li::before { content: '✓'; color: var(--clr-primary); font-weight: var(--fw-bold); flex-shrink: 0; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
}
.testimonial-stars { color: #f5a623; font-size: var(--fs-lg); margin-bottom: var(--space-4); letter-spacing: 2px; }
.testimonial-quote {
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--clr-body);
  margin-bottom: var(--space-6);
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--clr-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-white);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  flex-shrink: 0;
}
.author-info .author-name { font-weight: var(--fw-semi); font-size: var(--fs-sm); }
.author-info .author-meta { font-size: var(--fs-xs); color: var(--clr-muted); }

/* ==========================================================================
   SERVICE AREAS
   ========================================================================== */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.area-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-body);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-align: center;
}
.area-link:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}
.areas-county-label {
  grid-column: 1 / -1;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-muted);
  padding-top: var(--space-4);
  padding-bottom: var(--space-2);
  border-top: 1px solid var(--clr-border);
  margin-top: var(--space-2);
}
.areas-county-label:first-child { border-top: none; margin-top: 0; padding-top: 0; }

/* ==========================================================================
   SERVICE AREAS — TOWNSHIP LAYOUT
   ========================================================================== */
.sa-map-wrap {
  padding: var(--space-10) 0 0;
}
.sa-map-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.sa-intro-body {
  font-size: var(--fs-lg);
  line-height: var(--lh-base);
  color: var(--clr-body);
  max-width: 72ch;
}

/* County block */
.sa-county-block {
  margin-bottom: var(--space-16);
}
.sa-county-block:last-child { margin-bottom: 0; }

.sa-county-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 3px solid var(--clr-primary);
}
.sa-county-name {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--clr-secondary);
  margin: 0;
  letter-spacing: -0.02em;
}

/* Township groups */
.sa-townships {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-8);
}
.sa-township {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.sa-township-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-primary);
  margin: 0 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--clr-border);
}

/* Town pills */
.sa-town-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.sa-town-pill {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  min-height: 44px;
  line-height: calc(44px - 2 * var(--space-2) - 2px);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-body);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.sa-town-pill:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}

/* ==========================================================================
   FORMS & CONTACT LAYOUT
   ========================================================================== */

/* ── Contact page two-column layout ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-12);
  align-items: start;
}

/* Mobile call prompt — hidden on desktop, shown on mobile */
.contact-mobile-cta {
  display: none;
  background: var(--clr-primary);
  color: #fff;
  border-radius: 12px;
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  text-align: center;
}
.contact-mobile-cta p {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
}

/* ── Service area about section grid ── */
.sa-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.quote-form { background: var(--clr-white); border-radius: var(--radius-lg); padding: var(--space-10); box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group.full { grid-column: 1 / -1; }

label { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--clr-body); }
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  font-size: var(--fs-base);
  color: var(--clr-body);
  background: var(--clr-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(27,61,34,0.1);
}
textarea { min-height: 120px; resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23212121'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-note { font-size: var(--fs-xs); color: var(--clr-muted); margin-top: var(--space-3); text-align: center; }

/* Honeypot */
.hp-field { opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1; }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-5) 0;
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--clr-body);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--clr-primary); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--clr-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-lg); font-weight: var(--fw-bold);
  color: var(--clr-primary);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--clr-primary); color: var(--clr-white); }
.faq-answer {
  display: none;
  padding-bottom: var(--space-5);
  font-size: var(--fs-base);
  color: var(--clr-muted);
  line-height: var(--lh-base);
}
.faq-item.active .faq-answer { display: block; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background: var(--clr-accent);
  color: var(--clr-white);
  padding-block: var(--space-16);
  text-align: center;
}
.cta-band h2 { color: var(--clr-white); margin-bottom: var(--space-4); }
.cta-band p { font-size: var(--fs-lg); opacity: 0.9; max-width: 560px; margin-inline: auto; margin-bottom: var(--space-8); }
.cta-band .btn--outline { border-color: rgba(255,255,255,0.5); }
.cta-band .btn--outline:hover { background: rgba(255,255,255,0.15); color: var(--clr-white); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-md); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .before-after-badge {
  position: absolute; top: var(--space-3); left: var(--space-3);
  background: var(--clr-accent); color: var(--clr-white);
  font-size: var(--fs-xs); font-weight: var(--fw-bold);
  padding: 2px 8px; border-radius: 100px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--clr-secondary); color: rgba(255,255,255,0.75); }
.footer-main { padding-block: var(--space-16); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--space-12); }
.footer-brand .footer-logo {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--clr-white);
  margin-bottom: var(--space-4);
  display: block;
}
.footer-brand p { font-size: var(--fs-sm); line-height: var(--lh-base); margin-bottom: var(--space-5); }
.footer-certifications { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.cert-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
}
.footer-col h3 { color: var(--clr-white); font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-5); }
.footer-col ul li { margin-bottom: var(--space-3); }
.footer-col ul a { font-size: var(--fs-sm); color: rgba(255,255,255,0.85); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--clr-accent); text-decoration: underline; }
.footer-contact p { font-size: var(--fs-sm); margin-bottom: var(--space-3); display: flex; align-items: flex-start; gap: var(--space-2); }
.footer-contact .contact-label { font-weight: var(--fw-semi); color: var(--clr-white); }
.footer-contact a { color: rgba(255,255,255,0.8); }
.footer-contact a:hover { color: var(--clr-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-bottom a { color: rgba(255,255,255,0.78); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--clr-white); }
.footer-bottom-links { display: flex; gap: var(--space-5); }

/* ==========================================================================
   PAGE INNER HERO (sub-pages)
   ========================================================================== */
.page-hero {
  background-color: var(--clr-secondary);
  background-image:
    /* orange diagonal accent stripe */
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 28px,
      rgba(255, 77, 0, 0.045) 28px,
      rgba(255, 77, 0, 0.045) 30px
    ),
    /* subtle grid lines */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.025) 60px,
      rgba(255,255,255,0.025) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.025) 60px,
      rgba(255,255,255,0.025) 61px
    ),
    /* deep green-to-navy gradient base */
    linear-gradient(135deg, #1B3D22 0%, #1A2133 60%, #111827 100%);
  color: var(--clr-white);
  padding-block: var(--space-16);
  position: relative;
  overflow: hidden;
}
/* Bold orange left-edge accent bar */
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--clr-accent);
  z-index: 1;
}
/* Logo watermark — right side of page hero */
.page-hero::after {
  content: '';
  position: absolute;
  right: var(--space-20); top: 50%;
  transform: translateY(-50%);
  width: 220px; height: 110px;
  background-image: url('assets/images/nb-logo-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 900px) { .page-hero::after { display: none; } }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--clr-white); margin-bottom: var(--space-4); }
/* Breadcrumb — premium minimal trail */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-5);
}
.breadcrumb a {
  color: rgba(255,255,255,0.82);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: var(--fw-medium);
  transition: color var(--transition);
  white-space: nowrap;
}
.breadcrumb a:hover {
  color: var(--clr-white);
  text-decoration: none;
}
.breadcrumb__sep {
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.breadcrumb__current {
  color: rgba(255,255,255,0.9);
  font-weight: var(--fw-semi);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

/* Commercial hero breadcrumb inherits */
.commercial-hero__breadcrumb { /* styles already inherited from .breadcrumb */ }
.page-hero p { font-size: var(--fs-lg); opacity: 0.85; max-width: 560px; }

/* ==========================================================================
   BLOG CARDS
   ========================================================================== */
.blog-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-image { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-md); }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: var(--space-6); }
.blog-card-meta { font-size: var(--fs-xs); color: var(--clr-muted); margin-bottom: var(--space-3); display: flex; gap: var(--space-3); }
.blog-card h3 { font-size: var(--fs-lg); margin-bottom: var(--space-3); }
.blog-card h3 a { color: var(--clr-body); }
.blog-card h3 a:hover { color: var(--clr-primary); }
.blog-card p { font-size: var(--fs-sm); color: var(--clr-muted); }
.blog-tag { display: inline-block; background: rgba(27,61,34,0.08); color: var(--clr-primary); font-size: var(--fs-xs); font-weight: var(--fw-semi); padding: 2px 8px; border-radius: 100px; }

/* ==========================================================================
   STAT ROW
   ========================================================================== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); text-align: center; }
.stat-item .stat-number { font-size: clamp(2rem, 4vw, var(--fs-5xl)); font-weight: var(--fw-black); color: var(--clr-accent); line-height: 1.1; }
.stat-item .stat-label { font-size: var(--fs-sm); color: rgba(255,255,255,0.75); margin-top: var(--space-2); }
.section--dark .stat-item .stat-label { color: rgba(255,255,255,0.65); }

/* ==========================================================================
   MISC COMPONENTS
   ========================================================================== */
.badge-row { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; margin-bottom: var(--space-8); }
.trust-badge-img { height: 48px; width: auto; opacity: 0.8; filter: grayscale(0.3); }
.divider { height: 1px; background: var(--clr-border); margin-block: var(--space-8); }
.text-accent { color: var(--clr-accent); }
.text-green { color: var(--clr-primary); }
.text-muted { color: var(--clr-muted); }
.text-white { color: var(--clr-white); }
.fw-bold { font-weight: var(--fw-bold); }
.text-center { text-align: center; }
.mt-8 { margin-top: var(--space-8); }
.mb-0 { margin-bottom: 0; }

/* Skip link */
.skip-link { position: absolute; top: -40px; left: 6px; background: var(--clr-primary); color: var(--clr-white); padding: 6px 12px; border-radius: var(--radius); z-index: 999; font-size: var(--fs-sm); }
.skip-link:focus { top: 6px; }

/* ==========================================================================
   SITEMAP PAGE
   ========================================================================== */
.sitemap-heading {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  border-bottom: 2px solid var(--clr-border);
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-4);
  margin-top: 0;
}
.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.sitemap-list a {
  color: var(--clr-body);
  text-decoration: none;
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) 0;
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition-sm), padding-left var(--transition-sm);
}
.sitemap-list a::before { content: '→'; color: var(--clr-accent); font-size: var(--fs-xs); flex-shrink: 0; }
.sitemap-list a:hover { color: var(--clr-primary); padding-left: var(--space-2); }
.sitemap-county {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-3);
  padding: var(--space-1) 0;
}



/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section--parallax-dark,
  .section--parallax-green { background-attachment: scroll; }

  /* ── Header: logo only on mobile ── */
  .header-top-bar { display: none; }
  .header-cta    { display: none; }  /* hide phone + Get a Quote btn — sticky bar handles it */
  .menu-toggle   { display: flex; }  /* show hamburger on mobile */
  .main-nav      { display: none; }  /* hidden by default — toggled by JS */
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.14);
    z-index: 200;
    animation: navSlideDown 0.22s ease;
    max-height: 70vh;
    max-height: 70svh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .main-nav.open ul {
    flex-direction: column;
    padding: var(--space-4) 0;
  }
  .main-nav.open ul li {
    border-bottom: 1px solid var(--clr-border);
  }
  .main-nav.open ul li:last-child { border-bottom: none; }
  .main-nav.open ul li a {
    display: block;
    padding: var(--space-4) var(--space-6);
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    color: var(--clr-body);
  }
  .main-nav.open ul li a:hover {
    background: var(--clr-bg);
    color: var(--clr-primary);
  }
  /* Mobile dropdown submenu */
  .main-nav.open .has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-nav.open .has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--clr-muted);
    border-bottom: 2px solid var(--clr-muted);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
  }
  .main-nav.open .has-dropdown.open > a::after {
    transform: rotate(-135deg);
  }
  .main-nav.open .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--clr-bg);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .main-nav.open .has-dropdown.open .dropdown {
    max-height: 500px;
  }
  .main-nav.open .dropdown li { border-bottom: none; }
  .main-nav.open .dropdown li a {
    padding-left: var(--space-10);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--clr-muted);
  }
  .header-main   { padding-block: 10px; align-items: center; }
  .header-main .container { justify-content: space-between; }  /* logo left, hamburger right */
  .site-logo img,
  .site-logo .custom-logo,
  .site-logo .custom-logo-link img,
  .site-logo .wp-block-site-logo img { height: 44px; }

  /* ── Hero: shorter height, show compact trust row on mobile ── */
  .hero { min-height: 85vh; min-height: 85svh; }
  .hero h1 { font-size: clamp(1.6rem, 5.5vw, 2.2rem); margin-bottom: var(--space-3); }
  .hero > .container { padding-block: 2rem; }
  .hero-badge { margin-bottom: var(--space-3); }
  .hero-sub { font-size: var(--fs-base); margin-bottom: var(--space-5); }
  .hero-cta-group { margin-bottom: var(--space-4); gap: var(--space-4); }
  /* Show 3 key trust badges on mobile instead of hiding all */
  .hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2) var(--space-4);
    justify-content: center;
  }
  .hero-trust-row .trust-item { font-size: var(--fs-xs); }
  .hero-trust-row .trust-item:nth-child(n+4) { display: none; } /* show only first 3 */

  /* ── Layouts ── */
  .steps-grid    { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .grid-3        { grid-template-columns: 1fr; }
  .grid-2        { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .form-grid     { grid-template-columns: 1fr; }
  .areas-grid    { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ── Contact page ── */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-mobile-cta { display: block; }
  .quote-form { padding: var(--space-6); }

  /* ── Service area about grid ── */
  .sa-about-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .sa-townships  { grid-template-columns: 1fr; }

  /* ── Sticky bar & body padding ── */
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 72px; }

  /* ── Reduce end-of-page spacing ── */
  .cta-band { padding-block: var(--space-12); }
  .section--sm { padding-block: var(--space-8); }

  /* ── Misc ── */
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .trust-bar .container { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--space-4); }
  .section { padding-block: var(--space-10); }
  .hero { min-height: 100vh; min-height: 100svh; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .pricing-table { font-size: var(--fs-sm); }
  .pricing-table td, .pricing-table th { padding: var(--space-3) var(--space-4); }
  .quote-form { padding: var(--space-6); }
}

/* ==========================================================================
   COMMERCIAL HERO — critical baseline (always loaded so hero is never white)
   Full styles live in page-commercial.css; these ensure the section is
   visible even if that file fails to load.
   ========================================================================== */
.commercial-hero {
  position: relative;
  background: linear-gradient(140deg, #05111d 0%, var(--clr-secondary) 52%, var(--clr-primary) 100%);
  overflow: hidden;
  color: var(--clr-white);
}
.commercial-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(0.6);
}
.commercial-hero__body {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
  color: var(--clr-white);
}
.commercial-hero__body h1 { color: var(--clr-white); }
.commercial-hero__body p  { color: rgba(255,255,255,0.82); }
.commercial-hero__stats {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.commercial-hero__stats .container { display: grid; grid-template-columns: repeat(4,1fr); }
.commercial-stat { padding: var(--space-5) var(--space-6); border-right: 1px solid rgba(255,255,255,0.1); }
.commercial-stat:last-child { border-right: none; }
.commercial-stat__value { display:block; font-size:var(--fs-xl); font-weight:var(--fw-black); color:var(--clr-accent); line-height:1.1; margin-bottom:2px; }
.commercial-stat__label { font-size:var(--fs-xs); color:rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:.07em; }

/* ==========================================================================
   PARALLAX BANDS — mobile fix
   background-attachment:fixed is unsupported on iOS/Android; image vanishes,
   leaving white-on-white text. Force scroll + explicit dark fallback color.
   ========================================================================== */
@media (max-width: 900px) {
  .parallax-band,
  .section--parallax-dark,
  .section--parallax-green {
    background-attachment: scroll;
  }
  /* Ensure overlay always covers even if image fails */
  .parallax-band::before { opacity: 1; }
}

/* ==========================================================================
   LANDING PAGE — checklist 2-col grid collapse
   ========================================================================== */
.lp-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .lp-checklist-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOOTER SOCIAL LINKS
   ========================================================================== */
.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.footer-social-link:hover {
  background: var(--clr-accent);
  color: #fff;
}

/* ==========================================================================
   FLOATING SOCIAL SIDEBAR
   ========================================================================== */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.social-sidebar__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0 var(--space-4) 0 var(--space-3);
  height: 48px;
  text-decoration: none;
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s ease;
  transform: translateX(calc(-100% + 48px));
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.social-sidebar__item:hover {
  transform: translateX(0);
  box-shadow: var(--shadow-lg);
}
.social-sidebar__item--fb  { background: #1877F2; }
.social-sidebar__item--ig  { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-sidebar__item--tk  { background: #010101; }

.social-sidebar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  /* icon always visible — it's the "handle" sticking out */
}
.social-sidebar__label {
  /* label hidden until hover reveals it */
}

/* Hide on mobile — bottom sticky bar handles CTAs there */
@media (max-width: 768px) {
  .social-sidebar { display: none; }
}

/* ==========================================================================
   LEGAL PAGES (Privacy / Terms)
   ========================================================================== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  margin-top: var(--space-10);
  margin-bottom: var(--space-3);
  padding-top: var(--space-8);
  border-top: 1px solid var(--clr-border);
}
.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: var(--space-6);
}
.legal-content p {
  margin-bottom: var(--space-4);
  color: var(--clr-body);
  line-height: var(--lh-base);
}
.legal-content ul {
  margin: var(--space-3) 0 var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.legal-content ul li {
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  color: var(--clr-body);
}
.legal-meta {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding: var(--space-4) var(--space-5);
  background: var(--clr-bg);
  border-radius: 10px;
  margin-bottom: var(--space-6);
  font-size: var(--fs-sm);
  color: var(--clr-muted);
}




/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .site-header, .mobile-sticky-bar, .cta-band, .site-footer { display: none; }
  body { padding-bottom: 0; }
}
