:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cream: #F8F5EC;
  --leaf: rgba(88, 167, 131, 0.14);
  --ring: rgba(29, 78, 56, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 8% 12%, rgba(88, 167, 131, 0.16), transparent 26%), radial-gradient(circle at 92% 18%, rgba(221, 170, 62, 0.13), transparent 24%), #fffaf1;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(35px, 10vw, 64px);
}

h2 {
  font-size: clamp(28px, 8vw, 48px);
}

h3,
h4 {
  font-size: clamp(20px, 5vw, 26px);
}

p,
li,
a,
button,
input,
textarea {
  font-size: 16px;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(29, 78, 56, 0.12);
  background: rgba(255, 250, 241, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: #1D4E38;
  box-shadow: 0 12px 28px rgba(29, 78, 56, 0.2);
}

.logo-mark svg {
  width: 28px;
  height: 28px;
}

.desktop-nav {
  display: none !important;
}

.desktop-phone {
  display: none !important;
}

.desktop-nav a {
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: #1D4E38;
}

.menu-toggle {
  display: inline-flex !important;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 78, 56, 0.2);
  border-radius: 16px;
  color: #1D4E38;
  background: #ffffff;
}

.mobile-menu {
  display: none;
  padding: 0 0 20px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(29, 78, 56, 0.14);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(16, 39, 29, 0.12);
}

.mobile-menu-panel a {
  color: #111827;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.btn-primary,
.btn-secondary,
.btn-phone,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary,
.btn-phone {
  color: #ffffff;
  background: #1D4E38;
  box-shadow: 0 16px 38px rgba(29, 78, 56, 0.22);
}

.btn-primary:hover,
.btn-phone:hover {
  color: #ffffff;
  background: #123625;
  transform: translateY(-2px);
}

.btn-secondary {
  color: #111827;
  border: 1px solid rgba(29, 78, 56, 0.2);
  background: #ffffff;
}

.btn-secondary:hover {
  color: #111827;
  box-shadow: 0 12px 26px rgba(16, 39, 29, 0.12);
  transform: translateY(-2px);
}

.btn-dark {
  color: #111827;
  background: #DDAA3E;
}

.btn-dark:hover {
  color: #111827;
  background: #f1c45b;
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  padding: 34px 0 54px;
  background: linear-gradient(145deg, #f8f5ec 0%, #e8f2e8 62%, #d9eadf 100%);
  overflow: hidden;
}

.hero-section::before,
.hero-section::after,
.decor-leaf::before {
  content: "";
  position: absolute;
  border-radius: 52% 48% 63% 37% / 47% 55% 45% 53%;
  background: var(--leaf);
  transform: rotate(-18deg);
  pointer-events: none;
}

.hero-section::before {
  width: 280px;
  height: 410px;
  right: -90px;
  top: 80px;
}

.hero-section::after {
  width: 180px;
  height: 260px;
  left: -78px;
  bottom: -30px;
  transform: rotate(25deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  min-height: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(29, 78, 56, 0.15);
  border-radius: 999px;
  color: #123625;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 900;
}

.stars {
  color: #DDAA3E;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.trust-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 24px;
}

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 120px;
  object-fit: contain;
  padding: 7px;
  border: 1px solid rgba(29, 78, 56, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-top: 20px;
}

.hero-visual-card {
  position: relative;
  display: grid;
  min-height: 340px;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(16, 39, 29, 0.22);
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(250px, calc(100% - 32px));
  padding: 16px;
  border-radius: 22px;
  color: #ffffff;
  background: rgba(16, 39, 29, 0.9);
  backdrop-filter: blur(12px);
}

.hero-badge strong,
.dark-panel strong,
.footer strong {
  color: #ffffff;
}

.section-pad {
  padding: 58px 0;
}

.intro-card {
  padding: 26px;
  border: 1px solid rgba(29, 78, 56, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(16, 39, 29, 0.08);
}

.split-block {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(29, 78, 56, 0.12);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 20px 56px rgba(16, 39, 29, 0.08);
}

.split-block.reverse .split-image {
  order: -1;
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 26px;
  object-fit: cover;
}

.section-kicker {
  color: #1D4E38;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-grid,
.value-grid,
.faq-grid,
.payment-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(29, 78, 56, 0.12);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(16, 39, 29, 0.08);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background: rgba(88, 167, 131, 0.15);
}

.service-icon,
.value-icon,
.pay-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 20px;
  color: #1D4E38;
  background: #edf7ef;
}

.service-icon svg,
.value-icon svg,
.pay-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}

.service-card ul,
.rich-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}

.service-card li,
.rich-list li {
  position: relative;
  padding-left: 24px;
}

.service-card li::before,
.rich-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #58A783;
}

.dark-panel {
  position: relative;
  overflow: hidden;
  padding: 34px 24px;
  border-radius: 34px;
  color: #f9fafb;
  background: linear-gradient(135deg, #10271D, #1D4E38);
  box-shadow: 0 28px 80px rgba(16, 39, 29, 0.22);
}

.dark-panel h2,
.dark-panel h3,
.dark-panel p,
.dark-panel li,
.dark-panel .section-kicker {
  color: #ffffff;
}

.dark-panel .section-kicker {
  opacity: 0.86;
}

.value-card,
.faq-card,
.payment-card,
.step-card {
  padding: 22px;
  border-radius: 26px;
  color: #374151;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(16, 39, 29, 0.1);
}

.value-card h3,
.faq-card h3,
.payment-card h3,
.step-card h3 {
  color: #111827;
}

.cta-band {
  padding: 34px;
  border-radius: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, #1D4E38, #58A783);
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.reviews-wrap {
  position: relative;
}

.review-track {
  display: grid;
  grid-auto-columns: minmax(280px, 88%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(29, 78, 56, 0.12);
  border-radius: 28px;
  color: #374151;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(16, 39, 29, 0.08);
}

.review-controls {
  display: flex;
  gap: 10px;
}

.review-controls button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #1D4E38;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(29, 78, 56, 0.13);
  border-radius: 999px;
  color: #123625;
  background: #ffffff;
  font-weight: 800;
}

.footer {
  padding: 42px 0 28px;
  color: #f9fafb;
  background: #10271D;
}

.footer p,
.footer a,
.footer li {
  color: #f9fafb;
  font-size: 14px;
}

.footer a {
  text-decoration: none;
}

.footer h3 {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.mobile-sticky-call {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: flex !important;
  justify-content: center;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(16, 39, 29, 0.94);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-sticky-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky-call a {
  width: 100%;
  max-width: 430px;
  min-height: 54px;
  border-radius: 18px;
  color: #111827;
  background: #DDAA3E;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .service-grid,
  .value-grid,
  .faq-grid,
  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex !important;
    align-items: center;
    gap: 18px;
  }

  .desktop-phone {
    display: inline-flex !important;
  }

  .menu-toggle,
  .mobile-menu,
  .mobile-sticky-call {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  }

  .split-block {
    grid-template-columns: minmax(0, 65fr) minmax(260px, 35fr);
  }

  .split-block.reverse {
    grid-template-columns: minmax(260px, 35fr) minmax(0, 65fr);
  }

  .split-block.reverse .split-image {
    order: 0;
  }

  .split-block.reverse .split-text {
    order: 1;
  }

  .review-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  h1,
  h2 {
    line-height: 1.12;
  }

  .site-shell {
    width: min(100% - 24px, 430px);
  }

  .hero-copy {
    padding-top: 8px;
  }

  .section-pad {
    padding: 46px 0;
  }

  .trust-icons img {
    height: 48px;
    max-width: 98px;
  }

  .footer {
    padding-bottom: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
