:root {
  --ink: #102139;
  --muted: #4d5f78;
  --line: rgba(16, 33, 57, 0.12);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ice: #e7f4ff;
  --sky: #8ec5ff;
  --navy: #102139;
  --teal: #1a7f8d;
  --teal-deep: #115c68;
  --orange: #ef7f45;
  --orange-deep: #c85f2a;
  --shadow: 0 24px 70px rgba(16, 33, 57, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(142, 197, 255, 0.55), transparent 38%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.94), transparent 28%),
    linear-gradient(180deg, #eef8ff 0%, #f8fbff 42%, #ecf4fa 100%);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.65) 0, rgba(255, 255, 255, 0.65) 2px, transparent 2px),
    radial-gradient(circle at 65% 30%, rgba(255, 255, 255, 0.55) 0, rgba(255, 255, 255, 0.55) 1.5px, transparent 1.5px),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 2px, transparent 2px);
  background-size: 240px 240px, 300px 300px, 340px 340px;
  content: "";
  pointer-events: none;
}

body.theme-lawn {
  --ink: #1d3321;
  --muted: #556a4f;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ice: #eef9d8;
  --sky: #c9eb7b;
  --navy: #1d3321;
  --teal: #59a64d;
  --teal-deep: #2e7b37;
  --orange: #f3b54a;
  --orange-deep: #c9871a;
  --shadow: 0 24px 70px rgba(40, 79, 36, 0.16);
  background:
    radial-gradient(circle at top left, rgba(201, 235, 123, 0.42), transparent 36%),
    radial-gradient(circle at top right, rgba(255, 242, 179, 0.5), transparent 24%),
    linear-gradient(180deg, #f7ffe7 0%, #eef8d9 38%, #fdf8ea 100%);
}

body.theme-lawn::before {
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.65) 0, rgba(255, 255, 255, 0.65) 2px, transparent 2px),
    radial-gradient(circle at 65% 30%, rgba(255, 240, 189, 0.52) 0, rgba(255, 240, 189, 0.52) 1.5px, transparent 1.5px),
    radial-gradient(circle at 80% 10%, rgba(201, 235, 123, 0.32) 0, rgba(201, 235, 123, 0.32) 2px, transparent 2px);
}

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

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

code {
  padding: 0.15rem 0.35rem;
  background: rgba(16, 33, 57, 0.08);
  border-radius: 6px;
  font-family: "Space Grotesk", monospace;
  font-size: 0.92em;
}

button,
input {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(238, 248, 255, 0.78);
  border-bottom: 1px solid rgba(16, 33, 57, 0.08);
  backdrop-filter: blur(18px);
}

body.theme-lawn .site-header {
  background: rgba(247, 255, 231, 0.82);
  border-bottom-color: rgba(46, 123, 55, 0.12);
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--navy), #25446f);
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(16, 33, 57, 0.22);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

body.theme-lawn .brand-mark {
  background: linear-gradient(145deg, #2e7b37, #89bf4f);
  box-shadow: 0 10px 20px rgba(46, 123, 55, 0.24);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
h1,
h2,
h3,
.hero-price,
.metric-value {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

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

main {
  padding: 0 clamp(18px, 4vw, 48px) 72px;
}

.hero,
.estimator-section,
.results-section,
.capture-section,
.delivery-section,
.premium-section {
  animation: rise 0.7s ease both;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 52px) 0 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 0;
  font-size: 1.24rem;
}

.hero-text,
.helper-copy,
.metric-detail,
.map-caption,
.hero-small {
  color: var(--muted);
}

.hero-text {
  max-width: 760px;
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}

.hero-cta-note {
  max-width: 700px;
  margin: -2px 0 0;
  color: var(--teal-deep);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.hero-text-tight {
  margin-bottom: 0;
}

.section-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

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

.hero-badge-row,
.support-chip-row,
.inline-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-chip,
.support-chip,
.inline-reassurance span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-badge-row {
  margin-bottom: 12px;
}

.hero-proof-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
}

.proof-metric {
  display: grid;
  gap: 6px;
  padding: 18px 18px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 34px rgba(40, 79, 36, 0.08);
}

.proof-metric strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.08rem;
}

.proof-metric span {
  color: var(--muted);
  line-height: 1.45;
}

.steps-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.premium-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.hero-showcase {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: end;
}

.service-hero.is-flow-started {
  grid-template-columns: minmax(0, 1fr);
}

.service-hero.is-flow-started .hero-showcase {
  display: none;
}

.service-hero.is-flow-started .hero-copy {
  max-width: 980px;
}

.hero-visual-card,
.process-visual-card,
.support-visual,
.final-cta-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(33, 62, 37, 0.16);
}

