:root {
  --ink: #2f2a21;
  --ink-soft: #665f4f;
  --olive: #78864d;
  --olive-dark: #58643a;
  --moss: #9ca86f;
  --sage: #dce2c8;
  --clay: #987254;
  --terracotta: #b58b68;
  --sand: #ead9bf;
  --cream: #f4ead8;
  --paper: #fff9ee;
  --oat: #f0e3ce;
  --leaf-deep: #435039;
  --leaf: #647247;
  --fern: #edf1dc;
  --line: #ddd0b8;
  --mist: #e7ead8;
  --soil: #3b3025;
  --shadow: 0 18px 60px rgba(59, 48, 37, 0.12);
  --display-font: Georgia, "Times New Roman", serif;
  --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 8%, rgba(156, 168, 111, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 249, 238, 0.98), rgba(240, 227, 206, 0.78)),
    var(--paper);
  font-family: var(--body-font);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 4.35vw, 4rem);
  line-height: 1.06;
  font-family: var(--display-font);
  font-weight: 800;
}

h1 span {
  display: block;
  white-space: normal;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  font-family: var(--display-font);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(220, 213, 202, 0.85);
  backdrop-filter: blur(18px);
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.96);
  border-color: rgba(181, 139, 104, 0.2);
  box-shadow: 0 12px 34px rgba(59, 48, 37, 0.08);
}

.nav-shell {
  width: min(100% - 28px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  transition: transform 180ms ease, color 180ms ease;
}

.brand:hover,
.footer-brand:hover {
  transform: translate3d(0, -1px, 0);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--soil);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 850;
}

