/* ====================================================================
   LAKELAND TREE SERVICE — Site Stylesheet
   v4 design with mobile-first additions appended
   ==================================================================== */


:root {
  --display: 'DM Serif Display', serif;
  /* Forest & Earth palette */
  --forest-deep: #1a3a1f;
  --forest-mid: #2d5a35;
  --forest-bright: #4a7c50;
  --moss: #6b8e5a;
  --moss-light: #a3b88a;
  --leaf: #84a96c;

  /* Earth & bark */
  --bark-deep: #2e1f12;
  --bark: #4a2f1c;
  --bark-mid: #6b4423;
  --bark-warm: #8b5e3c;
  --terracotta: #b5572e;
  --rust: #c87a3f;

  /* Neutrals */
  --cream: #f4ecdb;
  --cream-warm: #ebe0c8;
  --shell: #fbf6ea;
  --stone: #8a7d6b;
  --charcoal: #1f1a14;
  --line: rgba(26, 58, 31, 0.12);
  --line-strong: rgba(26, 58, 31, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, sans-serif;
  background: var(--shell);
  color: var(--forest-deep);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ========== TOP UTILITY BAR ========== */
.utility-bar {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 11px 0;
  font-size: 13px;
}
.utility-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.utility-left { display: flex; align-items: center; gap: 24px; }
.utility-left span { display: flex; align-items: center; gap: 8px; opacity: 0.9; }
.utility-left svg { width: 14px; height: 14px; }
.utility-right { display: flex; align-items: center; gap: 20px; }
.utility-right a { color: var(--rust); text-decoration: none; font-weight: 600; }
.utility-right a:hover { color: var(--shell); }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 0 rgba(200, 122, 63, 0.7);
  animation: pulse 2s infinite;
  display: inline-block; margin-right: 8px;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 122, 63, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(200, 122, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 122, 63, 0); }
}

/* ========== NAVIGATION ========== */
.nav {
  background: rgba(251, 246, 234, 0.97);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 14px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links > a, .nav-links > .has-mega > a {
  color: var(--forest-deep); text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  transition: color 0.2s;
  padding: 10px 14px;
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 8px;
}
.nav-links > a:not(.nav-cta):hover,
.nav-links > .has-mega > a:hover {
  color: var(--bark-warm);
  background: rgba(139, 94, 60, 0.06);
}
.has-mega { position: relative; }
.has-mega > a .caret {
  width: 10px; height: 10px;
  transition: transform 0.25s;
}
.has-mega:hover > a .caret { transform: rotate(180deg); }

.nav-cta {
  background: var(--forest-mid) !important;
  color: var(--shell) !important;
  padding: 11px 22px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(45, 90, 53, 0.35);
  margin-left: 10px;
}
.nav-cta:hover {
  background: var(--forest-deep) !important;
  transform: translateY(-1px);
}
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--forest-deep);
}
.mobile-toggle svg { width: 28px; height: 28px; }

/* ========== MEGA MENU ========== */
.mega-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 24px 60px -15px rgba(26, 58, 31, 0.25),
              0 8px 20px -10px rgba(26, 58, 31, 0.15);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 110; pointer-events: none;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.has-mega::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 16px;
}
.mega-services { width: 760px; display: grid; grid-template-columns: 1fr 1fr 240px; gap: 32px; }
.mega-areas { width: 680px; display: grid; grid-template-columns: 1fr 1fr 220px; gap: 32px; }
.mega-col h6 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bark-warm); margin-bottom: 16px; font-weight: 500;
}
.mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mega-col a {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--forest-deep); text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.mega-col a:hover { background: var(--cream); color: var(--bark-warm); }
.mega-col a .mega-icon {
  width: 32px; height: 32px;
  background: var(--cream); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--forest-mid);
  border: 1px solid var(--line);
  transition: all 0.2s;
}
.mega-col a:hover .mega-icon {
  background: var(--forest-mid); color: var(--shell);
  border-color: var(--forest-mid);
}
.mega-col a .mega-icon svg { width: 16px; height: 16px; }
.mega-col a .mega-text { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; }
.mega-col a .mega-desc {
  font-size: 12px; color: var(--stone);
  font-weight: 400; line-height: 1.4;
}
.mega-feature {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--bark) 100%);
  border-radius: 12px; padding: 24px;
  color: var(--shell);
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative; overflow: hidden;
}
.mega-feature::before {
  content: ''; position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, var(--rust) 0%, transparent 70%);
  opacity: 0.3; pointer-events: none;
}
.mega-feature h5 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; line-height: 1.15;
  margin-bottom: 8px; position: relative;
}
.mega-feature p {
  font-size: 13px; color: rgba(244, 236, 219, 0.8);
  line-height: 1.5; margin-bottom: 20px; position: relative;
}
.mega-feature a {
  background: var(--rust); color: var(--shell);
  padding: 10px 16px; border-radius: 999px;
  text-decoration: none; font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  justify-content: center;
  transition: all 0.2s; position: relative;
}
.mega-feature a:hover { background: var(--shell); color: var(--bark); }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(160deg, var(--shell) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1320px; margin: 0 auto; padding: 64px 32px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}

