:root {
  --forest-950: #10271e;
  --forest-900: #173b2c;
  --forest-800: #23513d;
  --forest-700: #35664f;
  --moss-500: #7d9c65;
  --moss-300: #acc28d;
  --moss-100: #e1e9d3;
  --stone-100: #f4f0e4;
  --stone-200: #e8e1cf;
  --stone-300: #d5c8aa;
  --clay-500: #b8643f;
  --ink: #1b241f;
  --ink-soft: #566058;
  --snow: #eef1ef;
  --white: #fffdf8;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --page: min(1440px, calc(100% - 48px));
  --shadow: 0 22px 60px rgba(16, 39, 30, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--stone-100);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(172, 194, 141, 0.16), transparent 22%),
    radial-gradient(circle at 82% 54%, rgba(213, 200, 170, 0.32), transparent 28%);
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
figure,
dl,
dd {
  margin-top: 0;
}

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

a:focus-visible {
  outline: 3px solid var(--clay-500);
  outline-offset: 4px;
  border-radius: 3px;
}

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

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

.concept-bar {
  padding: 7px 24px;
  color: var(--white);
  background: var(--forest-950);
  font-size: 0.73rem;
  letter-spacing: 0.04em;
}

.concept-bar p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
}

.concept-bar strong {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.concept-bar span {
  color: #cfd9d2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  align-items: center;
  gap: 30px;
  width: 100%;
  min-height: 84px;
  padding: 14px max(24px, calc((100vw - 1440px) / 2));
  background: rgba(244, 240, 228, 0.94);
  border-bottom: 1px solid rgba(23, 59, 44, 0.13);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(16, 39, 30, 0.15);
}

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

.site-header nav a {
  position: relative;
  color: var(--forest-950);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--clay-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--forest-950);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.header-call span {
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  width: var(--page);
  min-height: min(790px, calc(100vh - 116px));
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: clamp(70px, 8vw, 120px) clamp(32px, 5vw, 86px) clamp(70px, 8vw, 120px) 0;
}

.hero-copy::before {
  position: absolute;
  top: 11%;
  left: -95px;
  z-index: -1;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(53, 102, 79, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(125, 156, 101, 0.05),
    0 0 0 58px rgba(125, 156, 101, 0.04);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: clamp(3.45rem, 6.3vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span:nth-child(2) {
  color: var(--forest-700);
  font-style: italic;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: #3e4942;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 21px;
  border: 1px solid transparent;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--clay-500);
}

.button-primary:hover {
  background: #9f5132;
}

.button-text {
  min-height: auto;
  padding-right: 6px;
  padding-left: 6px;
  color: var(--forest-900);
  border-bottom-color: var(--forest-900);
}

.button-text span {
  margin-left: 9px;
  font-size: 1rem;
}

.button-light {
  color: var(--forest-950);
  background: var(--stone-100);
}

.button-light:hover {
  background: var(--white);
}

.button-outline {
  color: var(--forest-900);
  border-color: var(--forest-900);
}

.button-outline:hover {
  color: var(--white);
  background: var(--forest-900);
}

.hero-note {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: var(--forest-900);
  border-radius: 0 0 0 145px;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 39, 30, 0.03) 42%, rgba(16, 39, 30, 0.66) 100%);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: 50% center;
}

.hero-tag {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  color: var(--forest-950);
  background: var(--moss-300);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.hero-tag span {
  display: block;
}

.hero-tag span + span {
  margin-top: -37px;
}

.hero-visual figcaption {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 108px;
  z-index: 3;
  margin: 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: right;
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: var(--page);
  margin: 0 auto;
  color: var(--white);
  background: var(--forest-800);
  border-bottom: 4px solid var(--moss-300);
}

.proof-rail > div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 108px;
  padding: 24px 34px;
  background: var(--forest-900);
}

.proof-rail strong {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.proof-rail span {
  max-width: 180px;
  color: #cad8ce;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.section-pad {
  width: var(--page);
  margin: 0 auto;
  padding-top: clamp(90px, 10vw, 150px);
  padding-bottom: clamp(90px, 10vw, 150px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  column-gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro h2,
.specialty h2,
.about h2,
.gallery h2,
.contact h2 {
  margin-bottom: 0;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-intro > p:last-child {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-width: 0;
  min-height: 440px;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(23, 59, 44, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  z-index: 2;
  border-color: rgba(23, 59, 44, 0.3);
  box-shadow: 0 20px 42px rgba(16, 39, 30, 0.09);
  transform: translateY(-5px);
}

.service-card-featured {
  grid-column: span 8;
  background: var(--moss-100);
}

.service-card-winter {
  grid-column: 5 / span 8;
  min-height: 380px;
  background: var(--snow);
}

.service-number {
  margin-bottom: 30px;
  color: var(--forest-700);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.service-card h3 {
  max-width: 420px;
  margin: 20px 0 14px;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.1vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.service-card > p {
  max-width: 500px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 7px 10px;
  color: var(--forest-900);
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(23, 59, 44, 0.12);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.25;
}

.service-icon {
  position: relative;
  width: 58px;
  height: 58px;
  color: var(--forest-900);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.service-icon::before,
.service-icon::after,
.service-icon span::before,
.service-icon span::after {
  position: absolute;
  content: "";
}

.service-icon-lawn::before,
.service-icon-lawn::after,
.service-icon-lawn span::before {
  bottom: 15px;
  width: 2px;
  height: 24px;
  background: currentColor;
  border-radius: 2px 2px 0 0;
  transform-origin: bottom;
}

.service-icon-lawn::before { left: 22px; transform: rotate(-18deg); }
.service-icon-lawn::after { left: 29px; height: 29px; }
.service-icon-lawn span::before { left: 36px; transform: rotate(18deg); }

.service-icon-plant::before {
  top: 14px;
  left: 27px;
  width: 2px;
  height: 31px;
  background: currentColor;
}

.service-icon-plant::after,
.service-icon-plant span::before {
  width: 14px;
  height: 9px;
  background: currentColor;
  border-radius: 100% 0 100% 0;
}

.service-icon-plant::after { top: 19px; left: 15px; transform: rotate(19deg); }
.service-icon-plant span::before { top: 27px; left: 29px; transform: scaleX(-1) rotate(19deg); }

.service-icon-hedge::before {
  right: 13px;
  bottom: 14px;
  left: 13px;
  height: 22px;
  background: currentColor;
  border-radius: 20px 20px 3px 3px;
}

.service-icon-hedge::after {
  bottom: 9px;
  left: 27px;
  width: 3px;
  height: 8px;
  background: currentColor;
}

.service-icon-clean::before {
  top: 19px;
  left: 17px;
  width: 25px;
  height: 20px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: skew(-10deg);
}

.service-icon-clean::after {
  top: 14px;
  left: 17px;
  width: 26px;
  height: 2px;
  background: currentColor;
}

.service-icon-delivery::before {
  top: 19px;
  left: 13px;
  width: 31px;
  height: 18px;
  border: 2px solid currentColor;
}

.service-icon-delivery::after {
  top: 16px;
  left: 31px;
  width: 11px;
  height: 2px;
  background: currentColor;
  transform: rotate(28deg);
}

.service-icon-winter::before,
.service-icon-winter::after,
.service-icon-winter span::before {
  top: 27px;
  left: 14px;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.service-icon-winter::after { transform: rotate(60deg); }
.service-icon-winter span::before { transform: rotate(-60deg); }

.specialty {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  min-height: 790px;
  color: var(--white);
  background: var(--forest-950);
}

.specialty-image {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
}

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.specialty-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 65%, rgba(16, 39, 30, 0.76));
}

.specialty-image figcaption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: 0.7rem;
}

.specialty-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding: clamp(70px, 8vw, 130px);
}

.specialty-copy .eyebrow {
  color: var(--moss-300);
}

.specialty h2 {
  margin-bottom: 28px;
  color: var(--stone-100);
}

.specialty-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #c7d3ca;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.specialty-list {
  margin: 35px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
}

.specialty-list article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
}

.specialty-list article > span {
  color: var(--moss-300);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.specialty-list h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.specialty-list p {
  margin-bottom: 0;
  color: #aebfb4;
  font-size: 0.84rem;
}

.specialty-copy .button {
  align-self: flex-start;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.about-heading {
  position: sticky;
  top: 130px;
}

.about-body {
  padding-top: 41px;
}

.about-lead {
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1.35;
}

.about-body > p:nth-child(2) {
  max-width: 620px;
  color: var(--ink-soft);
}

.about-points {
  margin-top: 54px;
  border-top: 1px solid var(--stone-300);
}

.about-points > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--stone-300);
}

.about-points span {
  color: var(--clay-500);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.about-points p {
  margin: 0;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.gallery {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1440px) / 2));
  padding-left: max(24px, calc((100vw - 1440px) / 2));
  background: var(--stone-200);
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.gallery-head > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.8fr 1.1fr;
  gap: 13px;
}

.gallery-grid figure {
  position: relative;
  min-width: 0;
  height: 500px;
  margin: 0;
  overflow: hidden;
  background: var(--forest-900);
}

.gallery-grid figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(16, 39, 30, 0.78));
}

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

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

.gallery-plant img {
  object-position: 44% center;
}

.gallery-winter img {
  object-position: 55% center;
}

.gallery-grid figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  margin: 0;
  color: var(--white);
}

