:root {
  --green-950: #07180f;
  --green-900: #0d2a19;
  --green-800: #123c22;
  --green-700: #1d5d35;
  --green-500: #4d8f35;
  --leaf: #83b84a;
  --gold: #d8b35a;
  --cream: #f4efe3;
  --paper: #fffdf7;
  --ink: #172119;
  --muted: #607062;
  --line: rgba(18, 60, 34, 0.14);
  --shadow: 0 22px 70px rgba(7, 24, 15, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(131, 184, 74, 0.13), transparent 25%),
    linear-gradient(180deg, #fbf8ef, var(--cream));
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid rgba(18, 60, 34, 0.12);
  box-shadow: 0 10px 35px rgba(7, 24, 15, 0.08);
  backdrop-filter: blur(16px);
}

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

.logo.logo-image {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo.logo-image img {
  width: 168px;
  height: 98px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--green-500);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(18, 60, 34, 0.16);
  background: var(--gold);
  color: var(--green-950) !important;
  box-shadow: 0 12px 26px rgba(18, 60, 34, 0.16);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--green-900);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--green-900);
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--green-950);
}

.video-hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.12) contrast(1.08) brightness(1.06);
}

.intro-photo {
  background-image: url("images/intro-hedge-background.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 16, 10, 0.84) 0%, rgba(7, 24, 15, 0.62) 42%, rgba(7, 24, 15, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 16, 10, 0.72), rgba(4, 16, 10, 0.04) 48%),
    radial-gradient(circle at 16% 32%, rgba(216, 179, 90, 0.22), transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  padding: 84px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-700);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6.7rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  background: var(--gold);
  color: #102418;
}

.btn.secondary {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.btn.light {
  background: #fff;
}

.btn.full {
  width: 100%;
}

.hero-badge {
  position: absolute;
  right: min(6vw, 86px);
  bottom: 52px;
  z-index: 2;
  width: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.93);
  color: var(--green-900);
  box-shadow: var(--shadow);
}

.hero-badge::before {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 14px;
  border-radius: 99px;
  background: var(--gold);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  font-size: 1.25rem;
}

.hero-badge span {
  color: var(--muted);
  font-weight: 800;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.elevated-strip .trust-grid {
  border-radius: 12px;
  overflow: visible;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: transparent;
}

.trust-grid div {
  min-height: 126px;
  padding: 22px;
  border: 1px solid rgba(18, 60, 34, 0.12);
  border-radius: 10px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 14px 36px rgba(7, 24, 15, 0.12);
}

.trust-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(131, 184, 74, 0.16);
  color: var(--green-800);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.section {
  padding: 96px 0;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.premium-intro {
  position: relative;
}

.premium-intro::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 64px;
  width: 96px;
  height: 96px;
  border: 18px solid rgba(131, 184, 74, 0.18);
  border-radius: 50%;
}

.feature-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.06rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-stats span {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
  color: var(--muted);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(7, 24, 15, 0.08);
}

.mini-stats b {
  display: block;
  color: var(--green-800);
}

.photo-card {
  overflow: hidden;
  border: 10px solid var(--paper);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card.tall {
  height: 570px;
}

.angled-card {
  transform: rotate(1.2deg);
}

.work-section {
  width: 100%;
  background:
    linear-gradient(180deg, #fffdf7 0%, #f8f2e6 100%);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.masonry-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 20px;
}

.masonry-grid.extended {
  grid-template-columns: repeat(3, 1fr);
}

.work-card,
.video-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-900);
  box-shadow: 0 18px 42px rgba(7, 24, 15, 0.13);
}

.work-card.wide {
  grid-row: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.work-card:hover img {
  transform: scale(1.035);
}

.work-card figcaption,
.video-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 11px 13px;
  border-radius: 6px;
  background: rgba(7, 24, 15, 0.83);
  color: #fff;
  font-weight: 900;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--green-950);
}

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

.home-services {
  margin-top: 18px;
  margin-bottom: 24px;
  padding: 74px 28px;
  border: 1px solid rgba(18, 60, 34, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.94), rgba(236, 244, 230, 0.94)),
    radial-gradient(circle at 8% 8%, rgba(131, 184, 74, 0.2), transparent 26%);
  box-shadow: 0 18px 46px rgba(7, 24, 15, 0.08);
}

