:root {
  --green-900: #063b1c;
  --green-800: #005f2a;
  --green-700: #006b2e;
  --green-600: #0b7c38;
  --green-100: #eaf5e0;
  --leaf: #97c846;
  --leaf-soft: #cce799;
  --cream: #fbfcf5;
  --cream-2: #f4f8ec;
  --white: #ffffff;
  --ink: #182017;
  --muted: #5a6658;
  --line: rgba(6, 59, 28, 0.13);
  --shadow: 0 24px 70px rgba(6, 59, 28, 0.13);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 245, 0.88);
  border-bottom: 1px solid rgba(6, 59, 28, 0.08);
  backdrop-filter: blur(18px);
}

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

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

.brand-logo {
  width: 220px;
  height: auto;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-900);
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover {
  background: var(--green-100);
  color: var(--green-700);
}

.nav-cta {
  background: var(--green-700);
  color: var(--white) !important;
  box-shadow: 0 10px 24px rgba(0, 107, 46, 0.22);
}

.nav-cta:hover {
  background: var(--green-900) !important;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--green-900);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 80px;
  background:
    radial-gradient(circle at 15% 15%, rgba(151, 200, 70, 0.28), transparent 26%),
    radial-gradient(circle at 90% 20%, rgba(0, 107, 46, 0.11), transparent 30%),
    linear-gradient(180deg, var(--cream), var(--cream-2));
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(151, 200, 70, 0.16);
  filter: blur(4px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 8vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  color: var(--green-900);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--green-900);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  color: var(--green-900);
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 107, 46, 0.22);
}

.button-primary:hover {
  background: var(--green-900);
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--green-900);
}

.button-secondary:hover {
  box-shadow: 0 12px 28px rgba(6, 59, 28, 0.10);
}

.button-card {
  width: 100%;
  background: var(--green-900);
  color: var(--white);
  margin-top: 10px;
}

.button-wide {
  width: 100%;
}

.button-light {
  background: var(--white);
  color: var(--green-900);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 780px;
}

.trust-row div {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(6, 59, 28, 0.08);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--green-900);
  font-size: 0.82rem;
}

.trust-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(6, 59, 28, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -95px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(151, 200, 70, 0.25);
}

.card-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.card-top p {
  margin: 0;
  color: var(--green-700);
  font-weight: 800;
}

.leaf-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 55% 28%, var(--leaf-soft), transparent 20%),
    linear-gradient(135deg, var(--green-700), var(--green-900));
  position: relative;
}

.leaf-mark::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 34px;
  left: 12px;
  top: 7px;
  background: var(--leaf-soft);
  border-radius: 50% 0 50% 50%;
  transform: rotate(45deg);
}

.summary-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 16px;
}

.summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.summary-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(151, 200, 70, 0.16);
}

.section {
  padding: 78px 0;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  margin-bottom: 24px;
}

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

.service-card,
.payment-card,
.info-panel,
.appointment-panel,
.map-placeholder {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(6, 59, 28, 0.07);
}

.service-card {
  padding: 24px;
  min-height: 230px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 900;
  margin-bottom: 20px;
}

.info-section {
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}

.info-grid,
.location-grid,
.cta-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.info-grid {
  grid-template-columns: 1fr 0.78fr;
  align-items: stretch;
}

.info-panel,
.appointment-panel {
  padding: clamp(24px, 4vw, 42px);
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.info-item {
  padding: 18px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid rgba(6, 59, 28, 0.08);
}

.info-label {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.info-item strong {
  color: var(--green-900);
}

.info-item a {
  text-decoration: underline;
  text-decoration-color: rgba(0, 107, 46, 0.25);
  text-underline-offset: 4px;
}

.appointment-panel {
  background:
    linear-gradient(135deg, rgba(0, 107, 46, 0.94), rgba(6, 59, 28, 0.97)),
    radial-gradient(circle at 85% 20%, rgba(151, 200, 70, 0.5), transparent 28%);
  color: var(--white);
}

.appointment-panel h2,
.appointment-panel p {
  color: var(--white);
}

.appointment-panel p {
  opacity: 0.88;
}

.panel-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  margin-bottom: 22px;
  font-weight: 800;
  font-size: 0.82rem;
}

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

.payment-card {
  padding: 22px;
}

.payment-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 6px;
}

.payment-card strong {
  color: var(--green-900);
  font-size: 1.05rem;
}

.location-section {
  background: var(--cream-2);
}

.location-grid {
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
}

.location-text {
  color: var(--muted);
  font-size: 1.1rem;
}

.map-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 24px;
  background:
    linear-gradient(120deg, rgba(234, 245, 224, 0.62) 25%, transparent 25%) 0 0 / 56px 56px,
    linear-gradient(300deg, rgba(234, 245, 224, 0.74) 25%, transparent 25%) 0 0 / 56px 56px,
    var(--white);
  color: var(--green-900);
}

.map-placeholder p {
  color: var(--muted);
  margin: 4px 0 0;
}

.map-pin {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  border-radius: 28px;
  background: var(--green-700);
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 14px;
  box-shadow: 0 18px 34px rgba(0, 107, 46, 0.22);
}

.cta-band {
  padding: 52px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(151, 200, 70, 0.35), transparent 22%),
    linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white);
}

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

.cta-band .eyebrow {
  opacity: 0.76;
}

.cta-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cta-grid h2 {
  margin-bottom: 0;
}

.footer {
  padding: 38px 0 22px;
  background: #07150d;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.footer strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.footer p,
.footer span {
  margin: 0;
}

.footer a {
  display: block;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 4px;
  text-align: right;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

@media (max-width: 1020px) {
  .hero-grid,
  .info-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-card {
    max-width: 640px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 178px;
  }

  .menu-button {
    display: inline-flex;
  }

  .menu-open .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 72px 20px auto 20px;
    padding: 18px;
    display: grid;
    gap: 4px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 16px;
  }

  .hero {
    padding: 54px 0 58px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .payments-grid {
    grid-template-columns: 1fr;
  }

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

  .footer a {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero-actions,
  .location-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-card,
  .info-panel,
  .appointment-panel {
    border-radius: 24px;
  }

  h1 {
    letter-spacing: -0.055em;
  }

  .section {
    padding: 58px 0;
  }
}