.hero-visual-card img,
.process-visual-card img,
.support-visual img,
.final-cta-visual img {
  width: 100%;
  height: auto;
}

.hero-visual-card {
  max-width: 700px;
}

.floating-panel {
  position: absolute;
  right: -14px;
  bottom: 24px;
  width: min(320px, 72%);
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 26px 48px rgba(33, 62, 37, 0.16);
  backdrop-filter: blur(14px);
}

.floating-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-panel strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  line-height: 1.15;
}

.floating-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 38px rgba(16, 33, 57, 0.08);
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  border-radius: 999px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.step-copy {
  display: grid;
  gap: 4px;
}

.step-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.step-copy strong {
  font-size: 0.94rem;
  line-height: 1.15;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  box-shadow: 0 14px 28px rgba(17, 92, 104, 0.22);
}

.secondary-button {
  color: var(--navy);
  background: rgba(142, 197, 255, 0.2);
  border: 1px solid rgba(16, 33, 57, 0.12);
}

body.theme-lawn .secondary-button {
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(46, 123, 55, 0.14);
}

.ghost-button {
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(16, 33, 57, 0.16);
}

.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible,
.ghost-button:hover,
.ghost-button:focus-visible {
  transform: translateY(-1px);
}

.primary-button:disabled,
.secondary-button:disabled,
.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.hero-points,
.check-list,
.process-list {
  padding-left: 1.15rem;
}

.hero-points li,
.check-list li,
.process-list li {
  margin-bottom: 10px;
}

.hero-card,
.panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: 28px;
}

.card-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-price {
  margin-bottom: 4px;
  font-size: clamp(3.2rem, 8vw, 5rem);
  line-height: 0.92;
}

.hero-card-copy {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1.1rem;
}

.directory-card-title {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.hero-example {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(239, 127, 69, 0.1), rgba(255, 255, 255, 0.7));
  border-radius: var(--radius-lg);
}

.hero-example strong {
  font-size: 1.3rem;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin: 28px 0 20px;
}

.section-heading-centered {
  justify-items: center;
  text-align: center;
}

.premium-section {
  padding: 26px 0 10px;
}

.trust-marquee {
  padding-top: 10px;
}

.trust-marquee-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(33, 62, 37, 0.08);
}

.trust-marquee-label {
  color: var(--muted);
  font-weight: 700;
}

.trust-logo-row {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--navy);
  background: rgba(247, 255, 231, 0.85);
  border: 1px solid rgba(46, 123, 55, 0.12);
  border-radius: 999px;
  font-weight: 700;
}

.estimator-grid,
.delivery-grid,
.maps-grid {
  display: grid;
  gap: 22px;
}

.estimator-grid,
.delivery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-panel-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1120px;
  margin-inline: auto;
}

.estimator-section--hero-aligned {
  width: min(100%, 780px);
  margin-top: 6px;
}

.estimator-section--hero-aligned .single-panel-grid,
.estimator-section--hero-aligned .estimator-panel {
  max-width: none;
  margin-inline: 0;
}

.panel {
  padding: 24px;
}

body.theme-lawn .panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
    var(--surface);
}