.hero-content { position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(139, 94, 60, 0.12);
  color: var(--bark-warm);
  padding: 8px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(139, 94, 60, 0.25);
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--bark-warm); border-radius: 50%;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 400;
  color: var(--forest-deep);
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--bark-warm);
}
.hero h1 .marked {
  position: relative; display: inline-block;
  color: var(--forest-deep);
}
.hero h1 .marked::after {
  content: ''; position: absolute;
  bottom: 4px; left: -4px; right: -4px;
  height: 14px; background: var(--leaf);
  z-index: -1; border-radius: 4px; opacity: 0.55;
}

.hero-sub {
  font-size: 1.1rem; line-height: 1.65;
  color: var(--charcoal); max-width: 560px;
  margin-bottom: 36px; font-weight: 400;
}

.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none; font-family: inherit;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--forest-mid); color: var(--shell);
  box-shadow: 0 8px 24px rgba(45, 90, 53, 0.4);
}
.btn-primary:hover {
  background: var(--forest-deep); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 90, 53, 0.5);
}
.btn-secondary {
  background: transparent; color: var(--forest-deep);
  border: 2px solid var(--forest-deep);
}
.btn-secondary:hover { background: var(--forest-deep); color: var(--shell); }

.hero-trust {
  display: flex; gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item .num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--bark-warm);
  line-height: 1; letter-spacing: -0.02em;
}
.trust-item .label {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-mid); font-weight: 600;
}

/* HERO PHOTO COMPOSITION */
.hero-photo-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 1.05/1;
  max-width: 600px;
  margin-left: auto;
}
.hero-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(26, 58, 31, 0.35);
  position: relative;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-photo-main {
  grid-row: 1 / 3;
  border-radius: 20px;
}
.hero-photo-side-1 { grid-column: 2; grid-row: 1; }
.hero-photo-side-2 { grid-column: 2; grid-row: 2; }

.hero-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--rust);
  color: var(--shell);
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(200, 122, 63, 0.4);
  border: 4px solid var(--shell);
  z-index: 5;
  display: flex; align-items: center; gap: 14px;
}
.hero-badge .badge-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; line-height: 1;
}
.hero-badge .badge-text-stack {
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.hero-badge .badge-line-1 {
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.02em;
}
.hero-badge .badge-line-2 {
  font-size: 11px; opacity: 0.85;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ========== INLINE QUOTE STRIP ========== */
.quote-strip {
  background: var(--shell);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.quote-strip-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.quote-strip-left h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem; color: var(--forest-deep);
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.quote-strip-left p {
  color: var(--charcoal); font-size: 14.5px;
}
#quote { scroll-margin-top: 90px; }
.quote-card-inline {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 600px;
}
.quote-card-inline input, .quote-card-inline select {
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  font-family: inherit; font-size: 14px;
  background: var(--shell);
  color: var(--forest-deep);
  min-width: 140px;
  flex: 1;
}
.quote-card-inline input:focus, .quote-card-inline select:focus {
  outline: none;
  border-color: var(--bark-warm);
}
.quote-card-inline .submit-btn {
  background: var(--forest-deep);
  color: var(--shell);
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: inherit; font-size: 14.5px; font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.quote-card-inline .submit-btn:hover {
  background: var(--bark-warm);
  transform: translateY(-1px);
}
.quote-card-inline .submit-btn svg { width: 16px; height: 16px; }

/* ========== TICKER ========== */
.ticker {
  background: var(--forest-deep);
  color: var(--leaf);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--forest-mid);
  border-bottom: 1px solid var(--forest-mid);
}
.ticker-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: ticker-slide 50s linear infinite;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.4rem;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 60px; }
.ticker-track span::after {
  content: '✦'; color: var(--rust);
  font-style: normal; font-size: 0.9rem;
}
@keyframes ticker-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== EMERGENCY BAR ========== */
.emergency {
  background: linear-gradient(95deg, var(--bark) 0%, var(--bark-warm) 100%);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}
.emergency::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,
    transparent, transparent 20px,
    rgba(0,0,0,0.04) 20px, rgba(0,0,0,0.04) 40px);
  pointer-events: none;
}
.emergency-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.emergency-left { display: flex; align-items: center; gap: 18px; }
.emergency-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.22);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.emergency-icon svg { width: 22px; height: 22px; color: var(--shell); }
.emergency-text .top {
  font-family: 'DM Serif Display', serif;
  color: var(--shell); font-size: 1.4rem;
  line-height: 1.1; letter-spacing: -0.01em;
}
.emergency-text .bottom {
  color: rgba(251, 246, 234, 0.88); font-size: 13.5px;
  margin-top: 4px;
}
.emergency a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--shell); color: var(--bark);
  padding: 14px 24px; border-radius: 999px;
  font-weight: 700; text-decoration: none;
  font-size: 14.5px; transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.emergency a:hover {
  background: var(--forest-deep); color: var(--shell);
  transform: translateY(-1px);
}