.brand-name {
  font-family: var(--display-font);
  font-size: 1.08rem;
  font-weight: 800;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: rgba(255, 249, 238, 0.82);
  border: 1px solid rgba(59, 48, 37, 0.08);
  border-radius: 14px;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-menu a {
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: linear-gradient(90deg, var(--olive), var(--clay));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-menu a:hover {
  color: var(--ink);
  transform: translate3d(0, -1px, 0);
}

.site-menu a:hover::after,
.site-menu a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-menu a.is-active {
  color: var(--ink);
}

.nav-cta {
  padding: 9px 13px;
  color: var(--paper) !important;
  background: var(--olive-dark);
  border-radius: var(--radius);
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(70, 83, 61, 0.18);
}

.nav-cta::after {
  display: none;
}

.nav-cta.is-active {
  background: var(--soil);
  box-shadow: 0 10px 24px rgba(59, 48, 37, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 220ms ease, opacity 180ms ease;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  background:
    radial-gradient(circle at 78% 36%, rgba(120, 134, 77, 0.18), transparent 30%),
    radial-gradient(circle at 8% 82%, rgba(181, 139, 104, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(255, 249, 238, 0.98) 0%, rgba(255, 249, 238, 0.9) 52%, rgba(237, 241, 220, 0.86) 100%),
    repeating-linear-gradient(135deg, rgba(120, 134, 77, 0.045) 0 1px, transparent 1px 26px),
    var(--paper);
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-float {
  position: absolute;
  z-index: 0;
  display: block;
  opacity: 0.62;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero-window {
  top: 14%;
  right: 9%;
  width: 118px;
  height: 72px;
  border: 1px solid rgba(88, 100, 58, 0.2);
  border-radius: 10px;
  background:
    radial-gradient(circle at 16px 16px, rgba(120, 134, 77, 0.35) 0 4px, transparent 5px),
    radial-gradient(circle at 32px 16px, rgba(120, 134, 77, 0.24) 0 4px, transparent 5px),
    linear-gradient(rgba(59, 48, 37, 0.12), rgba(59, 48, 37, 0.12)) 14px 28px / 70px 2px no-repeat,
    linear-gradient(rgba(59, 48, 37, 0.08), rgba(59, 48, 37, 0.08)) 14px 42px / 52px 2px no-repeat,
    rgba(255, 250, 240, 0.42);
  box-shadow: 0 16px 34px rgba(59, 48, 37, 0.06);
}

.hero-leaf-one,
.hero-leaf-two {
  width: 70px;
  height: 30px;
  background: rgba(120, 134, 77, 0.16);
  border: 1px solid rgba(88, 100, 58, 0.13);
  border-radius: 90% 8px 90% 8px;
}

.hero-leaf-one {
  left: 7%;
  bottom: 16%;
  transform: rotate(-18deg);
}

.hero-leaf-two {
  right: 39%;
  top: 20%;
  width: 48px;
  height: 22px;
  transform: rotate(26deg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--soil), var(--olive), var(--moss), var(--clay));
}

.hero-grid {
  width: min(100% - 32px, var(--max));
  min-height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  align-items: center;
  gap: 34px;
  padding: 54px 0 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  will-change: transform, opacity;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--olive-dark);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.hero-actions,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 70%);
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 220ms ease, transform 520ms ease;
}

.button:hover::after {
  opacity: 1;
  transform: translateX(80%);
}

.button:active {
  transform: translate3d(0, 0, 0) scale(0.98);
}

.button.primary {
  color: var(--paper);
  background: var(--soil);
  box-shadow: 0 14px 30px rgba(58, 48, 38, 0.18);
}

.button.primary:hover {
  background: #463a2d;
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 18px 38px rgba(58, 48, 38, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.button.secondary:hover {
  background: white;
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 12px 28px rgba(58, 48, 38, 0.08);
}

.hero-metrics {
  max-width: 560px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-metrics div {
  min-height: 96px;
  padding: 18px 16px;
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(220, 213, 202, 0.82);
  border-radius: var(--radius);
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.hero-metrics div:hover {
  transform: translate3d(0, -5px, 0);
  border-color: rgba(181, 139, 104, 0.26);
  box-shadow: 0 14px 30px rgba(58, 48, 38, 0.09);
}

.hero-metrics strong {
  display: block;
  color: var(--clay);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 4px;
  transform: translate3d(25px, calc(25px + var(--hero-parallax-y, 0px)), 0);
  will-change: transform, opacity;
}

.hero-art-card {
  width: min(100%, 750px);
}

.hero-art-card img {
  width: 100%;
  max-width: 750px;
  object-fit: contain;
  animation: storefrontFloat 5.8s ease-in-out infinite;
  filter: drop-shadow(0 16px 22px rgba(59, 48, 37, 0.12));
  transition: filter 240ms ease;
  will-change: transform;
}

.hero-art-card:hover img {
  filter: drop-shadow(0 22px 30px rgba(59, 48, 37, 0.16)) saturate(1.04);
}

.local-trust {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(156, 168, 111, 0.14), transparent 24%),
    radial-gradient(circle at 92% 76%, rgba(181, 139, 104, 0.12), transparent 26%),
    linear-gradient(135deg, #fff8eb, var(--fern));
  border-top: 1px solid rgba(58, 48, 38, 0.08);
  border-bottom: 1px solid rgba(58, 48, 38, 0.08);
}

.local-trust-shell {
  padding-top: 44px;
  padding-bottom: 48px;
}

.local-trust-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.local-trust-heading .eyebrow {
  margin-bottom: 0;
}

.local-trust-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.local-trust-niches {
  max-width: 960px;
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
}

.local-trust-niches span {
  display: inline-block;
  margin: 0 9px;
  color: var(--olive);
  font-family: var(--body-font);
  font-size: 0.82em;
}

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

.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.niche-card {
  min-height: 154px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 229, 220, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(58, 48, 38, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.niche-card:hover {
  transform: translate3d(0, -5px, 0);
  border-color: rgba(63, 143, 92, 0.26);
  box-shadow: 0 18px 42px rgba(24, 34, 29, 0.08);
}

.niche-card span,
.check-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--olive-dark);
  font-weight: 900;
}

.niche-card p {
  margin-bottom: 0;
}

.local-trust-card {
  min-height: 136px;
  padding: 20px;
  background: rgba(255, 250, 240, 0.84);
  border: 1px solid rgba(220, 208, 184, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(58, 48, 38, 0.06);
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
  will-change: transform;
}

.local-trust-card:hover {
  transform: translate3d(0, -6px, 0);
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(181, 139, 104, 0.3);
  box-shadow: 0 18px 44px rgba(58, 48, 38, 0.09);
}

.local-trust-card h3 {
  margin-bottom: 8px;
}

.local-trust-card p {
  margin-bottom: 0;
}

.band {
  background: var(--cream);
}

.problem-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(120, 134, 77, 0.13), transparent 30%),
    radial-gradient(circle at 86% 70%, rgba(181, 139, 104, 0.12), transparent 28%),
    linear-gradient(180deg, #f6ebd8, #eee0c8);
  border-top: 1px solid rgba(58, 48, 38, 0.1);
  border-bottom: 1px solid rgba(58, 48, 38, 0.1);
}

.problem-band::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  background: rgba(120, 134, 77, 0.13);
  border-radius: 50%;
}

.section-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 92px 0;
  position: relative;
}

.problem-band .section-shell {
  padding-top: 64px;
  padding-bottom: 72px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2 {
  position: relative;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 6px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--clay), var(--moss));
  border-radius: 999px;
}

.section-heading.compact {
  max-width: 720px;
}

#services,
#packages,
#process,
#faq,
.contact-section {
  isolation: isolate;
}

#services::before,
#packages::before,
#process::before,
#faq::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
}

#services::before {
  background:
    radial-gradient(circle at 92% 18%, rgba(152, 114, 84, 0.1), transparent 30%),
    radial-gradient(circle at 6% 78%, rgba(120, 134, 77, 0.12), transparent 26%),
    linear-gradient(135deg, #fff9ee, var(--fern));
}

#packages::before {
  background:
    radial-gradient(circle at 10% 78%, rgba(165, 174, 130, 0.14), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(181, 139, 104, 0.1), transparent 26%),
    linear-gradient(135deg, #fff4e2, var(--oat));
}

#process::before {
  background:
    radial-gradient(circle at 88% 16%, rgba(152, 114, 84, 0.1), transparent 26%),
    radial-gradient(circle at 16% 74%, rgba(120, 134, 77, 0.14), transparent 30%),
    linear-gradient(135deg, #e2e8cf, #f8eedc);
}

#faq::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(220, 226, 200, 0.18), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(156, 168, 111, 0.2), transparent 30%),
    repeating-linear-gradient(135deg, rgba(255, 250, 240, 0.045) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, var(--leaf-deep), var(--leaf));
}

.contact-section::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(181, 139, 104, 0.1), transparent 26%),
    radial-gradient(circle at 92% 82%, rgba(120, 134, 77, 0.1), transparent 26%),
    linear-gradient(135deg, #fffaf1, #efe0c8);
}

#proof {
  background:
    radial-gradient(circle at 78% 18%, rgba(120, 134, 77, 0.14), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(152, 114, 84, 0.13), transparent 28%),
    linear-gradient(180deg, #e8d5b8, #f6e7d1);
  border-top: 1px solid rgba(58, 48, 38, 0.09);
  border-bottom: 1px solid rgba(58, 48, 38, 0.09);
}

#proof .section-heading h2 {
  max-width: 640px;
  font-size: clamp(1.9rem, 3.25vw, 3.55rem);
}

