html {
  scroll-behavior: smooth;
}

:root {
  --font-heading: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: #111827;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

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

h2 {
  font-size: clamp(28px, 7vw, 46px);
}

h3,
h4 {
  font-size: 20px;
}

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

.site-shell {
  background:
    radial-gradient(circle at 6% 8%, rgba(109, 167, 140, 0.22), transparent 28rem),
    radial-gradient(circle at 92% 22%, rgba(203, 163, 91, 0.16), transparent 24rem),
    #ffffff;
}

.container-wide {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, #093320, #6da78c);
  display: inline-grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(9, 51, 32, 0.22);
  flex: 0 0 auto;
}

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.section-dark .logo-text {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(9, 51, 32, 0.08);
}

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

.mobile-menu-button {
  display: inline-flex !important;
}

.mobile-panel {
  display: none;
}

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

.nav-link {
  font-size: 18px;
  color: #17241e;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-link:hover {
  color: #0b5a38;
}

.phone-button,
.primary-button,
.secondary-button {
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.phone-button {
  background: #093320;
  color: #ffffff !important;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 15px 35px rgba(9, 51, 32, 0.22);
}

.primary-button {
  background: #cba35b;
  color: #111827 !important;
  padding: 1rem 1.35rem;
  box-shadow: 0 18px 38px rgba(203, 163, 91, 0.28);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #ffffff !important;
  padding: 1rem 1.35rem;
  background: rgba(255, 255, 255, 0.08);
}

.phone-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #093320 0%, #0d4a30 58%, #6da78c 100%);
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 48% 52% 64% 36% / 42% 48% 52% 58%;
  animation: floatWave 12s ease-in-out infinite;
}

.hero-section::before {
  width: 520px;
  height: 310px;
  left: -190px;
  bottom: -95px;
}

.hero-section::after {
  width: 450px;
  height: 280px;
  right: -160px;
  top: 60px;
  animation-delay: -4s;
}

.hero-grid {
  min-height: calc(100vh - 82px);
}

.hero-copy h1,
.dark-heading {
  color: #ffffff !important;
}

.hero-copy p,
.dark-copy {
  color: #f4fbf7;
}

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

.badge-icons img {
  width: auto;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

.hero-card {
  min-height: min(78vw, 560px);
  aspect-ratio: 1 / 1;
  border-radius: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(109, 167, 140, 0.14);
  color: #0b3b27;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

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

.section-muted {
  background: #f4f8f5;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(109, 167, 140, 0.26), transparent 34rem),
    #093320;
}

.service-card,
.trust-card,
.review-card,
.faq-card,
.payment-card {
  border-radius: 28px;
  background: #ffffff;
  color: #24352d;
  box-shadow: 0 18px 55px rgba(9, 51, 32, 0.08);
  border: 1px solid rgba(9, 51, 32, 0.08);
}

.service-card h3,
.trust-card h3,
.review-card h3,
.faq-card h3,
.payment-card h3 {
  color: #111827 !important;
}

.service-card li,
.process-step li {
  margin-top: 0.75rem;
}

.icon-pill {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: #ecf5ef;
  color: #093320;
  display: inline-grid;
  place-items: center;
}

.icon-pill svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-panel {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(9, 51, 32, 0.08);
  box-shadow: 0 24px 70px rgba(9, 51, 32, 0.08);
  background: #ffffff;
}

.split-image {
  min-height: 320px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wave-card {
  position: relative;
  overflow: hidden;
}

.wave-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 120px;
  right: -68px;
  bottom: -40px;
  border: 1px solid rgba(109, 167, 140, 0.28);
  border-radius: 44% 56% 58% 42% / 52% 42% 58% 48%;
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  background: #cba35b;
  color: #111827;
  font-weight: 950;
}

.zip-chip,
.city-chip {
  display: inline-flex;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(9, 51, 32, 0.1);
  padding: 0.55rem 0.9rem;
  font-weight: 800;
  color: #17241e;
}

.reviews-track {
  display: flex;
  transition: transform 420ms ease;
}

.review-slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}

.review-card .stars {
  font-size: 17px;
}

.faq-card summary {
  cursor: pointer;
  font-weight: 900;
  color: #111827;
  list-style: none;
}

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

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

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none !important;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(9, 51, 32, 0.14);
}

.mobile-sticky-call.is-visible {
  display: block !important;
  transform: translateY(0);
  opacity: 1;
}

.mobile-sticky-call a {
  width: 100%;
  min-height: 52px;
  border-radius: 18px;
  background: #093320;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(9, 51, 32, 0.28);
}

@keyframes floatWave {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(18px, -14px, 0) rotate(6deg); }
}

@media (min-width: 768px) {
  .desktop-nav,
  .header-phone-desktop {
    display: flex !important;
  }

  .mobile-menu-button,
  .mobile-panel,
  .mobile-sticky-call,
  .mobile-sticky-call.is-visible {
    display: none !important;
  }

  .review-slide {
    flex-basis: 50%;
  }
}

@media (min-width: 1024px) {
  .section-pad {
    padding: 96px 0;
  }

  .review-slide {
    flex-basis: 33.3333%;
  }

  .split-text {
    flex: 0 0 65%;
  }

  .split-image {
    flex: 0 0 35%;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 28px;
  }

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

  .hero-grid {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .hero-card {
    min-height: 330px;
  }

  body.has-sticky-call-space {
    padding-bottom: 76px;
  }
}
