:root {
  --forest: #093320;
  --leaf: #58A783;
  --leaf-dark: #35765f;
  --cream: #f7f2e8;
  --sand: #efe4d2;
  --ink: #111827;
  --muted: #4b5563;
  --white: #ffffff;
  --gold: #d89a2b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffaf2;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 8% 6%, rgba(88, 167, 131, 0.22), transparent 30%), radial-gradient(circle at 96% 14%, rgba(216, 154, 43, 0.14), transparent 28%), linear-gradient(180deg, #fffaf2 0%, #f8f4ec 44%, #ffffff 100%);
}

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

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

h1,
h2,
h3,
h4,
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  font-size: clamp(35px, 6vw, 72px);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(28px, 4.2vw, 48px);
  letter-spacing: -0.035em;
}

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

p,
li {
  font-size: 16px;
}

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
}

.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  box-shadow: 0 16px 34px rgba(9, 51, 32, 0.22);
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
}

.desktop-nav {
  display: none !important;
  align-items: center;
  gap: 22px;
}

.desktop-nav a,
.mobile-menu a {
  font-size: 18px;
  font-weight: 700;
  color: #1f2c26;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--leaf-dark);
}

.header-phone {
  display: none !important;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.hamburger {
  display: inline-flex !important;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(9, 51, 32, 0.16);
  border-radius: 16px;
  color: var(--forest);
  background: var(--white);
}

.mobile-menu {
  display: none;
  padding: 0 16px 18px;
  background: rgba(255, 250, 242, 0.98);
}

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

.mobile-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(9, 51, 32, 0.12);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(9, 51, 32, 0.11);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 18px 40px rgba(9, 51, 32, 0.26);
}

.btn-primary:hover {
  background: #0d4630;
  box-shadow: 0 20px 44px rgba(9, 51, 32, 0.34);
}

.btn-accent {
  color: #071e15;
  background: var(--leaf);
  box-shadow: 0 18px 40px rgba(88, 167, 131, 0.28);
}

.btn-light {
  color: var(--forest);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(9, 51, 32, 0.14);
}

.hero-section {
  padding: 34px 0 56px;
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  min-height: 100%;
  border-radius: 34px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  background: linear-gradient(145deg, #f8eddb 0%, #eef7ef 52%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(9, 51, 32, 0.09), 0 28px 80px rgba(9, 51, 32, 0.12);
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(88, 167, 131, 0.42);
  border-radius: 999px;
  padding: 7px 12px;
  color: #123a29;
  background: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 800;
}

.stars {
  margin: 12px 0 12px;
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 0.09em;
}

.hero-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.hero-icons img {
  width: auto;
  height: 48px;
  padding: 6px;
  border: 1px solid rgba(9, 51, 32, 0.16);
  border-radius: 16px;
  background: var(--white);
  object-fit: contain;
}

.hero-lead {
  max-width: 660px;
  color: #314139;
  font-size: 18px;
}

.hero-cta-text {
  margin: 22px 0 12px;
  color: var(--forest);
  font-size: 18px;
  font-weight: 900;
}

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

.hero-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--forest);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 250px;
  border-radius: 24px;
  padding: 18px;
  color: var(--white);
  background: rgba(9, 51, 32, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.hero-badge strong {
  display: block;
  color: var(--white);
  font-size: 24px;
}

.section {
  padding: 70px 0;
}

.split-card {
  display: grid;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(9, 51, 32, 0.1);
  border-radius: 34px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(9, 51, 32, 0.09);
}

.split-card.dark {
  color: var(--white);
  background: linear-gradient(145deg, var(--forest), #0d4630);
}

.split-card.dark h2,
.split-card.dark h3,
.split-card.dark p,
.split-card.dark li,
.split-card.dark strong {
  color: var(--white);
}

.split-card.dark .section-kicker {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

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

.split-media img,
.rounded-photo {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(9, 51, 32, 0.17);
}

.section-title {
  max-width: 850px;
  margin-bottom: 28px;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
}

.reviews-section {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 51, 32, 0.04), rgba(88, 167, 131, 0.08));
}

.reviews-head {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
}

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

.round-btn {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(9, 51, 32, 0.18);
  border-radius: 999px;
  color: var(--forest);
  background: var(--white);
  font-size: 22px;
  font-weight: 900;
}

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

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

.review-card {
  min-height: 310px;
  scroll-snap-align: start;
  border: 1px solid rgba(9, 51, 32, 0.12);
  border-radius: 28px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 20px 54px rgba(9, 51, 32, 0.08);
}

.review-card .stars {
  margin: 0 0 12px;
  font-size: 18px;
}

.review-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.services-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(9, 51, 32, 0.1);
  border-radius: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 58px rgba(9, 51, 32, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(9, 51, 32, 0.13);
}

.service-icon,
.mini-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: var(--forest);
  background: linear-gradient(145deg, rgba(88, 167, 131, 0.28), rgba(247, 242, 232, 0.9));
}

.service-card ul,
.feature-list,
.steps-list,
.zip-list {
  padding-left: 20px;
}

.service-card li,
.feature-list li,
.steps-list li,
.zip-list li {
  margin: 10px 0;
}

.cta-band {
  border-radius: 34px;
  padding: clamp(26px, 5vw, 54px);
  color: var(--white);
  background: radial-gradient(circle at 12% 20%, rgba(88, 167, 131, 0.45), transparent 32%), linear-gradient(135deg, var(--forest), #08291b);
  box-shadow: 0 28px 80px rgba(9, 51, 32, 0.2);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.faq-grid,
.payment-grid {
  display: grid;
  gap: 16px;
}

.faq-card,
.payment-card {
  border: 1px solid rgba(9, 51, 32, 0.1);
  border-radius: 24px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
}

.site-footer {
  padding: 48px 0 96px;
  color: var(--white);
  background: #071e15;
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a,
.site-footer li,
.site-footer strong,
.site-footer .brand-name {
  color: var(--white);
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-disclaimer,
.copyright {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.mobile-sticky-call {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: flex !important;
  justify-content: center;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7, 30, 21, 0.88);
  opacity: 0;
  pointer-events: none;
  transform: translateY(105%);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.mobile-sticky-call a {
  width: min(100%, 430px);
  min-height: 52px;
  white-space: nowrap;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 -8px 34px rgba(0, 0, 0, 0.22);
}

.fade-card {
  animation: revealUp 650ms ease both;
}

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

@media (min-width: 640px) {
  .review-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

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

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

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

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

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

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

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

  .split-card.reverse .split-media {
    order: -1;
  }

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

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

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

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

@media (max-width: 767px) {
  h1 {
    font-size: clamp(35px, 11vw, 50px);
  }

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

  .site-footer {
    padding-bottom: 112px;
  }
}