/* ========== SECTION COMMON ========== */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(139, 94, 60, 0.12);
  color: var(--bark-warm);
  padding: 8px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(139, 94, 60, 0.25);
}
.section-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bark-warm);
  flex-shrink: 0;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--forest-deep);
  line-height: 1.05; letter-spacing: -0.025em;
}
.section-title em { font-style: italic; color: var(--bark-warm); }
.section-lead {
  font-size: 1.1rem; line-height: 1.65;
  color: var(--charcoal); max-width: 620px;
}

/* ========== SERVICES ========== */
.services {
  padding: 110px 0;
  background: var(--shell);
  position: relative;
}
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 60px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -20px rgba(26, 58, 31, 0.3);
  border-color: var(--moss);
}
.service-card .service-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card .service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-photo img { transform: scale(1.04); }
.service-body { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bark-warm);
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; color: var(--forest-deep);
  margin-bottom: 14px; letter-spacing: -0.015em;
  line-height: 1.2;
}
.service-card p {
  font-size: 14.5px; line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 20px; flex-grow: 1;
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--bark-warm);
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.service-link::after {
  content: '→';
  transition: transform 0.2s;
}
.service-link:hover { gap: 14px; }

/* ========== BEFORE / AFTER GALLERY ========== */
.before-after {
  padding: 110px 0;
  background: var(--cream);
}
.ba-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 60px;
}
.ba-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.ba-card {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -18px rgba(26, 58, 31, 0.25);
}
.ba-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
}
.ba-photos .ba-photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.ba-photos .ba-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-photos .ba-photo-label {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(26, 31, 20, 0.75);
  color: var(--shell);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.ba-photos .ba-divider {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--rust);
  color: var(--shell);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.ba-info {
  padding: 22px 24px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.ba-info-left h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--forest-deep);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ba-info-left .meta {
  font-size: 12.5px; color: var(--stone);
  display: flex; gap: 14px;
}
.ba-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--forest-deep); color: var(--leaf);
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
.ba-tag.emergency-tag { background: var(--terracotta); color: var(--shell); }

/* ========== WHY US ========== */
.why-us {
  padding: 110px 0;
  background: var(--shell);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 70px; align-items: start;
}
.why-photo-wrap { position: relative; margin-top: 32px; }
.why-photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -20px rgba(26, 58, 31, 0.3);
  overflow: hidden;
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-photo-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 128px; height: 128px;
  background: var(--rust);
  color: var(--shell);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 16px 40px rgba(26, 58, 31, 0.4);
  border: 4px solid var(--shell);
  z-index: 3;
}
.why-photo-badge .num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; line-height: 1;
}
.why-photo-badge .lbl {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 6px;
}

.why-features { display: flex; flex-direction: column; gap: 0; }
.why-feature {
  display: grid; grid-template-columns: 76px 1fr;
  gap: 28px; align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.why-feature:last-child { border-bottom: none; }
.why-feature:first-child { padding-top: 0; }
.why-feature-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--bark-warm);
  line-height: 1; letter-spacing: -0.02em;
}
.why-feature h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--forest-deep);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.why-feature p {
  font-size: 14.5px; line-height: 1.65;
  color: var(--charcoal);
}

/* ========== TEAM IN ACTION STRIP ========== */
.team-strip {
  padding: 110px 0;
  background: var(--cream-warm);
}
.team-strip-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.team-strip-header .section-eyebrow { justify-content: center; }
.team-strip-header .section-eyebrow::before { display: none; }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-photo {
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s;
  box-shadow: 0 12px 30px -10px rgba(26, 58, 31, 0.25);
}
.team-photo:hover { transform: scale(1.02); }
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ========== STATS STRIP ========== */
.stats-strip {
  padding: 80px 0;
  background: var(--forest-deep);
  color: var(--shell);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200, 122, 63, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(132, 169, 108, 0.22) 0%, transparent 45%);
  pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; z-index: 2;
}
.stat-item {
  text-align: center; padding: 0 24px;
  border-right: 1px solid rgba(251, 246, 234, 0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  font-weight: 400; color: var(--rust);
  line-height: 1; letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 11.5px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 246, 234, 0.7);
  font-weight: 600;
}

