:root {
  /* Brand: TreeCarex — orange + black + cream.
     Logo orange #E97D2F · deep #C56518 · bright accent #FF9F47.
     Variable names kept; greens repurposed to neutral darks, browns to orange. */
  --ink: #0D0D0D;
  --moss: #181818;
  --forest: #1A1A1A;
  --evergreen: #232323;
  --evergreen-bright: #FF8A2A;
  --sage: #555555;
  --sage-light: #8A8A8A;
  --evergreen-soft: rgba(233,125,47,0.1);

  --cedar: #C56518;
  --cedar-light: #E97D2F;
  --cedar-bright: #FF9F47;
  --cedar-soft: rgba(233,125,47,0.12);
  --bark: #6F2F00;

  --parchment: #F8F4EA;
  --paper: #FAF7F0;
  --paper-soft: #F1ECDB;
  --cream: #FFFDF7;
  --ink-text: #1A1A1A;
  --muted: #5A5A5A;
  --muted-warm: #6B5A50;

  --line: rgba(26,26,26,0.1);
  --line-strong: rgba(26,26,26,0.2);
  --line-dark: rgba(248,244,234,0.1);
  --line-dark-strong: rgba(248,244,234,0.2);
}
* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--paper); color: var(--ink-text);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
  overflow-x: hidden; max-width: 100vw;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 900; letter-spacing: -0.015em; line-height: 1.05;
}
em { font-style: italic; }
a { color: inherit; text-decoration: none; }
img, video, iframe, svg { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 28px; }

/* ═════ Top announce strip ═════ */
.announce { background: var(--ink); color: var(--parchment); padding: 9px 0; font-size: 11px; font-weight: 500; letter-spacing: 0.4px; position: relative; overflow: hidden; }
.announce::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cedar-bright), transparent);
}
.announce-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.announce-left { display: flex; align-items: center; gap: 22px; }
.announce-left a { color: var(--parchment); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; transition: color 0.2s; }
.announce-left a:hover { color: var(--cedar-bright); }
.announce-left svg { width: 13px; height: 13px; color: var(--cedar-bright); }
.announce-right { display: inline-flex; align-items: center; gap: 14px; color: var(--evergreen-bright); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; font-size: 10px; }
.announce-right .trust { color: var(--evergreen-bright); }

