/* Tammany Tree Service — DESIGN.md tokens. Lora display + Raleway body. */
:root {
  --ink: #131211;
  --pine: #2F3D1E;
  --canopy: #3E4826;
  --moss: #3E4826;
  --moss-deep: #3E4826;
  --moss-tint: #C9CDB8;
  --paper: #F4F1E8;
  --mist: #E8E4D4;
  --on-pine: #F4F1E8;
  --on-dark-soft: #DCE1D2;
  --ease: cubic-bezier(.22, .68, .24, 1);
  --wrap: 1160px;
  --dock-h: 0px;
  --shadow-card: 0 14px 34px rgba(19, 18, 17, .10);
  --shadow-lift: 0 22px 44px rgba(19, 18, 17, .16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: "Raleway", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.66;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  background: url("assets/grain.png");
  opacity: .04;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--moss-deep); }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }

h1, h2, h3 { font-family: "Lora", serif; font-weight: 500; color: var(--ink); }
h1 { font-size: clamp(2.45rem, 5.2vw, 4.75rem); line-height: 0.95; letter-spacing: -0.03em; font-weight: 600; }
h2 { font-size: clamp(2.1rem, 3.6vw, 2.85rem); line-height: 0.98; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); font-weight: 600; line-height: 1.2; }

.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--moss-deep); margin-bottom: 18px;
}
.eyebrow--dark { color: var(--moss-tint); }
.subhead { max-width: 44rem; margin-top: 16px; color: #3c3b38; }
.section-head { margin-bottom: 56px; }
.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 40px;
  align-items: end;
}
.section-head--split .subhead { margin-top: 0; }
section[id] { scroll-margin-top: 84px; }

:focus-visible { outline: 3px solid var(--moss); outline-offset: 2px; border-radius: 4px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 26px;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: 8px; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
}
.btn .arr { transition: transform .18s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--primary { background: var(--pine); color: var(--on-pine); box-shadow: 0 10px 24px rgba(47, 61, 30, .28); }
.btn--primary:hover { background: var(--canopy); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(47, 61, 30, .34); }
.btn--ghost { background: transparent; color: var(--pine); box-shadow: inset 0 0 0 2px rgba(47, 61, 30, .45); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--pine); transform: translateY(-2px); }
.btn--light { background: var(--paper); color: var(--pine); }
.btn--light:hover { background: var(--mist); transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 232, .96);
}
.header__inner { display: flex; align-items: center; gap: 28px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { width: 42px; height: 42px; object-fit: contain; }
.brand__words { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: "Lora", serif; font-weight: 600; font-size: 1.06rem; color: var(--ink); letter-spacing: -0.01em; }
.brand__sub { font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--moss-deep); }
.nav { display: flex; gap: 6px; margin-left: auto; }
.nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 8px 14px;
  font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  transition: color .15s var(--ease);
}
.nav a:hover { color: var(--moss-deep); }
.header__call { min-height: 48px; padding: 11px 20px; }