.focus-target:focus-visible {
  outline: 3px solid rgba(243, 181, 74, 0.65);
  outline-offset: 6px;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--navy);
  background: rgba(142, 197, 255, 0.24);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.accent-pill {
  background: rgba(239, 127, 69, 0.15);
}

.benefits-grid,
.stats-grid,
.testimonials-grid,
.trust-grid,
.form-trust-grid {
  display: grid;
  gap: 20px;
}

.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.stat-card,
.testimonial-card,
.trust-card,
.form-trust-card,
.estimator-support-panel {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(33, 62, 37, 0.09);
}

.feature-card,
.stat-card,
.testimonial-card,
.trust-card,
.form-trust-card {
  padding: 22px;
}

.feature-card {
  display: grid;
  gap: 14px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover,
.testimonial-card:hover,
.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(33, 62, 37, 0.12);
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--teal-deep);
  background: linear-gradient(145deg, rgba(201, 235, 123, 0.24), rgba(255, 244, 201, 0.7));
  border-radius: 18px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card p,
.testimonial-card p,
.trust-card p,
.form-trust-card span,
.support-copy {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.92fr);
  gap: 24px;
  align-items: center;
}

.process-list-premium {
  display: grid;
  gap: 16px;
}

.process-item-premium {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(33, 62, 37, 0.08);
}

.process-item-premium p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.process-index {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  border-radius: 18px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
}

.process-visual-card {
  background: rgba(255, 255, 255, 0.58);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 20px;
}

.stat-card {
  display: grid;
  gap: 8px;
}

.stat-card strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.5;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--teal-deep);
  background: rgba(201, 235, 123, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.estimator-support-panel {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.support-chip-row {
  margin-bottom: 2px;
}

.support-list {
  margin: 0;
  padding-left: 1.15rem;
}

.support-list li {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 600;
}

.support-visual {
  margin: 4px 0 0;
}

.address-form,
.lead-form {
  display: grid;
  gap: 18px;
}

.estimator-panel {
  max-width: 1120px;
  margin-inline: auto;
}

.estimator-intro {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.estimator-panel .address-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.address-form--premium {
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 252, 228, 0.86));
  border: 1px solid rgba(46, 123, 55, 0.12);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.estimator-panel .primary-button {
  min-width: 250px;
  min-height: 58px;
}

.estimator-panel .field input {
  min-height: 58px;
  font-size: 1rem;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-weight: 700;
}

.field input {
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 33, 57, 0.12);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.field input:focus-visible {
  outline: 3px solid rgba(26, 127, 141, 0.18);
  border-color: rgba(26, 127, 141, 0.55);
  box-shadow: 0 0 0 4px rgba(201, 235, 123, 0.18);
}

.status-banner {
  margin: 0;
  padding: 14px 16px;
  background: rgba(16, 33, 57, 0.06);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: var(--radius-md);
  color: var(--ink);
}

.status-banner:empty {
  display: none;
}

.status-banner.is-info {
  background: rgba(142, 197, 255, 0.18);
  border-color: rgba(69, 127, 185, 0.18);
}

.status-banner.is-success {
  background: rgba(26, 127, 141, 0.12);
  border-color: rgba(26, 127, 141, 0.24);
}

.status-banner.is-warning {
  background: rgba(239, 127, 69, 0.12);
  border-color: rgba(239, 127, 69, 0.24);
}

.status-banner.is-error {
  background: rgba(170, 32, 55, 0.1);
  border-color: rgba(170, 32, 55, 0.24);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.cart-metrics {
  margin-top: 0;
  margin-bottom: 18px;
}

.preview-card {
  align-content: start;
}

.quote-preview-shell {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  border-radius: 18px;
  background: #dfeccd;
  border: 1px solid rgba(46, 123, 55, 0.14);
}

.quote-preview-map {
  width: 100%;
  height: 214px;
}

.quote-preview-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(46, 123, 55, 0.12), rgba(255, 255, 255, 0.56)),
    linear-gradient(180deg, rgba(201, 235, 123, 0.42), rgba(255, 245, 201, 0.24));
  text-align: center;
  font-weight: 600;
}

.quote-preview-empty[hidden] {
  display: none;
}

.mini-grid[hidden] {
  display: none;
}

.capture-section[hidden] {
  display: none;
}

.metric-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: var(--radius-lg);
}