/* BBB + Google trust badges (in announce strip + hero nav) */
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  height: 24px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.96);
  color: #003C77;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, background 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  white-space: nowrap;
}
.trust-badge:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 18px rgba(0,0,0,0.32);
  background: #fff;
}
.trust-badge-bbb { color: #003C77; }
.trust-badge-bbb .plus {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #003C77; color: #fff;
  font-size: 10px; font-weight: 900; line-height: 1;
  letter-spacing: 0;
}
.trust-badge-google { color: #1F1F1F; gap: 6px; padding-left: 6px; }
.trust-badge-google .g-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #4285F4, #EA4335, #FBBC05, #34A853, #4285F4);
  color: #fff;
  font-size: 10px; font-weight: 900; line-height: 1;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #E5E7EB;
}
.trust-badge-google .stars { display: inline-flex; gap: 1px; color: #FFB800; }
.trust-badge-google .stars svg { width: 10px; height: 10px; }

/* ═════ Nav ═════ */
.nav-wrap { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 80; }
.nav-wrap.scrolled { background: rgba(250,247,240,0.96); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(20,39,28,0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.nav-logo { display: inline-block; transition: transform 0.25s ease; }
.nav-logo:hover { transform: translateY(-1px); }
.nav-logo img {
  height: 64px; width: auto; display: block;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(13,13,13,0.18), 0 1px 3px rgba(13,13,13,0.12);
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link { color: var(--ink-text); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.2s; position: relative; padding: 4px 0; font-family: 'Inter', sans-serif; }
.nav-link:hover, .nav-link.active { color: var(--cedar-light); }
.nav-link.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--cedar-light); }
.nav-right { display: flex; gap: 14px; align-items: center; }
.nav-phone { color: var(--ink-text); font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; }
.nav-phone svg { width: 16px; height: 16px; color: var(--cedar-light); }

/* ═════ Buttons ═════ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 26px; border: none; cursor: pointer; transition: all 0.25s; border-radius: 0; white-space: nowrap; }
.btn-cedar { background: var(--cedar-light); color: var(--cream); box-shadow: 0 2px 0 var(--bark), 0 8px 22px rgba(139,90,43,0.28); }
.btn-cedar:hover { background: var(--cedar); transform: translateY(-2px); box-shadow: 0 3px 0 var(--bark), 0 14px 30px rgba(139,90,43,0.4); }
.btn-forest { background: var(--forest); color: var(--cream); box-shadow: 0 2px 0 var(--moss), 0 8px 22px rgba(35,75,54,0.28); }
.btn-forest:hover { background: var(--evergreen); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--moss); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink-text); border: 1.5px solid var(--ink-text); }
.btn-outline:hover { background: var(--ink-text); color: var(--cream); }
.btn-outline-cedar { background: transparent; color: var(--cedar-light); border: 1.5px solid var(--cedar-light); }
.btn-outline-cedar:hover { background: var(--cedar-light); color: var(--cream); }
.btn-ghost-dark { background: rgba(255,255,255,0.06); color: var(--cream); border: 1.5px solid var(--line-dark-strong); backdrop-filter: blur(6px); }
.btn-ghost-dark:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-lg { padding: 17px 32px; font-size: 13px; }

/* ═════ Burger / Drawer ═════ */
.burger { display: none; background: 0; border: 0; width: 40px; height: 40px; color: var(--ink-text); cursor: pointer; }
.burger svg { width: 22px; height: 22px; }
.drawer { position: fixed; inset: 0; z-index: 200; background: var(--ink); padding: 80px 28px 40px; transform: translateX(100%); transition: transform 0.3s; display: flex; flex-direction: column; gap: 6px; }
.drawer.open { transform: translateX(0); }
.drawer a { color: var(--parchment); font-family: 'Montserrat', system-ui, -apple-system, sans-serif; font-size: 30px; font-weight: 900; padding: 12px 0; border-bottom: 1px solid var(--line-dark); letter-spacing: -0.01em; }
.drawer a:hover { color: var(--cedar-bright); }
.drawer-close { position: absolute; top: 20px; right: 20px; background: 0; border: 0; width: 44px; height: 44px; color: var(--parchment); cursor: pointer; font-size: 24px; }
.drawer-phone { color: var(--cedar-bright) !important; font-size: 22px !important; font-style: italic; }
.drawer-cta { margin-top: 20px; }
.drawer-socials {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.drawer-socials a {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  border-bottom: 0 !important;
  padding: 6px 12px !important;
  letter-spacing: 0.04em !important;
}
.drawer-socials .trust-badge { height: 28px; color: #003C77 !important; }
.drawer-socials .trust-badge-google { color: #1F1F1F !important; }
.drawer-socials .trust-badge:hover { color: #003C77 !important; }
.drawer-socials .trust-badge-google:hover { color: #1F1F1F !important; }
.drawer-soc {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--parchment) !important;
  display: inline-flex !important; align-items: center; justify-content: center;
  padding: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.18) !important;
  font-size: 0 !important;
  transition: transform 0.25s, background 0.2s, border-color 0.2s;
}
.drawer-soc svg { width: 16px; height: 16px; display: block; }
.drawer-soc:hover { background: var(--cedar-light); border-color: var(--cedar-light); transform: translateY(-2px); color: var(--cream) !important; }

/* ═════ Sections ═════ */
section { position: relative; }
.sec { padding: 100px 0; }
.sec-paper { background: var(--paper); }
.sec-soft { background: var(--paper-soft); }
.sec-ink { background: var(--ink); color: var(--parchment); }
.sec-moss { background: var(--moss); color: var(--parchment); }
.sec-forest { background: var(--forest); color: var(--parchment); }

/* Tree-ring pattern overlay on dark sections */
.sec-ink::before, .sec-moss::before, .sec-forest::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url('/images/rings-pattern.svg');
  background-size: 600px 600px; background-repeat: repeat;
  opacity: 0.55; z-index: 0;
}
.sec-ink > .container, .sec-moss > .container, .sec-forest > .container { position: relative; z-index: 1; }

.sec-head { margin-bottom: 60px; max-width: 760px; }
.sec-head-center { margin: 0 auto 60px; text-align: center; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--cedar-light);
  margin-bottom: 22px;
}
.sec-eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--cedar-light); }
.sec-head-center .sec-eyebrow { justify-content: center; }
.sec-ink .sec-eyebrow, .sec-moss .sec-eyebrow, .sec-forest .sec-eyebrow { color: var(--cedar-bright); }
.sec-ink .sec-eyebrow::before, .sec-moss .sec-eyebrow::before, .sec-forest .sec-eyebrow::before { background: var(--cedar-bright); }
.sec h2 { font-size: clamp(38px, 5vw, 68px); color: var(--ink-text); margin-bottom: 18px; }
.sec h2 em { font-style: italic; color: var(--cedar-light); font-weight: 900; }
.sec-ink h2, .sec-moss h2, .sec-forest h2 { color: var(--parchment); }
.sec-ink h2 em, .sec-moss h2 em, .sec-forest h2 em { color: var(--cedar-bright); }
.sec-sub { color: var(--muted); font-size: 17px; line-height: 1.75; max-width: 640px; }
.sec-ink .sec-sub, .sec-moss .sec-sub, .sec-forest .sec-sub { color: rgba(248,244,234,0.78); }

/* ═════ CTA banner ═════ */
.cta { background: var(--ink); color: var(--parchment); padding: 84px 0; position: relative; overflow: hidden; }
.cta::before {
  content: ''; position: absolute; inset: 0; opacity: 0.55; pointer-events: none;
  background-image: url('/images/rings-pattern.svg'); background-size: 600px 600px; background-repeat: repeat;
}
.cta::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cedar) 0%, var(--cedar-bright) 50%, var(--cedar) 100%);
}
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; position: relative; z-index: 1; }
.cta h2 { font-size: clamp(36px, 5vw, 60px); color: var(--parchment); line-height: 1.05; }
.cta h2 em { font-style: italic; color: var(--cedar-bright); }
.cta p { font-size: 15px; margin-top: 14px; color: rgba(248,244,234,0.72); max-width: 500px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═════ Footer ═════ */
.footer { background: var(--ink); color: var(--parchment); padding: 72px 0 32px; border-top: 1px solid var(--line-dark); position: relative; overflow: hidden; }
.footer::before {
  content: ''; position: absolute; inset: 0; opacity: 0.4; pointer-events: none;
  background-image: url('/images/rings-pattern.svg'); background-size: 600px 600px; background-repeat: repeat;
}
.footer > .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 48px; }
.footer-logo img { height: 96px; width: auto; display: block; margin-bottom: 18px; border-radius: 8px; box-shadow: 0 8px 22px rgba(0,0,0,0.4); }
.footer-about { color: rgba(248,244,234,0.6); font-size: 13px; line-height: 1.75; max-width: 320px; }
.footer-heading { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--cedar-bright); margin-bottom: 18px; font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(248,244,234,0.6); font-size: 13.5px; transition: color 0.2s; font-family: 'Inter', sans-serif; }
.footer-links a:hover { color: var(--cedar-bright); }
.footer-contact-item { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--cedar-bright); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item .l { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(248,244,234,0.45); margin-bottom: 2px; }
.footer-contact-item .v { color: var(--parchment); font-size: 13.5px; line-height: 1.5; }
.footer-contact-item .v a { color: var(--parchment); }
.footer-contact-item .v a:hover { color: var(--cedar-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid var(--line-dark); color: rgba(248,244,234,0.45); font-size: 11px; letter-spacing: 1px; gap: 16px; flex-wrap: wrap; }
.footer-trust { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-trust .trust-badge { font-size: 10.5px; padding: 5px 11px; height: 26px; }
.footer-soc {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(248,244,234,0.85);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s, background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-soc svg { width: 14px; height: 14px; display: block; }
.footer-soc:hover { background: var(--cedar-light); border-color: var(--cedar-light); color: var(--cream); transform: translateY(-2px); }

/* ═════ Page hero (sub-pages) ═════ */
.page-hero { background: var(--ink); color: var(--parchment); padding: 110px 0 84px; position: relative; overflow: hidden; border-bottom: 3px solid var(--cedar-light); }
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url('/images/photos/canopy-tall-large.jpg');
  background-size: cover; background-position: center 35%;
  opacity: 0.28; filter: blur(3px) saturate(1.05);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at top right, rgba(255,138,42,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom center, rgba(13,13,13,0.5) 0%, transparent 70%),
    url('/images/rings-pattern.svg');
  background-size: auto, auto, 600px 600px;
  background-repeat: no-repeat, no-repeat, repeat;
  opacity: 0.85;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(248,244,234,0.5); margin-bottom: 22px; font-weight: 600; font-family: 'Inter', sans-serif; }
.breadcrumb a { color: var(--cedar-bright); }
.breadcrumb span { margin: 0 10px; color: rgba(248,244,234,0.25); }
.page-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--cedar-bright); margin-bottom: 26px; }
.page-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--cedar-bright); }
.page-hero h1 { font-size: clamp(44px, 6.5vw, 88px); font-weight: 900; letter-spacing: -0.025em; color: var(--parchment); }
.page-hero h1 em { font-style: italic; color: var(--cedar-bright); }
.page-hero-sub { font-size: 17px; line-height: 1.75; color: rgba(248,244,234,0.72); max-width: 700px; margin-top: 22px; }

