/* =========================================================
   LUCAS TREE SERVICE — design system
   ISA-Certified Arborist · Olive + Sand + Chestnut
   Jacksonville FL · Since 1984
   ========================================================= */

:root{
  /* deep forest olive replaces navy */
  --navy:#2F3D22;
  --navy-deep:#1F2A14;
  --navy-tint:#46582E;
  /* chestnut replaces safety orange */
  --orange:#8B4A22;
  --orange-bright:#A95E2F;
  --orange-deep:#6B3814;
  /* warm sand replaces ivory */
  --white:#FFFFFF;
  --ivory:#F4ECD8;
  --ink:#1C1F14;
  --mute:#6B6A55;
  --mute-dark:#A89F82;
  --rule:#E2D9BF;
  --rule-dark:#3D4A2A;
  --success:#5A7A2E;

  /* tree-service additions */
  --moss:#5C6E3F;
  --bark:#3D2614;
  --cream:#FAF6EA;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;

  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11,15,20,.06), 0 1px 3px rgba(11,15,20,.05);
  --shadow-md: 0 4px 10px rgba(11,15,20,.06), 0 10px 30px rgba(11,15,20,.08);
  --shadow-lg: 0 10px 30px rgba(11,15,20,.10), 0 30px 80px rgba(11,15,20,.12);
}

*{box-sizing:border-box}
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%;}
body{
  margin:0;
  font-family:var(--font);
  font-size:16px;
  line-height:1.55;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; height:auto;}
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }

.wrap{ max-width: var(--maxw); margin:0 auto; padding: 0 var(--pad); }

/* ---------- TYPE ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--orange); font-weight:700;
}
.eyebrow::before{ content:""; width:24px; height:2px; background:var(--orange); }
.h-display{
  font-weight:800;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height:1.05;
  letter-spacing:-.02em;
  color:var(--white);
  margin:0;
}
.h-display--ink{ color:var(--ink); }
h1,h2,h3{ font-weight:800; letter-spacing:-.02em; margin:0;}
.h-section{
  font-size: clamp(28px, 3.8vw, 48px);
  line-height:1.1;
  margin:0 0 14px;
}
.h-section--white{ color:var(--white); }
.lead{ font-size:18px; color:var(--mute); max-width:62ch; }
.lead--white{ color:rgba(255,255,255,.78); }
.kicker{
  font-size:11px; letter-spacing:.2em; text-transform:uppercase;
  color:var(--mute); font-weight:700;
}

/* ---------- BUTTONS (BIG TAP TARGETS — HVAC IS 90% MOBILE) ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:18px 26px;
  border-radius:12px;
  font-weight:700; font-size:16px;
  border:0; cursor:pointer;
  min-height:56px;          /* min thumb target */
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{ background:var(--orange); color:var(--white); box-shadow: 0 8px 20px rgba(255,122,26,.32);}
.btn--primary:hover{ background:var(--orange-deep); }
.btn--ghost{ background:transparent; color:var(--white); border:2px solid rgba(255,255,255,.4); }
.btn--ghost:hover{ border-color:var(--white); background:rgba(255,255,255,.06); }
.btn--ink{ background:var(--navy); color:var(--white); }
.btn--ink:hover{ background:var(--navy-deep); }
.btn--block{ width:100%; justify-content:center; }
.btn--xl{ padding:22px 34px; font-size:18px; min-height:64px; }

.btn-call{
  display:inline-flex; align-items:center; gap:14px;
  background:var(--orange); color:var(--white);
  padding:18px 28px; border-radius:14px;
  font-weight:800; font-size:18px;
  box-shadow: 0 8px 24px rgba(255,122,26,.36);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  min-height:60px;
}
.btn-call:hover{ background:var(--orange-deep); transform:translateY(-1px); }
.btn-call__icon{
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.22);
  display:grid;place-items:center;
  flex:0 0 36px;
}
.btn-call__icon svg{ width:18px; height:18px; fill:var(--white); }
.btn-call__num{ font-size:20px; letter-spacing:-.01em; }
.btn-call__lab{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; opacity:.85; font-weight:700; }

/* ---------- HEADER ---------- */
.site-header{
  position:sticky; top:0; z-index:80;
  background:var(--white);
  border-bottom:1px solid var(--rule);
}
.hdr{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; height:78px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand__mark{
  width:46px;height:46px; border-radius:11px;
  background:var(--navy); display:grid;place-items:center;
  position:relative; overflow:hidden;
}
.brand__mark svg{ width:28px; height:28px; }
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-weight:800; font-size:17px; letter-spacing:-.01em; color:var(--navy); }
.brand__sub{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--mute); font-weight:600; margin-top:2px;}

.hdr-nav{ display:none; gap:30px; }
.hdr-nav a{
  font-size:14px; font-weight:600; color:var(--ink);
  letter-spacing:.01em; transition:color .15s ease;
}
.hdr-nav a:hover, .hdr-nav a.active{ color:var(--orange); }

.hdr-cta{ display:flex; align-items:center; gap:14px; }
.hdr-phone{
  display:flex; flex-direction:column; line-height:1.05;
  text-align:right;
}
.hdr-phone__lab{ font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--mute); font-weight:700; }
.hdr-phone__num{ font-size:18px; font-weight:800; color:var(--navy); letter-spacing:-.01em; margin-top:3px; white-space:nowrap;}
.hdr-phone__num:hover{ color:var(--orange); }

/* Mobile: compact phone-only chip in header (always visible) */
@media(max-width:899px){
  .hdr-phone{ text-align:right; }
  .hdr-phone__lab{ display:none; }
  .hdr-phone__num{ font-size:15px; padding: 13px 16px; background:var(--orange); color:var(--white); border-radius:10px; box-shadow: 0 4px 10px rgba(255,122,26,.28); margin-top:0; min-height:44px; display:inline-flex; align-items:center;}
  .hdr-phone__num:hover{ color:var(--white); background:var(--orange-deep);}
  .brand__text{ display:none; }
  .brand__mark{ width:42px; height:42px; }
}

.hdr-burger{
  width:46px;height:46px; border:1px solid var(--rule); background:var(--white);
  border-radius:11px; display:grid; place-items:center; cursor:pointer;
}
.hdr-burger span{ display:block; width:18px; height:2px; background:var(--ink); position:relative;}
.hdr-burger span::before,
.hdr-burger span::after{ content:""; position:absolute; left:0; width:18px; height:2px; background:var(--ink);}
.hdr-burger span::before{ top:-6px; }
.hdr-burger span::after{ top:6px; }