#packages .section-heading h2 {
  max-width: 620px;
  font-size: clamp(1.9rem, 3.2vw, 3.45rem);
}

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

.problem-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.problem-copy {
  max-width: 610px;
  padding-top: 6px;
}

.problem-title {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 3.65vw, 3.55rem);
  line-height: 1.08;
}

.problem-lede {
  max-width: 520px;
  margin-bottom: 26px;
  font-size: 1.16rem;
}

.problem-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--soil);
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.problem-link::after {
  content: "\2192";
  margin-left: 8px;
}

.problem-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(58, 48, 38, 0.14);
}

.problem-panel {
  display: grid;
  gap: 18px;
}

.notification-stack {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 250, 240, 0.8);
  border: 1px solid rgba(58, 48, 38, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(58, 48, 38, 0.1);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.notification-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(58, 48, 38, 0.1);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease;
}

.notification-card:hover {
  transform: translate3d(6px, 0, 0);
  background: rgba(255, 255, 255, 0.62);
}

.notification-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--paper);
  background: var(--clay);
  border-radius: var(--radius);
  font-weight: 900;
}

.notification-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.notification-stack strong {
  padding: 4px 4px 0;
  color: var(--olive-dark);
}

.problem-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.problem-card {
  min-height: 148px;
  padding: 16px;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(58, 48, 38, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(58, 48, 38, 0.06);
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.problem-card:hover {
  transform: translate3d(0, -6px, 0);
  border-color: rgba(181, 139, 104, 0.28);
  box-shadow: 0 18px 40px rgba(58, 48, 38, 0.1);
}

.problem-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--clay);
  font-weight: 900;
}

