/* A&O Tree Service — shared brand experience */
:root {
  --ao-forest: #004b27;
  --ao-forest-deep: #062716;
  --ao-forest-ink: #0a2115;
  --ao-green: #0c6a3b;
  --ao-lime: #95b81f;
  --ao-lime-bright: #b8d84c;
  --ao-cream: #f4f2e9;
  --ao-mist: #eef2ec;
  --ao-paper: #fbfcf8;
  --ao-white: #fff;
  --ao-text: #173321;
  --ao-muted: #5c6b62;
  --ao-line: rgba(6, 39, 22, 0.13);
  --ao-shadow-sm: 0 10px 30px rgba(6, 39, 22, 0.08);
  --ao-shadow: 0 24px 70px rgba(6, 39, 22, 0.14);
  --ao-radius-sm: 14px;
  --ao-radius: 24px;
  --ao-radius-lg: 38px;
  --ao-display: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --ao-body: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

footer {
  padding: 70px 0;
  background: var(--ao-forest-deep);
  color: var(--ao-white);
  text-align: center;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  background: var(--ao-paper);
  color: var(--ao-text);
  font-family: var(--ao-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--ao-lime);
  color: var(--ao-forest-deep);
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ao-lime);
  outline-offset: 4px;
}

img {
  background: var(--ao-mist);
}