@media(min-width:900px){
  .hdr-nav{ display:flex; }
  .hdr-phone{ display:flex; }
  .hdr-burger{ display:none; }
}

/* mobile menu */
.mob-menu{
  display:none;
  position:fixed; inset:78px 0 auto 0; background:var(--white);
  border-bottom:1px solid var(--rule);
  padding:18px var(--pad) 26px;
  z-index:79;
  box-shadow:var(--shadow-md);
}
.mob-menu.is-open{ display:block; }
.mob-menu a{
  display:block; padding:14px 0; border-bottom:1px solid var(--rule);
  font-weight:600; color:var(--ink);
}
.mob-menu a:last-of-type{ border-bottom:0; }

/* ---------- HERO ---------- */
.hero{
  position:relative; overflow:hidden;
  background:var(--navy-deep);
  color:var(--white);
  isolation:isolate;
}
.hero__bg{
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(9,27,48,.55) 0%, rgba(9,27,48,.85) 60%, rgba(9,27,48,.95) 100%),
    url('https://images.unsplash.com/photo-1635340337636-c63b13f4ff32?auto=format&fit=crop&w=2000&q=70') center/cover no-repeat,
    var(--navy-deep);
}
.hero__bg::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(900px 600px at 78% 25%, rgba(255,122,26,.22), transparent 60%);
}
.hero__inner{
  padding: clamp(64px, 12vw, 130px) 0 clamp(72px, 11vw, 120px);
  display:grid; gap:36px;
  max-width: 1100px;
}
.hero__badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 14px; border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  font-weight:700; color:rgba(255,255,255,.92);
  width:fit-content;
}
.hero__badge::before{
  content:""; width:8px; height:8px; border-radius:50%;
  background:var(--orange); box-shadow: 0 0 0 4px rgba(255,122,26,.25);
}
.hero__title{ max-width: 18ch; }
.hero__title em{ font-style:normal; color:var(--orange); }
.hero__lead{ max-width: 56ch; }
.hero__cta{
  display:flex; flex-wrap:wrap; gap:14px; margin-top: 8px;
}
.hero__meta{
  display:flex; flex-wrap:wrap; gap: clamp(22px, 4vw, 42px);
  padding-top:26px; margin-top: 6px;
  border-top:1px solid rgba(255,255,255,.14);
}
.hero__meta-item{
  display:flex; flex-direction:column; gap:4px;
  font-size:13px; color:rgba(255,255,255,.7);
  letter-spacing:.04em;
}
.hero__meta-item strong{
  font-size: clamp(22px, 2.8vw, 30px); font-weight:800;
  color:var(--white); letter-spacing:-.01em;
}
.hero__meta-item small{ font-size:11px; text-transform:uppercase; letter-spacing:.16em; color:rgba(255,255,255,.55); font-weight:600;}

/* ---------- SERVICE STRIP (sticky, mobile-first) ---------- */
.svc-bar{
  background:var(--orange);
  color:var(--white);
  position:sticky; top:78px; z-index:60;
  border-bottom: 3px solid var(--orange-deep);
}
.svc-bar__inner{
  display:flex; gap:0;
  overflow-x:auto; -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.svc-bar__inner::-webkit-scrollbar{ display:none; }
.svc-bar__item{
  flex:1 0 auto;
  display:flex; align-items:center; gap:10px;
  padding:14px 18px; min-height:56px;
  font-weight:700; font-size:14px;
  color:var(--white);
  white-space:nowrap;
  border-right:1px solid rgba(255,255,255,.18);
  transition:background .15s ease;
}
.svc-bar__item:last-child{ border-right:0; }
.svc-bar__item:hover{ background:var(--orange-deep); }
.svc-bar__item .ico{
  font-size:18px; line-height:1;
}
.svc-bar__item--alert{ background: var(--orange-deep); }
.svc-bar__item--alert:hover{ background:#C8540A; }

@media(min-width:900px){
  .svc-bar__inner{ justify-content:center; gap:0; }
  .svc-bar__item{ flex:0 1 auto; padding:14px 28px; font-size:15px; }
}

/* ---------- SECTIONS ---------- */
.section{ padding: clamp(64px, 9vw, 110px) 0; }
.section--ivory{ background:var(--ivory); }
.section--navy{ background:var(--navy); color:var(--white); }
.section--navy-deep{ background:var(--navy-deep); color:var(--white); }
.section-head{
  display:grid; gap:14px;
  max-width:780px; margin: 0 auto clamp(40px, 6vw, 72px);
  text-align:center;
}
.section-head--left{ margin: 0 0 clamp(40px,6vw,72px); text-align:left; max-width: 720px;}
.section-head .lead{ margin-left:auto; margin-right:auto; }

/* ---------- SERVICES GRID ---------- */
.svc-grid{
  display:grid; gap:18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.svc-card{
  background:var(--white);
  border:1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 24px;
  display:flex; flex-direction:column; gap:14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position:relative;
}
.svc-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
  border-color: var(--orange);
}
.svc-card__icon{
  width:54px; height:54px; border-radius:13px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
  display:grid; place-items:center;
  box-shadow: 0 6px 14px rgba(255,122,26,.28);
}
.svc-card__icon svg{ width:26px; height:26px; fill:var(--white); }
.svc-card__title{ font-size:20px; font-weight:800; color:var(--navy); letter-spacing:-.01em;}
.svc-card__blurb{ font-size:15px; color:var(--mute); line-height:1.55;}
.svc-card__list{
  list-style:none; padding:0; margin:6px 0 0;
  display:grid; gap:6px;
}
.svc-card__list li{
  font-size:13px; color:var(--ink); display:flex; gap:8px; align-items:flex-start;
}
.svc-card__list li::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background:var(--orange); margin-top:8px; flex:0 0 6px;
}
.svc-card__cta{
  margin-top:10px;
  display:inline-flex; align-items:center; gap:6px;
  font-weight:700; color:var(--navy); font-size:14px;
}
.svc-card__cta::after{ content:"→"; transition:transform .15s ease;}
.svc-card:hover .svc-card__cta::after{ transform:translateX(4px); }

/* ---------- AREAS ---------- */
.areas{
  display:grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media(min-width:900px){
  .areas{ grid-template-columns: 1fr 1.4fr; gap: 64px; align-items:start;}
}
.areas-grid{
  display:grid; gap:10px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
.area-tile{
  background:var(--white);
  border:1px solid rgba(255,255,255,.14);
  border-radius:11px;
  padding:16px 18px;
  display:flex; flex-direction:column; gap:4px;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.section--navy-deep .area-tile{ background:rgba(255,255,255,.04); }
.section--navy-deep .area-tile__name{ color:var(--white); }
.section--navy-deep .area-tile__note{ color:var(--mute-dark); }
.area-tile:hover{ border-color: var(--orange); background:rgba(255,122,26,.08); transform:translateY(-2px);}
.area-tile__name{ font-weight:800; letter-spacing:-.01em; color:var(--navy); }
.area-tile__note{ font-size:12px; color:var(--mute); letter-spacing:.02em;}
.area-tile--home{ background: var(--orange) !important; border-color:var(--orange) !important; }
.area-tile--home .area-tile__name, .area-tile--home .area-tile__note{ color:var(--white) !important; }

/* ---------- FAMILY STORY ---------- */
.story{
  display:grid; gap:48px; align-items:center;
  grid-template-columns: 1fr;
}
@media(min-width:900px){ .story{ grid-template-columns: 1.05fr 1fr; gap: 72px;} }
.story__img{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  aspect-ratio: 4 / 5; background: var(--navy-tint);
}
.story__img img{ width:100%; height:100%; object-fit:cover; }
.story__img::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(9,27,48,.55) 100%);
}
.story__img-badge{
  position:absolute; left:20px; bottom:20px;
  background:var(--orange); color:var(--white);
  padding: 10px 16px; border-radius:10px;
  font-size:13px; font-weight:800; letter-spacing:.02em;
  display:flex; align-items:center; gap:8px;
}
.story__pillars{
  display:grid; gap:18px; margin-top:30px;
  grid-template-columns: 1fr;
}
@media(min-width:520px){ .story__pillars{ grid-template-columns: 1fr 1fr; } }
.pillar{
  background: rgba(14,39,66,.04);
  border-left: 3px solid var(--orange);
  padding: 16px 18px;
  border-radius: 0 10px 10px 0;
}
.pillar__lab{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--mute); font-weight:700; }
.pillar__val{ font-size:26px; font-weight:800; color:var(--navy); letter-spacing:-.01em; margin-top:4px;}

/* ---------- PLANS ---------- */
.plans{
  display:grid; gap:20px;
  grid-template-columns: 1fr;
}
@media(min-width:760px){ .plans{ grid-template-columns: repeat(3, 1fr);} }
.plan{
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:18px;
  padding: 32px 26px;
  display:flex; flex-direction:column; gap:18px;
  position:relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md);}