.problem-card p {
  margin-bottom: 0;
}

.service-grid,
.proof-grid,
.package-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.proof-card,
.package-card,
.process-grid article {
  position: relative;
  padding: 24px;
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(58, 48, 38, 0.06);
  transform: translate3d(0, 0, 0);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 240ms ease, border-color 220ms ease, background 220ms ease;
  will-change: transform;
}

.service-card:hover,
.proof-card:hover,
.package-card:hover,
.process-grid article:hover {
  transform: translate3d(0, -7px, 0);
  border-color: rgba(181, 117, 82, 0.36);
  box-shadow: 0 22px 54px rgba(58, 48, 38, 0.1);
}

.service-card:nth-child(1),
.proof-card:nth-child(1),
.process-grid article:nth-child(1) {
  border-top: 6px solid var(--clay);
}

.service-card:nth-child(2),
.proof-card:nth-child(2),
.process-grid article:nth-child(2) {
  border-top: 6px solid var(--moss);
}

.service-card:nth-child(3),
.proof-card:nth-child(3),
.process-grid article:nth-child(3) {
  border-top: 6px solid var(--terracotta);
}

.service-card:nth-child(4) {
  border-top: 6px solid var(--olive);
}

.process-grid article:nth-child(4) {
  border-top: 6px solid var(--olive);
}

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

.service-card ul,
.package-card ul {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.service-card li,
.package-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
}

.service-card li::before,
.package-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--olive);
  border-radius: 50%;
}

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

.proof-top {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
}

.proof-top span,
.package-label {
  color: var(--olive-dark);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-top strong {
  font-size: 1.4rem;
  line-height: 1.15;
}

.before-after {
  display: grid;
  gap: 10px;
}

.before-after div {
  padding: 14px;
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease;
}

.proof-card:hover .before-after div {
  transform: translate3d(0, -2px, 0);
}

.before-after div:first-child {
  background: #f5eee8;
}

.before-after div:last-child {
  background: var(--mist);
}

.before-after span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 850;
}

.before-after p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.package-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.package-card.featured {
  color: var(--paper);
  background: var(--soil);
  border-color: var(--soil);
  box-shadow: 0 22px 54px rgba(58, 48, 38, 0.18);
}

.package-badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--leaf-deep);
  background: var(--sage);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.package-card.featured p,
.package-card.featured li,
.package-card.featured .package-label {
  color: rgba(255, 253, 248, 0.78);
}

.package-card.featured .price {
  color: white;
}

.price {
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 1.65rem;
  font-weight: 900;
}

.care-plan-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 24px;
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(58, 48, 38, 0.06);
  border-left: 6px solid var(--moss);
}

.care-plan-row h3 {
  margin-bottom: 0;
}

.care-plan-row p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.care-plan-row strong {
  color: var(--clay);
}

.automation-band {
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 16%, rgba(120, 134, 77, 0.18), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 250, 240, 0.05) 0 1px, transparent 1px 26px),
    linear-gradient(135deg, var(--soil), #283124);
}

.automation-band p,
.automation-band .eyebrow {
  color: rgba(255, 253, 248, 0.78);
}

.automation-band h2 {
  color: white;
}

.flow-list {
  display: grid;
  gap: 12px;
}

.flow-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.flow-step:hover {
  transform: translate3d(8px, 0, 0);
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.28);
}

.flow-step span,
.process-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--paper);
  background: var(--clay);
  border-radius: var(--radius);
  font-weight: 900;
}

.flow-step p {
  margin-bottom: 0;
}

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

.process-grid span {
  margin-bottom: 28px;
  background: var(--olive-dark);
}

.check-section {
  isolation: isolate;
}

.check-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 14% 22%, rgba(63, 143, 92, 0.1), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(124, 166, 191, 0.14), transparent 26%),
    linear-gradient(135deg, #fffdf8, #f3f8f5);
}

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

