:root {
  --green-900: #113f22;
  --green-800: #195f33;
  --green-700: #1f7a3d;
  --green-500: #58b20f;
  --orange-500: #ff9200;
  --orange-600: #ef7900;
  --cream-100: #fbf6ea;
  --cream-200: #efe3ce;
  --ink: #1d241f;
  --muted: #667064;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 63, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--cream-100);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 63, 34, 0.12);
  box-shadow: 0 10px 28px rgba(17, 63, 34, 0.08);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: min(320px, 48vw);
  height: 76px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--green-900);
  text-decoration: none;
  border-radius: 6px;
}

.site-nav a:hover {
  background: rgba(31, 122, 61, 0.09);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 10px 20px rgba(31, 122, 61, 0.18);
}

.site-nav .nav-cta:hover {
  background: var(--green-800);
}

.hero {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  padding: clamp(90px, 12vw, 150px) clamp(20px, 6vw, 70px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 63, 34, 0.88), rgba(17, 63, 34, 0.62) 48%, rgba(17, 63, 34, 0.2)),
    url("https://images.unsplash.com/photo-1598514982841-6b4c6a7f07d7?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.quote-hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero p:not(.eyebrow),
.quote-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: 0 14px 28px rgba(239, 121, 0, 0.24);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.section,
.section-band,
.cta-band {
  padding: clamp(64px, 8vw, 105px) clamp(20px, 5vw, 56px);
}

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

.section-alt {
  background: #f5ead7;
}

.section-inner,
.section-heading,
.services-grid,
.reviews-grid,
.quote-layout,
.footer-grid,
.footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.intro-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.intro h2,
.section-heading h2,
.cta-band h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

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

.service-card,
.review,
.review-form,
.pricing-panel,
.contact-panel,
.quote-form {
  border: 1px solid rgba(17, 63, 34, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 265px;
  padding: 28px;
}

.service-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--orange-600);
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 1.35rem;
}

.service-card p,
.review p,
.fine-print {
  color: var(--muted);
}

.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.why-grid h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.why-grid p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.why-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 48px;
  color: var(--green-900);
  font-weight: 800;
  border: 1px solid rgba(17, 63, 34, 0.12);
  border-radius: 8px;
  background: var(--cream-100);
  box-shadow: 0 12px 26px rgba(17, 63, 34, 0.08);
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--green-700);
}

.why-list li::after {
  content: "";
  position: absolute;
  left: 22px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.gallery-row {
  display: grid;
  grid-auto-columns: minmax(285px, 430px);
  grid-auto-flow: column;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 8px 0 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--green-700) var(--cream-200);
}

.gallery-row figure {
  scroll-snap-align: start;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.gallery-row img {
  width: 100%;
  height: 305px;
  object-fit: cover;
}

.gallery-row figcaption {
  padding: 15px 18px 18px;
  color: var(--green-900);
  font-weight: 800;
}

.reviews-row {
  display: grid;
  grid-auto-columns: minmax(310px, 390px);
  grid-auto-flow: column;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 8px 0 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--green-700) var(--cream-200);
}

.reviews-row .review {
  scroll-snap-align: start;
}

.drag-scroll {
  cursor: grab;
  user-select: none;
}

.drag-scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.drag-scroll img {
  pointer-events: none;
}

.review {
  padding: 26px;
  border-top: 5px solid var(--orange-500);
}

.review p {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.review strong {
  color: var(--green-900);
}

.review-rating {
  margin-bottom: 12px;
  color: var(--orange-500);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.review-action {
  display: flex;
  justify-content: center;
  width: min(1180px, 100%);
  margin: 28px auto 0;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(17, 63, 34, 0.12);
  border-radius: 8px;
  background: var(--cream-100);
  box-shadow: 0 8px 18px rgba(17, 63, 34, 0.06);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  color: var(--green-900);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--green-700);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::before {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px 66px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.faq-item p a {
  color: var(--green-700);
  font-weight: 700;
}

.review-form {
  display: grid;
  gap: 18px;
  width: min(760px, 100%);
  margin: 30px auto 0;
  padding: clamp(22px, 4vw, 34px);
}

.review-form-heading h3 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.review-form-heading p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}

.rating-field {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
  width: fit-content;
}

.star-rating input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.star-rating label {
  color: #c8c0a8;
  font-size: 2.15rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--orange-500);
}

.star-rating label:hover {
  transform: translateY(-1px);
}

.star-rating input:focus-visible + label {
  outline: 3px solid rgba(255, 146, 0, 0.28);
  outline-offset: 4px;
  border-radius: 4px;
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 63, 34, 0.94), rgba(17, 63, 34, 0.74)),
    url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
}