.plan--highlight{
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.plan--highlight:hover{ transform: translateY(-10px); }
.plan__tier{ font-size:13px; letter-spacing:.18em; text-transform:uppercase; font-weight:800; color:var(--orange);}
.plan--highlight .plan__tier{ color:var(--orange-bright); }
.plan__tagline{
  font-size:12px; letter-spacing:.14em; text-transform:uppercase; font-weight:700;
  color:var(--mute);
}
.plan--highlight .plan__tagline{ color:rgba(255,255,255,.7);}
.plan__price{ display:flex; align-items:baseline; gap:4px; margin: 6px 0 2px;}
.plan__price strong{ font-size: 48px; font-weight:800; line-height:1; letter-spacing:-.03em; color:var(--navy);}
.plan--highlight .plan__price strong{ color:var(--white);}
.plan__price span{ font-size:16px; color:var(--mute); font-weight:600;}
.plan--highlight .plan__price span{ color:rgba(255,255,255,.6);}
.plan__billed{ font-size:12px; color:var(--mute); letter-spacing:.02em;}
.plan--highlight .plan__billed{ color:rgba(255,255,255,.6); }
.plan__list{ list-style:none; padding:0; margin:0; display:grid; gap:10px; flex:1;}
.plan__list li{ font-size:14px; display:flex; gap:10px; align-items:flex-start; }
.plan__list li::before{
  content:""; width:18px; height:18px; border-radius:50%;
  background: var(--orange); color: var(--white);
  display:inline-block; flex:0 0 18px; margin-top:2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
  background-repeat:no-repeat; background-position:center; background-size:14px;
}
.plan__badge{
  position:absolute; top:-12px; right:24px;
  background:var(--orange); color:var(--white);
  font-size:11px; letter-spacing:.16em; text-transform:uppercase; font-weight:800;
  padding: 6px 12px; border-radius:999px;
  box-shadow: 0 4px 10px rgba(255,122,26,.4);
}
.plans-note{ text-align:center; color:var(--mute); font-size:14px; margin-top:24px;}

/* ---------- REVIEWS ---------- */
.reviews{
  display:grid; gap:18px;
  grid-template-columns: 1fr;
}
@media(min-width:760px){ .reviews{ grid-template-columns: repeat(3, 1fr); } }
.review{
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:14px;
  padding:26px 24px;
  display:flex; flex-direction:column; gap:14px;
}
.review__stars{
  display:inline-flex; gap:2px; color:var(--orange);
  font-size:16px;
}
.review__quote{ font-size:16px; line-height:1.55; color:var(--ink); }
.review__author{
  display:flex; align-items:center; gap:12px; margin-top: 4px;
  padding-top:14px; border-top:1px solid var(--rule);
}
.review__avatar{
  width:40px; height:40px; border-radius:50%;
  background: var(--navy);
  color:var(--white);
  display:grid; place-items:center;
  font-weight:800; font-size:14px;
  flex:0 0 40px;
}
.review__name{ font-weight:700; font-size:14px; color:var(--navy);}
.review__src{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--mute); font-weight:700;}
.reviews-strip{
  display:flex; justify-content:center; gap:32px; flex-wrap:wrap;
  margin-top: 32px; padding-top:32px;
  border-top:1px solid var(--rule);
}
.reviews-strip__item{
  display:flex; flex-direction:column; align-items:center; gap:6px;
}
.reviews-strip__rating{
  font-size:32px; font-weight:800; color:var(--navy); letter-spacing:-.02em;
  display:flex; align-items:center; gap:6px;
}
.reviews-strip__rating::after{ content:"★"; color:var(--orange); font-size:24px; }
.reviews-strip__src{ font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--mute); font-weight:700;}