.accent-card {
  background: linear-gradient(160deg, rgba(239, 127, 69, 0.14), rgba(255, 255, 255, 0.94));
}

body.theme-lawn .accent-card {
  background: linear-gradient(160deg, rgba(243, 181, 74, 0.18), rgba(255, 255, 255, 0.96));
}

.metric-label {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.metric-value {
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  line-height: 1;
}

.metric-address {
  font-size: 1.1rem;
  line-height: 1.25;
}

.maps-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.maps-grid.is-single-map {
  grid-template-columns: 1fr;
}

.maps-grid.is-single-map .map-panel {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.selection-toolbar {
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: var(--radius-lg);
}

.package-selector {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 33, 57, 0.08);
}

.package-selector-head {
  margin-bottom: 0;
}

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

.package-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.package-card:hover,
.package-card.is-selected {
  transform: translateY(-1px);
  border-color: rgba(46, 123, 55, 0.28);
  box-shadow: 0 18px 36px rgba(33, 62, 37, 0.1);
}

.package-card.is-selected {
  background: linear-gradient(180deg, rgba(236, 249, 215, 0.96), rgba(255, 255, 255, 0.84));
}

.package-checkbox {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--teal-deep);
}

.package-card-copy {
  display: grid;
  gap: 6px;
}

.package-card-copy strong {
  font-size: 1rem;
  line-height: 1.25;
}

.package-card-copy span {
  color: var(--muted);
  line-height: 1.5;
}

.package-price {
  color: var(--teal-deep);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
}

.package-continue-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.package-continue-button {
  min-width: 180px;
}

.package-continue-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.package-caption {
  margin-bottom: 0;
}

.tool-button.is-active {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 12px 22px rgba(200, 95, 42, 0.2);
}

.brush-size-control {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 33, 57, 0.1);
  border-radius: 999px;
  font-weight: 700;
}

.brush-size-control input {
  width: 108px;
  accent-color: var(--teal);
}

.drawing-help {
  margin: 0 0 14px;
  padding: 14px 16px;
  color: var(--navy);
  background: rgba(142, 197, 255, 0.16);
  border: 1px solid rgba(16, 33, 57, 0.1);
  border-radius: var(--radius-md);
  font-weight: 700;
}

body.theme-lawn .drawing-help {
  background: rgba(201, 235, 123, 0.22);
  border-color: rgba(46, 123, 55, 0.16);
}

.map-shell {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d9e7f3;
  overscroll-behavior: contain;
}

body.theme-lawn .map-shell {
  background: #dfeccd;
}

.map-shell.is-drawing {
  box-shadow: inset 0 0 0 3px rgba(26, 127, 141, 0.3);
}

.map-shell.is-brushing {
  box-shadow: inset 0 0 0 3px rgba(46, 123, 55, 0.34);
}

.map-shell.is-erasing {
  box-shadow: inset 0 0 0 3px rgba(239, 127, 69, 0.36);
}

.map-frame {
  width: 100%;
  height: 420px;
  overscroll-behavior: contain;
}

@media (pointer: coarse) {
  .map-shell.is-drawing,
  .map-shell.is-brushing,
  .map-shell.is-erasing,
  .map-shell.is-drawing .map-frame,
  .map-shell.is-brushing .map-frame,
  .map-shell.is-erasing .map-frame {
    touch-action: pinch-zoom;
  }
}

@media (min-width: 1081px) {
  .maps-grid.is-single-map .map-shell {
    min-height: 640px;
  }

  .maps-grid.is-single-map .map-frame {
    height: 640px;
  }
}

.street-view-static {
  pointer-events: none;
  user-select: none;
}