.container {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

header {
  top: 0;
  z-index: 1000;
  border: 0;
  border-bottom: 1px solid rgba(6, 39, 22, 0.08);
  background: rgba(251, 252, 248, 0.92);
  box-shadow: 0 8px 30px rgba(6, 39, 22, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  min-height: 96px;
  padding: 8px 0;
}

.logo {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.logo img {
  width: auto;
  height: 70px;
  background: transparent;
  object-fit: contain;
}

.nav-right {
  gap: 27px;
}

.nav-link {
  position: relative;
  color: var(--ao-forest-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--ao-lime);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.phone {
  border-left: 1px solid var(--ao-line);
  padding-left: 24px;
  color: var(--ao-forest);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}

.phone small {
  margin-top: 5px;
  color: var(--ao-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ao-line);
  border-radius: 50%;
  background: var(--ao-white);
  color: var(--ao-forest);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
  transition: 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn,
.submit-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 23px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease,
    color 180ms ease;
}

.btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.submit-btn {
  background: var(--ao-forest);
  box-shadow: 0 10px 24px rgba(0, 75, 39, 0.18);
  color: var(--ao-white);
}

.btn-primary:hover,
.submit-btn:hover {
  background: var(--ao-forest-deep);
  box-shadow: 0 15px 32px rgba(6, 39, 22, 0.24);
}

.btn-secondary {
  background: var(--ao-lime);
  box-shadow: 0 10px 24px rgba(149, 184, 31, 0.2);
  color: var(--ao-forest-deep);
}

.btn-secondary:hover {
  background: var(--ao-lime-bright);
}

.nav-right > .btn {
  min-height: 46px;
  padding-inline: 19px;
  font-size: 11px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  padding: 104px 0 92px;
  background-position: center 42%;
  color: var(--ao-white);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 39, 22, 0.88) 0%, rgba(6, 39, 22, 0.69) 48%, rgba(6, 39, 22, 0.24) 100%),
    linear-gradient(0deg, rgba(6, 39, 22, 0.38), transparent 45%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -260px;
  z-index: -1;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025),
    0 0 0 180px rgba(255, 255, 255, 0.018);
  content: "";
}

.hero-grid {
  gap: clamp(42px, 6vw, 88px);
}

.hero-grid > div:first-child {
  position: relative;
}

.hero-eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #e1efb9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.badge::before {
  width: 34px;
  height: 2px;
  background: var(--ao-lime);
  content: "";
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 25px;
  font-family: var(--ao-display);
  font-size: clamp(58px, 6.6vw, 92px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero p {
  max-width: 760px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.55;
}

.hero-buttons {
  gap: 12px;
  margin-bottom: 27px;
}

.hero .btn-primary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(6, 39, 22, 0.44);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.hero .btn-primary:hover {
  background: var(--ao-white);
  color: var(--ao-forest);
}

.pills {
  gap: 10px;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.025em;
  backdrop-filter: blur(8px);
}

.form-card,
.content-card,
.story-card,
.info-card {
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--ao-radius-lg);
  padding: clamp(28px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--ao-shadow);
}

.hero .form-card {
  position: relative;
  overflow: hidden;
}

.hero .form-card::before {
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--ao-lime);
  content: "";
}

.form-card h2,
.info-card h2 {
  margin-bottom: 8px;
  color: var(--ao-forest-deep);
  font-size: clamp(26px, 3vw, 35px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.form-card p,
.info-card p {
  color: var(--ao-muted);
}

form {
  gap: 12px;
}

input,
select,
textarea {
  min-height: 53px;
  border: 1px solid var(--ao-line);
  border-radius: 12px;
  padding: 14px 15px;
  background: var(--ao-paper);
  color: var(--ao-text);
  font: inherit;
  font-size: 15px;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  min-height: 116px;
}

input:hover,
select:hover,
textarea:hover,
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 75, 39, 0.45);
  background: var(--ao-white);
  box-shadow: 0 0 0 4px rgba(149, 184, 31, 0.1);
}

.submit-btn {
  width: 100%;
  min-height: 56px;
  margin-top: 3px;
  border: 0;
  cursor: pointer;
}

section {
  padding: clamp(82px, 9vw, 122px) 0;
}

.section-title {
  max-width: 850px;
  margin-bottom: 20px;
  color: var(--ao-forest-deep);
  font-family: var(--ao-display);
  font-size: clamp(43px, 5.2vw, 68px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-lead {
  max-width: 790px;
  margin-bottom: 48px;
  color: var(--ao-muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.trust {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 0;
  background: var(--ao-cream);
}

.trust-grid {
  gap: 0;
  border-right: 1px solid var(--ao-line);
  border-left: 1px solid var(--ao-line);
}

.trust-item {
  position: relative;
  border-right: 1px solid var(--ao-line);
  border-radius: 0;
  padding: 28px 16px;
  background: transparent;
  box-shadow: none;
  color: var(--ao-forest-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--ao-lime);
  content: "";
}

.review-ticker-section,
.alert-strip {
  position: relative;
  padding: 52px 0;
  background: var(--ao-forest-deep);
  overflow: hidden;
}

.review-ticker-section::before {
  position: absolute;
  top: -260px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.02);
  content: "";
}

.review-ticker-header {
  position: relative;
  margin-bottom: 30px;
}

.review-ticker-header h2 {
  font-size: clamp(30px, 4vw, 45px);
  letter-spacing: -0.035em;
}

.review-ticker-header p {
  color: rgba(255, 255, 255, 0.72);
}

.review-slide {
  width: min(420px, 82vw);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--ao-radius);
  padding: 25px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: none;
  color: var(--ao-white);
  backdrop-filter: blur(8px);
}

.review-slide p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.55;
}

.review-slide strong {
  display: block;
  color: var(--ao-lime-bright);
}

.review-slide small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stars {
  color: #e2bb35;
  letter-spacing: 0.09em;
}

.services-grid,
.service-grid {
  gap: 22px;
}

.service-card,
.value-card,
.photo-card,
.related-card,
.service-link-card {
  position: relative;
  border: 1px solid var(--ao-line);
  border-radius: var(--ao-radius);
  background: var(--ao-white);
  box-shadow: var(--ao-shadow-sm);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.value-card:hover,
.photo-card:hover,
.related-card:hover,
.service-link-card:hover {
  border-color: rgba(149, 184, 31, 0.55);
  box-shadow: var(--ao-shadow);
  transform: translateY(-7px);
}

.service-card img,
.value-card img,
.photo-card img {
  height: 265px;
  filter: saturate(0.88) contrast(1.04);
  object-fit: cover;
  transition: filter 240ms ease, transform 500ms ease;
}

.service-card:hover img,
.value-card:hover img,
.photo-card:hover img {
  filter: saturate(1.03) contrast(1.04);
  transform: scale(1.025);
}

.service-content,
.service-card-content,
.value-content {
  padding: 27px;
}

.service-card h3,
.value-card h3,
.related-card h3,
.service-link-card h3 {
  margin-bottom: 10px;
  color: var(--ao-forest-deep);
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.service-card p,
.value-card p,
.related-card p,
.service-link-card p {
  color: var(--ao-muted);
}

.service-card .btn {
  min-height: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ao-forest);
}

.service-card .btn::after {
  margin-left: 8px;
  content: "→";
  transition: transform 180ms ease;
}

.service-card .btn:hover {
  color: var(--ao-green);
  transform: none;
}

.service-card .btn:hover::after {
  transform: translateX(4px);
}

.gallery,
.feature-section,
.trust-section,
.mentions,
.types-section,
.warning-section,
.emergency-section,
.cleanup-section,
.clearing-section,
.stump-section,
.related-section,
.links-section,
.service-area,
.area-section {
  background: var(--ao-cream);
}

.gallery-grid,
.photo-grid {
  gap: 18px;
}

.gallery-grid img {
  min-height: 420px;
  border-radius: var(--ao-radius);
  box-shadow: var(--ao-shadow-sm);
  filter: saturate(0.9) contrast(1.03);
  object-fit: cover;
}

.property-section {
  background: var(--ao-white);
}

.property-grid,
.trust-grid,
.values-grid,
.warning-grid,
.emergency-grid,
.cleanup-grid,
.clearing-grid,
.stump-grid,
.mentions-grid,
.types-grid,
.related-grid,
.link-grid,
.next-grid {
  gap: 18px;
}

.property-card,
.trust-card,
.warning-card,
.emergency-card,
.cleanup-card,
.clearing-card,
.stump-card,
.mention-card,
.type-card,
.process-card,
.next-card,
.link-card,
.info-item {
  border: 1px solid var(--ao-line);
  border-radius: var(--ao-radius);
  padding: 28px;
  background: var(--ao-white);
  box-shadow: var(--ao-shadow-sm);
}

.property-card,
.trust-card,
.warning-card,
.emergency-card,
.cleanup-card,
.clearing-card,
.stump-card,
.mention-card,
.type-card {
  position: relative;
  overflow: hidden;
}

.property-card::before,
.trust-card::before,
.warning-card::before,
.emergency-card::before,
.cleanup-card::before,
.clearing-card::before,
.stump-card::before,
.mention-card::before,
.type-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ao-lime), transparent);
  content: "";
}