.check-card {
  min-height: 170px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 229, 220, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(24, 34, 29, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.check-card:hover {
  transform: translate3d(0, -5px, 0);
  border-color: rgba(66, 121, 150, 0.26);
  box-shadow: 0 18px 42px rgba(24, 34, 29, 0.08);
}

.check-card p {
  margin-bottom: 0;
}

.owner-trust-section {
  isolation: isolate;
}

.owner-trust-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 88% 18%, rgba(63, 143, 92, 0.1), transparent 26%),
    linear-gradient(135deg, #fffdf8, #f6faf7);
}

.owner-trust-grid,
.fit-grid {
  display: grid;
  gap: 14px;
}

.owner-trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.owner-trust-card,
.fit-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 229, 220, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(24, 34, 29, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.owner-trust-card:hover,
.fit-card:hover {
  transform: translate3d(0, -5px, 0);
  border-color: rgba(63, 143, 92, 0.26);
  box-shadow: 0 18px 42px rgba(24, 34, 29, 0.08);
}

.owner-trust-card span,
.fit-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--olive-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.78rem;
}

.owner-trust-card p,
.fit-card p {
  margin-bottom: 0;
}

.fit-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(124, 166, 191, 0.14), transparent 26%),
    linear-gradient(135deg, #f7f3ea, #fffdf8);
}

.fit-shell {
  padding-top: 76px;
  padding-bottom: 76px;
}

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

.fit-card.best-fit {
  border-top: 6px solid var(--olive);
}

.fit-card.not-fit {
  border-top: 6px solid var(--blue-deep);
}

.direct-contact-note {
  display: grid;
  gap: 3px;
  margin: 22px 0 14px;
  color: var(--ink);
}

.reassurance-line {
  max-width: 560px;
  margin: -6px 0 0;
  color: var(--olive-dark);
  font-weight: 750;
}

.direct-contact-note strong {
  font-size: 1.02rem;
}

.direct-contact-note span {
  color: var(--ink-soft);
}

.hidden-honeypot,
.hidden-honeypot * {
  display: none !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.faq-section .section-heading {
  margin-bottom: 28px;
}

.faq-section .eyebrow {
  color: var(--sage);
}

.faq-section .section-heading h2 {
  color: var(--paper);
}

.faq-section .section-heading h2::after {
  background: linear-gradient(90deg, var(--sand), var(--moss));
}

.faq-section .section-heading p {
  color: rgba(255, 253, 248, 0.76);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(25, 32, 21, 0.16);
  transform: translate3d(0, 0, 0);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(234, 217, 191, 0.76);
  box-shadow: 0 22px 54px rgba(25, 32, 21, 0.22);
}

.faq-list details[open] {
  transform: translate3d(0, -2px, 0);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--paper);
  background: var(--olive);
  border-radius: var(--radius);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "\2013";
}

.faq-list details p {
  max-width: 840px;
  margin: -4px 20px 20px;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-options a {
  padding: 10px 13px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.contact-options a:hover {
  transform: translate3d(0, -3px, 0);
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(58, 48, 38, 0.08);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  background: white;
  border-color: rgba(181, 139, 104, 0.34);
}

.contact-form textarea {
  resize: vertical;
}

.legal-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(124, 166, 191, 0.16), transparent 28%),
    radial-gradient(circle at 14% 78%, rgba(63, 143, 92, 0.12), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #f7f3ea 58%, #eef8f2 100%);
}

.legal-page::before {
  content: "";
  position: absolute;
  right: 6vw;
  top: 90px;
  width: 190px;
  height: 190px;
  background: url("assets/site-sprout-icon.png") center / contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.legal-shell {
  max-width: 920px;
  padding-top: 72px;
  padding-bottom: 86px;
}

.legal-shell h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 5.5vw, 4.8rem);
}

.legal-updated {
  margin-bottom: 28px;
  color: var(--olive-dark);
  font-weight: 800;
}

.legal-card {
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 248, 0.88)),
    var(--paper);
  border: 1px solid rgba(219, 229, 220, 0.95);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(24, 34, 29, 0.1);
}

.legal-card > p:first-child {
  padding: 18px 20px;
  background: var(--fern);
  border: 1px solid rgba(63, 143, 92, 0.14);
  border-radius: 16px;
}

.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: var(--body-font);
  font-size: 1.2rem;
  line-height: 1.3;
}