.map-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(16, 33, 57, 0.08), rgba(255, 255, 255, 0.46)),
    linear-gradient(180deg, rgba(142, 197, 255, 0.48), rgba(255, 255, 255, 0.24));
  text-align: center;
}

body.theme-lawn .map-empty {
  background:
    linear-gradient(135deg, rgba(46, 123, 55, 0.12), rgba(255, 255, 255, 0.52)),
    linear-gradient(180deg, rgba(201, 235, 123, 0.4), rgba(255, 245, 201, 0.22));
}

.map-empty[hidden] {
  display: none;
}

.drawing-hint {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 3;
  max-width: 440px;
  padding: 12px 14px;
  color: white;
  background: rgba(16, 33, 57, 0.82);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 24px rgba(16, 33, 57, 0.18);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  pointer-events: none;
}

.drawing-hint:empty {
  display: none;
}

.live-price-widget {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: grid;
  gap: 5px;
  width: min(168px, calc(100% - 36px));
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(46, 123, 55, 0.16);
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(33, 62, 37, 0.16);
  backdrop-filter: blur(12px);
}

.live-price-widget.is-updating {
  animation: livePricePulse 460ms ease;
}

.live-price-label {
  color: var(--teal-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-price-value {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  line-height: 0.95;
}

.live-price-widget.is-updating .live-price-value {
  animation: livePriceValuePulse 460ms ease;
}

.live-price-detail {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.28;
}

@keyframes livePricePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 16px 30px rgba(33, 62, 37, 0.16);
    border-color: rgba(46, 123, 55, 0.16);
    background: rgba(255, 255, 255, 0.94);
  }

  38% {
    transform: scale(1.03);
    box-shadow: 0 22px 44px rgba(46, 123, 55, 0.24);
    border-color: rgba(76, 168, 67, 0.38);
    background: rgba(244, 253, 225, 0.98);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 16px 30px rgba(33, 62, 37, 0.16);
    border-color: rgba(46, 123, 55, 0.16);
    background: rgba(255, 255, 255, 0.94);
  }
}

@keyframes livePriceValuePulse {
  0% {
    transform: scale(1);
  }

  38% {
    transform: scale(1.08);
    color: #22682e;
  }

  100% {
    transform: scale(1);
    color: inherit;
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-price-widget.is-updating,
  .live-price-widget.is-updating .live-price-value {
    animation: none;
  }
}

.map-nav-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  width: 182px;
  height: 182px;
  pointer-events: none;
}

.map-nav-button {
  position: absolute;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(16, 33, 57, 0.16);
  cursor: pointer;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: auto;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.map-nav-button:hover,
.map-nav-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(16, 33, 57, 0.2);
}

.map-nav-up {
  top: 0;
  left: 65px;
}

.map-nav-left {
  top: 65px;
  left: 0;
}

.map-nav-right {
  top: 65px;
  left: 130px;
}

.map-nav-down {
  top: 130px;
  left: 65px;
}

.map-nav-zoom-in {
  top: 0;
  left: 130px;
}

.map-nav-zoom-out {
  top: 130px;
  left: 130px;
}

.lead-panel {
  max-width: 980px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 18px;
  margin-bottom: 24px;
}

.invoice-card,
.invoice-total {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: var(--radius-lg);
}

.invoice-card {
  display: grid;
  gap: 12px;
}

.invoice-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(16, 33, 57, 0.08);
}

.invoice-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.invoice-row span {
  color: var(--muted);
  font-weight: 600;
}

.invoice-row strong {
  max-width: 62%;
  font-size: 1rem;
  line-height: 1.3;
  text-align: right;
}

.invoice-row-stack {
  align-items: flex-start;
  flex-direction: column;
}

.invoice-row-detail strong {
  color: var(--muted);
  font-weight: 600;
}

.package-summary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.package-summary-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--navy);
  background: rgba(236, 249, 215, 0.92);
  border: 1px solid rgba(46, 123, 55, 0.16);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.invoice-total {
  display: grid;
  align-content: center;
  gap: 10px;
  background: linear-gradient(160deg, rgba(243, 181, 74, 0.22), rgba(255, 255, 255, 0.98));
}