/* ---------- FINANCING ---------- */
.financing{
  background:var(--navy-deep);
  color:var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  display:grid; gap:36px; align-items:center;
  grid-template-columns: 1fr;
}
@media(min-width:900px){ .financing{ grid-template-columns: 1.3fr 1fr;} }
.financing__title{ font-size:clamp(28px,3.4vw,40px); font-weight:800; line-height:1.1; letter-spacing:-.02em;}
.financing__title em{ font-style:normal; color:var(--orange); }
.financing__lead{ color:rgba(255,255,255,.78); max-width: 50ch; margin-top:12px;}
.financing__points{ list-style:none; padding:0; margin:24px 0 0; display:grid; gap:10px;}
.financing__points li{ display:flex; gap:10px; align-items:flex-start; font-size:15px;}
.financing__points li::before{
  content:"✓"; width:24px; height:24px; border-radius:50%;
  background: var(--orange); color:var(--white);
  display:grid; place-items:center; font-size:13px; font-weight:800;
  flex:0 0 24px;
}
.financing__card{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  padding: 28px 24px;
  display:grid; gap:14px;
}
.financing__cardlab{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--mute-dark); font-weight:700;}
.financing__cardpct{ font-size:64px; font-weight:800; line-height:1; color:var(--orange); letter-spacing:-.03em;}
.financing__cardpct sup{ font-size:32px; vertical-align: top; margin-top:8px;}
.financing__cardcopy{ color:rgba(255,255,255,.78); font-size:14px;}
.financing__cardsmall{ font-size:11px; color:rgba(255,255,255,.45); margin-top:8px; line-height:1.5;}

/* ---------- QUOTE FORM ---------- */
.quote{
  display:grid; gap:48px;
  grid-template-columns: 1fr;
}
@media(min-width:900px){ .quote{ grid-template-columns: 1fr 1.1fr; gap:80px;} }
.quote__intro h2{ color:var(--ink); }
.quote__why{
  list-style:none; padding:0; margin: 26px 0 0;
  display:grid; gap:14px;
}
.quote__why li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; color:var(--ink);}
.quote__why li::before{
  content:""; width:22px; height:22px; flex:0 0 22px; margin-top:1px;
  border-radius:50%; background:var(--orange);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
  background-repeat:no-repeat; background-position:center; background-size:14px;
}
.form{
  background:var(--white);
  border:1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  display:grid; gap:18px;
}
.form__row{ display:grid; gap:18px; grid-template-columns: 1fr;}
@media(min-width:600px){ .form__row--2{ grid-template-columns: 1fr 1fr;} }
.field{ display:flex; flex-direction:column; gap:6px;}
.field label{
  font-size:12px; letter-spacing:.12em; text-transform:uppercase; font-weight:700; color:var(--navy);
}
.field input, .field select, .field textarea{
  font-family:inherit; font-size:16px;
  padding:16px 18px; border-radius:10px;
  border:1px solid var(--rule); background:var(--white); color:var(--ink);
  min-height:56px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:0;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,26,.14);
}
.field textarea{ resize:vertical; min-height:110px; line-height:1.5;}
.form__note{ font-size:12px; color:var(--mute); }

/* ---------- BRANDS STRIP ---------- */
.brands-strip{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center;
  gap: clamp(28px, 6vw, 64px);
  padding: 18px 0;
}
.brand-chip{
  font-weight:800; letter-spacing:.02em;
  font-size: clamp(20px, 3vw, 30px);
  color:var(--navy); opacity:.55;
  font-family: var(--font);
}
.brand-chip:hover{ opacity:1; color:var(--orange);}
.brand-chip--white{ color:rgba(255,255,255,.55);}
.brand-chip--white:hover{ color:var(--orange-bright); opacity:1;}

/* ---------- CTA BAND ---------- */
.cta-band{
  background: var(--orange);
  color:var(--white);
  text-align:center;
  padding: clamp(56px, 7vw, 96px) 0;
}
.cta-band__title{ font-size: clamp(32px, 4.6vw, 56px); font-weight:800; letter-spacing:-.02em; line-height:1.1;}
.cta-band__lead{ font-size:18px; opacity:.92; max-width: 50ch; margin: 14px auto 30px;}
.cta-band .btn-call{ background:var(--white); color:var(--navy);}
.cta-band .btn-call .btn-call__icon{ background:rgba(14,39,66,.1);}
.cta-band .btn-call .btn-call__icon svg{ fill:var(--navy);}
.cta-band .btn-call:hover{ background:var(--ivory); }

/* ---------- FOOTER ---------- */
.foot{
  background:var(--navy-deep);
  color: rgba(255,255,255,.78);
  padding: clamp(56px, 7vw, 88px) 0 28px;
}
.foot__grid{
  display:grid; gap:36px;
  grid-template-columns: 1fr;
}
@media(min-width:760px){ .foot__grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;} }
.foot h4{
  font-size:12px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--white); margin: 0 0 14px; font-weight:800;
}
.foot ul{ list-style:none; padding:0; margin:0; display:grid; gap:10px;}
.foot a{ font-size:14px; color: rgba(255,255,255,.7); transition: color .15s ease;}
.foot a:hover{ color: var(--orange-bright);}
.foot__brand{ display:flex; align-items:center; gap:12px; margin-bottom: 16px;}
.foot__brand .brand__mark{ width:50px; height:50px; }
.foot__about{ font-size:14px; color: rgba(255,255,255,.7); line-height:1.6; max-width: 38ch;}
.foot__phone{
  display:flex; flex-direction:column; gap:4px; margin-bottom:14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
}
.foot__phone .lab{ font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--mute-dark); font-weight:700;}
.foot__phone .num{ font-size:22px; font-weight:800; color:var(--white); letter-spacing:-.01em;}
.foot__phone .num:hover{ color: var(--orange-bright);}
.foot__bottom{
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px;
  font-size:12px; color: rgba(255,255,255,.5); letter-spacing:.02em;
}
.foot__credit{ color: rgba(255,255,255,.5);}
.foot__credit a{ color: var(--orange-bright);}

