:root {
  --ink: #16201c;
  --muted: #58655f;
  --paper: #fbfcf7;
  --surface: #ffffff;
  --soft: #eef4e7;
  --brand: #256b48;
  --brand-dark: #164331;
  --accent: #d69b2d;
  --line: #d8e2d4;
  --shadow: 0 18px 48px rgba(22, 32, 28, 0.12);
}

* {
  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(--paper);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 247, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
}

.brand-logo {
  width: 68px;
  height: 54px;
  flex: 0 0 auto;
}

.brand-text {
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand-dark);
  background: var(--soft);
}

.nav-links a.review-link {
  margin-left: 4px;
  color: var(--brand-dark);
  border: 1px solid transparent;
  background: transparent;
  white-space: nowrap;
}

.nav-links a.review-link:hover {
  color: var(--brand-dark);
  border-color: var(--accent);
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(680px, 76svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../images/hero-gutter-cleaning.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 24, 17, 0.72), rgba(8, 24, 17, 0.42) 48%, rgba(8, 24, 17, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
  color: #ffffff;
}

.hero-content h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 4.75rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: #ffffff;
  background: var(--brand);
}

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

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-outline {
  color: var(--brand-dark);
  border-color: rgba(37, 107, 72, 0.42);
  background: #ffffff;
}

.button-outline:hover {
  border-color: var(--brand);
  background: var(--soft);
}

.section {
  padding: 72px 0;
}

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

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section h2,
.contact-panel h2 {
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-lead,
.stack p,
.cta-band p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.stack {
  display: grid;
  gap: 18px;
}

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

.info-card,
.price-card,
.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-card,
.price-card {
  padding: 26px;
}

.info-card h3,
.price-card h2,
.price-card p {
  margin: 0;
}

.info-card h3 {
  margin-top: 18px;
  font-size: 1.2rem;
}

.info-card p,
.price-card p {
  margin-top: 10px;
  color: var(--muted);
}

.icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-dark);
  font-weight: 900;
  background: #e4f0dd;
}

.reasons-block {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
  margin-top: 48px;
}

.reasons-list {
  counter-reset: gutter-reasons;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reasons-list li {
  counter-increment: gutter-reasons;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.reasons-list li::before {
  content: counter(gutter-reasons);
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 107, 72, 0.2);
  border-radius: 50%;
  color: var(--brand-dark);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.7);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-left: 7px solid var(--accent);
  border-radius: 8px;
  background: var(--surface);
}

.cta-band h2,
.cta-band p {
  margin-top: 8px;
}

.page-hero {
  padding: 82px 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(15, 58, 42, 0.94), rgba(37, 107, 72, 0.86)),
    url("../images/hero-gutter-cleaning.png") center / cover;
}

.price-card.featured {
  border-color: rgba(37, 107, 72, 0.5);
}

.pricing-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-controls h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.65rem;
  line-height: 1.15;
}

.pricing-controls p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.helper-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brand-dark);
  font-weight: 900;
}

.pricing-toggle,
.guard-options {
  margin: 0;
  padding: 0;
  border: 0;
}

.guard-options legend {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-weight: 800;
}

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

.pricing-toggle {
  justify-self: end;
}

.pricing-toggle .toggle-options {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: min(100vw - 64px, 380px);
  padding: 4px;
  border: 1px solid rgba(37, 107, 72, 0.28);
  border-radius: 999px;
  background: #edf4e9;
  box-shadow: inset 0 1px 2px rgba(22, 32, 28, 0.08);
}

.pricing-toggle .toggle-options::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc((100% - 8px) / 2);
  border-radius: 999px;
  content: "";
  background: var(--brand);
  box-shadow: 0 8px 18px rgba(22, 32, 28, 0.18);
  transition: transform 180ms ease;
}

.pricing-toggle:has(input[value="yes"]:checked) .toggle-options::before {
  transform: translateX(100%);
}

.toggle-options {
  display: grid;
  gap: 10px;
}

.toggle-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 230px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brand-dark);
  font-weight: 900;
  background: #f8faf5;
  cursor: pointer;
}

.toggle-option:hover,
.toggle-option:has(input:checked) {
  border-color: rgba(37, 107, 72, 0.7);
  background: #eef4e7;
}

.toggle-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brand);
}

.pricing-toggle .toggle-option {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  color: var(--brand-dark);
  line-height: 1.15;
  text-align: center;
  background: transparent;
}

.pricing-toggle .toggle-option:hover,
.pricing-toggle .toggle-option:has(input:checked) {
  border-color: transparent;
  background: transparent;
}

.pricing-toggle .toggle-option:has(input:checked) {
  color: #ffffff;
}

.pricing-toggle .toggle-option:has(input:focus-visible) {
  outline: 3px solid rgba(214, 155, 45, 0.38);
  outline-offset: -2px;
}

