:root {
  --forest: #133b2a;
  --forest-deep: #09271b;
  --forest-soft: #24553d;
  --lime: #d6f34a;
  --cream: #f5f1e8;
  --paper: #fbfaf6;
  --ink: #122119;
  --muted: #5f6c64;
  --line: rgba(18, 33, 25, 0.16);
  --white: #fff;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.concept-badge {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  padding: 8px 12px;
  color: var(--cream);
  background: rgba(9, 39, 27, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 92px;
  padding: 0 clamp(24px, 5vw, 76px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest-deep);
  background: var(--lime);
  border-radius: 50%;
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.brand-copy {
  display: grid;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 19px;
  letter-spacing: -0.04em;
}

.brand-copy span {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

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

.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-phone {
  display: grid;
  justify-self: end;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  text-align: right;
}

.header-phone span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  height: min(900px, 100vh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero-image,
.hero-overlay,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 27, 18, 0.91) 0%, rgba(5, 27, 18, 0.68) 41%, rgba(5, 27, 18, 0.04) 76%),
    linear-gradient(0deg, rgba(5, 27, 18, 0.3), transparent 54%);
}

.hero-grain {
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  pointer-events: none;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 72vw);
  margin-left: clamp(24px, 9vw, 140px);
  padding-top: 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--lime);
}

.hero h1,
.section-heading h2,
.about h2,
.quote h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.87;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(68px, 8.8vw, 134px);
}

.hero h1 em,
.section-heading h2 em,
.about h2 em,
.quote h2 em {
  font-weight: 400;
}

.hero h1 em {
  color: var(--lime);
}

.hero-copy {
  max-width: 485px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 0;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  color: var(--forest-deep);
  background: var(--lime);
}

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

.text-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 600;
}

