:root {
  --bg: #030603;
  --panel: #071006;
  --panel2: #0d150b;
  --green: #9acd20;
  --green2: #b9f02d;
  --orange: #f4a21a;
  --white: #f5f6f1;
  --muted: #c0c8ba;
  --line: rgba(154, 197, 30, 0.42);
  --purple: #b64cff;
  --purple2: #d65dff;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.55), 0 0 38px rgba(154, 197, 30, 0.16);
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(154, 197, 30, 0.12), transparent 28%),
    linear-gradient(180deg, #050705, #010301);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.section {
  padding: 76px 0;
  scroll-margin-top: var(--header-h);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-divider {
  width: 100%;
  height: 32px;
  opacity: 0.7;
  margin: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px clamp(16px, 4vw, 48px);
  min-height: var(--header-h);
  background: rgba(2, 4, 2, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green2);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  z-index: 52;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.4));
}

.brand__title {
  max-width: 14ch;
  line-height: 1.05;
  font-size: clamp(14px, 2.5vw, 18px);
}

.site-nav-panel {
  display: contents;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav > a,
.nav-group > summary {
  text-decoration: none;
  color: #f1f4ed;
  cursor: pointer;
  list-style: none;
}

.site-nav > a:hover,
.nav-group[open] > summary,
.nav-group a:hover {
  color: var(--green2);
}

.site-nav a.is-current,
.nav-panel a.is-current {
  color: var(--green2);
}

.nav-group {
  position: relative;
}

.nav-group > summary::-webkit-details-marker {
  display: none;
}

.nav-group > summary::after {
  content: " ▾";
  color: var(--orange);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 12px;
  background: #0a1208;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  z-index: 60;
}

.nav-panel a {
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
}

.nav-panel a:hover {
  color: var(--green2);
}

.phone-link {
  color: var(--green2) !important;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--green2);
  color: var(--green2);
  padding: 8px 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 52;
}

.nav-toggle__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
  height: 16px;
}

.nav-toggle__icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.site-header.is-open .nav-toggle__icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle__icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle__label {
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* Typography */
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
}

h1,
h2,
h3 {
  font-family: Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(38px, 6.5vw, 82px);
  color: var(--green2);
  text-shadow: 0 5px 0 #000;
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
  color: var(--green2);
  text-shadow: 0 4px 0 #000;
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--green2);
}

p {
  font-weight: 700;
  line-height: 1.55;
  color: var(--muted);
}