/* mobile menu — details/summary, no JS */
.m-nav { display: none; position: relative; margin-left: auto; }
.m-nav summary {
  list-style: none; display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; cursor: pointer; border-radius: 12px;
}
.m-nav summary::-webkit-details-marker { display: none; }
.m-nav summary span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.m-nav[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.m-nav[open] summary span:nth-child(2) { opacity: 0; }
.m-nav[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.m-nav__panel {
  position: absolute; right: 0; top: calc(100% + 10px); width: min(300px, 82vw);
  display: flex; flex-direction: column; gap: 2px;
  background: var(--paper); border-radius: 12px; box-shadow: var(--shadow-lift);
  padding: 14px;
}
.m-nav__panel a {
  display: flex; align-items: center; min-height: 48px; padding: 10px 14px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; border-radius: 12px;
}
.m-nav__panel a:hover { background: var(--mist); }
.m-nav__panel .btn { margin-top: 8px; justify-content: center; }

/* ---------- hero: type on the forest, left ink wash ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
}
.hero__band {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__band img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 38%; max-width: none; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      #131211 0%,
      rgba(19, 18, 17, .86) 22%,
      rgba(47, 61, 30, .28) 48%,
      rgba(19, 18, 17, .2) 72%,
      rgba(19, 18, 17, .35) 100%),
    linear-gradient(180deg, rgba(19, 18, 17, .18) 0%, rgba(19, 18, 17, 0) 30%);
}
.hero__stage {
  position: relative;
  z-index: 1;
  padding: 96px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .82fr);
  gap: 32px;
  align-items: center;
  align-self: center;
  flex: 1 1 auto;
  width: min(var(--wrap), calc(100% - 48px));
  max-width: var(--wrap);
  margin-inline: auto;
}
.hero__copy { max-width: 46rem; min-width: 0; }
.hero .eyebrow { color: var(--moss-tint); margin-bottom: 16px; }
.hero h1 { color: var(--paper); font-size: clamp(3rem, 4.8vw, 5.25rem); line-height: 0.92; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--moss-tint); }
.hero__h1-line { white-space: nowrap; }
.hero .lede { margin-top: 18px; font-size: 1.18rem; line-height: 1.55; color: var(--on-dark-soft); max-width: 34rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__copy .btn--primary { background: var(--paper); color: var(--pine); box-shadow: 0 10px 24px rgba(19, 18, 17, .28); }
.hero__copy .btn--primary:hover { background: var(--mist); color: var(--pine); }
.hero__note { margin-top: 16px; font-size: .8rem; font-weight: 600; color: var(--moss-tint); }
.hero__form {
  min-width: 0;
  background: var(--paper);
  border-radius: 8px;
  padding: 28px 26px 22px;
  box-shadow: 0 22px 48px rgba(19, 18, 17, .3);
  display: grid;
  gap: 14px;
}
.hero__form-title {
  font-family: "Lora", serif;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero__form .form__submit { background: var(--pine); color: var(--on-pine); }
.hero__form .form__submit:hover { background: var(--canopy); }
.hero__form .form__note { color: #55534e; }
.hero__form .form__note a { color: var(--pine); }

/* ---------- trust rail — on the forest, not a floating card ---------- */
.hero__rail {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 0 28px;
  background: linear-gradient(180deg, rgba(19, 18, 17, 0) 0%, rgba(19, 18, 17, .55) 28%);
}
.hero__rail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}
.hero__stat { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.hero__stat-value {
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  color: var(--paper);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__stat-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--moss-tint);
}

/* ---------- bands ---------- */
.band--mist { background: var(--mist); }
.band--dark { background: var(--pine); color: var(--on-dark-soft); position: relative; isolation: isolate; }
.band--dark::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: url("assets/grain.png"); opacity: .12;
}
.band--dark::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 90% at 18% 0%, rgba(102, 116, 60, .34), rgba(47, 61, 30, 0) 55%),
              linear-gradient(180deg, rgba(19, 18, 17, .18), rgba(19, 18, 17, 0) 30%);
}
.band--dark h2, .band--dark h3 { color: var(--on-pine); }

/* ---------- services grove ---------- */
.services { padding: 100px 0 116px; }
.grove { display: grid; gap: 24px; }
.grove__row { display: grid; gap: 20px; }
.grove__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grove__row--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--paper);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  display: flex; flex-direction: column;
  box-shadow: 0 10px 28px rgba(19, 18, 17, .06);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(19, 18, 17, .12); }
.card__media { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; max-width: none; }
.card__body { padding: 18px 20px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 { letter-spacing: -0.02em; }
.grove__row--4 .card h3 { font-size: 1.12rem; }
.card p { font-size: .97rem; color: #3c3b38; }
.svc-cta {
  margin-top: 32px;
  background: var(--pine);
  color: var(--on-dark-soft);
  border-radius: 8px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.svc-cta .btn { flex-shrink: 0; }
.svc-cta h3 { color: var(--paper); font-size: clamp(1.6rem, 2.6vw, 2.2rem); letter-spacing: -0.02em; margin: 6px 0 10px; }
.svc-cta p { max-width: 36rem; }
.card__link {
  margin-top: auto; padding-top: 6px;
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--moss-deep); text-decoration: none;
}
.card__link .arr { transition: transform .18s var(--ease); }
.card__link:hover .arr { transform: translateX(4px); }
.card--dark { background: var(--pine); padding: 28px 26px 22px; }
.card--dark:hover { background: var(--canopy); padding-left: 26px; padding-right: 26px; }
.card--dark h3 { color: var(--on-pine); }
.card--dark p { color: var(--on-dark-soft); }
.card--dark .card__link { color: var(--moss-tint); }

/* ---------- about ---------- */
.about { padding: 104px 0; background: var(--mist); }
.about__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 56px; align-items: stretch; }
.about__still { border-radius: 8px; overflow: hidden; margin: 0; min-height: 520px; height: 100%; }
.about__still img { width: 100%; height: 100%; object-fit: cover; max-width: none; }
.about__copy p + p { margin-top: 16px; }
.about__copy h2 { margin-bottom: 20px; }
.about__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; list-style: none; }
.about__chips li {
  padding: 8px 18px; min-height: 40px; display: inline-flex; align-items: center;
  background: var(--paper); border-radius: 999px;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pine);
}