/* ========== PROCESS ========== */
.process {
  padding: 110px 0;
  background: var(--shell);
}
.process-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}
.process-header .section-eyebrow { justify-content: center; }
.process-header .section-eyebrow::before { display: none; }
.process-header .section-lead { margin: 20px auto 0; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(26, 58, 31, 0.2);
}
.process-step .process-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.process-step .process-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.process-step-body { padding: 24px; }
.process-step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--bark-warm);
  line-height: 1; margin-bottom: 12px;
}
.process-step h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--forest-deep);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 13.5px; line-height: 1.6;
  color: var(--charcoal);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 110px 0;
  background: var(--cream);
}
.testimonials-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 50px;
}
.rating-big {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--shell);
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  margin-bottom: 16px;
}
.rating-big .stars { display: flex; gap: 2px; }
.rating-big .stars svg { width: 16px; height: 16px; fill: var(--rust); }
.rating-big .score {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: var(--forest-deep);
}
.rating-big .count { font-size: 12.5px; color: var(--stone); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(26, 58, 31, 0.2);
}
.testimonial .stars { display: flex; gap: 2px; margin-bottom: 18px; }
.testimonial .stars svg { width: 15px; height: 15px; fill: var(--rust); }
.testimonial blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; line-height: 1.5;
  color: var(--forest-deep);
  margin-bottom: 24px; font-weight: 400;
  letter-spacing: -0.005em;
  flex-grow: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--moss) 0%, var(--forest-deep) 100%);
  color: var(--shell);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.author-info .name {
  font-weight: 700; font-size: 14px;
  color: var(--forest-deep);
}
.author-info .loc {
  font-size: 12px; color: var(--stone); margin-top: 2px;
}

/* ========== SERVICE AREA ========== */
.service-area {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--moss) 0%, var(--forest-mid) 50%, var(--forest-deep) 100%);
  color: var(--shell);
  position: relative; overflow: hidden;
}
.service-area::before {
  content: ''; position: absolute;
  top: -150px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--rust) 0%, transparent 60%);
  opacity: 0.18; pointer-events: none;
}
.service-area-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
  position: relative; z-index: 2;
}
.service-area-left .section-eyebrow { color: var(--rust); }
.service-area-left .section-eyebrow::before { background: var(--rust); }
.service-area-left .section-title { color: var(--shell); }
.service-area-left .section-title em { color: var(--rust); }
.service-area-left .section-lead {
  color: rgba(251, 246, 234, 0.85);
  margin: 24px 0 32px;
}
.cities-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid rgba(251, 246, 234, 0.15);
}
.city-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(251, 246, 234, 0.15);
}
.city-row:nth-child(odd) {
  border-right: 1px solid rgba(251, 246, 234, 0.15);
  padding-right: 24px;
}
.city-row:nth-child(even) { padding-left: 24px; }
.city-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--shell);
}
.city-zip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: rgba(251, 246, 234, 0.55);
  letter-spacing: 0.05em;
}
.area-photo-wrap { position: relative; }
.area-photo {
  aspect-ratio: 5/6;
  border-radius: 20px;
  border: 1px solid rgba(251, 246, 234, 0.2);
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(0,0,0, 0.4);
}
.area-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ========== FAQ ========== */
.faq {
  padding: 110px 0;
  background: var(--shell);
}
.faq-grid {
  display: grid; grid-template-columns: 0.9fr 1.3fr;
  gap: 70px;
}
.faq-left { position: sticky; top: 100px; align-self: start; }
.faq-cta-box {
  margin-top: 32px;
  padding: 24px;
  background: var(--cream);
  border-radius: 18px;
  border: 1px solid var(--line);
}
.faq-cta-box h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; color: var(--forest-deep);
  margin-bottom: 10px;
}
.faq-cta-box p {
  font-size: 14px; color: var(--charcoal);
  margin-bottom: 16px;
}
.faq-cta-box a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--bark-warm); font-weight: 700;
  text-decoration: none; font-size: 14.5px;
}