.service-card,
.career-card,
.form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 15px 36px rgba(7, 24, 15, 0.09);
}

.service-card.accent {
  background:
    linear-gradient(145deg, rgba(18, 60, 34, 0.94), rgba(54, 119, 52, 0.9)),
    url("images/tree-trimming-bucket.jpg") center/cover;
  color: #fff;
}

.home-services .service-card:not(.accent) {
  background: #fffdf7;
  border-color: rgba(18, 60, 34, 0.16);
}

.home-services .service-card.accent:nth-child(3n) {
  background:
    linear-gradient(145deg, rgba(12, 42, 26, 0.95), rgba(28, 84, 43, 0.91)),
    url("images/crane-tree-removal.jpg") center/cover;
}

.home-services .service-card.accent:nth-child(5n) {
  background:
    linear-gradient(145deg, rgba(31, 96, 47, 0.94), rgba(91, 133, 48, 0.88)),
    url("images/hedge-line-before.jpeg") center/cover;
}

.service-card p,
.career-card p {
  color: var(--muted);
}

.service-card.accent p {
  color: rgba(255, 255, 255, 0.86);
}

.service-area {
  width: 100%;
  background:
    linear-gradient(135deg, rgba(13, 42, 25, 0.46), rgba(78, 130, 52, 0.26)),
    url("images/crane-tree-removal.jpg") center/cover;
  color: #fff;
  border-top: 8px solid #e7f0d9;
  border-bottom: 8px solid #113c22;
}

.area-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(10, 42, 23, 0.42);
  backdrop-filter: blur(2px);
}

.area-wrap p {
  color: rgba(255, 255, 255, 0.9);
}

.towns,
.info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.towns span,
.info-list span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--green-900);
  font-weight: 900;
}

.cta-section {
  padding: 78px 0;
  background:
    linear-gradient(135deg, #174a2a, #0b2517);
  color: #fff;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: 116px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 24, 15, 0.9), rgba(18, 60, 34, 0.58)),
    url("images/bucket-truck-property.jpeg") center/cover;
}

.request-hero {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 24, 15, 0.58), rgba(42, 92, 41, 0.26)),
    url("images/logs-and-truck.jpeg") center/cover;
  background-position: center 48%;
}

.request-hero .container {
  max-width: 1160px;
}

.request-hero h1,
.request-hero p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.careers-hero {
  background:
    linear-gradient(120deg, rgba(7, 24, 15, 0.78), rgba(18, 60, 34, 0.36)),
    url("images/arla-bucket-truck-access.jpeg") center/cover;
  background-position: center 42%;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
}

.request-form-layout .form-info,
.request-form-layout .form-card {
  background: rgba(255, 253, 247, 0.94);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: start;
}

.form-info {
  position: sticky;
  top: 112px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 15px 36px rgba(7, 24, 15, 0.08);
}

.form-photo {
  height: 360px;
  margin-top: 24px;
  border-width: 8px;
}

.career-photo img {
  object-position: center;
}

.career-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
}

.career-points span {
  padding: 9px 12px;
  border: 1px solid rgba(18, 60, 34, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--green-900);
  font-weight: 900;
  font-size: 0.9rem;
}

.form-card label {
  display: block;
  margin-bottom: 16px;
  color: var(--green-900);
  font-weight: 900;
}

.form-card input[type="hidden"] {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid rgba(18, 60, 34, 0.2);
  border-radius: 7px;
  background: #fbfcf8;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

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

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

.career-card {
  position: relative;
  overflow: hidden;
}

.career-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
}

.footer {
  padding: 44px 0;
  background: #06150d;
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}

.footer p {
  margin: 0.35rem 0;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.84);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.footer-simple .social-links {
  display: inline-flex;
  margin: 0 0 0 12px;
  vertical-align: middle;
}