.text-link span {
  display: inline-block;
  margin-left: 10px;
  color: var(--lime);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-location {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: 46px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.55;
}

.location-pin {
  width: 9px;
  height: 9px;
  margin-top: 4px;
  background: var(--lime);
  border: 2px solid rgba(9, 39, 27, 0.65);
  border-radius: 50%;
  outline: 1px solid var(--lime);
}

.hero-scroll {
  position: absolute;
  bottom: 0;
  left: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.hero-scroll i {
  display: block;
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(24px, 6vw, 96px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.trust-strip > div {
  display: grid;
  min-height: 126px;
  align-content: center;
  padding: 20px clamp(18px, 2.5vw, 40px);
  border-right: 1px solid var(--line);
}

.trust-strip > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.trust-strip span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
}

.services {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.6fr 0.75fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 68px;
}

.eyebrow-dark {
  color: var(--forest-soft);
}

.eyebrow-dark > span {
  background: var(--forest-soft);
}

.section-heading h2,
.quote h2 {
  font-size: clamp(50px, 6vw, 88px);
}

.section-heading h2 em,
.quote h2 em {
  color: var(--forest-soft);
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 34px clamp(24px, 3vw, 48px) 40px;
  border-right: 1px solid var(--line);
  transition:
    color 220ms ease,
    background 220ms ease;
}

.service-card:last-child {
  border-right: 0;
}

.service-card-featured,
.service-card:hover {
  color: var(--cream);
  background: var(--forest);
}

.service-number {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card-featured .service-number,
.service-card:hover .service-number {
  color: rgba(255, 255, 255, 0.55);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin: 62px 0 36px;
  color: var(--forest-soft);
}

.service-card-featured .service-icon,
.service-card:hover .service-icon {
  color: var(--lime);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.service-card p {
  max-width: 290px;
  margin: 14px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.service-card-featured p,
.service-card:hover p {
  color: rgba(255, 255, 255, 0.66);
}

.service-card a {
  position: absolute;
  bottom: 38px;
  left: clamp(24px, 3vw, 48px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card a span {
  margin-left: 9px;
  color: var(--forest-soft);
}

.service-card-featured a span,
.service-card:hover a span {
  color: var(--lime);
}

.about {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 760px;
  color: var(--cream);
  background: var(--forest-deep);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(38px, 7vw, 112px);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.58);
}

.about h2 {
  font-size: clamp(56px, 6.2vw, 94px);
}

.about h2 em {
  color: var(--lime);
}

.about-lead {
  max-width: 490px;
  margin: 38px 0 10px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.35;
}

.about-copy > p:not(.eyebrow, .about-lead) {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.button-light {
  width: fit-content;
  margin-top: 34px;
  color: var(--forest-deep);
  background: var(--cream);
}

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

.about-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.about-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(6, 31, 21, 0.55), transparent 52%),
    url("./assets/total-lawn-care-hero.jpg") center / cover;
  transform: scaleX(-1);
}

.about-note {
  position: absolute;
  right: 42px;
  bottom: 42px;
  left: 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  transform: scaleX(1);
}

.about-note span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-note strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
  text-align: right;
}

.quote {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(54px, 9vw, 150px);
  background: var(--cream);
}

.quote-intro {
  align-self: center;
}

.quote-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 15px;
}

.quote-phone {
  display: grid;
  width: fit-content;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}

.quote-phone span {
  margin-bottom: 5px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-form {
  display: grid;
  gap: 24px;
  padding: clamp(34px, 5vw, 68px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form label > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  transition: border-color 160ms ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--forest-soft);
}

.quote-form ::placeholder {
  color: rgba(95, 108, 100, 0.62);
}

.button-submit {
  justify-self: start;
  margin-top: 8px;
  color: var(--white);
  background: var(--forest);
  cursor: pointer;
}

.button-submit:hover {
  color: var(--forest-deep);
  background: var(--lime);
}

.form-note {
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 32px;
  padding: 56px clamp(24px, 6vw, 96px);
  color: var(--cream);
  background: var(--forest-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.brand-footer .brand-mark {
  width: 48px;
  height: 48px;
}

.footer-contact,
.footer-meta {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

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

.footer-contact a {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 22px;
}

.footer-meta {
  justify-self: end;
  text-align: right;
}

.form-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 30;
  padding: 13px 18px;
  color: var(--forest-deep);
  background: var(--lime);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.form-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav.is-open {
    position: absolute;
    top: 92px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    color: var(--cream);
    background: rgba(9, 39, 27, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .hero {
    min-height: 740px;
  }

  .hero-content {
    width: calc(100% - 48px);
  }

  .hero-location {
    display: none;
  }

  .section-heading,
  .quote {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 26px;
  }

  .service-card {
    padding-right: 26px;
    padding-left: 26px;
  }

  .service-card a {
    left: 26px;
  }

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

  .about-visual {
    min-height: 560px;
  }

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

  .footer-contact {
    display: none;
  }
}

@media (max-width: 720px) {
  .concept-badge {
    right: 10px;
    bottom: 10px;
  }

  .site-header {
    height: 78px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-nav.is-open {
    top: 78px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 700px;
    height: 100svh;
    align-items: end;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 27, 18, 0.97) 0%, rgba(5, 27, 18, 0.68) 55%, rgba(5, 27, 18, 0.1) 100%),
      linear-gradient(90deg, rgba(5, 27, 18, 0.52), transparent);
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 0 22px 68px;
  }

  .hero h1 {
    font-size: clamp(56px, 17vw, 84px);
  }

  .hero-copy {
    max-width: 390px;
    margin-top: 24px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-scroll {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .trust-strip > div {
    min-height: 108px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip > div:first-child {
    border-left: 0;
  }

  .trust-strip > div:nth-child(2n) {
    border-right: 0;
  }

  .section {
    padding: 78px 22px;
  }

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

  .section-heading h2,
  .quote h2 {
    font-size: 54px;
  }

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

  .service-card {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .service-icon {
    margin: 42px 0 28px;
  }

  .about-copy {
    padding: 78px 22px;
  }

  .about h2 {
    font-size: 62px;
  }

  .about-visual {
    min-height: 480px;
  }

  .about-note {
    right: 22px;
    bottom: 26px;
    left: 22px;
  }

  .about-note strong {
    font-size: 23px;
  }

  .quote {
    gap: 48px;
  }

  .quote-form {
    gap: 20px;
    padding: 28px 22px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 46px 22px 88px;
  }

  .footer-meta {
    justify-self: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