.faq-items { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.25s;
}
.faq-item.open {
  background: var(--shell);
  border-color: var(--bark-warm);
  box-shadow: 0 12px 30px -12px rgba(139, 94, 60, 0.25);
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; gap: 16px;
  width: 100%; background: transparent; border: none;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  text-align: left;
}
.faq-question span {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--forest-deep);
  letter-spacing: -0.01em; line-height: 1.3;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--shell);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: ''; position: absolute;
  background: var(--forest-deep);
  transition: transform 0.25s;
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after { width: 2px; height: 12px; }
.faq-item.open .faq-toggle {
  background: var(--bark-warm); border-color: var(--bark-warm);
}
.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after { background: var(--shell); }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 26px 22px;
}
.faq-answer p {
  font-size: 14.5px; line-height: 1.7;
  color: var(--charcoal);
}
.faq-answer strong { color: var(--forest-deep); }

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--bark) 0%, var(--bark-warm) 100%);
  color: var(--shell);
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; opacity: 0.12;
  pointer-events: none;
}
.final-cta-inner {
  max-width: 820px; margin: 0 auto; padding: 0 32px;
  position: relative; z-index: 1;
}
.final-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--shell);
}
.final-cta h2 em { font-style: italic; color: var(--leaf); }
.final-cta p {
  font-size: 1.1rem; line-height: 1.6;
  margin-bottom: 36px;
  color: rgba(251, 246, 234, 0.85);
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.final-cta-buttons {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.final-cta .btn-primary {
  background: var(--leaf); color: var(--forest-deep);
  box-shadow: 0 12px 30px rgba(132, 169, 108, 0.3);
}
.final-cta .btn-primary:hover {
  background: var(--shell);
}
.final-cta .btn-secondary {
  background: transparent; color: var(--shell);
  border-color: var(--shell);
}
.final-cta .btn-secondary:hover { background: var(--shell); color: var(--bark); }

/* ========== FOOTER ========== */
footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo { margin-bottom: 24px; display: block; }
.footer-brand .footer-logo img {
  height: 64px;
  width: auto;
  /* Invert text portion via filter — keep logo visible on dark bg */
  filter: brightness(0) saturate(100%) invert(95%) sepia(8%) saturate(550%) hue-rotate(7deg) brightness(99%) contrast(92%);
}
.footer-brand p {
  font-size: 14px; line-height: 1.65;
  color: rgba(251, 246, 234, 0.65);
  margin-bottom: 24px; max-width: 380px;
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(251, 246, 234, 0.75);
  text-decoration: none; font-size: 14px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--rust); }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-col h5 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: var(--shell);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(251, 246, 234, 0.65);
  text-decoration: none; font-size: 13.5px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--rust); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(251, 246, 234, 0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(251, 246, 234, 0.5); }