.social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link rect,
.social-link circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-link path {
  fill: currentColor;
}

.social-link:hover {
  background: var(--gold);
  color: var(--green-950);
}

.footer-simple {
  text-align: center;
}

@media (max-width: 960px) {
  body {
    background: #f7f2e8;
  }

  .menu-toggle {
    display: block;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(18, 60, 34, 0.16);
    border-radius: 8px;
    background: #fff;
    line-height: 1;
    color: var(--green-900) !important;
    box-shadow: 0 8px 18px rgba(7, 24, 15, 0.08);
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 108px;
    width: min(100% - 28px, 420px);
    margin: 0 auto;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    border: 1px solid rgba(18, 60, 34, 0.12);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 18px 32px rgba(7, 24, 15, 0.14);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(18, 60, 34, 0.04);
  }

  .nav-links a.active {
    background: rgba(131, 184, 74, 0.16);
  }

  .nav-cta {
    text-align: center;
    margin-top: 4px;
    background: rgba(216, 179, 90, 0.24);
    color: var(--green-950) !important;
    border: 1px solid rgba(216, 179, 90, 0.58);
  }

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

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 16, 10, 0.2) 0%, rgba(4, 16, 10, 0.86) 66%, rgba(4, 16, 10, 0.94) 100%),
      linear-gradient(90deg, rgba(7, 24, 15, 0.66), rgba(7, 24, 15, 0.18));
  }

  h1 {
    max-width: 720px;
    font-size: clamp(2.45rem, 11vw, 4.2rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.65rem);
  }

  .hero-badge {
    display: none;
  }

  .trust-strip {
    margin-top: 0;
  }

  .elevated-strip .trust-grid {
    border-radius: 0;
    box-shadow: none;
  }

  .trust-grid,
  .card-grid,
  .career-grid,
  .feature-split,
  .form-layout,
  .footer-grid,
  .area-wrap,
  .masonry-grid,
  .masonry-grid.extended,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    min-height: auto;
    padding: 18px;
  }

  .trust-grid strong {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    font-size: 0.86rem;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .home-services {
    width: min(100% - 28px, 1160px);
    padding: 46px 16px;
    margin-top: 0;
  }

  .service-card,
  .career-card,
  .form-card {
    padding: 22px;
  }

  .area-wrap {
    padding: 20px;
    gap: 22px;
  }

  .form-info {
    position: static;
    padding: 22px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-card.tall {
    height: 420px;
  }

  .work-card,
  .video-card {
    min-height: 250px;
  }

  .work-card img {
    min-height: 250px;
  }

  .work-card.wide {
    grid-row: auto;
  }

  .angled-card {
    transform: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .nav {
    min-height: 78px;
    gap: 12px;
  }

  .logo.logo-image img {
    width: 102px;
    height: 64px;
  }

  .nav-links {
    top: 78px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 0 0 44px;
  }

  .section {
    padding: 52px 0;
  }

  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.35;
    letter-spacing: 0.1em;
  }

  .hero-text,
  .feature-copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
  }

  .page-hero {
    padding: 72px 0;
  }

  .request-hero,
  .careers-hero {
    background-position: center;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .premium-intro::before {
    display: none;
  }

  .photo-card {
    border-width: 6px;
  }

  .work-card,
  .video-card,
  .service-card,
  .career-card,
  .form-card,
  .form-info,
  .area-wrap {
    border-radius: 8px;
  }

  .work-card,
  .work-card img {
    min-height: 220px;
  }

  .video-card video {
    aspect-ratio: 16 / 11;
  }

  .towns,
  .info-list,
  .career-points {
    gap: 8px;
  }

  .towns span,
  .info-list span,
  .career-points span {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  input,
  select,
  textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .photo-card.tall,
  .form-photo {
    height: 280px;
  }

  .cta-section {
    padding: 50px 0;
  }

  .footer {
    padding: 32px 0;
  }

  .footer-grid {
    gap: 18px;
  }
}