.gallery-grid figcaption span,
.gallery-grid figcaption small {
  display: block;
}

.gallery-grid figcaption span {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.gallery-grid figcaption small {
  margin-top: 2px;
  color: #ced8d1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.contact-main {
  grid-column: 1 / span 7;
  padding-right: 35px;
}

.contact-main h2 {
  max-width: 730px;
  margin-bottom: 26px;
}

.contact-main > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.estimate-steps {
  grid-column: 1 / span 7;
  margin: 28px 35px 0 0;
  padding: 0;
  border-top: 1px solid var(--stone-300);
  list-style: none;
}

.estimate-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--stone-300);
}

.estimate-steps li > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--forest-900);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.estimate-steps strong {
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.estimate-steps p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.contact-card {
  grid-column: 9 / -1;
  grid-row: 1 / span 2;
  min-width: 0;
  padding: clamp(30px, 4vw, 52px);
  color: var(--white);
  background: var(--forest-900);
  border-radius: 0 0 0 68px;
  box-shadow: var(--shadow);
}

.contact-card > img {
  margin-bottom: 30px;
  border: 1px solid rgba(255, 253, 248, 0.25);
  border-radius: 18px;
}

.contact-card h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.05;
}

.contact-card > p {
  margin-bottom: 34px;
  color: var(--moss-300);
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-card dl {
  margin-bottom: 0;
}

.contact-card dl > div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.18);
}