.invoice-total-label {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.invoice-total strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.92;
}

.confirmation-panel {
  display: grid;
  gap: 22px;
}

.confirmation-panel .section-heading {
  margin: 0;
}

.confirmation-notice {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(46, 123, 55, 0.14);
  border-radius: var(--radius-lg);
}

.confirmation-notice strong,
.partner-vignette h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
}

.confirmation-order-card {
  align-content: start;
}

.partner-vignette {
  align-content: start;
  gap: 14px;
}

.partner-vignette h3 {
  margin: -4px 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

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

.partner-contact-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--navy);
  background: rgba(236, 249, 215, 0.82);
  border: 1px solid rgba(46, 123, 55, 0.16);
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.partner-contact-link:hover,
.partner-contact-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(33, 62, 37, 0.1);
}

.cart-form-heading {
  margin-bottom: 18px;
}

.lead-summary {
  margin-bottom: 18px;
  font-size: 1.08rem;
}

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

.form-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

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

.form-trust-card strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.02rem;
}

.inline-reassurance {
  justify-content: center;
  margin-top: -2px;
}

.full-width {
  width: 100%;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(33, 62, 37, 0.08);
}

.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
}

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

.faq-item p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.92);
}

.final-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 34px);
  color: white;
  background:
    radial-gradient(circle at top right, rgba(115, 190, 89, 0.28), transparent 28%),
    linear-gradient(145deg, #17311d, #234628 54%, #2d5e36 100%);
  border-radius: 32px;
  box-shadow: 0 28px 56px rgba(24, 48, 29, 0.22);
}

.final-cta-shell .eyebrow,
.final-cta-shell .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta-shell h2 {
  color: white;
}

