:root {
  --green-950: #10251a;
  --green-900: #163421;
  --green-800: #20502f;
  --green-700: #2f6b3c;
  --orange-600: #e95f13;
  --orange-500: #f47721;
  --gray-950: #151816;
  --gray-800: #303733;
  --gray-700: #4f5953;
  --gray-300: #ccd2ce;
  --gray-200: #e5e9e6;
  --gray-100: #f3f5f3;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 37, 26, 0.12);
  --radius: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-950);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-160%);
  color: var(--white);
  background: var(--green-950);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  content: "";
  background: var(--orange-500);
  border-radius: 999px;
}

.eyebrow.light {
  color: #cfe3d5;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-950);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2.05rem, 4.2vw, 3.8rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  color: var(--gray-700);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--gray-100);
}

.section-dark {
  color: var(--white);
  background: var(--green-950);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 38px;
}

.section-heading p {
  margin: 0;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  color: var(--white);
  background: var(--green-800);
  border: 2px solid var(--green-800);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: var(--green-700);
  border-color: var(--green-700);
}

.btn-orange {
  color: var(--gray-950);
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.btn-orange:hover,
.btn-orange:focus-visible {
  background: #ff8d42;
  border-color: #ff8d42;
}

.btn-outline {
  color: var(--green-950);
  background: transparent;
  border-color: var(--green-950);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: var(--white);
  background: var(--green-950);
  border-color: var(--green-950);
}

.btn-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-light:hover,
.btn-light:focus-visible {
  color: var(--green-950);
  background: var(--white);
  border-color: var(--white);
}

.btn-block {
  width: 100%;
}

.topbar {
  padding: 8px 0;
  color: #dce8df;
  background: var(--green-950);
  font-size: 0.84rem;
  font-weight: 700;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-950);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--white);
  background: var(--green-800);
  border-radius: 10px;
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand em {
  display: block;
  color: var(--orange-600);
  font-size: 0.72em;
  font-style: normal;
}

.header-brand {
  flex: 0 0 auto;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 160px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a:not(.btn) {
  color: var(--gray-800);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible {
  color: var(--orange-600);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-950);
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 28, 17, 0.96) 0%, rgba(10, 28, 17, 0.86) 37%, rgba(10, 28, 17, 0.2) 70%, rgba(10, 28, 17, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 28, 17, 0.38), rgba(10, 28, 17, 0.04)),
    url("images/hero-tree-service.jpg") 63% center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 62%);
  padding: 96px 0 120px;
}

.hero h1 {
  max-width: 670px;
  color: var(--white);
}

.hero .accent {
  color: var(--orange-500);
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 29px;
  color: #e2ebe5;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 30px;
  color: #edf3ef;
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  content: "✓";
  color: var(--gray-950);
  background: var(--orange-500);
  border-radius: 50%;
  font-size: 0.72rem;
}