.lead {
  max-width: 640px;
  font-size: clamp(17px, 2.2vw, 20px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 2px solid var(--green2);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease;
}

.btn.primary {
  background: var(--green2);
  color: #071006;
}

.btn.ghost {
  background: transparent;
  color: var(--white);
}

.btn:hover,
.byte-float-button:hover {
  transform: translateY(-2px);
}

/* Hero */
.hero {
  padding-top: 48px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}

/* Homepage hero background set in v16 polish section below */

.hero--page {
  background:
    linear-gradient(135deg, rgba(4, 8, 4, 0.98), rgba(9, 18, 8, 0.94)),
    url("assets/images/hero-home-wide-bg.webp") center/cover no-repeat;
  border-bottom: 1px solid rgba(154, 197, 30, 0.2);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.hero-grid--single {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-visual {
  margin: 0;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
  background: #020302;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Trust bar */
.trust-bar {
  border-block: 2px solid var(--green);
  background: linear-gradient(90deg, #10170b, #050805);
  padding: 20px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.trust-item {
  text-align: center;
  padding: 10px 8px;
  border: 1px solid rgba(154, 197, 30, 0.25);
  background: rgba(0, 0, 0, 0.25);
}

.trust-item strong {
  display: block;
  font-family: Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  color: var(--green2);
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.1;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

/* Services */
.services-section {
  background: rgba(5, 11, 5, 0.62);
  border-top: 1px solid rgba(154, 197, 30, 0.18);
  border-bottom: 1px solid rgba(154, 197, 30, 0.18);
}

.section-head {
  max-width: 850px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(154, 197, 30, 0.32);
  padding: 22px;
  min-height: 190px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(244, 162, 26, 0.12);
}

.service-card:hover {
  border-color: var(--green2);
  transform: translateY(-3px);
}

.service-card img {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  margin: 0;
}

.service-card .link-arrow {
  display: inline-block;
  margin-top: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Feature / content blocks */
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.media-card {
  margin: 0;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
  background: #020302;
}

.content-panel {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(154, 197, 30, 0.28);
  padding: 28px;
}

.content-panel h3 {
  margin-bottom: 12px;
}

.content-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Emergency */
.emergency-band {
  background:
    radial-gradient(circle at 20% 50%, rgba(244, 162, 26, 0.2), transparent 40%),
    linear-gradient(135deg, #1a0f05, #071006);
  border-block: 2px solid var(--orange);
}

.emergency-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.emergency-inner h2 {
  color: var(--orange);
}

/* Areas */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.areas-grid li {
  list-style: none;
  padding: 12px 14px;
  border: 1px solid rgba(154, 197, 30, 0.25);
  background: rgba(0, 0, 0, 0.22);
  font-weight: 700;
  color: var(--muted);
  font-size: 14px;
}

.areas-note {
  margin-top: 18px;
  font-size: 15px;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #071006, #101807);
}

.cta-box {
  border: 2px solid var(--line);
  background:
    radial-gradient(circle at 85% 20%, rgba(154, 197, 30, 0.18), transparent 28%),
    rgba(0, 0, 0, 0.28);
  padding: 46px 28px;
  text-align: center;
}

.mega-phone {
  display: inline-block;
  margin-top: 16px;
  color: var(--green2);
  font-family: Impact, "Arial Black", sans-serif;
  text-decoration: none;
  font-size: clamp(40px, 7vw, 96px);
  white-space: nowrap;
  text-shadow: 0 5px 0 #000;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 14px 0 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--green2);
  text-decoration: none;
}

/* Related links */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.related-links a {
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--green2);
}

.related-links a:hover {
  background: rgba(154, 197, 30, 0.12);
}

/* Contact */
.contact-stack {
  display: grid;
  gap: 20px;
  max-width: 720px;
}

.contact-phone {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--green2);
  text-decoration: none;
  text-shadow: 0 4px 0 #000;
}

/* Footer */
.footer {
  padding: 0;
  background: #030603;
  border-top: 1px solid rgba(154, 197, 30, 0.35);
  font: 700 14px/1.5 Arial, sans-serif;
  color: #adb8a6;
}

.footer-core {
  padding: 34px 0;
}

.footer strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 26px;
  color: var(--green2);
}

.footer a {
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 12px;
}

.footer-links a {
  color: var(--green2);
  text-transform: uppercase;
  font-size: 12px;
}

.demonsite-credit {
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(183, 76, 255, 0.75);
  background: linear-gradient(135deg, #100719 0%, #1a0a28 100%);
}

.demonsite-credit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple2), #7b33ff, var(--purple2));
  box-shadow: 0 0 8px rgba(160, 70, 255, 0.35);
}

.demonsite-credit-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  padding-block: 10px 12px;
}

.demonsite-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 4px 8px;
}

.demonsite-eyebrow {
  margin: 0;
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d8bdf5;
}

.demonsite-link {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  font-family: Impact, "Arial Black", sans-serif;
  color: var(--purple2);
  text-shadow: 0 1px 0 #000;
  text-decoration: none;
}

.demonsite-link:hover {
  color: #e8b4ff;
}

.demonsite-link .dot {
  color: #f3deff;
  margin: 0;
  text-shadow: none;
}

.demonsite-copy p {
  display: none;
}

.demonsite-byte-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.demonsite-byte-glow {
  display: none;
}

.demonsite-byte {
  position: relative;
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 8px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

/* Float + mobile call */
.byte-float-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(27, 8, 44, 0.96), rgba(67, 21, 117, 0.96));
  border: 2px solid rgba(199, 107, 255, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 20px rgba(161, 69, 255, 0.32);
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.byte-float-button img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.byte-float-button span {
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f5eaff;
}

.mobile-bottom-call {
  display: none;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid .media-card {
    order: -1;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav-panel {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 51;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.2s ease;
  }

  .site-nav-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .site-header.is-open .site-nav-panel {
    pointer-events: auto;
    visibility: visible;
  }

  .site-header.is-open .site-nav-panel::before {
    opacity: 1;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 16px clamp(16px, 4vw, 48px) 24px;
    background: #050805;
    border-bottom: 2px solid rgba(244, 162, 26, 0.55);
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
  }

  .site-header {
    flex-wrap: nowrap;
    position: sticky;
  }

  .site-nav > a,
  .nav-group > summary,
  .phone-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 8px 4px;
    font-size: 14px;
  }

  .phone-link {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(154, 197, 30, 0.28);
    font-size: clamp(22px, 6vw, 28px) !important;
    justify-content: center;
  }

  .nav-panel {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0 0 4px 12px;
    background: transparent;
    border-left: 2px solid rgba(244, 162, 26, 0.45);
    margin: 0 0 8px 4px;
  }

  .nav-panel a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 48px 0;
  }

  .service-grid,
  .areas-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 28px 18px;
  }

  .mega-phone {
    font-size: 36px;
  }

}

@media (max-width: 760px) {
  body {
    padding-bottom: 96px;
  }

  .mobile-bottom-call {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 64px;
    padding: 12px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #b7ff1d 0%, #8fd20f 100%);
    border: 2px solid #e2ff78;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.62), 0 0 22px rgba(183, 255, 29, 0.28);
    color: #061006;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Impact, "Arial Black", Arial, sans-serif;
    letter-spacing: 0.03em;
  }

  .mobile-bottom-call__label {
    font-size: 16px;
    line-height: 1;
  }

  .mobile-bottom-call strong {
    font-size: 22px;
    line-height: 1;
    color: #061006;
    text-shadow: none;
    white-space: nowrap;
  }

  .byte-float-button {
    bottom: 90px;
    right: 12px;
    transform: scale(0.86);
    transform-origin: right bottom;
  }

  .byte-float-button:hover {
    transform: translateY(-2px) scale(0.88);
  }
}


/* ==========================================================================
   v16 polish — consolidated layout, hero, tiles, emergency, chrome
   ========================================================================== */

/* Service page hero backgrounds */
body[data-page="tree-removal"] .hero--page {
  background:
    linear-gradient(135deg, rgba(4, 8, 4, 0.96), rgba(9, 18, 8, 0.82)),
    url("assets/images/tree-removal-bigfoot.webp") center/cover no-repeat;
}
body[data-page="tree-trimming"] .hero--page {
  background:
    linear-gradient(135deg, rgba(4, 8, 4, 0.96), rgba(9, 18, 8, 0.82)),
    url("assets/images/tree-trimming-bigfoot.webp") center/cover no-repeat;
}
body[data-page="stump-grinding"] .hero--page {
  background:
    linear-gradient(135deg, rgba(4, 8, 4, 0.96), rgba(9, 18, 8, 0.8)),
    url("assets/images/stump-grinding-bigfoot.webp") center/cover no-repeat;
}
body[data-page="storm-cleanup"] .hero--page {
  background:
    linear-gradient(135deg, rgba(4, 8, 4, 0.96), rgba(9, 18, 8, 0.74)),
    url("assets/images/storm-cleanup-bigfoot.webp") center/cover no-repeat;
}
body[data-page="emergency-tree-service"] .hero--page {
  background:
    linear-gradient(135deg, rgba(4, 8, 4, 0.95), rgba(20, 9, 2, 0.76)),
    url("assets/images/emergency-tree-service-bigfoot.webp") center/cover no-repeat;
}
body[data-page="seasoned-firewood"] .hero--page {
  background:
    linear-gradient(135deg, rgba(4, 8, 4, 0.96), rgba(9, 18, 8, 0.75)),
    url("assets/images/seasoned-firewood-bigfoot.webp") center/cover no-repeat;
}
body[data-page="about"] .hero--page,
body[data-page="contact"] .hero--page,
body[data-page="service-areas"] .hero--page {
  background:
    linear-gradient(135deg, rgba(4, 8, 4, 0.96), rgba(9, 18, 8, 0.78)),
    url("assets/images/hero-home-wide-bg.webp") center/cover no-repeat;
}

.hero--page .hero-grid > div,
.hero--page .hero-grid--single > div {
  background: rgba(3, 6, 3, 0.82);
  border: 1px solid rgba(154, 197, 30, 0.35);
  padding: clamp(22px, 4vw, 32px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* Homepage hero */
.hero--home {
  display: flex;
  align-items: center;
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(48px, 6vw, 72px);
  background:
    radial-gradient(circle at 72% 52%, rgba(154, 197, 30, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(3, 6, 3, 0.98) 0%, rgba(3, 6, 3, 0.9) 34%, rgba(3, 6, 3, 0.62) 58%, rgba(3, 6, 3, 0.92) 100%),
    url("assets/images/hero-home-wide-bg.webp") center/cover no-repeat;
}

.hero--home .hero-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.hero--home h1 {
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 1.02;
  max-width: 11.5ch;
  margin-bottom: 4px;
}

.hero--home .lead {
  max-width: 36rem;
  margin-top: 16px;
}

.hero--home .hero-actions {
  margin-top: 22px;
}

.hero-visual {
  position: relative;
  transform: rotate(-1deg);
  border: 3px solid rgba(185, 240, 45, 0.7);
  background: #030603;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 0 70px rgba(0, 0, 0, 0.36);
}

.hero-visual::after {
  content: "TREE WORK • STUMP GRINDING • FREE QUOTES";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 10px 14px;
  background: linear-gradient(90deg, rgba(3, 6, 3, 0.94), rgba(3, 6, 3, 0.62));
  border-top: 1px solid rgba(185, 240, 45, 0.65);
  color: var(--green2);
  font: 900 12px/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.07) contrast(1.06);
}

/* Service tiles */
.service-card {
  padding: 0;
  min-height: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.service-card-media {
  display: block;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(154, 197, 30, 0.28);
  background: #020302;
}

.service-card-media img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.06);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.1);
  opacity: 1;
}

.service-card-media ~ img[src*="assets/icons/"] {
  display: none;
}

.service-card h3,
.service-card p,
.service-card .link-arrow {
  margin-left: 20px;
  margin-right: 20px;
}

.service-card h3 {
  margin-top: 16px;
  font-size: clamp(20px, 2.5vw, 26px);
}

.service-card p {
  line-height: 1.45;
}

.service-card .link-arrow {
  margin-bottom: 20px;
  margin-top: 10px;
}

.service-grid .service-card[href="tree-removal.html"] .service-card-media img {
  object-position: 34% 36%;
}
.service-grid .service-card[href="tree-trimming.html"] .service-card-media img {
  object-position: 31% 30%;
}
.service-grid .service-card[href="stump-grinding.html"] .service-card-media img {
  object-position: 58% 56%;
}
.service-grid .service-card[href="storm-cleanup.html"] .service-card-media img {
  object-position: 34% 38%;
}
.service-grid .service-card[href="emergency-tree-service.html"] .service-card-media img {
  object-position: 47% 36%;
}
.service-grid .service-card[href="seasoned-firewood.html"] .service-card-media img {
  object-position: 42% 44%;
}

/* Feature + areas */
.feature-section .feature-grid {
  gap: clamp(28px, 4vw, 44px);
}

.feature-section .feature-grid > div:last-child p {
  max-width: 36rem;
}

.areas-section .areas-grid {
  margin-top: 24px;
}

.areas-section .areas-grid li {
  transition: border-color 0.2s ease, background 0.2s ease;
}

.areas-section .areas-grid li:hover {
  border-color: rgba(185, 240, 45, 0.55);
  background: rgba(154, 197, 30, 0.08);
  color: var(--white);
}

.areas-note a {
  color: var(--green2);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
}

/* Emergency band */
.emergency-band {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(37, 19, 0, 0.94), rgba(77, 42, 2, 0.84), rgba(37, 19, 0, 0.94)),
    url("assets/images/emergency-band-bg.webp") center/cover no-repeat;
}

.emergency-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 35%, rgba(244, 162, 26, 0.22), transparent 40%);
}