.site-footer {
  padding: 8px clamp(18px, 4vw, 48px) 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.mobile-cta-bar[hidden] {
  display: none !important;
}

.directory-hero {
  align-items: stretch;
}

.service-hero {
  align-items: center;
}

.service-hero-simple {
  grid-template-columns: minmax(0, 1fr);
}

.directory-card,
.service-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.directory-section {
  animation: rise 0.7s ease both;
}

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

.category-card {
  display: grid;
  gap: 14px;
}

.category-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.is-featured {
  background:
    linear-gradient(160deg, rgba(142, 197, 255, 0.16), rgba(255, 255, 255, 0.84)),
    var(--surface);
}

.category-card.is-summer {
  background:
    linear-gradient(160deg, rgba(201, 235, 123, 0.24), rgba(255, 244, 201, 0.84)),
    var(--surface);
}

.coming-soon-card {
  background:
    linear-gradient(160deg, rgba(16, 33, 57, 0.05), rgba(255, 255, 255, 0.82)),
    var(--surface);
}

.coming-soon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coming-soon-list span {
  padding: 10px 12px;
  color: var(--navy);
  background: rgba(16, 33, 57, 0.06);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .premium-hero,
  .estimator-grid,
  .delivery-grid,
  .maps-grid,
  .category-grid,
  .steps-strip,
  .cart-layout,
  .process-layout,
  .final-cta-shell {
    grid-template-columns: 1fr;
  }

  .mini-grid,
  .hero-proof-inline,
  .benefits-grid,
  .stats-grid,
  .testimonials-grid,
  .trust-grid,
  .form-trust-grid {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-panel {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .single-panel-grid,
  .estimator-panel {
    max-width: none;
  }

  .confirmation-layout {
    grid-template-columns: 1fr;
  }

  .estimator-section--hero-aligned {
    width: 100%;
  }

  .estimator-panel .address-form {
    grid-template-columns: 1fr;
  }

  .estimator-panel .primary-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  main {
    padding-bottom: 116px;
  }

  .hero {
    padding-top: 34px;
  }

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

  .hero-actions,
  .hero-badge-row,
  .trust-marquee-inner,
  .inline-reassurance {
    align-items: stretch;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .trust-logo {
    width: 100%;
  }

  .trust-chip,
  .support-chip,
  .inline-reassurance span {
    width: 100%;
    justify-content: center;
  }

  .step-card {
    align-items: flex-start;
  }

  .invoice-row {
    flex-direction: column;
  }

  .invoice-row strong {
    max-width: none;
    text-align: left;
  }

  .panel,
  .hero-card {
    padding: 20px;
  }

  .hero-visual-card,
  .process-visual-card,
  .support-visual,
  .final-cta-visual,
  .faq-item,
  .final-cta-shell {
    border-radius: 24px;
  }

  .trust-marquee-inner,
  .process-item-premium,
  .feature-card,
  .stat-card,
  .testimonial-card,
  .trust-card,
  .form-trust-card {
    padding-inline: 18px;
  }

  .selection-toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-price-widget {
    top: 14px;
    right: 14px;
    bottom: auto;
    width: min(172px, calc(100% - 28px));
    padding: 10px 12px;
    border-radius: 16px;
    gap: 4px;
  }

  .map-nav-controls {
    right: 12px;
    bottom: 12px;
    width: 92px;
    height: 92px;
  }

  .map-nav-up,
  .map-nav-left,
  .map-nav-right,
  .map-nav-down {
    display: none;
  }

  .map-nav-button {
    width: 40px;
    height: 40px;
    font-size: 1.22rem;
    box-shadow: 0 8px 16px rgba(16, 33, 57, 0.14);
  }

  .map-nav-zoom-in {
    top: 0;
    left: 48px;
  }

  .map-nav-zoom-out {
    top: 48px;
    left: 48px;
  }

  .live-price-label {
    font-size: 0.7rem;
  }

  .live-price-value {
    font-size: 1.5rem;
  }

  .live-price-detail {
    font-size: 0.72rem;
    line-height: 1.22;
  }

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

  .package-continue-row {
    justify-content: stretch;
  }

  .package-continue-button {
    width: 100%;
    min-width: 0;
  }

  .selection-toolbar .tool-button,
  .brush-size-control {
    width: 100%;
  }

  .brush-size-control {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .brush-size-control input {
    flex: 1;
  }

  .map-shell,
  .map-frame {
    min-height: 390px;
    height: 390px;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 25;
    display: block;
    padding: 12px;
    background: rgba(247, 255, 231, 0.9);
    border: 1px solid rgba(46, 123, 55, 0.12);
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(24, 48, 29, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-cta-bar .primary-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .live-price-widget {
    width: min(152px, calc(100% - 24px));
    padding: 9px 10px;
  }

  .live-price-value {
    font-size: 1.32rem;
  }

  .live-price-detail {
    display: none;
  }
}

body.home-root {
  background:
    radial-gradient(circle at 10% 14%, rgba(142, 197, 255, 0.34), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(255, 232, 168, 0.5), transparent 24%),
    radial-gradient(circle at 52% 58%, rgba(201, 235, 123, 0.2), transparent 38%),
    linear-gradient(180deg, #f4fbff 0%, #f6fbf3 48%, #fff8e9 100%);
}

body.home-root::before {
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0.7) 2px, transparent 2px),
    radial-gradient(circle at 72% 26%, rgba(255, 240, 189, 0.55) 0, rgba(255, 240, 189, 0.55) 1.6px, transparent 1.6px),
    radial-gradient(circle at 80% 10%, rgba(201, 235, 123, 0.28) 0, rgba(201, 235, 123, 0.28) 2px, transparent 2px);
}

.home-root .site-header {
  background: rgba(248, 252, 244, 0.84);
  border-bottom-color: rgba(36, 77, 64, 0.08);
}

.home-root .brand-mark {
  background: linear-gradient(145deg, #20559c, #3f9d43);
  box-shadow: 0 10px 22px rgba(32, 85, 156, 0.22);
}

.home-root .top-nav a:hover,
.home-root .top-nav a:focus-visible {
  color: #1d6d35;
}

.home-hero {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  padding: clamp(42px, 6vw, 90px) 0 26px;
  text-align: center;
}

.home-hero .hero-copy {
  max-width: 940px;
}

.home-hero h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.75rem, 5.7vw, 5.4rem);
}

.home-hero .hero-text {
  max-width: 820px;
  margin-inline: auto;
}

.home-hero .hero-actions {
  justify-content: center;
  margin-bottom: 12px;
}

.home-hero-helper {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.home-service-grid {
  display: grid;
  gap: 24px;
  padding-bottom: 32px;
}

.service-tile {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  padding: clamp(24px, 3.5vw, 40px);
}

.service-tile--snow {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(231, 244, 255, 0.84)),
    var(--surface);
}

.service-tile--lawn {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 214, 0.9)),
    var(--surface);
}

.service-tile--reverse .service-tile-visual {
  order: -1;
  justify-self: start;
}

.service-tile-copy {
  display: grid;
  gap: 18px;
}

.service-tile-copy .eyebrow,
.service-tile-copy .section-copy,
.service-tile-copy .service-tile-note,
.service-tile-copy h2 {
  margin-bottom: 0;
}

.service-tile-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.02;
}

.service-tile-copy .section-copy {
  max-width: 620px;
}

.home-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-feature-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 33, 57, 0.1);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.service-tile-note {
  color: var(--teal-deep);
  font-weight: 700;
}

.service-tile-actions {
  margin: 0;
}

.service-tile-visual {
  width: min(100%, 560px);
  justify-self: end;
}

.service-tile-visual img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  box-shadow: 0 26px 58px rgba(28, 47, 34, 0.16);
}