.hero-strip {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  color: var(--white);
  background: rgba(15, 33, 22, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-strip-item {
  padding: 19px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.hero-strip-item strong {
  display: block;
  color: var(--orange-500);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-strip-item span {
  color: #dce8df;
  font-size: 0.85rem;
}

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

.service-card {
  position: relative;
  min-height: 278px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card::after {
  position: absolute;
  right: -55px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  content: "";
  background: rgba(255, 255, 255, 0.05);
  border: 28px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.service-card.featured {
  color: var(--gray-950);
  background: var(--orange-500);
}

.service-card.featured::after {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.13);
}

.service-number {
  display: block;
  margin-bottom: 38px;
  color: #a8c2b0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.featured .service-number {
  color: rgba(21, 24, 22, 0.6);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: inherit;
  font-size: 1.8rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #dce8df;
}

.service-card.featured p {
  color: #3a3029;
}

.card-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 20px;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.card-link::after {
  content: " →";
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-badge {
  position: absolute;
  right: -18px;
  bottom: 24px;
  max-width: 190px;
  padding: 18px;
  color: var(--gray-950);
  background: var(--orange-500);
  border: 7px solid var(--white);
  border-radius: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 24px;
  margin: 28px 0 32px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-weight: 780;
}

.check-item::before {
  display: grid;
  flex: 0 0 25px;
  height: 25px;
  place-items: center;
  content: "✓";
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.75rem;
}

.storm {
  position: relative;
  overflow: hidden;
}

.storm::after {
  position: absolute;
  top: -160px;
  right: -150px;
  width: 500px;
  height: 500px;
  content: "";
  border: 80px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.storm-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.storm h2 {
  max-width: 760px;
}

.storm p {
  color: #d3e0d7;
}

.warning-card {
  padding: 31px;
  color: var(--gray-950);
  background: var(--orange-500);
  border-radius: var(--radius);
}

.warning-card h3 {
  margin-bottom: 16px;
}

.warning-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.warning-card li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(21, 24, 22, 0.2);
  font-weight: 760;
}

.warning-card li:last-child {
  border-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}

.gallery-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--green-900);
  border-radius: var(--radius);
}

.comparison-tags {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
}

.comparison-tags span {
  width: max-content;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(16, 37, 26, 0.9);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-tags span:last-child {
  justify-self: end;
  color: var(--gray-950);
  background: var(--orange-500);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(16, 37, 26, 0.91);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.gallery-label strong {
  display: block;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.gallery-label span {
  color: #d8e4dc;
  font-size: 0.85rem;
}

.review-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 55px;
  padding: 52px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
}

.review-panel h2 {
  color: var(--white);
}

.review-content {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.review-content p {
  color: #dce8df;
  font-size: 1.1rem;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}

.service-area-grid > * {
  min-width: 0;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 11px 14px;
  background: var(--gray-100);
  border-left: 4px solid var(--orange-500);
  border-radius: 5px;
  font-weight: 780;
}

.area-map {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.area-map img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.area-map figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--green-950);
  font-size: 0.84rem;
  font-weight: 800;
}

.area-map a {
  color: var(--orange-500);
  white-space: nowrap;
  text-underline-offset: 4px;
}

.faq-list {
  max-width: 850px;
  margin: 36px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-300);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 23px 0;
  color: var(--green-950);
  background: transparent;
  border: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  flex: 0 0 34px;
  content: "+";
  color: var(--orange-600);
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  color: var(--gray-700);
  transition: grid-template-rows 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 55px 23px 0;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.estimate-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.contact-cta {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.contact-cta h2 {
  color: var(--white);
}

.contact-cta p {
  color: #d3e0d7;
}

.contact-actions {
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

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

.contact-actions p {
  margin: 18px 0 10px;
}

.contact-actions > a:not(.btn) {
  color: var(--white);
  font-weight: 850;
  text-decoration-color: var(--orange-500);
  text-underline-offset: 4px;
}

.page-hero {
  padding: 92px 0 86px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(244, 119, 33, 0.19), transparent 25%),
    linear-gradient(125deg, var(--green-950), var(--green-800));
}

.page-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
}

.page-hero p {
  max-width: 700px;
  margin: 22px 0 28px;
  color: #dce8df;
  font-size: 1.15rem;
}

.breadcrumbs {
  margin-bottom: 22px;
  color: #bfd1c4;
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 70px;
}

.prose h2 {
  margin: 48px 0 18px;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 30px 0 11px;
}

.prose p,
.prose li {
  color: var(--gray-700);
}

.prose ul {
  padding-left: 20px;
}

.prose li {
  margin: 9px 0;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy a {
  color: var(--green-800);
  font-weight: 750;
  text-underline-offset: 3px;
}

.legal-date {
  display: inline-block;
  margin: 0 0 24px;
  padding: 9px 14px;
  color: var(--green-900);
  background: var(--gray-100);
  border-left: 4px solid var(--orange-500);
}

.sidebar-card {
  position: sticky;
  top: 112px;
  padding: 28px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
}

.sidebar-card h2 {
  color: var(--white);
  font-size: 2rem;
}

.sidebar-card p {
  color: #dce8df;
}

.sidebar-card .btn + .btn {
  margin-top: 10px;
}

.service-links {
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.service-links li {
  margin: 8px 0;
}

.service-links a {
  color: #e7eee9;
  font-size: 0.88rem;
  font-weight: 780;
}

.mini-cta {
  margin-top: 48px;
  padding: 34px;
  background: var(--gray-100);
  border-left: 7px solid var(--orange-500);
  border-radius: 8px;
}

.mini-cta h2 {
  margin-top: 0;
}

.site-footer {
  padding: 58px 0 26px;
  color: #d6e1d9;
  background: #0b1c12;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr;
  gap: 60px;
}

.site-footer .brand {
  color: var(--white);
}

.footer-about {
  max-width: 430px;
  margin-top: 18px;
  color: #b8c7bd;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 9px 0;
}

.footer-links a {
  color: #d6e1d9;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--orange-500);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 45px;
  padding-top: 22px;
  color: #91a297;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--orange-500);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    z-index: 99;
    inset: 119px 0 auto;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: max-height 220ms ease;
  }

  .site-nav.open {
    max-height: 500px;
    border-bottom: 1px solid var(--gray-200);
  }

  .site-nav a:not(.btn),
  .site-nav .btn {
    width: min(calc(100% - 32px), var(--max-width));
    margin-inline: auto;
  }

  .site-nav a:not(.btn) {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .site-nav .btn {
    margin-top: 16px;
    margin-bottom: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 28, 17, 0.95), rgba(10, 28, 17, 0.58)),
      url("images/hero-tree-service.jpg") 62% center / cover no-repeat;
  }

  .hero-content {
    width: min(710px, 85%);
  }

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

  .split,
  .storm-grid,
  .contact-cta,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 44px;
  }

  .sidebar-card {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .review-content {
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 66px;
  }

  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .section {
    padding: 66px 0;
  }

  .topbar {
    display: none;
  }

  .nav-wrap {
    min-height: 82px;
  }

  .brand-logo {
    width: 145px;
  }

  .site-nav {
    inset: 82px 0 auto;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(10, 28, 17, 0.98) 8%, rgba(10, 28, 17, 0.73) 63%, rgba(10, 28, 17, 0.26) 100%),
      url("images/hero-tree-service.jpg") 69% top / auto 66% no-repeat,
      var(--green-950);
  }

  .hero-content {
    width: 100%;
    padding: 250px 0 148px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .trust-row {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-strip-item {
    padding: 14px 12px;
  }

  .hero-strip-item:last-child {
    display: none;
  }

  .hero-strip-item strong {
    font-size: 1rem;
  }

  .hero-strip-item span {
    font-size: 0.73rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-grid,
  .check-grid,
  .gallery-grid,
  .service-area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 245px;
  }

  .service-number {
    margin-bottom: 26px;
  }

  .image-badge {
    right: 12px;
    bottom: 12px;
  }

  .gallery-card {
    min-height: 310px;
  }

  .review-panel {
    padding: 27px 22px;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .area-map figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .area-map {
    width: 100%;
  }

  .area-map img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .faq-question {
    font-size: 1.2rem;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 6px;
  }

  .footer-bottom .footer-legal {
    display: flex;
    gap: 14px;
  }

  .mobile-call {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--gray-950);
    background: var(--orange-500);
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.18);
  }
}

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

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