.emergency-inner h2,
.emergency-inner p,
.emergency-inner .eyebrow {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.emergency-inner .btn.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
}

.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

/* DemonSite footer — visible but compact */
.demonsite-credit-inner {
  padding-block: 14px 16px;
  gap: 10px 16px;
}

.demonsite-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.demonsite-link {
  font-size: 17px;
}

/* Desktop floating badge — smaller, out of the way */
@media (min-width: 761px) {
  .byte-float-button {
    right: 14px;
    bottom: 14px;
    padding: 6px 10px 6px 6px;
    transform: scale(0.92);
    transform-origin: right bottom;
  }

  .byte-float-button:hover {
    transform: translateY(-2px) scale(0.94);
  }

  .byte-float-button img {
    width: 40px;
    height: 40px;
  }

  .byte-float-button span {
    font-size: 10px;
  }

  .site-header {
    gap: 20px;
  }

  .site-nav {
    gap: 16px;
  }
}

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

  .hero-visual {
    transform: none;
    max-width: 640px;
    margin-inline: auto;
  }

  .hero--home h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .hero--home {
    padding-top: 24px;
    padding-bottom: 36px;
    background:
      linear-gradient(180deg, rgba(3, 6, 3, 0.96) 0%, rgba(3, 6, 3, 0.72) 42%, rgba(3, 6, 3, 0.96) 100%),
      url("assets/images/hero-mobile-bigfoot.webp") center top/cover no-repeat;
  }

  .hero--home .hero-grid {
    gap: 20px;
  }

  .hero--home h1 {
    font-size: clamp(28px, 8vw, 40px);
    max-width: none;
  }

  .hero--home .hero-actions {
    margin-top: 18px;
  }

  .hero--home .hero-actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 280px);
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .service-card-media img {
    height: 190px;
    transform: scale(1.03);
  }

  .service-grid .service-card[href="tree-removal.html"] .service-card-media img {
    object-position: 32% 35%;
  }
  .service-grid .service-card[href="tree-trimming.html"] .service-card-media img {
    object-position: 28% 30%;
  }
  .service-grid .service-card[href="stump-grinding.html"] .service-card-media img {
    object-position: 59% 57%;
  }
  .service-grid .service-card[href="storm-cleanup.html"] .service-card-media img {
    object-position: 30% 37%;
  }
  .service-grid .service-card[href="emergency-tree-service.html"] .service-card-media img {
    object-position: 48% 38%;
  }
  .service-grid .service-card[href="seasoned-firewood.html"] .service-card-media img {
    object-position: 38% 42%;
  }

  .byte-float-button {
    bottom: 92px;
    right: 10px;
    transform: scale(0.8);
  }

  .byte-float-button span {
    display: none;
  }

  .byte-float-button {
    padding: 6px;
    border-radius: 50%;
  }
}

