:root {
  --forest-950: #002b18;
  --forest-900: #003d22;
  --forest-800: #07532f;
  --forest-700: #0b6a3a;
  --lime: #9bd720;
  --lime-soft: #c7ec74;
  --paper: #fffdf7;
  --cream: #f4f5e9;
  --cream-2: #e8efd8;
  --ink: #12241a;
  --muted: #607067;
  --line: #dbe4d4;
  --shadow: 0 24px 70px rgba(0, 55, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid rgba(0, 61, 34, 0.14);
  background: rgba(255, 253, 247, 0.97);
  box-shadow: 0 8px 28px rgba(0, 43, 24, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 34px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  width: 252px;
  flex: 0 0 auto;
  display: block;
  line-height: 0;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 29px;
}

.desktop-nav a {
  position: relative;
  color: var(--forest-900);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transition: transform 0.16s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-call {
  min-height: 48px;
  display: grid;
  align-content: center;
  padding: 0 19px;
  border-radius: 999px;
  border: 2px solid var(--forest-900);
  background: var(--forest-900);
  color: white;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 61, 34, 0.18);
}

.header-call span,
.header-call strong {
  display: block;
  line-height: 1.08;
}

.header-call span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-call strong {
  margin-top: 2px;
  font-size: 15px;
}

.hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(0, 38, 21, 0.97) 0%, rgba(0, 44, 24, 0.9) 37%, rgba(0, 42, 23, 0.45) 67%, rgba(0, 35, 20, 0.28) 100%),
    linear-gradient(0deg, rgba(0, 43, 24, 0.55), transparent 38%),
    url("/images/garden-tidy.webp") center 54% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 13% 20%, rgba(155, 215, 32, 0.2), transparent 26rem),
    linear-gradient(120deg, transparent 0 58%, rgba(255, 255, 255, 0.05) 58% 59%, transparent 59% 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 34px));
  min-height: 625px;
  margin: 0 auto;
  padding: 74px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.54fr);
  gap: 65px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.location-kicker {
  width: max-content;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lime-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location-kicker span {
  width: 30px;
  height: 2px;
  background: var(--lime);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  line-height: 0.92;
}

h1 span {
  display: block;
  max-width: 760px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(66px, 8.2vw, 108px);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 em {
  display: block;
  margin-top: 7px;
  color: var(--lime);
  font-family: "Yellowtail", "Brush Script MT", cursive;
  font-size: clamp(63px, 7vw, 94px);
  font-weight: 400;
  line-height: 0.88;
}

.hero-intro {
  max-width: 660px;
  margin: 28px 0 0;
  color: #edf4ed;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--lime);
  color: var(--forest-950);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.button-whatsapp {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(7px);
}

.button-whatsapp:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-points {
  margin: 27px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  color: #f4f8f2;
  font-size: 13px;
  font-weight: 800;
}

.hero-points li::before {
  content: "✓";
  width: 21px;
  height: 21px;
  margin-right: 8px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest-950);
  font-size: 12px;
}

.hero-price-card {
  position: relative;
  align-self: end;
  margin-bottom: 8px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  background: rgba(0, 39, 21, 0.74);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(13px);
}

.hero-price-card::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 25px;
  width: 72px;
  height: 14px;
  border-radius: 999px;
  background: var(--lime);
}

.hero-price-card > p {
  margin: 0 0 16px;
  color: var(--lime-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-price-card > div {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-price-card > div span {
  color: #edf5ee;
  font-weight: 700;
}

.hero-price-card > div strong {
  color: white;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 24px;
  white-space: nowrap;
}

.hero-price-card > small {
  display: block;
  margin-top: 17px;
  color: #cbd9ce;
  line-height: 1.45;
}

.hero-bottom {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 106px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 33, 18, 0.86);
  backdrop-filter: blur(10px);
}

.hero-bottom > div {
  min-width: 0;
  padding: 24px 30px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.hero-bottom > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

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

.hero-bottom strong {
  color: white;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 23px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.hero-bottom span {
  margin-top: 2px;
  color: #cddacf;
  font-size: 12px;
}

.services-section,
.gallery-section,
.contact-section {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.services-section,
.gallery-section {
  padding: 108px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 39px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--lime-soft);
}

.section-heading h2,
.why-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.service-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 50px rgba(0, 55, 30, 0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(0, 55, 30, 0.13);
}

.service-card > img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  background: var(--cream);
}

.service-card-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.service-card-copy header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--forest-900);
  color: var(--lime);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-copy header p {
  margin: 0 0 2px;
  color: var(--forest-700);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-copy h3 {
  margin: 0;
  color: var(--forest-900);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-list,
.feature-list {
  margin: 22px 0 0;
}

.price-list > div {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid #e7ece2;
  color: #2e4036;
}

.price-list > div > span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  display: inline-block;
  background: var(--lime);
  transform: rotate(45deg);
}

.price-list strong {
  color: var(--forest-900);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 24px;
  white-space: nowrap;
}

.price-list small {
  margin-right: 3px;
  color: var(--forest-700);
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-list {
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e7ece2;
  color: #2f4137;
  font-weight: 650;
}

.feature-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  margin-right: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 900;
}

.small-print {
  margin: 15px 0 0;
  color: #68736c;
  font-size: 11px;
  line-height: 1.45;
}

.service-card-copy footer {
  margin: auto -24px -24px;
  min-height: 61px;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-top: 1px solid #cfdbc6;
  background: linear-gradient(90deg, #f3f7e8, #e1edc8);
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.service-card-copy footer > span:first-child {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-700);
  color: white;
}

.service-card-copy .price-footer {
  justify-content: space-between;
  text-transform: uppercase;
}

.service-card-copy .price-footer > span:first-child {
  width: auto;
  height: auto;
  background: transparent;
  color: var(--forest-700);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.price-footer strong {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 28px;
}

.extra-service {
  margin-top: 22px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
  gap: 40px;
  align-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 20%, rgba(155, 215, 32, 0.2), transparent 18rem),
    linear-gradient(135deg, var(--forest-950), var(--forest-800));
  color: white;
  box-shadow: var(--shadow);
}

.extra-service-copy h3 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(38px, 4.2vw, 57px);
  line-height: 1;
  text-transform: uppercase;
}

.extra-service-copy > p:last-child {
  max-width: 680px;
  margin: 15px 0 0;
  color: #cfddd2;
}

.extra-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.extra-prices > div {
  min-height: 108px;
  padding: 20px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.extra-prices span,
.extra-prices strong {
  display: block;
}

.extra-prices span {
  color: #d8e3da;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.extra-prices strong {
  margin-top: 3px;
  color: var(--lime);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 33px;
}

.why-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 0 100%, rgba(155, 215, 32, 0.17), transparent 26rem),
    linear-gradient(135deg, #00331c, #07532f);
  color: white;
}

.why-inner {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 54px;
  align-items: center;
}

.why-copy h2 {
  color: white;
}

.why-intro {
  max-width: 710px;
  margin: 17px 0 0;
  color: #cfddd2;
  font-size: 17px;
}

.why-grid {
  margin-top: 33px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.why-grid article {
  min-height: 145px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
}

.why-grid article > span {
  color: var(--lime);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 22px;
}

.why-grid strong,
.why-grid small {
  display: block;
}

.why-grid strong {
  margin-top: 10px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.why-grid small {
  margin-top: 3px;
  color: #c5d4c8;
}

.neighbour-card {
  padding: 39px 36px;
  border: 1px solid #b9cf87;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(155, 215, 32, 0.2), transparent 15rem),
    #fbfdf5;
  color: var(--forest-900);
  text-align: center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.27);
}

.neighbour-script {
  margin: 0;
  color: #5b9017;
  font-family: "Yellowtail", "Brush Script MT", cursive;
  font-size: clamp(45px, 5vw, 62px);
  line-height: 1;
}

.neighbour-card h3 {
  margin: 13px 0 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(39px, 4.5vw, 57px);
  line-height: 0.93;
  text-transform: uppercase;
}

.neighbour-card > p:not(.neighbour-script) {
  margin: 19px 0 0;
  color: #435347;
}

.neighbour-card p strong {
  color: var(--forest-700);
}

.neighbour-discount {
  margin: 21px auto 0;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--forest-900);
  color: white;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 39px;
  letter-spacing: 0.04em;
}

.neighbour-card > small {
  display: block;
  margin-top: 12px;
  color: #6a766d;
  font-size: 10px;
}

.gallery-section {
  padding-bottom: 98px;
}

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

.gallery-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 48px rgba(0, 55, 30, 0.12);
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 43, 24, 0.9), rgba(0, 43, 24, 0.05) 68%);
}

.lawn-gallery {
  background-image: url("/images/lawn-cutting.webp");
}

.hedge-gallery {
  background-image: url("/images/hedge-cutting.webp");
}

.drone-gallery {
  background-image: url("/images/drone-photography.webp");
}

.gallery-card > div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
}

