:root {
  --bg: #f7f7f2;
  --paper: #ffffff;
  --ink: #1d241d;
  --muted: #5b665a;
  --line: #d9ded4;
  --green: #1f5f3a;
  --green-dark: #153f29;
  --green-soft: #e8f0e7;
  --accent: #d2a637;
  --danger: #9d2f22;
  --shadow: 0 10px 30px rgba(28, 38, 26, 0.12);
  --radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--green);
}

a:hover {
  color: var(--green-dark);
}

.announcement {
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-weight: 700;
}

.announcement a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.brand-text {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 0;
}

.brand > span:not(.brand-text),
.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: -0.15rem;
}

.nav-toggle,
.menu-toggle {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a,
.main-nav summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav summary:hover {
  background: var(--green-soft);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "v";
  font-size: 0.7rem;
  margin-left: 0.45rem;
  color: var(--muted);
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 280px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.4rem;
  z-index: 30;
}

.nav-dropdown[open] .dropdown-menu {
  display: grid;
  gap: 0.1rem;
}

.dropdown-menu a {
  justify-content: flex-start;
  min-height: 38px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  background-image:
    linear-gradient(90deg, rgba(14, 27, 16, 0.90), rgba(14, 27, 16, 0.66)),
    url("Tree_Pruning.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 2rem;
  padding: 4rem 0;
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 4.7rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.16rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border-radius: 6px;
  border: 2px solid var(--green);
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.button:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--green-dark) !important;
  border-color: #fff;
}

.button.secondary:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}

.quote-form {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form h2 {
  font-size: 1.35rem;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.25rem;
  font-weight: 700;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #bfc7bb;
  border-radius: 6px;
  padding: 0.7rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

button:hover {
  background: var(--green-dark);
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.section {
  padding: 4rem 0;
}

.section.tight {
  padding: 2.8rem 0;
}

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

.section.green {
  background: var(--green-dark);
  color: #fff;
}

.section.green a {
  color: #fff;
}

.intro-grid,
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2.2rem;
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.service-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.service-card h3 a:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.panel.green-soft {
  background: var(--green-soft);
}

.check-list,
.plain-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
}

.check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: steps;
}

.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  counter-increment: steps;
}

.step::before {
  content: counter(steps);
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.page-hero {
  background: var(--green-dark);
  color: #fff;
  padding: 3rem 0;
}

.page-hero .lead {
  max-width: 820px;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb a {
  color: #fff;
}

.local-list {
  columns: 3;
  column-gap: 2rem;
  margin: 0;
  padding-left: 1.2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

details.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.site-footer {
  background: #111a12;
  color: #dbe5d7;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.small {
  font-size: 0.9rem;
  color: #b8c5b4;
}

.credit {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1rem;
  font-size: 0.82rem;
  color: #b8c5b4;
}

.split-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

@media (max-width: 900px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.9rem 0;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .dropdown-menu {
    left: 0;
    right: auto;
  }

  .hero-inner,
  .intro-grid,
  .content-grid,
  .split-form,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
  }

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

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

@media (max-width: 640px) {
  .nav-wrap {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    min-height: 68px;
    padding: 0.65rem 0;
  }

  .brand {
    min-width: 0;
    white-space: normal;
  }

  .brand-with-logo {
    max-width: calc(100% - 56px);
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .brand-text span {
    font-size: 0.72rem;
    line-height: 1.25;
    margin-top: 0;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-toggle:focus-visible + .menu-toggle {
    outline: 2px solid var(--green);
    outline-offset: 2px;
  }

  .nav-toggle:checked + .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding-top: 0.75rem;
  }

  .nav-toggle:checked ~ .main-nav {
    display: flex;
  }

  .main-nav a,
  .main-nav summary {
    width: 100%;
    justify-content: space-between;
    padding: 0.45rem 0.5rem;
    font-size: 0.9rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin: 0.25rem 0 0.4rem;
  }

  .hero-inner {
    padding: 2.5rem 0;
  }

  .section {
    padding: 3rem 0;
  }

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

  .local-list {
    columns: 1;
  }
}