@media (max-width: 980px) {
  .service-grid {
    gap: 16px;
  }
}






/* v19 true responsive service-area cards */
body[data-page="service-areas"] .section {
  padding: clamp(34px, 5vw, 56px) 0;
}

body[data-page="service-areas"] .hero + .section {
  padding-top: clamp(34px, 5vw, 50px);
}

body[data-page="service-areas"] .section + .section {
  padding-top: clamp(18px, 3vw, 34px);
}

body[data-page="service-areas"] .section h2 {
  margin-bottom: 16px;
}

body[data-page="service-areas"] .areas-grid,
.areas-grid {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 12px 16px;
  align-items: stretch;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

body[data-page="service-areas"] .areas-grid li,
.areas-grid li {
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid rgba(154, 197, 30, 0.30);
  background: rgba(0, 0, 0, 0.24);
  color: var(--muted);
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: normal;
}

body[data-page="service-areas"] .areas-grid li::before,
.areas-grid li::before {
  content: "";
  flex: 0 0 3px;
  align-self: stretch;
  margin-right: 12px;
  background: linear-gradient(180deg, var(--green2), var(--orange));
}

body[data-page="service-areas"] .areas-note {
  margin-top: 24px;
  max-width: 1180px;
}

@media (max-width: 860px) {
  body[data-page="service-areas"] .areas-grid,
  .areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  }
}