/* ---------- process ---------- */
.process { padding: 104px 0; background: var(--paper); }
.stages {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.stage {
  background: var(--mist);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.stage__media { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.stage__media img { width: 100%; height: 100%; object-fit: cover; max-width: none; }
.stage__body { padding: 24px 24px 26px; }
.stage b {
  display: block;
  font-family: "Lora", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--pine);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.stage h3 { margin-bottom: 10px; }
.stage p { font-size: .97rem; color: #3c3b38; }

/* ---------- proof band ---------- */
.proof { padding: 88px 0 100px; }
.proof__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: center; }
.proof__still { position: relative; margin: 0; border-radius: 8px; overflow: hidden; }
.proof__still > picture img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; max-width: none; }
.proof__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  background: var(--paper);
  border-radius: 8px;
  padding: 14px 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-style: normal;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
}
.proof__tile { display: inline-flex; }
.proof__tile img { width: 92px; height: auto; }
.proof__badge-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pine); text-align: center; line-height: 1.45;
}
.proof__copy p { max-width: 38rem; }
.proof__copy h2 { margin-bottom: 18px; }
.proof__list {
  list-style: none; margin-top: 28px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
}
.proof__list li {
  background: rgba(244, 241, 232, .08);
  border-radius: 8px; padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
  color: var(--on-pine);
}
.proof__list b { font-family: "Lora", serif; font-size: 1.25rem; color: var(--paper); letter-spacing: -0.02em; }
.proof__list span { font-size: .82rem; color: var(--moss-tint); }
.proof__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 32px; }
.proof__hours { font-size: .82rem; font-weight: 600; letter-spacing: .06em; color: var(--moss-tint); }

/* ---------- territory ---------- */
.territory { padding: 104px 0; background: var(--paper); }
.territory__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}
.territory__copy p { max-width: 32rem; }
.territory__copy h2 { margin-bottom: 18px; }
.territory__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 32px;
}
.territory__list li {
  font-family: "Lora", serif;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
  min-height: 52px;
  display: flex;
  align-items: center;
  color: var(--ink);
}

/* ---------- faq ---------- */
.faq { padding: 104px 0; background: var(--mist); }
.faq__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.faq__item { background: var(--paper); border-radius: 8px; padding: 0 12px; box-shadow: 0 8px 22px rgba(19, 18, 17, .05); }
.faq__item:last-child { grid-column: 1 / -1; }
.faq__item summary {
  list-style: none; cursor: pointer; position: relative;
  display: flex; align-items: center; min-height: 56px;
  padding: 20px 56px 20px 4px;
  font-family: "Lora", serif; font-weight: 500; font-size: 1.18rem; color: var(--ink);
  transition: color .15s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  font-family: "Raleway", sans-serif; font-size: 1.5rem; font-weight: 400; color: var(--moss-deep);
  transition: transform .25s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: var(--moss-deep); }
