:root {
  --gpty-green-900: #0f372d;
  --gpty-green-800: #164c3a;
  --gpty-green-700: #1f654b;
  --gpty-green-100: #e7f0eb;
  --gpty-lime: #bdd33b;
  --gpty-cream: #f5f2e9;
  --gpty-white: #ffffff;
  --gpty-ink: #15251f;
  --gpty-muted: #5c6d65;
  --gpty-border: rgba(21, 37, 31, 0.13);
  --gpty-shadow: 0 22px 60px rgba(15, 55, 45, 0.15);
}

html {
  scroll-behavior: smooth;
}

body.gpty-site {
  margin: 0;
  color: var(--gpty-ink);
  background: var(--gpty-white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.gpty-site *,
body.gpty-site *::before,
body.gpty-site *::after {
  box-sizing: border-box;
}

body.gpty-site a {
  color: inherit;
  text-decoration: none;
}

body.gpty-site img {
  display: block;
  max-width: 100%;
}

.gpty-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.gpty-topbar {
  position: relative;
  z-index: 40;
  color: rgba(255, 255, 255, 0.84);
  background: var(--gpty-green-900);
  font-size: 13px;
}

.gpty-topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.gpty-topbar__inner div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.gpty-topbar a:hover {
  color: var(--gpty-white);
}

.gpty-header {
  position: sticky;
  top: 0;
  z-index: 35;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(21, 37, 31, 0.08);
  box-shadow: 0 8px 32px rgba(15, 55, 45, 0.06);
  backdrop-filter: blur(14px);
}

.admin-bar .gpty-header {
  top: 32px;
}

.gpty-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.gpty-brand {
  flex: 0 0 auto;
}

.gpty-brand img {
  width: 170px;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.gpty-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #263c33;
  font-size: 15px;
  font-weight: 650;
}

.gpty-nav > a:not(.gpty-button) {
  position: relative;
  padding-block: 28px;
}

.gpty-nav > a:not(.gpty-button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--gpty-lime);
  transition: right 180ms ease;
}

.gpty-nav > a:hover::after,
.gpty-nav > a.is-current::after {
  right: 0;
}

.gpty-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 8px;
  background: var(--gpty-green-100);
}

.gpty-menu-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gpty-green-900);
}

.gpty-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--gpty-lime);
  border-radius: 4px;
  color: var(--gpty-green-900);
  background: var(--gpty-lime);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.gpty-button:hover {
  transform: translateY(-2px);
  background: #cbe448;
  box-shadow: 0 12px 30px rgba(15, 55, 45, 0.17);
}

.gpty-button--small {
  min-height: 44px;
  padding: 10px 18px;
}

.gpty-button--dark {
  border-color: var(--gpty-green-900);
  color: var(--gpty-white);
  background: var(--gpty-green-900);
}

.gpty-button--light {
  border-color: var(--gpty-white);
  color: var(--gpty-green-900) !important;
  background: var(--gpty-white);
}

.gpty-button--light:hover,
.gpty-button--light:visited {
  color: var(--gpty-green-900) !important;
}

.gpty-eyebrow {
  display: inline-block;
  color: var(--gpty-green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.gpty-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gpty-green-700);
  font-size: 14px;
  font-weight: 750;
}

.gpty-text-link span {
  transition: transform 160ms ease;
}

.gpty-text-link:hover span {
  transform: translateX(4px);
}

.gpty-text-link--light {
  color: var(--gpty-white);
}

.gpty-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-content: space-between;
  isolation: isolate;
  color: var(--gpty-white);
  background-image: var(--gpty-hero-image);
  background-position: center;
  background-size: cover;
}

.gpty-hero__shade,
.gpty-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 34, 27, 0.92) 0%, rgba(8, 34, 27, 0.68) 45%, rgba(8, 34, 27, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 34, 27, 0.46), transparent 50%);
}

.gpty-hero__content {
  padding-top: 112px;
  padding-bottom: 78px;
}