.property-card h3,
.trust-card h3,
.warning-card h3,
.emergency-card h3,
.cleanup-card h3,
.clearing-card h3,
.stump-card h3,
.mention-card h3,
.type-card h3,
.process-card h3,
.next-card h3,
.link-card h3 {
  margin-bottom: 9px;
  color: var(--ao-forest-deep);
  font-size: 21px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.property-card p,
.trust-card p,
.warning-card p,
.emergency-card p,
.cleanup-card p,
.clearing-card p,
.stump-card p,
.mention-card p,
.type-card p,
.process-card p,
.next-card p,
.link-card p {
  color: var(--ao-muted);
}

.reviews-preview {
  background: var(--ao-cream);
  text-align: center;
}

.reviews-preview .section-title {
  margin-inline: auto;
}

.review-score,
.rating-box {
  border: 1px solid var(--ao-line);
  border-radius: 999px;
  padding: 15px 22px;
  background: var(--ao-white);
  box-shadow: var(--ao-shadow-sm);
}

.split-grid,
.story-grid,
.feature-grid,
.owner-grid,
.protection-grid,
.safety-grid,
.site-grid,
.cleanup-grid {
  gap: clamp(38px, 6vw, 80px);
}

.split-img,
.story-img,
.feature-img,
.owner-img,
.protection-img,
.safety-img,
.site-img,
.cleanup-img,
.equipment-img,
.property-img {
  border-radius: var(--ao-radius-lg);
  box-shadow: var(--ao-shadow);
  filter: saturate(0.92) contrast(1.03);
}

.content-card,
.story-card {
  border-color: var(--ao-line);
  box-shadow: var(--ao-shadow-sm);
}

.content-card h2,
.story-card h2 {
  color: var(--ao-forest-deep);
  font-size: clamp(35px, 4.2vw, 50px);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.process-grid {
  position: relative;
  gap: 14px;
}

.process-card {
  border-radius: 20px;
  padding: 24px;
  box-shadow: none;
}

.process-number,
.next-number {
  width: 46px;
  height: 46px;
  background: var(--ao-lime);
  color: var(--ao-forest-deep);
  font-size: 17px;
}

.check-list {
  gap: 11px;
}

.check-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: inherit;
  backdrop-filter: blur(8px);
}

.check-item::before {
  margin-right: 9px;
  color: var(--ao-lime-bright);
  content: "✓";
}

.owner-section,
.protection,
.safety,
.property,
.cleanup,
.site-prep,
.equipment,
.cta,
.emergency {
  position: relative;
  background: var(--ao-forest-deep);
  color: var(--ao-white);
  overflow: hidden;
}

.owner-section::after,
.protection::after,
.safety::after,
.property::after,
.cleanup::after,
.site-prep::after,
.equipment::after,
.cta::after,
.emergency::after {
  position: absolute;
  right: -140px;
  bottom: -340px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.018);
  content: "";
}