@media (max-width: 1080px) {
  .service-tile,
  .service-tile--reverse {
    grid-template-columns: 1fr;
  }

  .service-tile-visual,
  .service-tile--reverse .service-tile-visual {
    order: 0;
    justify-self: center;
  }

  .service-tile-copy .section-copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .home-hero {
    justify-items: start;
    padding-top: 34px;
    text-align: left;
  }

  .home-hero .hero-copy,
  .home-hero .hero-text {
    max-width: none;
    margin-inline: 0;
  }

  .home-hero .hero-actions {
    justify-content: flex-start;
  }

  .service-tile {
    padding: 22px;
  }

  .service-tile-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .home-feature-row span {
    min-height: 34px;
    font-size: 0.86rem;
  }
}

body.theme-lawn .premium-hero,
body.theme-lawn .estimator-section--hero-aligned,
body.theme-lawn .results-section,
body.theme-lawn .capture-section {
  width: min(100%, 1280px);
  margin-inline: auto;
}

body.theme-lawn .estimator-section--hero-aligned .single-panel-grid {
  max-width: 920px;
  margin-inline: 0;
}

body.theme-lawn .estimator-section--hero-aligned .estimator-panel {
  max-width: none;
  margin-inline: 0;
}

body.theme-lawn .results-section .section-heading,
body.theme-lawn .capture-section .section-heading {
  max-width: 920px;
}

body.theme-lawn .maps-grid.is-single-map .map-panel {
  width: min(100%, 1100px);
  margin-inline: 0;
}

body.theme-lawn .lead-panel {
  max-width: 1100px;
}

@media (max-width: 1080px) {
  body.theme-lawn .premium-hero,
  body.theme-lawn .estimator-section--hero-aligned,
  body.theme-lawn .results-section,
  body.theme-lawn .capture-section {
    width: 100%;
  }

  body.theme-lawn .estimator-section--hero-aligned .single-panel-grid,
  body.theme-lawn .results-section .section-heading,
  body.theme-lawn .capture-section .section-heading,
  body.theme-lawn .maps-grid.is-single-map .map-panel,
  body.theme-lawn .lead-panel {
    max-width: none;
    width: 100%;
  }
}