.gpty-hero h1,
.gpty-page-hero h1 {
  max-width: 820px;
  margin: 18px 0 22px;
  color: var(--gpty-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.7vw, 82px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.gpty-hero__content > p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.65;
}

.gpty-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.gpty-hero-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1px;
  margin-top: auto;
  padding-bottom: 0;
  background: rgba(255, 255, 255, 0.13);
}

.gpty-hero-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px;
  background: rgba(15, 55, 45, 0.91);
  transition: background 180ms ease, transform 180ms ease;
}

.gpty-hero-card:hover {
  z-index: 2;
  background: var(--gpty-green-700);
  transform: translateY(-5px);
}

.gpty-hero-card__number,
.gpty-hero-card > span:last-child {
  color: var(--gpty-lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gpty-hero-card h2 {
  margin: 12px 0;
  color: var(--gpty-white);
  font-size: 22px;
  line-height: 1.2;
}

.gpty-section {
  padding: 110px 0;
}

.gpty-section--soft {
  background: var(--gpty-cream);
}

.gpty-intro__grid,
.gpty-feature__grid,
.gpty-planter-callout__grid,
.gpty-coverage__grid,
.gpty-detail-grid,
.gpty-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.gpty-intro h2,
.gpty-section-heading h2,
.gpty-feature h2,
.gpty-planter-callout h2,
.gpty-coverage h2,
.gpty-prose h2,
.gpty-quote-card h2,
.gpty-contact-grid h2,
.gpty-final-cta h2 {
  margin: 14px 0 0;
  color: var(--gpty-green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.gpty-lead {
  margin: 6px 0 26px;
  color: #394c44;
  font-size: 21px;
  line-height: 1.65;
}

.gpty-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.gpty-section-heading > div {
  max-width: 760px;
}

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

.gpty-service-card {
  overflow: hidden;
  background: var(--gpty-white);
  border: 1px solid var(--gpty-border);
  box-shadow: 0 12px 32px rgba(15, 55, 45, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gpty-service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--gpty-shadow);
}

.gpty-service-card__image {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.gpty-service-card__body {
  padding: 28px;
}

.gpty-service-card__body > span {
  color: var(--gpty-green-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gpty-service-card h2,
.gpty-service-card h3 {
  margin: 10px 0 12px;
  color: var(--gpty-green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.15;
}

.gpty-service-card p {
  min-height: 78px;
  margin: 0 0 18px;
  color: var(--gpty-muted);
  font-size: 15px;
}

.gpty-service-card strong {
  color: var(--gpty-green-700);
  font-size: 13px;
}

.gpty-feature {
  background: var(--gpty-white);
}

.gpty-feature__grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  gap: 0;
  background: var(--gpty-green-100);
}

.gpty-feature__image {
  min-height: 650px;
  background-position: center;
  background-size: cover;
}

.gpty-feature__content {
  align-self: center;
  padding: clamp(50px, 7vw, 90px);
}

.gpty-feature__content p,
.gpty-planter-callout p,
.gpty-coverage p,
.gpty-prose p,
.gpty-quote-card p,
.gpty-contact-grid p {
  color: var(--gpty-muted);
  font-size: 17px;
}

.gpty-check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

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

.gpty-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gpty-green-700);
  font-weight: 900;
}

.gpty-planter-callout {
  color: var(--gpty-white);
  background: var(--gpty-green-900);
}

.gpty-planter-callout__grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.gpty-planter-callout h2,
.gpty-planter-callout p {
  color: var(--gpty-white);
}

.gpty-planter-callout p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
}

.gpty-planter-callout .gpty-eyebrow {
  color: var(--gpty-lime);
}

.gpty-planter-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gpty-planter-images img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.gpty-planter-images img:last-child {
  margin-top: 48px;
}

.gpty-coverage__grid {
  align-items: center;
}

.gpty-client-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--gpty-border);
  border-left: 1px solid var(--gpty-border);
}

.gpty-client-list span {
  padding: 24px;
  border-right: 1px solid var(--gpty-border);
  border-bottom: 1px solid var(--gpty-border);
  color: var(--gpty-green-900);
  font-weight: 750;
}

.gpty-page-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: end;
  isolation: isolate;
  color: var(--gpty-white);
  background-image: var(--gpty-hero-image);
  background-position: center;
  background-size: cover;
}

.gpty-page-hero--compact {
  min-height: 420px;
}

.gpty-page-hero > .gpty-shell {
  padding-top: 110px;
  padding-bottom: 78px;
}

.gpty-page-hero h1 {
  max-width: 900px;
  font-size: clamp(46px, 5.3vw, 72px);
}

.gpty-page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.gpty-detail-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.gpty-prose > p:first-of-type {
  margin-top: 28px;
}

.gpty-quote-card {
  position: sticky;
  top: 140px;
  padding: 44px;
  background: var(--gpty-cream);
  border-top: 5px solid var(--gpty-lime);
}

.gpty-quote-card .gpty-button {
  width: 100%;
  margin: 16px 0 24px;
}

.gpty-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gpty-border);
}