.owner-section .container,
.protection .container,
.safety .container,
.property .container,
.cleanup .container,
.site-prep .container,
.equipment .container,
.cta .container,
.emergency .container {
  position: relative;
  z-index: 1;
}

.owner-section .section-title,
.protection .section-title,
.safety .section-title,
.property .section-title,
.cleanup .section-title,
.site-prep .section-title,
.equipment .section-title,
.cta .section-title,
.emergency .section-title {
  color: var(--ao-white);
}

.owner-section p,
.protection p,
.safety p,
.property p,
.cleanup p,
.site-prep p,
.equipment p,
.cta p,
.emergency p {
  color: rgba(255, 255, 255, 0.78);
}

.review-grid {
  gap: 18px;
}

.review-card {
  border: 1px solid var(--ao-line);
  border-radius: var(--ao-radius);
  padding: clamp(25px, 4vw, 38px);
  background: var(--ao-white);
  box-shadow: var(--ao-shadow-sm);
}

.review-name {
  color: var(--ao-forest-deep);
  letter-spacing: -0.02em;
}

.review-text {
  color: var(--ao-text);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.service-tag {
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--ao-mist);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.owner-response {
  border-left: 3px solid var(--ao-lime);
  border-radius: 0 14px 14px 0;
  background: var(--ao-mist);
}

.contact-grid {
  gap: clamp(30px, 5vw, 60px);
}

.info-card {
  border-color: var(--ao-line);
  background: var(--ao-cream);
  box-shadow: var(--ao-shadow-sm);
}

.info-item {
  border-radius: 16px;
  box-shadow: none;
}

.trust-box,
.emergency-box {
  border-radius: var(--ao-radius);
  padding: 28px;
  background: var(--ao-forest-deep);
}

.alert-strip {
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.015em;
}

.alert-strip a {
  color: var(--ao-lime-bright);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.emergency-banner {
  padding: 17px 24px;
  background: var(--ao-lime);
  color: var(--ao-forest-deep);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.emergency-banner a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer[style] {
  padding: 80px 0 42px !important;
  background: var(--ao-forest-deep) !important;
}

footer .container {
  text-align: left !important;
}

footer img {
  width: min(360px, 75vw);
  margin: 0 0 32px !important;
  background: transparent;
}

footer h3 {
  font-size: 24px;
}

footer p {
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  max-width: 920px;
  gap: 8px 24px;
  flex-wrap: wrap;
  margin: 30px 0;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links a {
  color: var(--ao-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--ao-lime-bright);
}

.mobile-call {
  display: none;
}

@media (max-width: 1120px) {
  .container {
    width: min(100% - 48px, 1120px);
  }

  .nav-right {
    gap: 17px;
  }

  .nav-link {
    font-size: 11px;
  }

  .phone {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

  .container {
    width: min(100% - 40px, 760px);
  }

  .nav {
    min-height: 82px;
  }

  .logo img {
    height: 60px;
  }

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

  .nav-right {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    max-height: calc(100dvh - 82px);
    gap: 0;
    padding: 18px 20px 30px;
    border-top: 1px solid var(--ao-line);
    background: rgba(251, 252, 248, 0.985);
    box-shadow: 0 30px 60px rgba(6, 39, 22, 0.18);
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    transform: translateY(-18px);
    transition: 180ms ease;
  }

  body.nav-open .nav-right {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    border-bottom: 1px solid var(--ao-line);
    padding: 17px 4px;
    font-size: 14px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-right .phone {
    display: block;
    width: auto;
    margin: 18px 0 7px;
    border: 0;
    padding: 0 4px;
    text-align: left;
  }

  .nav-right > .btn {
    margin-top: 12px;
  }

  .hero {
    min-height: 0;
    padding: 78px 0 70px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(6, 39, 22, 0.91), rgba(6, 39, 22, 0.67));
  }

  .hero-grid,
  .split-grid,
  .story-grid,
  .feature-grid,
  .owner-grid,
  .protection-grid,
  .safety-grid,
  .site-grid,
  .equipment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(50px, 11.5vw, 76px);
  }

  .hero .form-card {
    max-width: 620px;
  }

  .services-grid,
  .service-grid,
  .values-grid,
  .warning-grid,
  .emergency-grid,
  .clearing-grid,
  .stump-grid,
  .mentions-grid,
  .types-grid,
  .related-grid,
  .photo-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid,
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 4) {
    border-bottom: 1px solid var(--ao-line);
  }

  .trust-item:last-child {
    grid-column: 1 / -1;
  }

  .gallery-grid img {
    min-height: 320px;
  }

  .split-img,
  .story-img,
  .feature-img {
    height: min(65vw, 520px);
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 68px;
    font-size: 16px;
  }

  .container {
    width: min(100% - 30px, 560px);
  }

  .logo img {
    height: 54px;
  }

  section {
    padding: 76px 0;
  }

  .hero {
    padding: 64px 0 60px;
  }

  .hero h1 {
    font-size: clamp(46px, 14.5vw, 66px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero-buttons {
    display: grid;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .form-card,
  .content-card,
  .story-card,
  .info-card {
    border-radius: 25px;
    padding: 25px;
  }

  .section-title {
    font-size: clamp(40px, 12vw, 53px);
  }

  .services-grid,
  .service-grid,
  .values-grid,
  .warning-grid,
  .emergency-grid,
  .cleanup-grid,
  .clearing-grid,
  .stump-grid,
  .mentions-grid,
  .types-grid,
  .related-grid,
  .photo-grid,
  .gallery-grid,
  .trust-grid,
  .property-grid,
  .process-grid,
  .next-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ao-line);
  }

  .trust-item:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .gallery-grid img {
    min-height: 280px;
  }

  .review-ticker-header {
    align-items: flex-start;
  }

  .review-ticker-header > div:last-child {
    display: grid;
    width: 100%;
    gap: 9px;
  }

  .review-ticker-header .btn {
    width: 100%;
  }

  .review-top {
    display: block;
  }

  .review-top .stars {
    display: block;
    margin-top: 8px;
  }

  .mobile-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    display: grid;
    min-height: 68px;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--ao-forest-deep);
    box-shadow: 0 -15px 35px rgba(6, 39, 22, 0.22);
  }

  .mobile-call a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ao-white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-call a + a {
    background: var(--ao-lime);
    color: var(--ao-forest-deep);
  }

  footer[style] {
    padding-bottom: 60px !important;
  }
}

/* ---- layout primitives (previously only in page-level <style> blocks) --- */
header {
  position: sticky;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: center;
}

.pills,
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
}

.footer-links {
  justify-content: center;
  margin-inline: auto;
}

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

/* ---- seasonal / dated callout ------------------------------------------ */
.season-section {
  position: relative;
  background: var(--ao-forest-deep);
  color: var(--ao-white);
  overflow: hidden;
}

.season-section::after {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(149, 184, 31, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(149, 184, 31, 0.04);
  content: "";
  pointer-events: none;
}

.season-section .container {
  position: relative;
  z-index: 1;
}

.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(149, 184, 31, 0.45);
  border-radius: 999px;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(149, 184, 31, 0.12);
  color: var(--ao-lime-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.season-badge::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ao-lime);
  box-shadow: 0 0 0 4px rgba(149, 184, 31, 0.22);
  content: "";
}

.season-section .section-title {
  color: var(--ao-white);
}

.season-lead {
  max-width: 780px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.6;
}

.season-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.season-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--ao-radius-sm);
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 200ms ease, transform 200ms ease;
}

