/* ═══════════════════════════════════════════════
   AVO TREE SERVICES — Shared Styles
   Palette: Black / Charcoal / Red #CC0000
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CSS Variables ── */
:root {
  --red:        #CC0000;
  --red-dark:   #990000;
  --red-light:  #ff2222;
  --black:      #000000;
  --coal:       #0a0a0a;
  --gray-900:   #111111;
  --gray-800:   #1a1a1a;
  --gray-700:   #242424;
  --gray-600:   #333333;
  --gray-400:   #666666;
  --gray-300:   #888888;
  --gray-200:   #aaaaaa;
  --gray-100:   #cccccc;
  --white:      #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:  'Inter', sans-serif;
  --max-w:      1140px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --shadow-red: 0 4px 24px rgba(204,0,0,.35);
  --shadow-dark: 0 8px 40px rgba(0,0,0,.6);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: .02em;
}

/* ── Emergency Bar ── */
.emergency-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.emergency-bar a { color: var(--white); text-decoration: underline; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(204,0,0,.25);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 44px;
  width: auto;
}
.nav__logo-text { display: none; }
.nav__links {
  display: none;
  flex: 1;
  gap: 28px;
  margin-left: 16px;
}
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-200);
  transition: color .2s;
  padding: 4px 0;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__phone {
  display: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-100);
  letter-spacing: .03em;
}
@media (min-width: 640px) { .nav__phone { display: block; } }
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) { .nav__hamburger { display: none; } }
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 200;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  align-self: flex-end;
  background: var(--gray-800);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: .04em;
  color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-700);
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover { color: var(--red); padding-left: 8px; }
.mobile-menu__cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ── Page Hero (interior pages) ── */
.page-hero {
  background: var(--gray-900);
  border-bottom: 3px solid var(--red);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(204,0,0,.15) 0%, transparent 70%);
}
.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero__label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.page-hero__title {
  font-size: clamp(48px, 10vw, 88px);
  color: var(--white);
  line-height: 1;
}
.page-hero__sub {
  font-size: 16px;
  color: var(--gray-200);
  margin-top: 16px;
  max-width: 500px;
}

/* ── Sections ── */
.section {
  padding: 80px 20px;
}
.section--dark { background: var(--gray-900); }
.section__inner { max-width: var(--max-w); margin: 0 auto; }
.section__label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(36px, 6vw, 60px);
  color: var(--white);
  margin-bottom: 16px;
}
.section__body {
  font-size: 16px;
  color: var(--gray-200);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.section__header { margin-bottom: 48px; }

/* ── CTA Strip ── */
.cta-strip {
  background: var(--red);
  padding: 64px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,.08) 20px,
    rgba(0,0,0,.08) 40px
  );
}
.cta-strip__inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; }
.cta-strip__title {
  font-size: clamp(32px, 7vw, 64px);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-strip__sub {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: #000;
  border-top: 3px solid var(--red);
  padding: 60px 20px 32px;
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__logo img { height: 48px; width: auto; }
.footer__logo-name { display: none; }
.footer__desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer__pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 2px;
  background: var(--gray-800);
  color: var(--gray-200);
  border: 1px solid var(--gray-700);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer__col-title {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color .2s, padding-left .2s;
}
.footer__links a:hover { color: var(--white); padding-left: 4px; }
.footer__divider {
  border: none;
  border-top: 1px solid var(--gray-800);
  margin-bottom: 24px;
}
.footer__bottom {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  letter-spacing: .03em;
}

/* ── Sticky Mobile CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(0,0,0,.97);
  border-top: 2px solid var(--red);
  padding: 12px 16px;
  display: flex;
  gap: 10px;
}
@media (min-width: 768px) { .sticky-cta { display: none; } }
.sticky-cta .btn { flex: 1; justify-content: center; font-size: 13px; padding: 11px 16px; }

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