@media (max-width: 560px) {
  body[data-page="service-areas"] .areas-grid,
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body[data-page="service-areas"] .areas-grid li,
  .areas-grid li {
    min-height: 44px;
    padding: 12px 13px;
  }
}


/* v20 area-card hover parity fix */
.areas-grid li {
  position: relative;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.areas-grid li:hover,
.areas-grid li:focus-within {
  border-color: rgba(185, 240, 45, 0.72);
  background:
    linear-gradient(90deg, rgba(154, 197, 30, 0.10), rgba(244, 162, 26, 0.055)),
    rgba(0, 0, 0, 0.30);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34), 0 0 18px rgba(154, 197, 30, 0.08);
}

.areas-grid li:hover::before,
.areas-grid li:focus-within::before {
  background: linear-gradient(180deg, var(--orange), var(--green2));
}


/* v21 business-card color restore */
:root {
  --green: #9acd20;
  --green2: #b9f02d;
  --orange: #f4a21a;
  --orange2: #ffb02e;
  --card-dark: #030603;
  --card-panel: #071006;
}

/* Header and brand: match the card's green/orange split */
.brand__title {
  color: var(--green2);
}

.phone-link {
  color: var(--green2) !important;
  text-shadow: 0 2px 0 #000;
}

.site-header {
  border-bottom: 2px solid rgba(244, 162, 26, 0.55);
}

/* Headline split accents */
.hero--home h1,
.section-head h2,
.feature-grid h2,
.cta-box h2,
body[data-page="service-areas"] h2 {
  color: var(--green2);
}

.hero--home h1 .orange,
h1 .orange,
h2 .orange,
h3 .orange {
  color: var(--orange2);
}

.eyebrow {
  color: var(--orange2);
}