.contact-card dt {
  margin-bottom: 4px;
  color: #a9b9ae;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card dd {
  margin-bottom: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.contact-card dd a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr auto 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 52px max(24px, calc((100vw - 1440px) / 2));
  color: var(--white);
  background: var(--forest-950);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 14px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.12rem;
}

.footer-brand span {
  color: #aebdb4;
  font-size: 0.7rem;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a,
.footer-contact a {
  color: #d8e0db;
  font-size: 0.72rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-concept {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin: 12px 0 0;
  padding-top: 24px;
  color: #8fa196;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

.footer-concept strong {
  color: var(--moss-300);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 36px, 1440px);
  }

  .site-header {
    grid-template-columns: minmax(230px, 1fr) auto;
  }

  .site-header nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    padding-top: 9px;
    border-top: 1px solid rgba(23, 59, 44, 0.11);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    min-height: auto;
  }

  .hero-copy {
    padding-right: 36px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 5.4rem);
  }

  .proof-rail > div {
    padding: 22px;
  }

  .service-card,
  .service-card-featured,
  .service-card-winter {
    grid-column: span 6;
  }

  .specialty-copy {
    padding: 70px 54px;
  }

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

  .gallery-grid figure {
    height: 440px;
  }

  .gallery-winter {
    grid-column: 1 / -1;
  }

  .gallery-winter img {
    object-position: center 55%;
  }

  .contact-card {
    grid-column: 8 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --page: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 146px;
  }

  .concept-bar span {
    display: none;
  }

  .site-header {
    min-height: auto;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .header-call {
    font-size: 0.82rem;
  }

  .site-header nav {
    justify-content: flex-start;
    max-width: 100%;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .site-header nav a {
    flex: 0 0 auto;
  }

  .hero {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-copy {
    padding: 74px 24px 62px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 12vw, 5.7rem);
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 560px;
  }

  .hero-visual {
    border-radius: 0 0 0 94px;
  }

  .proof-rail {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .proof-rail > div {
    min-height: 86px;
  }

  .proof-rail span {
    max-width: none;
  }

  .section-intro,
  .gallery-head,
  .about {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro {
    align-items: start;
  }

  .service-card,
  .service-card-featured,
  .service-card-winter {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .service-card {
    padding: 26px;
  }

  .service-card ul {
    margin-top: 18px;
  }

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

  .specialty-image {
    min-height: 580px;
  }

  .specialty-copy {
    max-width: none;
    padding: 74px 24px 86px;
  }

  .about-heading {
    position: static;
  }

  .about-body {
    padding-top: 0;
  }

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

  .gallery-grid figure {
    height: 420px;
  }

  .gallery-lawn,
  .gallery-winter {
    grid-column: 1 / -1;
  }

  .contact {
    display: flex;
    flex-direction: column;
  }

  .contact-main,
  .estimate-steps,
  .contact-card {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
  }

  .contact-card {
    margin-top: 30px;
    padding: 40px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 64px;
  }

  .concept-bar {
    padding-right: 12px;
    padding-left: 12px;
    text-align: center;
  }

  .site-header {
    gap: 12px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    max-width: 150px;
  }

  .header-call span {
    display: none;
  }

  .header-call {
    font-size: 0.75rem;
  }

  .site-header nav {
    gap: 20px;
  }

  .hero-copy {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14.2vw, 4.7rem);
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-actions .button-text {
    width: fit-content;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 455px;
  }

  .hero-visual > img {
    object-position: 57% center;
  }

  .hero-tag {
    top: 20px;
    right: 20px;
    width: 112px;
    height: 112px;
    font-size: 0.57rem;
  }

  .hero-tag span + span {
    margin-top: -31px;
  }

  .hero-visual figcaption {
    right: 22px;
    bottom: 20px;
    left: 70px;
  }

  .section-pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-intro h2,
  .specialty h2,
  .about h2,
  .gallery h2,
  .contact h2 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .service-grid {
    gap: 10px;
  }

  .specialty-image {
    min-height: 480px;
  }

  .gallery {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .gallery-grid figure,
  .gallery-lawn,
  .gallery-winter {
    grid-column: 1;
    height: 390px;
  }

  .gallery-plant {
    height: 490px !important;
  }

  .contact-card {
    padding: 32px 26px;
    border-radius: 0 0 0 48px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-concept {
    grid-column: 1;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-concept {
    flex-direction: column;
    gap: 5px;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    min-height: 64px;
    padding: 8px;
    background: var(--forest-950);
    box-shadow: 0 -10px 30px rgba(16, 39, 30, 0.25);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-actions a:last-child {
    color: var(--forest-950);
    background: var(--moss-300);
  }
}

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

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