.gpty-process > div {
  padding: 42px;
  background: var(--gpty-white);
}

.gpty-process span,
.gpty-values span {
  color: var(--gpty-green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gpty-process h3,
.gpty-values h3 {
  margin: 12px 0 8px;
  color: var(--gpty-green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.gpty-process p,
.gpty-values p {
  margin: 0;
  color: var(--gpty-muted);
}

.gpty-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gpty-category-grid article {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--gpty-white);
  background-image: var(--gpty-card-image);
  background-position: center;
  background-size: cover;
}

.gpty-category-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(8, 34, 27, 0.9), rgba(8, 34, 27, 0.04) 75%);
}

.gpty-category-grid article > div {
  padding: 44px;
}

.gpty-category-grid span {
  color: var(--gpty-lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gpty-category-grid h2 {
  margin: 10px 0 8px;
  color: var(--gpty-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 500;
}

.gpty-category-grid p {
  max-width: 420px;
  margin: 0;
}

.gpty-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gpty-product-card {
  overflow: hidden;
  background: var(--gpty-white);
  border: 1px solid var(--gpty-border);
}

.gpty-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gpty-product-card > div {
  padding: 22px;
}

.gpty-product-card h3 {
  min-height: 52px;
  margin: 0 0 8px;
  color: var(--gpty-green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}

.gpty-product-card__price {
  margin: 0 0 12px;
  color: var(--gpty-muted);
}

.gpty-values {
  display: grid;
  gap: 1px;
  background: var(--gpty-border);
}

.gpty-values > div {
  padding: 32px;
  background: var(--gpty-cream);
}

.gpty-contact-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.gpty-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.gpty-contact-list a {
  display: grid;
  padding: 18px 22px;
  border: 1px solid var(--gpty-border);
}

.gpty-contact-list span {
  color: var(--gpty-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gpty-contact-list strong {
  color: var(--gpty-green-900);
  font-size: 17px;
}

.gpty-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--gpty-cream);
}

.gpty-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gpty-form label {
  display: grid;
  gap: 7px;
  color: var(--gpty-green-900);
  font-size: 13px;
  font-weight: 750;
}

.gpty-form input,
.gpty-form select,
.gpty-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 37, 31, 0.2);
  border-radius: 0;
  color: var(--gpty-ink);
  background: var(--gpty-white);
  font: inherit;
  font-size: 15px;
}

.gpty-form textarea {
  resize: vertical;
}

.gpty-form input:focus,
.gpty-form select:focus,
.gpty-form textarea:focus {
  outline: 2px solid var(--gpty-lime);
  outline-offset: 1px;
}

.gpty-form__note {
  margin: 0;
  color: var(--gpty-muted);
  font-size: 12px;
}

.gpty-guide-grid {
  display: grid;
  gap: 28px;
}

.gpty-guide-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  overflow: hidden;
  background: var(--gpty-white);
  border: 1px solid var(--gpty-border);
  box-shadow: 0 12px 32px rgba(15, 55, 45, 0.05);
}

.gpty-guide-card > a {
  min-height: 300px;
}

.gpty-guide-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.gpty-guide-card > div {
  padding: 42px;
}

.gpty-guide-card h2 {
  margin: 10px 0 14px;
  color: var(--gpty-green-900);
  font-size: clamp(28px, 3vw, 42px);
}

.gpty-guide-card p {
  margin-bottom: 22px;
}

.gpty-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 72px;
  align-items: start;
}

.gpty-article {
  max-width: 780px;
}

.gpty-article h2 {
  margin-top: 42px;
  color: var(--gpty-green-900);
  font-size: clamp(28px, 3vw, 38px);
}

.gpty-article p {
  font-size: 18px;
  line-height: 1.75;
}

.gpty-final-cta {
  padding: 70px 0;
  color: var(--gpty-white);
  background: var(--gpty-green-700);
}

.gpty-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.gpty-final-cta .gpty-eyebrow {
  color: var(--gpty-lime);
}

.gpty-final-cta h2 {
  max-width: 820px;
  color: var(--gpty-white);
  font-size: clamp(32px, 4vw, 48px);
}

.gpty-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--gpty-green-900);
}