/* ---------- REVEAL (with fallback visibility) ---------- */
.reveal{ opacity:1; transform:none;}        /* fallback open */
.reveal--ready{ opacity:0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease;}
.reveal--in{ opacity:1; transform: translateY(0);}

/* ---------- UTILS ---------- */
.spacer-sm{ height:24px; } .spacer-md{ height:48px;} .spacer-lg{ height:72px;}
.muted{ color:var(--mute);}
.center{ text-align:center; }
.no-wrap{ white-space:nowrap; }

/* ---------- PAGE HEADERS (sub-pages) ---------- */
.page-hero{
  background: var(--navy);
  color:var(--white);
  padding: clamp(56px, 9vw, 112px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 4px solid var(--orange);
}
.page-hero__inner{ display:grid; gap:18px; max-width: 800px;}
.page-hero__crumbs{ font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.55); font-weight:700;}
.page-hero__crumbs a{ color: var(--orange-bright);}

/* ===== Mobile fixes ===== */
@media(max-width:600px){
  .hero__inner{ padding-top: 56px; padding-bottom: 64px; gap: 26px;}
  .hero__cta .btn-call{ width:100%; }
  .hero__cta .btn{ width:100%; justify-content:center; }
  .hero__meta{ gap:20px; }
  .svc-bar__item{ padding: 12px 14px; font-size:13px; }
  .section{ padding: 56px 0; }
}

/* =========================================================
   LUCAS — Tree-service additions (overrides + new bits)
   ========================================================= */

/* serif accent for headlines */
.h-display em, .h-section em, .hero__title em{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
}

/* Real Lucas Tree Service photo — branded trucks at residential job */
.hero__bg{
  background:
    linear-gradient(160deg, rgba(20,29,12,.65) 0%, rgba(20,29,12,.82) 55%, rgba(20,29,12,.93) 100%),
    url('https://lucastreeservice.com/images/gallery/a.jpg') center 55%/cover no-repeat,
    var(--navy-deep) !important;
}
.hero__bg::after{
  background: radial-gradient(900px 600px at 78% 25%, rgba(139,74,34,.22), transparent 60%) !important;
}

/* ---------- PHOTO GALLERY ---------- */
.photo-gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap:8px;
}
.photo-gallery__item{
  position:relative; overflow:hidden; margin:0;
  border-radius:8px;
}
.photo-gallery__item--wide{ grid-column: span 2; }
.photo-gallery__item img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .45s ease;
}
.photo-gallery__item:hover img{ transform:scale(1.05); }
.photo-gallery__item figcaption{
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(transparent, rgba(15,22,8,.8));
  color:#fff;
  font-size:0.72rem; letter-spacing:.1em; text-transform:uppercase; font-weight:700;
  padding:28px 14px 12px;
  opacity:0; transition:opacity .25s ease;
  font-family:var(--font);
}
.photo-gallery__item:hover figcaption{ opacity:1; }

/* Fleet trust strip */
.fleet-strip{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  padding:20px 24px;
  background:var(--ivory); border-radius:var(--radius);
  border:1px solid var(--rule);
  margin-top:20px;
}
.fleet-strip__img{
  width:100%; max-height:240px; object-fit:cover; border-radius:10px;
  margin-top:32px;
}

@media(max-width:720px){
  .photo-gallery{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
  .photo-gallery__item--wide{ grid-column: span 2; }
}
@media(max-width:420px){
  .photo-gallery{
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
  }
}

/* ISA certification badge */
.isa-seal{
  display:inline-flex; align-items:center; gap:14px;
  padding: 12px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
}
.isa-seal__mark{
  width:46px; height:46px; border-radius:50%;
  background: var(--orange);
  display:grid; place-items:center;
  flex: 0 0 46px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--white);
  font-size: 20px;
  letter-spacing: -.02em;
  box-shadow: 0 4px 12px rgba(139,74,34,.4);
}
.isa-seal__text{ display:flex; flex-direction:column; gap:2px; line-height:1.15;}
.isa-seal__lab{
  font-size:10px; letter-spacing:.18em; text-transform:uppercase;
  color: rgba(255,255,255,.6); font-weight:700;
}
.isa-seal__name{ font-weight:800; font-size:15px; color: var(--white); }
.isa-seal__id{ font-size:11px; color: rgba(255,255,255,.6); letter-spacing:.08em; font-family:'JetBrains Mono', ui-monospace, monospace;}

/* credential strip (replaces brand chips) */
.cred-strip{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center;
  gap: clamp(20px, 4vw, 48px);
  padding: 12px 0;
}
.cred-chip{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  text-align:center; padding: 8px 14px;
}
.cred-chip__mark{
  width:42px; height:42px; border-radius:50%;
  background: var(--ivory);
  border: 2px solid var(--moss);
  display:grid; place-items:center;
  font-family: var(--serif);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 18px;
}
.cred-chip__title{ font-weight:800; color: var(--navy); font-size:13px; letter-spacing:.04em; }
.cred-chip__sub{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; color: var(--mute); font-weight:700;}

/* leaf bullet — replaces orange dot in svc-card lists */
.svc-card__list li::before{
  background: var(--moss) !important;
  border-radius: 0 50% 50% 50% !important;
  transform: rotate(-30deg);
  width: 7px !important; height: 9px !important;
  flex: 0 0 7px !important;
}

/* tree-care plan card additions */
.plan__tier{ font-family: var(--serif); font-style: italic; font-weight: 500; letter-spacing: 0; text-transform: none; font-size:22px;}
.plan--highlight .plan__tier{ color: var(--orange-bright);}

/* hero meta — add a serif tone to numbers */
.hero__meta-item strong{ font-family: var(--serif); font-weight: 500; letter-spacing: -.02em;}
.story__pillars .pillar__val{ font-family: var(--serif); font-weight: 500;}
.reviews-strip__rating{ font-family: var(--serif); font-weight: 500;}
.financing__cardpct{ font-family: var(--serif); font-weight: 500;}
.plan__price strong{ font-family: var(--serif); font-weight: 500;}