.pricing-toggle .toggle-option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.price-label {
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h2 {
  margin-top: 12px;
  color: var(--brand-dark);
  font-size: 3rem;
  line-height: 1;
}

.price-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.price-card-link:hover,
.price-card-link:focus-visible {
  border-color: rgba(37, 107, 72, 0.7);
  box-shadow: 0 22px 56px rgba(22, 32, 28, 0.18);
  transform: translateY(-3px);
  outline: none;
}

.price-card .long-price {
  font-size: 2.1rem;
  line-height: 1.12;
}

.price-card .guard-note {
  color: var(--accent);
  font-weight: 900;
}

.price-card .price-meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.price-action {
  color: var(--brand);
  font-weight: 900;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.pricing-table caption {
  padding: 24px 24px 0;
  text-align: left;
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 800;
}

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

.pricing-table th {
  color: var(--brand-dark);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.pricing-table .price-column {
  color: var(--brand-dark);
  font-weight: 900;
  white-space: nowrap;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 28px;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-panel a {
  color: var(--brand-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  color: var(--brand-dark);
  font-weight: 800;
}

.home-options {
  display: grid;
  gap: 10px;
  margin: 8px 0 2px;
  padding: 0;
  border: 0;
}

.home-options legend {
  margin-bottom: 2px;
  color: var(--brand-dark);
  font-weight: 800;
}

.home-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf5;
  cursor: pointer;
}

.home-option:hover,
.home-option:has(input:checked) {
  border-color: rgba(37, 107, 72, 0.7);
  background: #eef4e7;
}

.home-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brand);
}

.home-option span {
  display: grid;
  gap: 2px;
}

.home-option small {
  color: var(--muted);
  font-size: 0.9rem;
}

.home-option b {
  color: var(--brand-dark);
  white-space: nowrap;
}

.guard-options {
  display: grid;
  gap: 10px;
  margin: 8px 0 2px;
}

.guard-help {
  margin: 2px 0 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.guard-help a {
  color: var(--brand-dark);
  font-weight: 900;
}

.optional-text {
  color: var(--muted);
  font-weight: 700;
}

.contact-form input:not([type="radio"]),
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bdcbc2;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: #ffffff;
}

.contact-form input:not([type="radio"]):focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(214, 155, 45, 0.34);
  border-color: var(--accent);
}

.contact-form button {
  justify-self: start;
  margin-top: 8px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 1.5em;
  margin: 4px 0 0;
  padding: 0;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-success {
  padding: 14px 16px;
  border: 1px solid #8ac29b;
  color: #17462d;
  background: #e7f7eb;
}

.form-status.is-error {
  padding: 14px 16px;
  border: 1px solid #f1b68c;
  color: #9a3412;
  background: #fff4ea;
}

.site-footer {
  padding: 28px 0;
  color: #ffffff;
  background: var(--brand-dark);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.guard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.guard-graphic {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.guard-copy {
  display: grid;
  gap: 16px;
}

.guard-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guard-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.guard-photo-card img {
  width: 100%;
  height: clamp(220px, 24vw, 300px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.guard-photo-card:first-child img {
  object-position: center 72%;
}

.guard-photo-card:nth-child(2) img {
  object-position: center 56%;
}

.guard-photo-card figcaption {
  padding: 12px 10px;
  color: var(--brand-dark);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.guard-copy h2,
.guard-copy h3,
.guard-copy p {
  margin: 0;
}

.guard-copy h2 {
  color: var(--brand-dark);
  font-size: 2.35rem;
  line-height: 1.08;
}

.guard-copy h3 {
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.guard-copy p,
.guard-copy li {
  color: var(--muted);
}

.guard-copy ul {
  margin: 0;
  padding-left: 20px;
}

.guard-note-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 7px solid var(--accent);
  border-radius: 8px;
  background: var(--surface);
}

@media (max-width: 940px) {
  .nav {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

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

  .nav-links a {
    width: 100%;
  }

  .nav-links a.review-link {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 66svh;
    background-position: 58% center;
  }

  .hero::after {
    background: rgba(8, 24, 17, 0.64);
  }

  .hero-content {
    padding: 54px 0;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 3.3rem;
  }

  .section h2,
  .contact-panel h2 {
    font-size: 2.25rem;
  }

  .split,
  .card-grid,
  .pricing-grid,
  .contact-layout,
  .pricing-controls,
  .reasons-block,
  .guard-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .page-hero {
    padding: 62px 0;
  }

  .cta-band,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-controls {
    align-items: stretch;
  }

  .pricing-toggle {
    justify-self: stretch;
  }

  .pricing-toggle .toggle-options {
    width: 100%;
  }

  .pricing-toggle .toggle-option {
    min-height: 46px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .brand {
    max-width: 210px;
    font-size: 0.94rem;
    line-height: 1.15;
  }

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

  .hero-content h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .section h2,
  .contact-panel h2 {
    font-size: 1.9rem;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
  }

  .info-card,
  .price-card,
  .contact-panel,
  .contact-form,
  .cta-band,
  .pricing-controls {
    padding: 22px;
  }

  .guard-photo-grid {
    grid-template-columns: 1fr;
  }

  .home-option {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .home-option b {
    grid-column: 2;
  }
}