.legal-card h2:first-of-type {
  margin-top: 20px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--olive-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.button:focus-visible,
.site-menu a:focus-visible,
.contact-options a:focus-visible {
  outline: 3px solid rgba(173, 101, 70, 0.35);
  outline-offset: 2px;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  background:
    radial-gradient(circle at 92% 12%, rgba(120, 134, 77, 0.14), transparent 24%),
    linear-gradient(90deg, var(--soil), #33291f);
  color: var(--paper);
}

.footer-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 48px) 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  justify-content: space-between;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--paper);
  border-radius: var(--radius);
}

.footer-brand span {
  font-family: var(--display-font);
  font-size: 1.22rem;
}

.footer-brand-column {
  display: grid;
  gap: 14px;
  max-width: 420px;
}

.footer-brand-column p {
  max-width: 410px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: rgba(255, 253, 248, 0.92);
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 253, 248, 0.68);
}

.footer-column a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: white;
  text-decoration-color: rgba(255, 253, 248, 0.56);
  transform: translate3d(0, -1px, 0);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
}

.footer-contact {
  min-width: max-content;
  text-align: right;
  word-break: normal;
}

.footer-contact a {
  white-space: nowrap;
}

.footer-contact a,
.footer-contact span {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  margin-top: clamp(28px, 4vw, 38px);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 253, 248, 0.58);
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  font-size: 0.88rem;
}

.footer-bottom p {
  color: rgba(255, 253, 248, 0.58);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.88rem;
  font-weight: 650;
}

.footer-legal a {
  color: rgba(255, 253, 248, 0.64);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-legal a:hover {
  color: white;
  text-decoration-color: rgba(255, 253, 248, 0.56);
}

@media (max-width: 1040px) {
  .hero-grid,
  .local-trust-grid,
  .problem-grid,
  .automation-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    justify-items: start;
    transform: none;
  }

  .hero-art-card {
    width: min(100%, 560px);
  }

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

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -10px, 0) scale(0.98);
    visibility: hidden;
    transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
  }

  .site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    visibility: visible;
  }

  .site-menu a {
    padding: 12px;
    border-radius: var(--radius);
    opacity: 0;
    transform: translate3d(0, -4px, 0);
    transition: opacity 180ms ease, transform 180ms ease, color 180ms ease, background 180ms ease;
  }

  .site-menu a::after {
    display: none;
  }

  .site-menu.is-open a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .site-menu.is-open a:nth-child(1) {
    transition-delay: 20ms;
  }

  .site-menu.is-open a:nth-child(2) {
    transition-delay: 45ms;
  }

  .site-menu.is-open a:nth-child(3) {
    transition-delay: 70ms;
  }

  .site-menu.is-open a:nth-child(4) {
    transition-delay: 95ms;
  }

  .site-menu.is-open a:nth-child(5) {
    transition-delay: 120ms;
  }

  .site-menu.is-open a:nth-child(6) {
    transition-delay: 145ms;
  }

  .site-menu a:hover,
  .site-menu a.is-active:not(.nav-cta) {
    background: rgba(220, 226, 200, 0.45);
  }

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  h1 span {
    white-space: normal;
  }

  .hero-grid {
    min-height: auto;
    padding: 52px 0 66px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .local-trust-shell {
    padding-top: 36px;
    padding-bottom: 40px;
  }

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

  .section-shell {
    padding: 68px 0;
  }

  .package-grid,
  .service-grid,
  .proof-grid,
  .process-grid,
  .contact-form,
  .care-plan-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    min-width: 0;
    text-align: left;
  }

  .footer-contact a {
    font-size: 0.92rem;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .site-menu {
    transition: none;
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes driftIn {
  from {
    opacity: 0;
    transform: translate(43px, 7px);
  }
  to {
    opacity: 1;
    transform: translate(25px, 25px);
  }
}

@keyframes storefrontFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.4deg);
  }
}

/* Site Sprout sales-page refresh */
:root {
  --ink: #18221d;
  --ink-soft: #5c665f;
  --olive: #3f8f5c;
  --olive-dark: #247246;
  --moss: #76b98a;
  --sage: #dcefe2;
  --clay: #3f8f5c;
  --terracotta: #7ca6bf;
  --sand: #ecf3ee;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --oat: #f1eadc;
  --leaf-deep: #173322;
  --leaf: #276547;
  --fern: #eff8f2;
  --line: #dbe5dc;
  --mist: #eaf3fb;
  --soil: #19251f;
  --shadow: 0 20px 60px rgba(24, 34, 29, 0.1);
  --blue: #dcecf7;
  --blue-deep: #427996;
  --radius: 14px;
}