/* "Why ISA" callout band */
.why-isa{
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media(min-width:900px){
  .why-isa{ grid-template-columns: 1fr 1.4fr; gap: 56px;}
}
.why-isa__seal{
  width: 100%; aspect-ratio: 1; max-width: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--moss) 0%, var(--navy) 70%);
  display: grid; place-items: center;
  color: var(--white);
  text-align: center;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(31,42,20,.28);
  position: relative;
}
.why-isa__seal::before{
  content: ""; position: absolute; inset: 12px;
  border: 1.5px dashed rgba(255,255,255,.32);
  border-radius: 50%;
}
.why-isa__seal-text{
  display: grid; gap: 6px; position: relative;
}
.why-isa__seal-mono{
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 42px; line-height: 1; color: var(--white);
}
.why-isa__seal-lab{
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.7); font-weight: 700;
}
.why-isa__seal-id{
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .08em; color: rgba(255,255,255,.55);
  margin-top: 8px;
}
.why-isa__copy h3{ font-size: clamp(22px,2.6vw,30px); color: var(--navy); letter-spacing: -.01em; font-weight: 800; margin-bottom: 14px;}
.why-isa__copy p{ font-size: 15px; color: var(--mute); line-height: 1.65; max-width: 56ch;}
.why-isa__copy p + p{ margin-top: 12px;}
.why-isa__list{
  list-style: none; padding: 0; margin: 20px 0 0;
  display: grid; gap: 10px;
}
.why-isa__list li{
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--ink);
}
.why-isa__list li::before{
  content: "✦"; color: var(--orange); font-size: 14px;
  flex: 0 0 14px; margin-top: 2px;
}

/* before-after process steps */
.process{
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media(min-width:760px){ .process{ grid-template-columns: repeat(4, 1fr);} }
.process-step{
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  counter-increment: step;
}
.process-step::before{
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 18px; right: 22px;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 28px; color: var(--orange);
  line-height: 1;
}
.process-step__title{
  font-size: 17px; font-weight: 800; color: var(--navy);
  letter-spacing: -.01em; margin-bottom: 8px; max-width: 80%;
}
.process-step__copy{ font-size: 14px; color: var(--mute); line-height: 1.55;}

/* leaf monogram on dark sections */
.leaf-bg{ position: relative; overflow: hidden;}
.leaf-bg::before{
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 460px; height: 460px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path fill='%23A95E2F' fill-opacity='.18' d='M50 5 C 22 15, 12 45, 22 70 C 30 90, 55 95, 75 80 C 95 65, 95 35, 78 18 C 70 10, 60 5, 50 5 Z M 50 18 C 60 22, 68 35, 60 55 C 55 70, 40 75, 30 65 C 22 55, 26 35, 38 25 C 42 20, 46 18, 50 18 Z'/></svg>") no-repeat center/contain;
  pointer-events: none;
}

/* the BIG callout box for the ISA pitch on home */
.pitch-band{
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  position: relative; overflow: hidden;
}
.pitch-band__eyebrow{ font-size:11px; letter-spacing:.22em; text-transform:uppercase; color: var(--orange-bright); font-weight:800;}
.pitch-band__title{
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 4.2vw, 52px); line-height: 1.1; letter-spacing: -.02em;
  color: var(--white); margin: 14px 0 18px; max-width: 22ch;
}
.pitch-band__title em{ font-family: var(--serif); font-style: italic; color: var(--orange-bright);}
.pitch-band__copy{ color: rgba(255,255,255,.78); max-width: 56ch; font-size: 16px; line-height: 1.65;}

/* override .area-tile--home to use moss instead of orange */
.area-tile--home{ background: var(--moss) !important; border-color: var(--moss) !important; }

/* prefer-reduced-motion */
@media (prefers-reduced-motion: reduce){
  .reveal--ready{ opacity:1 !important; transform:none !important; }
}

/* =========================================================
   LUCAS — Full layout system
   Header · Nav · Split · Cards · Footer · Forms · Misc
   ========================================================= */

/* ---- HEADER (replaces O'Dell's .site-header/.hdr) ---- */
.header{
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.header__inner{
  display: flex; align-items: center; gap: 20px;
  height: 68px;
}
.logo{
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 15px; color: var(--navy);
  letter-spacing: -.01em; flex: 0 0 auto; text-decoration: none;
}
.logo__text span{ color: var(--orange); display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }

.nav{ display: none; align-items: center; gap: 28px; margin-left: auto; }
@media(min-width: 900px){ .nav{ display: flex; } }
.nav__link{
  font-size: 14px; font-weight: 600; color: var(--mute);
  letter-spacing: .02em; transition: color .15s ease;
  text-decoration: none; position: relative;
}
.nav__link:hover{ color: var(--navy); }
.nav__link--active{ color: var(--orange); }
.nav__link--active::after{
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange); border-radius: 2px;
}

.btn--sm{ padding: 10px 18px; font-size: 13px; min-height: 38px; border-radius: 8px; }

.header__cta{ margin-left: auto; }
@media(min-width: 900px){ .header__cta{ margin-left: 20px; } }
@media(max-width: 899px){ .nav{ display: none; } }

/* Burger */
.burger{
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; margin-left: auto;
  cursor: pointer;
}
@media(min-width: 900px){ .burger{ display: none; } }
.burger span{ display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s ease; }