.faq__item p { padding: 0 56px 22px 4px; max-width: 44rem; color: #3c3b38; }

/* ---------- contact ---------- */
.contact {
  padding: 104px 0 116px; background: var(--pine); color: var(--on-dark-soft);
  position: relative; isolation: isolate;
}
.contact::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: url("assets/grain.png"); opacity: .12;
}
.contact .eyebrow { color: var(--moss-tint); }
.contact h2 { color: var(--paper); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 72px; align-items: start; }
.contact__phone {
  display: inline-block; margin-top: 18px;
  font-family: "Lora", serif; font-weight: 500; letter-spacing: -0.015em;
  font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.05;
  color: var(--paper); text-decoration: none;
  border-bottom: 3px solid rgba(201, 205, 184, .45);
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.contact__phone:hover { color: var(--moss-tint); border-bottom-color: var(--moss-tint); }
.contact__hours { margin-top: 16px; font-weight: 600; color: var(--on-dark-soft); }
.contact__trust { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.contact__trust li { font-weight: 600; color: var(--paper); }
.contact__close { margin-top: 30px; max-width: 34rem; color: var(--on-dark-soft); }
.contact__close a { color: var(--paper); }
.form {
  background: var(--paper); color: var(--ink); border-radius: 8px;
  padding: 36px; box-shadow: 0 28px 56px rgba(19, 18, 17, .28);
  display: grid; gap: 18px;
}
.form__title { margin-bottom: 2px; color: var(--ink); }
.form__field { display: grid; gap: 7px; }
.form__field span {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--moss-deep);
}
.form__field input, .form__field select, .form__field textarea {
  font: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 16px; min-height: 50px;
  background: var(--mist); border: 1.5px solid #d9dcd0; border-radius: 8px;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form__field textarea { resize: vertical; min-height: 110px; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none; border-color: var(--moss); box-shadow: 0 0 0 3px rgba(102, 116, 60, .22);
}
.form__submit { width: 100%; border: none; }
.form__note { font-size: .85rem; color: #55534e; }

/* ---------- footer ---------- */
.site-footer { padding: 56px 0 0; background: var(--ink); color: var(--on-dark-soft); }
.footer__grid {
  display: grid; gap: 48px;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  padding-bottom: 56px;
}
.footer__tile {
  display: inline-flex; background: var(--paper); border-radius: 12px; padding: 8px;
  margin-bottom: 18px;
}
.footer__tile img { width: 52px; height: auto; }
.footer__name { font-family: "Lora", serif; font-weight: 600; font-size: 1.2rem; color: var(--on-pine); }
.footer__slogan { font-size: .9rem; color: var(--moss-tint); margin-top: 4px; }
.footer__head {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--moss-tint); margin-bottom: 16px;
}
.footer__col a {
  display: flex; align-items: center; min-height: 44px;
  color: var(--on-dark-soft); text-decoration: none; font-size: .95rem;
  transition: color .15s var(--ease);
}
.footer__col a:hover { color: var(--on-pine); }
.footer__phone { font-family: "Lora", serif; font-size: 1.3rem; font-weight: 600; color: var(--on-pine) !important; }
.footer__text { font-size: .92rem; color: var(--on-dark-soft); margin-bottom: 14px; }
.footer__base {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 22px 0 calc(22px + var(--dock-h));
  font-size: .82rem; color: var(--moss-tint);
}

/* ---------- mobile dock ---------- */
.dock { display: none; }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero__band img { animation: heroSettle .7s var(--ease) both; }
  .hero .rise { opacity: 0; animation: riseIn .56s var(--ease) forwards; }
  .hero .d1 { animation-delay: .09s; }
  .hero .d2 { animation-delay: .17s; }
  .hero .d3 { animation-delay: .25s; }
  .hero .d4 { animation-delay: .33s; }
  .hero .d5 { animation-delay: .41s; }
  .proof__tile { animation: badgeFloat .7s var(--ease) 1.2s 1 both; }

  @supports (animation-timeline: view()) {
    .reveal { animation: riseIn .56s var(--ease) both; animation-timeline: view(); animation-range: entry 8% entry 38%; }
    .reveal-stagger > * { animation: riseIn .56s var(--ease) both; animation-timeline: view(); animation-range: entry 6% entry 32%; }
  }
}

@keyframes heroSettle { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes badgeFloat { from { transform: translateY(0); } to { transform: translateY(-8px); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .hero__stage { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .hero h1 { font-size: clamp(2.85rem, 6.4vw, 4.4rem); }
  .section-head--split { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .hero__rail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 32px; }
  .faq__list { grid-template-columns: minmax(0, 1fr); }
  .svc-cta { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .grove__row--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about__grid, .contact__grid, .proof__grid, .territory__grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .about__still { min-height: 420px; }
  .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 819px) {
  :root { --dock-h: 64px; }
  body { padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom)); }
  .nav, .header__call { display: none; }
  .m-nav { display: block; }
  .hero {
    min-height: 92vh;
    align-items: flex-start;
  }
  .hero::after {
    background: linear-gradient(180deg,
      rgba(19, 18, 17, .55) 0%,
      rgba(19, 18, 17, .4) 38%,
      rgba(19, 18, 17, .82) 100%);
  }
  .hero__band { position: absolute; inset: 0; height: auto; }
  .hero__stage { padding: 40px 0 24px; }
  .hero__copy { max-width: none; }
  .hero h1 { font-size: clamp(2.2rem, 9.2vw, 2.7rem); }
  .hero .lede { font-size: 1rem; margin-top: 12px; }
  .hero__ctas { margin-top: 18px; }
  .hero__note { display: none; }
  .hero__form { padding: 22px 18px 18px; }
  .hero__rail { padding: 8px 0 calc(18px + var(--dock-h)); }
  .grove__row--3, .grove__row--4 { grid-template-columns: minmax(0, 1fr); }
  .stages { grid-template-columns: minmax(0, 1fr); }
  .about__still { min-height: 360px; }
  .services, .about, .process, .territory, .faq { padding: 64px 0; }
  .contact { padding: 64px 0 80px; }
  .proof { padding: 64px 0 72px; }
  .proof__list { grid-template-columns: minmax(0, 1fr); }
  .dock {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: flex; gap: 10px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(244, 241, 232, .97);
  }
  .dock a {
    flex: 1; display: inline-flex; align-items: center; justify-content: center;
    min-height: 50px; border-radius: 12px;
    font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  }
  .dock__call { background: var(--pine); color: var(--on-pine); }
  .dock__quote { color: var(--pine); box-shadow: inset 0 0 0 2px rgba(47, 61, 30, .45); }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .form { padding: 26px 22px; }
}