.season-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.season-card h3 {
  margin-bottom: 10px;
  color: var(--ao-lime-bright);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}

.season-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.62;
}

.season-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

@media (max-width: 980px) {
  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .season-grid {
    grid-template-columns: 1fr;
  }

  .season-lead {
    font-size: 17px;
  }

  .season-actions .btn {
    width: 100%;
  }
}

/* ---- FAQ accordions ---------------------------------------------------- */
.faq-section {
  background: var(--ao-paper);
}

.faq-nav {
  margin-bottom: 44px;
}

.faq-jump {
  border-color: var(--ao-line);
  background: var(--ao-white);
  color: var(--ao-forest);
  box-shadow: var(--ao-shadow-sm);
  transition: background 180ms ease, color 180ms ease;
}

.faq-jump:hover {
  background: var(--ao-forest);
  color: var(--ao-white);
}

.faq-group + .faq-group {
  margin-top: 54px;
}

.faq-group-title {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--ao-lime);
  padding-bottom: 12px;
  color: var(--ao-forest);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.faq-item {
  border: 1px solid var(--ao-line);
  border-radius: var(--ao-radius-sm);
  margin-bottom: 12px;
  background: var(--ao-white);
  box-shadow: var(--ao-shadow-sm);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(149, 184, 31, 0.55);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: var(--ao-forest-deep);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
  transition: color 180ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--ao-forest);
}