body {
  background:
    radial-gradient(circle at 88% 6%, rgba(124, 166, 191, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f7f3ea 52%, #fffdf8 100%);
}

h1 {
  max-width: 620px;
  font-size: clamp(2.85rem, 5.15vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
}

.hero .hero-copy h1 {
  max-width: 640px;
  font-size: clamp(3rem, 4.05vw, 4rem);
  line-height: 0.98;
}

.hero .hero-copy h1 span {
  max-width: 100%;
  white-space: normal !important;
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3.65rem);
}

.site-header {
  background: rgba(255, 253, 248, 0.9);
}

.site-menu {
  gap: 18px;
}

.nav-cta,
.button.primary {
  color: white !important;
  background: var(--olive-dark);
  box-shadow: 0 14px 30px rgba(36, 114, 70, 0.2);
}

.nav-cta:hover,
.button.primary:hover {
  background: #1f633e;
  box-shadow: 0 18px 38px rgba(36, 114, 70, 0.26);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: rgba(66, 121, 150, 0.22);
}

.button.secondary:hover {
  border-color: rgba(66, 121, 150, 0.36);
}

.hero {
  background:
    radial-gradient(circle at 80% 16%, rgba(124, 166, 191, 0.2), transparent 26%),
    radial-gradient(circle at 72% 82%, rgba(63, 143, 92, 0.13), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #fbf7ef 54%, #eef8f2 100%);
}

.hero::after {
  height: 1px;
  background: rgba(219, 229, 220, 0.9);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 56px;
  padding: 76px 0 84px;
}

.hero-lede {
  max-width: 610px;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.hero-audience {
  max-width: 610px;
  margin-top: -16px;
  margin-bottom: 30px;
  color: var(--olive-dark);
  font-size: 0.98rem;
  font-weight: 750;
}

.hero-metrics {
  max-width: 650px;
}

.hero-metrics div,
.local-trust-card,
.service-card,
.proof-card,
.package-card,
.process-grid article,
.contact-form {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(219, 229, 220, 0.92);
  border-radius: var(--radius);
}

.hero-metrics strong {
  color: var(--olive-dark);
  font-size: 1.12rem;
}

.hero-metrics span {
  font-size: 0.95rem;
}

.hero-visual {
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
}

.lead-flow-card {
  width: min(100%, 560px);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 248, 0.88)),
    var(--paper);
  border: 1px solid rgba(219, 229, 220, 0.95);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(24, 34, 29, 0.14);
}

.lead-flow-top,
.lead-flow-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--fern);
  border: 1px solid rgba(63, 143, 92, 0.16);
  border-radius: 16px;
}

.lead-flow-top p,
.lead-flow-footer p {
  margin: 0;
}

.lead-flow-top p {
  color: var(--ink);
  font-weight: 850;
}

.status-dot {
  width: 11px;
  height: 11px;
  background: var(--olive);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(63, 143, 92, 0.12);
}

.lead-flow-steps {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.lead-flow-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 25px;
  width: 2px;
  background: linear-gradient(180deg, var(--olive), var(--blue-deep));
  opacity: 0.35;
}

.lead-step {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  background: white;
  border: 1px solid rgba(219, 229, 220, 0.95);
  border-radius: 16px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.lead-step:hover {
  transform: translate3d(8px, 0, 0);
  border-color: rgba(63, 143, 92, 0.34);
  box-shadow: 0 14px 30px rgba(24, 34, 29, 0.08);
}

.lead-step span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--olive-dark);
  border-radius: 12px;
  font-weight: 900;
}

.lead-step strong {
  display: block;
  margin: 1px 0 2px;
  line-height: 1.2;
}

.lead-step p {
  margin: 0;
  font-size: 0.94rem;
}

.lead-step.active {
  background: var(--fern);
}

.lead-step.notified {
  background: var(--blue);
  border-color: rgba(66, 121, 150, 0.2);
}

.lead-flow-footer {
  display: block;
  background: #f5f9fc;
  border-color: rgba(66, 121, 150, 0.16);
}

.lead-flow-footer strong {
  display: block;
  margin-bottom: 4px;
}