.footer-bottom .badges { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-bottom .badges span {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(251, 246, 234, 0.45);
  padding: 5px 12px;
  border: 1px solid rgba(251, 246, 234, 0.15);
  border-radius: 999px;
  font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .nav-links > a:not(.nav-cta),
  .nav-links > .has-mega { display: none; }
  .mobile-toggle { display: block; }
  .logo img { height: 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; padding: 50px 24px 70px; }
  .hero-photo-wrap { margin: 0 auto; }
  .quote-strip-inner { grid-template-columns: 1fr; }
  .quote-card-inline { min-width: 0; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { grid-template-columns: 1fr; gap: 32px; }
  .ba-header { grid-template-columns: 1fr; gap: 32px; }
  .ba-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .why-photo { aspect-ratio: 16/10; max-width: 100%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-header { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .stat-item:nth-child(2) { border-right: none; }
  .service-area-grid { grid-template-columns: 1fr; }
  .area-photo { aspect-ratio: 16/10; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .utility-left { gap: 14px; font-size: 12px; }
  .utility-left .hide-mobile { display: none; }
  .nav-inner { padding: 14px 20px; }
  .logo img { height: 42px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-trust { gap: 24px; }
  .trust-item .num { font-size: 1.7rem; }
  .hero-photo-wrap { grid-template-columns: 1fr; grid-template-rows: auto auto auto; aspect-ratio: auto; }
  .hero-photo-main { grid-row: 1; aspect-ratio: 4/3; }
  .hero-photo-side-1, .hero-photo-side-2 { grid-column: 1; aspect-ratio: 16/10; }
  .hero-photo-side-1 { grid-row: 2; }
  .hero-photo-side-2 { grid-row: 3; }
  .hero-badge { position: relative; bottom: auto; left: auto; margin-top: 20px; display: inline-flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 70px 0; }
  .before-after { padding: 70px 0; }
  .why-us { padding: 70px 0; }
  .why-feature { grid-template-columns: 56px 1fr; gap: 20px; padding: 22px 0; }
  .why-feature-num { font-size: 2rem; }
  .team-strip { padding: 70px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .process { padding: 70px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .testimonials { padding: 70px 0; }
  .stats-strip { padding: 50px 0; }
  .stats-grid { grid-template-columns: 1fr; row-gap: 40px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(251, 246, 234, 0.15); padding-bottom: 40px; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .service-area { padding: 70px 0; }
  .cities-grid { grid-template-columns: 1fr; }
  .city-row:nth-child(odd) { border-right: none; padding-right: 0; }
  .city-row:nth-child(even) { padding-left: 0; }
  .faq { padding: 70px 0; }
  .faq-question span { font-size: 1.02rem; }
  .final-cta { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .emergency-inner { flex-direction: column; text-align: center; }
  .emergency-left { flex-direction: column; }
  .ticker-track { font-size: 1.05rem; gap: 40px; }
  .ticker-track span { gap: 40px; }
}


/* ====================================================================
   MOBILE-FIRST ADDITIONS (drawer, sticky call bar, breadcrumbs, etc.)
   ==================================================================== */

/* Body padding for sticky mobile call bar */
body { padding-bottom: 70px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* Hide desktop nav-links on mobile */
@media (max-width: 1099px) {
  .nav-links { display: none !important; }
}

/* Mobile-only phone link in nav header */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bark-warm);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  margin-left: auto;
}
.nav-phone:hover { background: rgba(139, 94, 60, 0.08); }
.nav-phone svg { width: 14px; height: 14px; }
@media (min-width: 1100px) { .nav-phone { display: none; } }

/* Mobile menu toggle */
.mobile-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  color: var(--forest-deep);
  width: 44px;
  height: 44px;
  padding: 0;
}
.mobile-toggle svg { width: 22px; height: 22px; }
@media (min-width: 1100px) { .mobile-toggle { display: none !important; } }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: var(--shell);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 14, 0.55);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.drawer-header img { height: 42px; }
.drawer-close {
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  color: var(--forest-deep);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.drawer-close svg { width: 22px; height: 22px; }
.drawer-nav { padding: 16px 24px; flex-grow: 1; }
.drawer-nav > a,
.drawer-nav .drawer-accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--forest-deep);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.drawer-nav .accordion-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}
.drawer-nav .drawer-accordion.open .accordion-icon { transform: rotate(180deg); }
.drawer-nav .drawer-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 12px;
}
.drawer-nav .drawer-accordion.open .drawer-accordion-content { max-height: 700px; }
.drawer-nav .drawer-accordion-content a {
  display: block;
  color: var(--forest-mid);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 58, 31, 0.06);
}
.drawer-nav .drawer-accordion-content a:last-child { border-bottom: none; }
.drawer-cta { padding: 16px 24px 32px; border-top: 1px solid var(--line); }
.drawer-cta a.btn { width: 100%; justify-content: center; margin-bottom: 10px; }
body.drawer-open { overflow: hidden; }

/* Sticky Mobile Call Bar */
.call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--forest-deep);
  color: var(--shell);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
  border-top: 2px solid var(--rust);
}
.call-bar:hover { background: var(--bark); }
.call-bar .call-bar-left { display: flex; align-items: center; gap: 10px; }
.call-bar .call-bar-icon {
  width: 36px; height: 36px;
  background: var(--rust);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.call-bar svg { width: 18px; height: 18px; }
.call-bar .call-bar-text-stack { display: flex; flex-direction: column; line-height: 1.2; }
.call-bar .call-bar-label {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(251, 246, 234, 0.7);
  font-weight: 600;
}
.call-bar .call-bar-number {
  font-family: var(--display); font-size: 18px;
  color: var(--shell); letter-spacing: -0.005em;
}
.call-bar .call-bar-cta {
  background: var(--rust); color: var(--shell);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 900px) { .call-bar { display: none; } }

/* Breadcrumbs */
.breadcrumbs {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.breadcrumbs-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 768px) { .breadcrumbs-inner { padding: 0 32px; } }
.breadcrumbs a { color: var(--bark-warm); text-decoration: none; font-weight: 600; }
.breadcrumbs a:hover { color: var(--forest-deep); text-decoration: underline; }
.breadcrumbs .sep { color: var(--stone); margin: 0 2px; }
.breadcrumbs .current { color: var(--forest-deep); font-weight: 600; }

/* Page hero (used on inner pages, not homepage) */
.page-hero {
  background: linear-gradient(160deg, var(--shell) 0%, var(--cream) 100%);
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .page-hero { padding: 70px 0 80px; } }
.page-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .page-hero-inner { padding: 0 32px; } }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .page-hero-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 400;
  color: var(--forest-deep);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.page-hero h1 em { font-style: italic; color: var(--bark-warm); }
.page-hero h1 .marked {
  position: relative; display: inline-block; color: var(--forest-deep);
}
.page-hero h1 .marked::after {
  content: ''; position: absolute;
  bottom: 4px; left: -4px; right: -4px;
  height: 12px; background: var(--leaf);
  z-index: -1; border-radius: 4px; opacity: 0.55;
}
.page-hero-lead {
  font-size: 1.05rem; line-height: 1.65;
  color: var(--charcoal); max-width: 580px;
  margin-bottom: 30px;
}
@media (min-width: 768px) { .page-hero-lead { font-size: 1.15rem; } }
.page-hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.page-hero-photo {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(26, 58, 31, 0.32);
  aspect-ratio: 4/3;
}
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-trust {
  display: flex; gap: 28px; padding-top: 24px;
  border-top: 1px solid var(--line); flex-wrap: wrap;
}

/* Quote form (full version on inner pages) */
.quote-form-section { padding: 60px 0; background: var(--cream); }
@media (min-width: 768px) { .quote-form-section { padding: 90px 0; } }
.quote-form-card {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 24px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 24px 48px -16px rgba(26, 58, 31, 0.18);
}
@media (min-width: 768px) { .quote-form-card { padding: 48px; } }
.quote-form-header { text-align: center; margin-bottom: 30px; }
.quote-form-header h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--forest-deep);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.quote-form-header p { color: var(--charcoal); font-size: 15px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--charcoal);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  min-height: 48px;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--shell);
  color: var(--forest-deep);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--bark-warm);
  box-shadow: 0 0 0 4px rgba(139, 94, 60, 0.12);
}
.honeypot { position: absolute; left: -10000px; height: 0; opacity: 0; pointer-events: none; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; }
.form-disclaimer {
  font-size: 12px; color: var(--stone);
  text-align: center; margin-top: 14px;
}
.form-disclaimer a { color: var(--bark-warm); }
.form-success {
  text-align: center;
  padding: 28px;
  background: rgba(132, 169, 108, 0.15);
  border: 1px solid var(--leaf);
  border-radius: 12px;
  color: var(--forest-deep);
  display: none;
}
.form-success.show { display: block; }
.form-success h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--forest-deep);
  margin-bottom: 8px;
}