.hero--home .eyebrow,
.section-head .eyebrow {
  color: var(--orange2);
}

/* Buttons: primary green, secondary orange like the business card */
.btn.primary {
  background: var(--green2);
  border-color: var(--green2);
  color: #061006;
}

.btn.primary:hover {
  background: var(--orange2);
  border-color: var(--orange2);
  color: #080603;
}

.btn.ghost {
  border-color: var(--orange2);
  color: var(--white);
}

.btn.ghost:hover {
  background: rgba(244, 162, 26, 0.16);
  color: var(--orange2);
}

/* Hero image frame: restore orange/green card balance */
.hero-visual {
  border-color: rgba(244, 162, 26, 0.82);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(244, 162, 26, 0.13),
    0 0 22px rgba(154, 197, 30, 0.10);
}

.hero-visual::after {
  color: var(--orange2);
  border-top-color: rgba(244, 162, 26, 0.72);
}

/* Trust strip gets alternating green/orange emphasis */
.trust-bar {
  border-block-color: var(--orange);
  background: linear-gradient(90deg, #10170b, #110b03, #050805);
}

.trust-item {
  border-color: rgba(244, 162, 26, 0.30);
}

.trust-item:nth-child(odd) strong {
  color: var(--green2);
}

.trust-item:nth-child(even) strong {
  color: var(--orange2);
}

/* Section divider line: orange + green instead of all green */
.section-divider {
  filter: hue-rotate(18deg) saturate(1.25);
}

/* Service section: card-style orange/green system */
.services-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(154, 197, 30, 0.08), transparent 32%),
    radial-gradient(circle at 80% 5%, rgba(244, 162, 26, 0.075), transparent 28%),
    rgba(5, 11, 5, 0.62);
}

.service-card {
  border-color: rgba(244, 162, 26, 0.34);
}

.service-card:hover {
  border-color: var(--orange2);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(244, 162, 26, 0.10);
}

.service-card-media {
  border-bottom-color: rgba(244, 162, 26, 0.36);
}

.service-card h3 {
  color: var(--green2);
}

.service-card:nth-child(3n) h3,
.service-card:nth-child(5) h3,
.service-card:nth-child(6) h3 {
  color: var(--orange2);
}

.service-card .link-arrow {
  color: var(--orange2);
}

/* Feature section headline should echo card: green/orange split */
.feature-grid h2 {
  color: var(--green2);
}

.feature-grid h2::first-line {
  color: var(--green2);
}

/* Emergency band is intentionally orange-heavy */
.emergency-band {
  border-block-color: var(--orange2);
}

.emergency-inner h2 {
  color: var(--orange2);
  text-shadow: 0 5px 0 #000;
}

.emergency-inner .eyebrow {
  color: var(--green2);
}

/* Service areas: match card border and orange hover */
.areas-grid li {
  border-color: rgba(244, 162, 26, 0.28);
}

.areas-grid li::before {
  background: linear-gradient(180deg, var(--green2), var(--orange2));
}

.areas-grid li:hover,
.areas-grid li:focus-within {
  border-color: rgba(244, 162, 26, 0.78);
  background:
    linear-gradient(90deg, rgba(244, 162, 26, 0.11), rgba(154, 197, 30, 0.055)),
    rgba(0, 0, 0, 0.30);
  color: var(--white);
}

.areas-note a,
.related-links a {
  color: var(--orange2);
}

/* Final CTA: orange frame, green number */
.cta-box {
  border-color: rgba(244, 162, 26, 0.70);
  background:
    radial-gradient(circle at 78% 16%, rgba(244, 162, 26, 0.18), transparent 28%),
    radial-gradient(circle at 25% 50%, rgba(154, 197, 30, 0.14), transparent 35%),
    rgba(0, 0, 0, 0.30);
}

.mega-phone {
  color: var(--green2);
}

.cta-box .eyebrow,
.cta-section .eyebrow {
  color: var(--orange2);
}

/* Footer: business name green/orange split */
.footer strong,
.footer-links a {
  color: var(--green2);
}

.footer {
  border-top-color: rgba(244, 162, 26, 0.55);
}

/* Manual heading color splits using spans inserted below */
.split-green {
  color: var(--green2);
}

.split-orange {
  color: var(--orange2);
}

/* Mobile keeps strong contrast */
@media (max-width: 760px) {
  .hero--home h1 {
    text-shadow: 0 4px 0 #000;
  }

  .trust-item:nth-child(even) strong {
    color: var(--orange2);
  }
}