.lead-flow-example {
  margin: 14px 0 0;
  padding: 12px 14px;
  color: var(--olive-dark);
  background: rgba(237, 241, 220, 0.72);
  border: 1px solid rgba(63, 143, 92, 0.14);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 750;
}

.local-trust {
  background: #fffdf8;
}

.local-trust-shell {
  padding-top: 50px;
  padding-bottom: 54px;
}

.local-trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid {
  margin-top: 0;
}

.local-trust-card {
  min-height: auto;
  padding: 22px;
}

.problem-band {
  background:
    radial-gradient(circle at 86% 18%, rgba(124, 166, 191, 0.13), transparent 28%),
    linear-gradient(135deg, #f5f8f4, #fffdf8);
}

.problem-band::after {
  display: none;
}

.problem-link {
  background: var(--olive-dark);
}

.notification-stack {
  background: white;
  border-color: rgba(219, 229, 220, 0.95);
}

.notification-card span,
.flow-step span,
.process-grid span {
  background: var(--olive-dark);
}

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

.service-card:nth-child(1),
.proof-card:nth-child(1),
.process-grid article:nth-child(1) {
  border-top-color: var(--olive);
}

.service-card:nth-child(2),
.proof-card:nth-child(2),
.process-grid article:nth-child(2) {
  border-top-color: var(--blue-deep);
}

.service-card:nth-child(3),
.proof-card:nth-child(3),
.process-grid article:nth-child(3) {
  border-top-color: var(--moss);
}

#proof {
  background:
    radial-gradient(circle at 8% 20%, rgba(124, 166, 191, 0.12), transparent 26%),
    linear-gradient(135deg, #f7f3ea, #fffdf8);
}

.conversion-strip {
  background:
    radial-gradient(circle at 84% 20%, rgba(124, 166, 191, 0.18), transparent 24%),
    linear-gradient(135deg, var(--leaf-deep), #214835);
  color: white;
}

.conversion-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 46px 0;
}

.conversion-shell h2 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.conversion-shell .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.automation-band {
  background:
    radial-gradient(circle at 82% 14%, rgba(124, 166, 191, 0.16), transparent 26%),
    linear-gradient(135deg, #19251f, #213b2d);
}

.package-card.featured {
  background: var(--leaf-deep);
  border-color: var(--leaf-deep);
}

.price {
  color: var(--blue-deep);
  font-size: 1rem;
  line-height: 1.35;
}

.package-card.featured .price {
  color: var(--sage);
}

.care-plan-row {
  border-left-color: var(--blue-deep);
}

.faq-section .section-heading h2,
.faq-section .section-heading p {
  color: var(--ink);
}

.faq-section .eyebrow {
  color: var(--olive-dark);
}

#faq::before {
  background:
    radial-gradient(circle at 92% 22%, rgba(124, 166, 191, 0.16), transparent 26%),
    linear-gradient(135deg, #f2f8fb, #fffdf8);
}

.contact-section::before {
  background:
    radial-gradient(circle at 12% 16%, rgba(63, 143, 92, 0.12), transparent 24%),
    radial-gradient(circle at 90% 78%, rgba(124, 166, 191, 0.15), transparent 26%),
    linear-gradient(135deg, #fffdf8, #f5f8f4);
}

.contact-options a {
  background: transparent;
  border-color: transparent;
  padding-left: 0;
}

.site-footer {
  background: linear-gradient(90deg, var(--soil), #14271c);
}

@media (max-width: 1040px) {
  h1 {
    font-size: clamp(2.65rem, 8.2vw, 4.5rem);
  }

  .hero .hero-copy h1 {
    font-size: clamp(2.55rem, 8vw, 4rem);
  }

  .compact-grid,
  .local-trust-grid,
  .niche-grid,
  .owner-trust-grid,
  .fit-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    justify-items: stretch;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.55rem);
    line-height: 1;
  }

  .hero .hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .hero-grid {
    padding: 52px 0 62px;
  }

  .lead-flow-card {
    padding: 16px;
    border-radius: 20px;
  }

  .lead-step {
    grid-template-columns: 42px 1fr;
    padding: 12px;
  }

  .lead-step span {
    width: 34px;
    height: 34px;
  }

  .lead-flow-steps::before {
    left: 29px;
  }

  .conversion-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}