/* chevron drawn from borders so there is no icon font to load */
.faq-item summary::after {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2.5px solid var(--ao-lime);
  border-bottom: 2.5px solid var(--ao-lime);
  margin-right: 4px;
  content: "";
  transform: translateY(-3px) rotate(45deg);
  transition: transform 220ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(2px) rotate(-135deg);
}

.faq-answer {
  border-top: 1px solid var(--ao-line);
  padding: 20px 24px 24px;
  color: var(--ao-muted);
}

.faq-answer p {
  max-width: 74ch;
  font-size: 16px;
  line-height: 1.7;
}

.faq-answer p + p {
  margin-top: 14px;
}

.faq-cta {
  margin-top: 56px;
  border: 1px solid var(--ao-line);
  border-radius: var(--ao-radius);
  padding: 44px 32px;
  background: var(--ao-cream);
  text-align: center;
}

.faq-cta h2 {
  margin-bottom: 12px;
  color: var(--ao-forest);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 900;
  line-height: 1.1;
}

.faq-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--ao-muted);
}

.faq-cta .btn {
  margin: 5px;
}

@media (max-width: 700px) {
  .faq-item summary {
    padding: 17px 18px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 17px 18px 20px;
  }

  .faq-cta {
    padding: 32px 20px;
  }

  .faq-cta .btn {
    display: flex;
    width: 100%;
    margin: 8px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* SMS/consent opt-in shown under every estimate form (A2P 10DLC compliance). */
.sms-consent{display:flex;align-items:flex-start;gap:.55rem;margin:.15rem 0 .95rem;font-size:.78rem;line-height:1.45;color:#5a665f;text-align:left;}
.sms-consent input[type="checkbox"]{margin-top:.15rem;width:16px;height:16px;flex:0 0 auto;accent-color:#1e5631;cursor:pointer;}
.sms-consent span{flex:1;}
.sms-consent a{color:#1e5631;text-decoration:underline;}