/* Buttons that match design system */
.btn-rust {
  background: var(--rust);
  color: var(--shell);
  box-shadow: 0 8px 24px rgba(200, 122, 63, 0.4);
}
.btn-rust:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}
.btn-large {
  padding: 18px 32px;
  font-size: 16px;
  min-height: 56px;
}

/* Long content / sidebar (service + city pages) */
.long-content { padding: 50px 0; background: var(--shell); }
@media (min-width: 768px) { .long-content { padding: 80px 0; } }
.long-content-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) { .long-content-inner { grid-template-columns: 1fr 280px; gap: 56px; } }
.long-content-main h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--forest-deep);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 36px 0 18px;
}
.long-content-main h2:first-child { margin-top: 0; }
.long-content-main h2 em { font-style: italic; color: var(--bark-warm); }
.long-content-main h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--forest-deep);
  margin: 28px 0 14px;
}
.long-content-main p {
  font-size: 16px; line-height: 1.7;
  color: var(--charcoal); margin-bottom: 18px;
}
.long-content-main strong { color: var(--forest-deep); }
.long-content-main ul,
.long-content-main ol { margin: 0 0 22px 22px; }
.long-content-main li {
  font-size: 16px; line-height: 1.7;
  color: var(--charcoal); margin-bottom: 8px;
}
.long-content-main a {
  color: var(--bark-warm); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 3px;
  font-weight: 600;
}
.long-content-main .content-photo {
  border-radius: 16px; overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 20px 40px -15px rgba(26, 58, 31, 0.22);
  aspect-ratio: 16/10;
}
.long-content-main .content-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.long-content-main .callout {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--charcoal) 100%);
  color: var(--shell);
  padding: 26px;
  border-radius: 16px;
  margin: 28px 0;
}
.long-content-main .callout h4 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--shell);
}
.long-content-main .callout p { color: rgba(251, 246, 234, 0.9); margin-bottom: 14px; }
.long-content-main .callout a { color: var(--leaf); font-weight: 700; }
.content-sidebar { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 900px) {
  .content-sidebar { position: sticky; top: 100px; align-self: start; }
}
.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.sidebar-card h4 {
  font-family: var(--display);
  font-size: 1.18rem;
  color: var(--forest-deep);
  margin-bottom: 12px;
}
.sidebar-card .price-display {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--bark-warm);
  line-height: 1; margin: 10px 0 6px;
}
.sidebar-card .price-label {
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
  margin-bottom: 16px;
}
.sidebar-card ul { list-style: none; margin: 0 !important; padding: 0; }
.sidebar-card li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--charcoal);
  margin-bottom: 10px !important; line-height: 1.5;
}
.sidebar-card li::before {
  content: '✓';
  color: var(--leaf);
  font-weight: 700;
  flex-shrink: 0;
}
.sidebar-card .btn { width: 100%; justify-content: center; margin-top: 12px; }
.sidebar-card.cta-card {
  background: var(--forest-deep);
  color: var(--shell);
  text-align: center;
}
.sidebar-card.cta-card h4 { color: var(--shell); }
.sidebar-card.cta-card p {
  color: rgba(251, 246, 234, 0.85);
  font-size: 14px; line-height: 1.5;
  margin-bottom: 16px;
}
.sidebar-card.cta-card .phone-large {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--rust);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