.gpty-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 70px;
}

.gpty-footer__logo {
  display: block;
  width: 170px;
  height: auto;
  margin-bottom: 20px;
}

.gpty-footer h3 {
  margin: 0 0 16px;
  color: var(--gpty-white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gpty-footer__grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gpty-footer__grid a {
  margin-bottom: 8px;
}

.gpty-footer__grid a:hover {
  color: var(--gpty-white);
}

.gpty-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

@media (max-width: 1060px) {
  .gpty-menu-toggle {
    display: block;
  }

  .gpty-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    padding: 18px;
    background: var(--gpty-white);
    border: 1px solid var(--gpty-border);
    box-shadow: var(--gpty-shadow);
  }

  .gpty-nav.is-open {
    display: grid;
  }

  .gpty-nav > a:not(.gpty-button) {
    padding: 10px;
  }

  .gpty-nav > a:not(.gpty-button)::after {
    display: none;
  }

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

  .gpty-feature__grid {
    grid-template-columns: 1fr;
  }

  .gpty-feature__image {
    min-height: 480px;
  }
}

@media (max-width: 782px) {
  .admin-bar .gpty-header {
    top: 46px;
  }

  .gpty-topbar__inner > span,
  .gpty-topbar__inner div a:nth-child(2) {
    display: none;
  }

  .gpty-topbar__inner {
    justify-content: center;
  }

  .gpty-hero {
    min-height: auto;
  }

  .gpty-hero__content {
    padding-top: 82px;
    padding-bottom: 70px;
  }

  .gpty-hero h1,
  .gpty-page-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

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

  .gpty-hero-card {
    min-height: 132px;
  }

  .gpty-section {
    padding: 78px 0;
  }

  .gpty-intro__grid,
  .gpty-planter-callout__grid,
  .gpty-coverage__grid,
  .gpty-detail-grid,
  .gpty-article-layout,
  .gpty-contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .gpty-guide-card {
    grid-template-columns: 1fr;
  }

  .gpty-guide-card > a,
  .gpty-guide-card img {
    min-height: 240px;
    height: 240px;
  }

  .gpty-guide-card > div {
    padding: 28px;
  }

  .gpty-section-heading,
  .gpty-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .gpty-planter-images img {
    height: 300px;
  }

  .gpty-process,
  .gpty-category-grid {
    grid-template-columns: 1fr;
  }

  .gpty-quote-card {
    position: static;
  }

  .gpty-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gpty-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .gpty-shell {
    width: min(100% - 28px, 1180px);
  }

  .gpty-topbar__inner div {
    gap: 12px;
  }

  .gpty-header__inner {
    min-height: 72px;
  }

  .gpty-brand img {
    width: 144px;
  }

  .gpty-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gpty-service-grid,
  .gpty-product-grid,
  .gpty-client-list,
  .gpty-form__row {
    grid-template-columns: 1fr;
  }

  .gpty-service-card p {
    min-height: 0;
  }

  .gpty-planter-images {
    grid-template-columns: 1fr;
  }

  .gpty-planter-images img:last-child {
    margin-top: 0;
  }

  .gpty-category-grid article {
    min-height: 430px;
  }

  .gpty-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .gpty-footer__grid > div:first-child {
    grid-column: auto;
  }

  .gpty-footer__bottom {
    flex-direction: column;
  }
}