.cta-band h2 {
  color: var(--white);
}

.cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
}

.quote-hero {
  padding: clamp(90px, 12vw, 145px) clamp(20px, 6vw, 70px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 63, 34, 0.9), rgba(17, 63, 34, 0.48)),
    url("https://images.unsplash.com/photo-1603115907169-3b984780a1d1?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
}

.quote-hero-content {
  width: min(800px, 100%);
}

.quote-section {
  padding-top: clamp(44px, 7vw, 80px);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

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

.hidden-field {
  display: none;
}

label,
legend {
  color: var(--green-900);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 63, 34, 0.2);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fffdf8;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(255, 146, 0, 0.22);
  border-color: var(--orange-500);
}

fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.check-option {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(17, 63, 34, 0.16);
  border-radius: 6px;
  background: var(--cream-100);
  color: var(--ink);
  font-weight: 700;
}

.check-option input {
  width: auto;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.quote-sidebar {
  display: grid;
  gap: 18px;
}

.pricing-panel,
.contact-panel {
  padding: 26px;
}

.pricing-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.pricing-panel h2 {
  margin: 18px 0 12px;
  color: var(--green-900);
  font-size: 1.05rem;
}

.pricing-panel dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 63, 34, 0.12);
}

.pricing-panel dt {
  color: var(--green-900);
  font-weight: 900;
}

.pricing-panel dd {
  margin: 0;
  color: var(--muted);
  text-align: left;
  white-space: nowrap;
}

.maintenance-prices div {
  grid-template-columns: 92px minmax(0, 1fr);
}

.maintenance-prices dd {
  max-width: none;
}

.contact-panel p,
.pricing-panel p {
  margin: 0 0 8px;
}

.fine-print {
  margin-top: 18px;
  font-size: 0.9rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.88);
  background: var(--green-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, 1fr);
  gap: clamp(24px, 5vw, 58px);
  padding: 48px clamp(20px, 5vw, 56px);
}

.footer-logo {
  width: 245px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
  padding: 6px;
  border-radius: 6px;
  background: var(--white);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--orange-500);
  font-size: 1rem;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange-500);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(20px, 5vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.coming-soon-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(17, 63, 34, 0.9), rgba(17, 63, 34, 0.58)),
    url("https://images.unsplash.com/photo-1598514982841-6b4c6a7f07d7?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(28px, 6vw, 70px);
}

.coming-soon-panel {
  width: min(760px, 100%);
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(17, 63, 34, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.coming-soon-logo {
  width: min(340px, 100%);
  height: 98px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 28px;
  padding: 8px;
  border-radius: 6px;
  background: var(--white);
}

.coming-soon h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.coming-soon p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.coming-soon-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.coming-soon-contact a {
  color: var(--white);
  text-decoration: none;
}

.coming-soon-contact a:hover {
  color: var(--orange-500);
}

@media (max-width: 950px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
  }

  .brand img {
    width: min(295px, 78vw);
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 650px;
  }

  .intro-grid,
  .why-grid,
  .cta-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid .btn {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    height: 64px;
  }

  .site-nav a {
    padding: 9px 11px;
    font-size: 0.9rem;
  }

  .hero,
  .quote-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1,
  .quote-hero h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  fieldset {
    grid-template-columns: 1fr;
  }

  .gallery-row {
    grid-auto-columns: minmax(260px, 86vw);
  }

  .reviews-row {
    grid-auto-columns: minmax(260px, 86vw);
  }

  .gallery-row img {
    height: 245px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