/* Related grid (used on service/city/blog) */
.related { padding: 60px 0; background: var(--cream); }
@media (min-width: 768px) { .related { padding: 90px 0; } }
.related-header { text-align: center; margin-bottom: 40px; }
.related-header .section-eyebrow { justify-content: center; }
.related-header .section-eyebrow::before { display: none; }
.related-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 600px) { .related-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 900px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(26, 58, 31, 0.2);
  border-color: var(--moss);
}
.related-card h4 {
  font-family: var(--display);
  font-size: 1.15rem; color: var(--forest-deep);
  letter-spacing: -0.015em;
}
.related-card p {
  font-size: 13.5px; line-height: 1.55;
  color: var(--charcoal); flex-grow: 1;
}
.related-card .arrow {
  font-weight: 700; color: var(--bark-warm);
  font-size: 14px;
}
.related-card.all-link {
  background: var(--forest-deep); color: var(--shell);
  display: flex; align-items: center; justify-content: center;
  text-align: center; min-height: 140px;
}
.related-card.all-link h4 { color: var(--shell); }
.related-card.all-link .arrow { color: var(--rust); }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -18px rgba(26, 58, 31, 0.25);
  border-color: var(--moss);
}
.blog-card-photo { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-photo img { transform: scale(1.04); }
.blog-card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.blog-card h3 {
  font-family: var(--display);
  font-size: 1.18rem;
  color: var(--forest-deep);
  line-height: 1.22;
}
.blog-card-excerpt { font-size: 14px; line-height: 1.6; color: var(--charcoal); flex-grow: 1; }
.blog-card-read-more { color: var(--bark-warm); font-weight: 700; font-size: 13.5px; margin-top: 4px; }
.article-meta {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin-bottom: 16px;
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.06em; color: var(--stone);
}
.article-meta .category {
  background: var(--bark-warm); color: var(--shell);
  padding: 4px 10px; border-radius: 999px;
  font-weight: 700; text-transform: uppercase;
}
.article-body { max-width: 760px; margin: 0 auto; }
.article-hero-photo {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 30px;
  box-shadow: 0 24px 48px -16px rgba(26, 58, 31, 0.25);
}
.article-hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Image pair (for service/city secondary images) */
.image-pair {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin: 24px 0;
}
@media (min-width: 600px) { .image-pair { grid-template-columns: 1fr 1fr; gap: 20px; } }

/* Accessibility */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile responsive fixes for v4 sections that were desktop-first */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr !important; gap: 40px !important; padding: 40px 20px 50px !important; }
  .services-header { grid-template-columns: 1fr !important; gap: 24px !important; margin-bottom: 40px !important; }
  .services-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .ba-header { grid-template-columns: 1fr !important; gap: 24px !important; margin-bottom: 40px !important; }
  .ba-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .why-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .why-us, .before-after, .services, .team-strip, .process, .testimonials, .service-area, .faq, .final-cta { padding: 60px 0 !important; }
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 30px 16px !important; }
  .stat-item { padding: 0 12px !important; border-right: none !important; }
  .process-steps { grid-template-columns: 1fr !important; gap: 20px !important; }
  .testimonials-header { grid-template-columns: 1fr !important; gap: 20px !important; margin-bottom: 36px !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .service-area-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .cities-grid { grid-template-columns: 1fr !important; }
  .city-row:nth-child(odd), .city-row:nth-child(even) { padding-left: 0 !important; padding-right: 0 !important; border-right: none !important; }
  .faq-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .faq-left { position: static !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 36px !important; }
  .footer-bottom { flex-direction: column !important; align-items: flex-start !important; }
  .quote-strip-inner { grid-template-columns: 1fr !important; gap: 24px !important; }
  .quote-card-inline { min-width: 0 !important; padding: 22px !important; }
  .quote-card-inline input, .quote-card-inline select { min-width: 0 !important; width: 100% !important; flex: 1 1 100% !important; }
  .quote-card-inline .submit-btn { width: 100% !important; justify-content: center !important; }
  .ba-photos { grid-template-columns: 1fr !important; }
  .hero h1 { font-size: clamp(1.85rem, 7vw, 2.4rem) !important; }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.2rem) !important; }
  .emergency-inner { flex-direction: column !important; text-align: center !important; }
  .emergency-left { flex-direction: column !important; }
  .hide-mobile { display: none !important; }
  .utility-inner { gap: 8px !important; }
  .utility-left { gap: 12px !important; }
  .utility-right { gap: 12px !important; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr !important; }
  .hero-photo-wrap {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    aspect-ratio: auto !important;
  }
  .hero-photo-main { grid-row: 1 !important; aspect-ratio: 4/3 !important; }
  .hero-photo-side-1 { grid-column: 1 !important; grid-row: 2 !important; aspect-ratio: 16/10 !important; }
  .hero-photo-side-2 { grid-column: 1 !important; grid-row: 3 !important; aspect-ratio: 16/10 !important; }
  .team-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .hero-trust { gap: 18px !important; }
  .trust-item .num { font-size: 1.55rem !important; }
}

/* hide-mobile utility shown on tablet+ */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline-flex; } }