/* Mobile nav override */
.mob-menu{
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--rule);
  border-bottom: 2px solid var(--orange);
  padding: 16px var(--pad);
  z-index: 199;
}
.mob-menu.is-open{ display: block; }
.mob-menu a{
  display: block; padding: 12px 0;
  font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.mob-menu a:last-of-type{ border-bottom: 0; }

/* ---- SECTION VARIANTS ---- */
.section--tint{ background: var(--cream); }
.section--navy-deep{
  background: var(--navy-deep); color: var(--white);
}

/* ---- SPLIT LAYOUT ---- */
.split{
  display: grid; gap: clamp(32px, 6vw, 80px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media(min-width: 800px){
  .split{ grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media{ order: -1; }
}
.split__text{ display: flex; flex-direction: column; gap: 16px; }
.split__text p{ color: var(--mute); line-height: 1.65; }
.split__text .lead{ color: var(--ink); }
.split__media{ position: relative; }
.split__form{ }

/* ---- CARDS GRID ---- */
.cards-grid{
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card{
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.card--dark{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}

/* ---- STATS (about page) ---- */
.stat{ text-align: center; }
.stat__num{
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px); color: var(--navy);
  letter-spacing: -.02em; line-height: 1;
}
.stat__label{ font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); font-weight: 700; margin-top: 6px;}

/* ---- BADGE ---- */
.badge{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
}
.badge--success{ background: rgba(90,122,46,.2); color: var(--success); }

/* ---- FORM ---- */
.form-card{
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 0;
}
.form-row{ display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row:last-child{ margin-bottom: 0; }
.form-label{ font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: .02em; }
.form-input{
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--rule); border-radius: 8px;
  font-size: 15px; font-family: var(--font);
  color: var(--ink); background: var(--white);
  transition: border-color .15s ease;
  -webkit-appearance: none;
}
.form-input:focus{ outline: none; border-color: var(--navy); }
textarea.form-input{ resize: vertical; min-height: 80px; }
select.form-input{ cursor: pointer; }

/* ---- ISA SEAL (circular stamp version) ---- */
.isa-seal{
  /* override the inline badge version with a circular stamp */
  display: grid; place-items: center;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--moss), var(--navy-deep));
  box-shadow: 0 8px 24px rgba(31,42,20,.35), inset 0 0 0 2px rgba(255,255,255,.18);
  color: var(--white);
  text-align: center;
  font-family: var(--serif);
  padding: 0;
  border: none;
  position: relative;
}
.isa-seal::before{
  content: ''; position: absolute; inset: 8px;
  border: 1px dashed rgba(255,255,255,.35); border-radius: 50%;
}
.isa-seal__ring{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6em; letter-spacing: .12em; text-transform: uppercase;
  font-family: var(--font); font-weight: 700; color: rgba(255,255,255,.6);
  padding: 12px;
  text-align: center;
  pointer-events: none;
}
.isa-seal__center{
  font-family: var(--serif); font-style: italic; font-size: 1.6em;
  font-weight: 500; color: var(--white); letter-spacing: -.02em;
  position: relative; z-index: 1; line-height: 1;
}

/* ---- PROCESS STEP NUM ---- */
.process-step__num{
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 36px; color: var(--orange); line-height: 1;
  margin-bottom: 12px;
}
.process-step h4{ font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -.01em; }
.process-step p{ font-size: 14px; color: var(--mute); line-height: 1.55; margin: 0; }

/* ---- AREAS GRID ---- */
.areas{ display: grid; gap: 48px; grid-template-columns: 1fr; }
@media(min-width: 900px){ .areas{ grid-template-columns: 1fr 1fr; align-items: start; } }
.areas-grid{
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.area-tile{
  background: var(--ivory); border: 1px solid var(--rule);
  border-radius: 10px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.area-tile--home{ background: var(--moss) !important; border-color: var(--moss) !important; }
.area-tile--home .area-tile__name{ color: #fff; }
.area-tile--home .area-tile__note{ color: rgba(255,255,255,.7); }
.area-tile__name{ font-weight: 700; font-size: 14px; color: var(--navy); }
.area-tile__note{ font-size: 11px; color: var(--mute); letter-spacing: .04em; }

/* ---- FOOTER ---- */
.footer{
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: clamp(48px, 7vw, 80px) 0 0;
}
.footer__grid{
  display: grid; gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 48px;
}
.footer__col--brand{ grid-column: 1 / -1; }
@media(min-width: 720px){ .footer__col--brand{ grid-column: span 1; } }
.footer__heading{
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-weight: 700; margin-bottom: 16px;
}
.footer__links{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__links a{ font-size: 14px; color: rgba(255,255,255,.65); transition: color .15s ease; text-decoration: none; }
.footer__links a:hover{ color: var(--white); }
.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  font-size: 13px; color: rgba(255,255,255,.4);
}

/* ---- CRED STRIP (simplified chip version) ---- */
.cred-chip{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 7px 16px; border-radius: 30px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: rgba(255,255,255,.85); white-space: nowrap;
}
.cred-strip{
  background: var(--navy); padding: 16px var(--pad);
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; justify-content: center;
}

/* ---- PITCH-BAND (full-width dark CTA) ---- */
.pitch-band{
  background: var(--navy-deep);
  padding: clamp(64px, 9vw, 104px) var(--pad);
  position: relative; overflow: hidden;
}
.pitch-band::before{
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 460px; height: 460px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path fill='%23A95E2F' fill-opacity='.14' d='M50 5 C 22 15, 12 45, 22 70 C 30 90, 55 95, 75 80 C 95 65, 95 35, 78 18 C 70 10, 60 5, 50 5 Z'/></svg>") no-repeat center/contain;
  pointer-events: none;
}

/* ---- PAGE HERO (sub-pages) ---- */
.page-hero{
  background: var(--navy-deep);
  padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 7vw, 80px);
  border-bottom: 4px solid var(--orange);
}
.page-hero .eyebrow{ color: var(--orange-bright); }
.page-hero .h-display{ color: var(--white); }
.page-hero .lead{ color: rgba(255,255,255,.75); margin-top: 16px; }

/* ---- RESPONSIVE UTILITIES ---- */
@media(max-width: 600px){
  .cards-grid{ grid-template-columns: 1fr; }
  .areas-grid{ grid-template-columns: 1fr 1fr; }
  .process{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .form-card{ padding: 20px; }
}
@media(max-width: 800px){
  .split{ gap: 32px; }
  .split--reverse .split__media{ order: 0; }
}

/* =========================================================
   PREMIUM ANIMATION + SIGNATURE LAYER  (v3 upgrade)
   Growth-ring motif · stagger reveals · magnetic CTA ·
   count-up stats · hero parallax · directional reveals
   ========================================================= */

/* ---- Directional reveal variants (all fail-open) ---- */
.reveal-l{ opacity:1; }
.reveal-l.reveal--ready{ opacity:0; transform: translateX(-28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-l.reveal--in{ opacity:1; transform: none; }
.reveal-r{ opacity:1; }
.reveal-r.reveal--ready{ opacity:0; transform: translateX(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-r.reveal--in{ opacity:1; transform: none; }
.reveal-scale{ opacity:1; }
.reveal-scale.reveal--ready{ opacity:0; transform: scale(.94); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-scale.reveal--in{ opacity:1; transform: none; }

/* ---- Stagger: children animate in sequence ---- */
.stagger.reveal--ready > *{ opacity:0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.stagger.reveal--in > *{ opacity:1; transform: none; }
.stagger.reveal--in > *:nth-child(1){ transition-delay:.04s; }
.stagger.reveal--in > *:nth-child(2){ transition-delay:.12s; }
.stagger.reveal--in > *:nth-child(3){ transition-delay:.20s; }
.stagger.reveal--in > *:nth-child(4){ transition-delay:.28s; }
.stagger.reveal--in > *:nth-child(5){ transition-delay:.36s; }
.stagger.reveal--in > *:nth-child(6){ transition-delay:.44s; }
.stagger.reveal--in > *:nth-child(7){ transition-delay:.52s; }
.stagger.reveal--in > *:nth-child(8){ transition-delay:.60s; }
.stagger.reveal--in > *:nth-child(9){ transition-delay:.68s; }

/* ---- Magnetic call button ---- */
.btn-call{ will-change: transform; transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease; }
.btn-call:hover{ box-shadow: 0 18px 40px -12px rgba(139,74,34,.55); }

/* ---- Count-up numerals: hold layout, no jump ---- */
.countup{ font-variant-numeric: tabular-nums; }

/* ---- Hero subtle parallax (JS-driven, transform only) ---- */
.hero__bg{ will-change: transform; }

/* ---- Growth-ring signature motif (tree cross-section) ---- */
.ring-motif{
  position:absolute; pointer-events:none; z-index:0;
  width: 460px; height: 460px; border-radius:50%;
  opacity:.10;
  background:
    radial-gradient(circle,
      transparent 0 8%,  var(--orange) 8% 8.7%,
      transparent 8.7% 17%, var(--moss) 17% 17.6%,
      transparent 17.6% 27%, var(--orange) 27% 27.5%,
      transparent 27.5% 38%, var(--moss) 38% 38.5%,
      transparent 38.5% 50%, var(--orange) 50% 50.4%,
      transparent 50.4% 63%, var(--moss) 63% 63.4%,
      transparent 63.4% 77%, var(--orange) 77% 77.3%,
      transparent 77.3% 92%, var(--moss) 92% 92.3%,
      transparent 92.3% 100%);
}
.ring-motif--tr{ top:-160px; right:-150px; }
.ring-motif--bl{ bottom:-180px; left:-170px; }
.section{ position:relative; overflow:hidden; }
.section > .wrap{ position:relative; z-index:1; }

/* ---- Section eyebrow tick (signature divider) ---- */
.eyebrow-tick{ display:inline-flex; align-items:center; gap:10px; }
.eyebrow-tick::before{
  content:""; width:28px; height:2px; background:var(--orange); display:inline-block;
}

/* ---- Brand quote / pull-quote band ---- */
.brand-quote{
  position:relative; max-width: 920px; margin: 0 auto; text-align:center;
  padding: 8px 0;
}
.brand-quote__mark{
  font-family: var(--serif); font-size: clamp(3rem,8vw,5.5rem); line-height:.6;
  color: var(--orange); opacity:.45; display:block; margin-bottom: 8px;
}
.brand-quote__text{
  font-family: var(--serif); font-style:italic;
  font-size: clamp(1.4rem, 3.2vw, 2.3rem); line-height:1.35; color: var(--white);
}
.brand-quote__by{ display:block; margin-top:22px; font-family:'JetBrains Mono',monospace; font-size:.78rem; letter-spacing:.18em; text-transform:uppercase; color: var(--orange-bright); }

/* ---- Crown-work education cards (real arborist vocabulary) ---- */
.crown-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:18px; }
.crown-card{
  background:var(--cream); border:1px solid var(--rule); border-radius:14px; padding:26px 24px;
  position:relative; transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.crown-card:hover{ transform: translateY(-4px); box-shadow:0 20px 40px -22px rgba(31,42,20,.4); border-color: var(--orange); }
.crown-card__tag{ font-family:'JetBrains Mono',monospace; font-size:.7rem; letter-spacing:.16em; color:var(--orange); text-transform:uppercase; }
.crown-card__title{ font-family:var(--serif); font-size:1.35rem; margin:8px 0 10px; color:var(--navy); }
.crown-card__body{ font-size:.92rem; line-height:1.6; color:var(--ink-soft, #4a4a42); }
@media(max-width:640px){ .crown-grid{ grid-template-columns:1fr; } }

/* ---- Team roster cards (about page) ---- */
.team-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; margin-top:36px; }
.team-card{
  background:#fff; border:1px solid var(--rule); border-radius:16px; overflow:hidden;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
  display:flex; flex-direction:column;
}
.team-card:hover{ transform: translateY(-6px); box-shadow:0 26px 50px -24px rgba(31,42,20,.45); }
.team-card__band{ height:6px; background:linear-gradient(90deg, var(--navy), var(--orange)); }
.team-card__body{ padding:26px 24px; }
.team-card__role{ font-family:'JetBrains Mono',monospace; font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color:var(--orange); }
.team-card__name{ font-family:var(--serif); font-size:1.5rem; color:var(--navy); margin:6px 0 4px; }
.team-card__cred{ font-size:.8rem; color:var(--mute); margin-bottom:14px; }
.team-card__bio{ font-size:.9rem; line-height:1.62; color:var(--ink-soft,#4a4a42); }
.team-card__chip{ display:inline-block; margin-top:14px; font-family:'JetBrains Mono',monospace; font-size:.7rem; letter-spacing:.08em; padding:5px 10px; border-radius:999px; background:var(--ivory); color:var(--navy); border:1px solid var(--rule); }
@media(max-width:860px){ .team-grid{ grid-template-columns:1fr; max-width:460px; margin-left:auto; margin-right:auto; } }

/* ---- Neighborhood-favorite badge ---- */
.nbhd-badge{
  display:inline-flex; align-items:center; gap:12px; padding:12px 20px;
  background: var(--ivory); border:1px solid var(--orange); border-radius:999px;
  font-size:.88rem; font-weight:600; color:var(--navy);
}
.nbhd-badge strong{ color:var(--orange); }
.nbhd-badge svg{ width:20px; height:20px; flex:none; }

@media(max-width:640px){
  .ring-motif{ width:280px; height:280px; }
  .ring-motif--tr{ top:-90px; right:-90px; }
  .ring-motif--bl{ bottom:-100px; left:-100px; }
}

@media (prefers-reduced-motion: reduce){
  .reveal-l.reveal--ready,.reveal-r.reveal--ready,.reveal-scale.reveal--ready,
  .stagger.reveal--ready > *{ opacity:1 !important; transform:none !important; }
  .ring-motif{ display:none; }
}