.gallery-card span,
.gallery-card strong {
  display: block;
}

.gallery-card span {
  color: var(--lime-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-card strong {
  margin-top: 4px;
  color: white;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-section {
  padding-bottom: 92px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 55px;
  align-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(155, 215, 32, 0.22), transparent 24rem),
    linear-gradient(135deg, var(--forest-950), var(--forest-800));
  color: white;
  box-shadow: var(--shadow);
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -115px;
  bottom: -120px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-copy h2 {
  color: white;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  color: #cfddd2;
}

.contact-copy ul {
  margin: 25px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  color: #f0f5ef;
  font-size: 13px;
  font-weight: 750;
}

.contact-copy li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--lime);
}

.contact-actions {
  position: relative;
  z-index: 2;
  padding: 28px;
  display: grid;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  text-align: center;
}

.contact-actions > span {
  color: var(--lime-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-number {
  margin-top: 4px;
  color: white;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(52px, 5.7vw, 76px);
  line-height: 1;
  letter-spacing: 0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.contact-whatsapp {
  width: 100%;
  min-height: 52px;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--lime);
  color: var(--forest-950);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f7f7ef;
}

.footer-inner {
  width: min(1180px, calc(100% - 34px));
  min-height: 140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  color: var(--forest-900);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-right {
  display: grid;
  justify-items: end;
  gap: 4px;
  color: #69756e;
  font-size: 11px;
}

.footer-right a {
  color: var(--forest-900);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

  .header-call {
    margin-left: auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 35px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    width: min(580px, 100%);
    justify-self: center;
  }

  .why-inner,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    width: min(560px, 100%);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 22px, 1180px);
    min-height: 74px;
  }

  .brand {
    width: 184px;
  }

  .header-call {
    min-height: 42px;
    padding: 0 14px;
  }

  .header-call span {
    display: none;
  }

  .header-call strong {
    margin: 0;
    font-size: 13px;
  }

  .hero {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(0, 37, 20, 0.74), rgba(0, 43, 24, 0.96) 74%),
      url("/images/garden-tidy.webp") center 38% / cover no-repeat;
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    min-height: 0;
    padding: 64px 0 42px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    text-align: center;
  }

  .location-kicker {
    margin-right: auto;
    margin-left: auto;
  }

  h1 span {
    font-size: clamp(57px, 18vw, 82px);
  }

  h1 em {
    font-size: clamp(56px, 17vw, 78px);
  }

  .hero-intro {
    margin-right: auto;
    margin-left: auto;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    justify-content: center;
  }

  .hero-price-card {
    align-self: auto;
    margin: 0;
    text-align: left;
  }

  .hero-bottom {
    position: relative;
    grid-template-columns: 1fr;
  }

  .hero-bottom > div {
    min-height: 84px;
    padding: 17px 20px;
  }

  .hero-bottom > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .services-section,
  .gallery-section,
  .contact-section,
  .why-inner {
    width: min(100% - 22px, 1180px);
  }

  .services-section,
  .gallery-section {
    padding: 76px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 27px;
  }

  .section-heading h2,
  .why-copy h2,
  .contact-copy h2 {
    font-size: 43px;
  }

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

  .service-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .service-card > img {
    height: 170px;
  }

  .extra-service {
    padding: 29px 24px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .extra-prices {
    grid-template-columns: 1fr 1fr;
  }

  .extra-prices > div {
    min-height: 96px;
    padding: 15px;
  }

  .extra-prices strong {
    font-size: 27px;
  }

  .why-section {
    padding: 76px 0;
  }

  .why-inner {
    gap: 34px;
  }

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

  .why-grid article {
    min-height: 0;
  }

  .neighbour-card {
    padding: 31px 24px;
  }

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

  .contact-section {
    padding-bottom: 65px;
  }

  .contact-card {
    padding: 31px 24px;
    gap: 30px;
    border-radius: 22px;
  }

  .contact-copy ul {
    display: grid;
  }

  .contact-actions {
    padding: 23px 17px;
  }

  .contact-number {
    font-size: clamp(50px, 14.2vw, 68px);
  }

  .footer-inner {
    min-height: 0;
    padding: 32px 0 calc(32px + env(safe-area-inset-bottom));
    display: grid;
  }

  .footer-right {
    justify-items: start;
  }
}

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

  .button,
  .service-card,
  .desktop-nav a::after {
    transition: none;
  }
}