/* ═════ Reveal ═════ */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.show { opacity: 1; transform: translateY(0); }

/* ═════ Mobile sticky CTA ═════ */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--ink);
  padding: 10px 12px; gap: 10px;
  box-shadow: 0 -8px 28px rgba(0,0,0,0.5);
  border-top: 2px solid var(--cedar-light);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-sticky-cta.show { transform: translateY(0); }
.mcta-btn {
  flex: 1; padding: 13px 10px;
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  text-align: center; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.mcta-call { background: var(--cedar-light); color: var(--cream); }
.mcta-quote { background: var(--evergreen); color: var(--cream); }
.mcta-btn svg { width: 16px; height: 16px; }

/* ═════ Responsive ═════ */
@media (max-width: 1080px) {
  .cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .container, .container-sm { padding: 0 16px; }
  .announce { font-size: 9.5px; padding: 6px 0; }
  .announce-right .trust { display: none; }
  .announce-right { gap: 8px; }
  .announce-left { gap: 14px; }
  .announce-left a span { display: none; }
  .trust-badge { padding: 3px 8px; height: 22px; font-size: 9.5px; }
  .trust-badge-bbb .plus, .trust-badge-google .g-mark { width: 14px; height: 14px; font-size: 9px; }
  .announce-left a:first-child span { display: inline; }
  .nav { padding: 8px 0; gap: 8px; }
  .nav-logo img { height: 46px; }
  .nav-links, .nav-right .nav-phone, .nav-right .btn-outline-cedar, .nav-right .btn-outline { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }

  .sec { padding: 36px 0; }
  .sec-head { margin-bottom: 22px; max-width: 100%; }
  .sec h2 { font-size: 32px; line-height: 1.06; }
  .sec-sub { font-size: 13.5px; line-height: 1.65; }
  .sec-eyebrow { font-size: 9.5px; letter-spacing: 2.5px; margin-bottom: 12px; }
  .sec-eyebrow::before { width: 22px; }

  .page-hero { padding: 36px 0 32px; }
  .page-hero h1 { font-size: 36px; line-height: 1.06; }
  .page-hero-sub { font-size: 13.5px; line-height: 1.65; margin-top: 14px; }
  .page-eyebrow { font-size: 9.5px; letter-spacing: 2.5px; margin-bottom: 14px; }
  .breadcrumb { font-size: 9.5px; letter-spacing: 2px; margin-bottom: 14px; }

  .cta { padding: 36px 0; }
  .cta-inner { gap: 14px; }
  .cta h2 { font-size: 28px; line-height: 1.08; }
  .cta p { font-size: 13px; margin-top: 8px; }
  .cta-btns { flex-direction: column; width: 100%; gap: 7px; }
  .cta-btns .btn { width: 100%; }

  .footer { padding: 32px 0 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:nth-child(4) { grid-column: 1 / -1; }
  .footer-logo img { height: 64px; margin-bottom: 10px; }
  .footer-about { font-size: 12.5px; max-width: 100%; line-height: 1.7; }
  .footer-heading { font-size: 9px; letter-spacing: 2px; margin-bottom: 8px; }
  .footer-links li { margin-bottom: 5px; }
  .footer-links a { font-size: 12px; }
  .footer-contact-item { margin-bottom: 8px; }
  .footer-contact-item .v { font-size: 12.5px; }
  .footer-contact-item .l { font-size: 9px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding-top: 14px; font-size: 10px; }

  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 64px; }

  .btn { padding: 11px 16px; font-size: 11px; letter-spacing: 0.9px; }
  .btn-lg { padding: 13px 20px; font-size: 12px; }
}
@media (max-width: 420px) {
  .sec h2 { font-size: 28px; }
  .page-hero h1 { font-size: 32px; }
  .cta h2 { font-size: 25px; }
}
