:root {
  --teal: #0f8f8c;
  --teal-dark: #075f60;
  --teal-deep: #06474b;
  --orange: #f47b20;
  --orange-dark: #d86613;
  --ink: #17222a;
  --ink-soft: #3a454d;
  --cream: #faf7f0;
  --white: #ffffff;
  --muted: #667085;
  --line: #e5dfd2;
  --shadow: 0 18px 38px rgba(23, 34, 42, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 12px;
  border-radius: var(--radius);
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 34, 42, 0.1);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 3px;
}

.brand-name {
  display: grid;
  line-height: 1.04;
}

.brand-name strong {
  font-size: 1.03rem;
}

.brand-name small {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(244, 123, 32, 0.24);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.btn-secondary,
.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 143, 140, 0.15), rgba(244, 123, 32, 0.1)),
    linear-gradient(180deg, var(--white), var(--cream));
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -140px -10%;
  height: 270px;
  background: var(--teal);
  transform: skewY(-4deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 50px;
  align-items: center;
  padding: 70px 0 78px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 3.85rem;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.hero-tagline {
  max-width: 680px;
  margin-top: 20px;
  color: var(--teal-dark);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 950;
}

.hero-text {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-weight: 850;
}

.trust-line {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 900;
}

.hero-brand-card,
.hero-photo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-logo-card {
  align-self: center;
}

.hero-brand-card img,
.hero-photo-card img {
  width: min(100%, 470px);
  margin: 0 auto;
  border-radius: var(--radius);
}

.hero-photo-card {
  padding: 14px;
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-brand-card p {
  margin: 14px 0 0;
  color: var(--teal-dark);
  font-size: 1.2rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.photo-caption {
  display: grid;
  gap: 4px;
  padding: 14px 6px 2px;
  text-align: center;
}

.photo-caption strong {
  color: var(--teal-dark);
  font-size: 1.1rem;
}

.photo-caption span {
  color: var(--muted);
  font-weight: 800;
}

.membership-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.membership-logo {
  width: min(100%, 260px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.brand-strip {
  padding: 18px 0;
  background: var(--ink);
  color: var(--white);
}

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

.strip-grid div {
  display: grid;
}

.strip-grid strong {
  color: var(--orange);
}

.strip-grid span {
  opacity: 0.88;
}

.section {
  padding: 80px 0;
}

.alt {
  background: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.prose {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.note,
.fine-print,
.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-box,
.pricing-card,
.cards-3 article,
.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 28px;
}

.feature-box {
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-feature {
  padding: 14px 14px 28px;
}

.image-feature img,
.section-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.image-feature img {
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
}

.section-photo {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.section-photo img {
  aspect-ratio: 16 / 10;
}

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

.proof-grid article {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 24px;
}

.proof-grid p {
  color: var(--ink-soft);
}

.membership-box {
  align-self: stretch;
}

.membership-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.report-list,
.agreement-list {
  margin-top: 8px;
}

.lawn-service {
  background: var(--teal-deep);
  color: var(--white);
}

.lawn-service .eyebrow,
.lawn-service .prose {
  color: var(--white);
}

.lawn-service .btn {
  margin-top: 12px;
}

.mascot {
  max-width: 220px;
  margin: -10px auto 16px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 8px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.center {
  text-align: center;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 32px;
  color: var(--ink-soft);
  text-align: center;
  font-size: 1.05rem;
}

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

.steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.step-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--white);
  font-weight: 950;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.pricing-card.featured {
  border: 3px solid var(--teal);
  box-shadow: var(--shadow);
}

.plan-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 143, 140, 0.12);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 950;
}

.price {
  margin: 12px 0;
  color: var(--orange);
  font-size: 1.75rem;
  font-weight: 1000;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-note {
  max-width: 820px;
  margin: 12px auto 0;
  text-align: center;
}

.price-table-wrap {
  margin-top: 42px;
  overflow-x: auto;
}

.detailed-pricing {
  max-width: 920px;
  margin: 28px auto 0;
}

.detailed-pricing summary {
  color: var(--teal-dark);
}

.price-table {
  width: 100%;
  min-width: 650px;
  margin-bottom: 24px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 34, 42, 0.07);
}

.price-table th,
.price-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  background: var(--ink);
  color: var(--white);
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.cards-3 article {
  background: var(--white);
}

.mini-price {
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 950;
}

.mini-price span {
  color: var(--muted);
  font-size: 0.95rem;
}

.guarantee {
  background: var(--teal-deep);
  color: var(--white);
}

.guarantee .eyebrow,
.guarantee .prose {
  color: var(--white);
}

.guarantee .prose {
  opacity: 0.95;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 28px auto;
}

.area-grid span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  text-align: center;
  font-weight: 850;
}

.narrow {
  max-width: 820px;
}

details {
  margin: 12px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 950;
}

details p {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.quote-section {
  background: linear-gradient(135deg, rgba(23, 34, 42, 0.96), rgba(7, 95, 96, 0.91));
  color: var(--white);
}

.quote-section .eyebrow {
  color: var(--orange);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.big-line {
  color: var(--orange);
  font-size: 1.55rem;
  font-weight: 1000;
}

.quote-form {
  display: grid;
  gap: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
}

.quote-form input,
.quote-form select {
  min-height: 48px;
  padding: 0 12px;
}

.quote-form textarea {
  padding: 12px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(15, 143, 140, 0.2);
  border-color: var(--teal);
}

.form-note.success {
  color: var(--teal-dark);
  font-weight: 800;
}

.form-note.error {
  color: #9b1c1c;
  font-weight: 900;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.mobile-cta-bar {
  display: none;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 46px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer .footer-brand {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
}

.footer .footer-brand-title {
  display: block;
  margin: 0;
  color: var(--orange);
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1.08;
}

.footer h3 {
  margin-bottom: 12px;
  color: var(--orange);
}

.footer a,
.footer span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer p {
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
}

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

  .hero-grid,
  .two-col,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 54px;
  }

  h1 {
    font-size: 3.4rem;
  }

  .strip-grid,
  .steps,
  .pricing-grid,
  .cards-3,
  .area-grid,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 82px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand-name {
    display: none;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-brand-card {
    padding: 16px;
  }

  .strip-grid,
  .steps,
  .pricing-grid,
  .cards-3,
  .area-grid,
  .membership-list,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .feature-box,
  .pricing-card,
  .cards-3 article,
  .quote-form {
    padding: 22px;
  }

  .mobile-cta-bar {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 30px rgba(23, 34, 42, 0.14);
  }

  .mobile-cta-bar .btn {
    justify-content: center;
    min-height: 48px;
    padding: 12px 14px;
  }
}
