:root {
  --green: #0b8d24;
  --green-2: #16b83f;
  --green-3: #83df84;
  --dark-green: #003820;
  --deep-green: #002316;
  --light: #f0faf2;
  --mint: #e5f7e8;
  --ink: #101820;
  --muted: #5d6b62;
  --line: #dfe9e3;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(0, 45, 24, .14);
  --shadow-soft: 0 18px 48px rgba(0, 45, 24, .09);
  --container: min(1200px, calc(100% - 44px));
  --radius: 20px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
ul, ol { padding-left: 0; }

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--dark-green);
  color: #fff;
  font-weight: 900;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(15, 23, 32, .075);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}
.site-header.has-shadow { box-shadow: 0 12px 34px rgba(0, 0, 0, .08); }

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  line-height: .98;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .025em;
}

.brand-mark {
  width: 46px;
  min-width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: #fff;
  box-shadow: 0 14px 26px rgba(11, 141, 36, .24);
}

.brand-icon { width: 30px; height: 30px; }
.brand-icon path {
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.brand-text {
  display: grid;
  color: #0e1720;
  font-size: 14px;
}
.brand-text strong { color: var(--green); }

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(9px, 1.08vw, 16px);
  color: #17212c;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.main-nav a {
  position: relative;
  padding: 30px 0 28px;
  transition: color .2s ease;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  opacity: 0;
  transform: translateX(-50%) scaleX(.25);
  transition: opacity .2s ease, transform .2s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active { color: var(--green); }
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.call-pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), #00751c);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(0, 117, 28, .25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.call-pill i {
  font-size: 18px;
  line-height: 1;
}
.call-pill:hover,
.call-pill:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 117, 28, .31);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 13px;
  background: var(--light);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 4px;
  background: var(--dark-green);
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.section-anchor { scroll-margin-top: 94px; }
.section-pad { padding: 92px 0; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .075em;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 950;
}
.section-heading h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: var(--green);
}
.section-heading p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #526056;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 650;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn i {
  font-size: 20px;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), #00851f);
  color: #fff;
  box-shadow: 0 15px 28px rgba(11, 141, 36, .26);
}
.btn-secondary {
  background: rgba(255, 255, 255, .9);
  border-color: rgba(11, 141, 36, .42);
  color: #0d5e22;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }
.btn-primary:hover,
.btn-primary:focus-visible { box-shadow: 0 22px 40px rgba(11, 141, 36, .32); }
.btn-secondary:hover,
.btn-secondary:focus-visible { background: #f2fbf4; }

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 5% 40%, rgba(11, 141, 36, .09), transparent 22%),
    linear-gradient(90deg, #fbfdfc 0%, #f7fbf8 50%, #ecf6ef 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 130px;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0));
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 548px;
  display: grid;
  align-items: center;
  padding: 72px 0 34px;
}
.hero-copy {
  max-width: 640px;
}
.hero h1 {
  margin: 0;
  color: #101820;
  font-size: clamp(45px, 6.5vw, 74px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 950;
}
.hero h1 span { color: var(--green); }
.hero-text {
  max-width: 560px;
  margin: 20px 0 0;
  color: #34423a;
  font-size: 17px;
  line-height: 1.58;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  list-style: none;
  color: #18251d;
  font-weight: 850;
  font-size: 14px;
}
.check-list li {
  position: relative;
  padding-left: 29px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
}
.check-list.compact { gap: 6px; font-size: 14px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(62vw, 980px);
  pointer-events: none;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #fbfdfc 0%, rgba(251,253,252,.92) 13%, rgba(251,253,252,.34) 44%, rgba(251,253,252,.02) 100%),
    linear-gradient(0deg, rgba(255,255,255,.2), rgba(255,255,255,0));
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-badge {
  position: absolute;
  right: 0;
  bottom: 130px;
  z-index: 3;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 315px;
  padding: 22px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 56, 32, .98), rgba(0, 35, 22, .92));
  color: #fff;
  box-shadow: 0 22px 45px rgba(0, 37, 22, .28);
}
.badge-leaf {
  grid-row: span 2;
  display: grid;
  place-items: center;
  color: #37d958;
}
.badge-leaf i {
  display: block;
  font-size: 42px;
  line-height: 1;
}
.hero-badge strong {
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .045em;
  font-weight: 950;
}
.hero-badge span:last-child {
  color: #d8f7dc;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .045em;
}
.hero-leaf {
  position: absolute;
  border-radius: 100% 0 100% 0;
  border: 1px solid rgba(11, 141, 36, .12);
  opacity: .45;
  pointer-events: none;
}
.hero-leaf-one {
  width: 142px;
  height: 142px;
  left: -54px;
  top: 250px;
  transform: rotate(17deg);
  background: linear-gradient(135deg, rgba(11, 141, 36, .14), transparent 64%);
}
.hero-leaf-two {
  width: 62px;
  height: 62px;
  left: 52px;
  top: 330px;
  transform: rotate(-26deg);
  background: rgba(11, 141, 36, .08);
}
.hero-ribbon {
  position: relative;
  z-index: 4;
  margin-top: -38px;
  margin-bottom: 20px;
}
.ribbon-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 140px;
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--dark-green), #005936);
  color: #fff;
  box-shadow: 0 24px 45px rgba(1, 47, 28, .25);
  overflow: hidden;
  position: relative;
}
.ribbon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 5% 0%, rgba(255, 255, 255, .12), transparent 18%), linear-gradient(90deg, transparent, rgba(255, 255, 255, .06), transparent);
}
.ribbon-card article {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
  padding: 8px 18px;
  min-width: 0;
}
.ribbon-card article + article { border-left: 1px solid rgba(255, 255, 255, .13); }
.ribbon-icon { color: #52d447; }
.ribbon-icon i {
  font-size: 44px;
  line-height: 1;
}
.ribbon-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 950;
}
.ribbon-card p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  line-height: 1.45;
}
.ribbon-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: #bdfed0;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .045em;
  border-bottom: 1px solid rgba(189, 254, 208, .44);
}
.ribbon-link:hover,
.ribbon-link:focus-visible { color: #fff; border-color: #fff; }

.about-section {
  background: radial-gradient(circle at 83% 30%, rgba(11, 141, 36, .09), transparent 24%), linear-gradient(180deg, #fff 0%, #fbfdfb 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 52px;
  align-items: center;
}
.about-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.03;
  letter-spacing: -.035em;
  font-weight: 950;
}
.about-copy p {
  margin: 0 0 18px;
  color: #324033;
  font-size: 17px;
}
.feature-list {
  display: grid;
  gap: 11px;
  margin: 26px 0;
  list-style: none;
  font-weight: 780;
  color: #17251d;
}
.feature-list li {
  position: relative;
  padding-left: 32px;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f8ec;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}
.about-highlight {
  margin-top: 6px !important;
  padding: 18px 20px;
  border-left: 5px solid var(--green);
  border-radius: 14px;
  background: #f0faf2;
  color: #15221a !important;
  font-weight: 850;
}
.about-actions { margin-top: 26px; }
.about-media {
  position: relative;
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e8f8ec;
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 47, 28, .48), rgba(0, 0, 0, 0) 55%);
}
.about-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
.about-stat-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
}
.about-stat-card strong {
  color: var(--green);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}
.about-stat-card span {
  color: #26362d;
  font-weight: 850;
}

.services-section {
  background: #f8fbf9;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(11, 45, 27, .055);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--green-3));
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 141, 36, .28);
  box-shadow: var(--shadow);
}
.service-card.featured {
  background: radial-gradient(circle at 88% 10%, rgba(127, 220, 121, .26), transparent 35%), #fff;
}
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #e7f7eb;
  color: var(--green);
  font-size: 30px;
  font-weight: 950;
}
.service-card h3 {
  margin: 24px 0 12px;
  font-size: 23px;
  line-height: 1.13;
  letter-spacing: -.025em;
  font-weight: 950;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
}
.service-card a {
  margin-top: auto;
  padding-top: 28px;
  color: var(--green);
  font-weight: 950;
}

.steps {
  background: linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}
.step-card {
  position: relative;
  min-height: 226px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0, 45, 24, .055);
}
.step-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -31px;
  top: 50%;
  color: var(--green);
  font-size: 43px;
  line-height: 1;
  transform: translateY(-50%);
}
.step-num {
  position: absolute;
  left: 24px;
  top: 22px;
  color: var(--green);
  font-weight: 950;
}
.step-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 26px auto 20px;
  border-radius: 50%;
  background: #e0f3e2;
  color: var(--green);
}
.step-icon i {
  font-size: 34px;
  line-height: 1;
}
.step-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
}
.step-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.pickup {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  isolation: isolate;
}
.pickup-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #f4f6f5;
}
.pickup-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .78) 34%, rgba(255, 255, 255, .28) 72%, rgba(255, 255, 255, .94) 100%), linear-gradient(0deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, .92));
}
.pickup-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pickup-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 520px);
  gap: 70px;
  align-items: center;
  padding: 78px 0;
}
.pickup-copy h2 {
  margin: 0;
  max-width: 500px;
  font-size: clamp(38px, 5.3vw, 58px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 950;
}
.pickup-copy p {
  max-width: 440px;
  margin: 17px 0 0;
  color: #2c392f;
  font-size: 17px;
}
.phone-card {
  width: fit-content;
  min-width: 315px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 2px 15px;
  align-items: center;
  margin-top: 28px;
  padding: 15px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
}
.phone-card > span:first-child {
  grid-row: span 3;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f8ec;
}
.phone-card i {
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}
.phone-card small,
.phone-card em { color: var(--muted); font-size: 12px; font-style: normal; }
.phone-card strong { color: #0e1720; font-size: 21px; font-weight: 950; line-height: 1; }
.form-shell {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.lead-form h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 950;
}
.lead-form label { display: block; margin-bottom: 12px; }
.lead-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #dfe7e2;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  padding: 13px 15px;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lead-form textarea { min-height: 116px; resize: vertical; }
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(11, 141, 36, .55);
  box-shadow: 0 0 0 4px rgba(11, 141, 36, .1);
}
.lead-form .has-error {
  border-color: #c92a2a;
  box-shadow: 0 0 0 4px rgba(201, 42, 42, .08);
}
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.turnstile-slot {
  margin: 14px 0 10px;
}
.lead-form button[disabled] {
  opacity: .72;
  cursor: wait;
  transform: none;
}
.form-btn { width: 100%; margin-top: 2px; }
.consent {
  margin: 13px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}
.consent a { color: var(--green); font-weight: 850; text-decoration: underline; }

.testimonials {
  background: #fff;
}
.reviews-wrap {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}
.reviews {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 38px;
}
.reviews::-webkit-scrollbar { display: none; }
.review-card {
  min-height: 164px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
  scroll-snap-align: center;
  box-shadow: 0 12px 30px rgba(0, 45, 24, .04);
}
.stars {
  color: var(--green);
  letter-spacing: 4px;
  font-size: 20px;
  font-weight: 950;
}
.review-card blockquote {
  margin: 12px 0 18px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}
.review-person {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3e4b43;
  font-size: 13px;
  font-weight: 750;
}
.review-person span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf8ee;
}
.review-person i {
  color: var(--green);
  font-size: 16px;
  line-height: 1;
}
.review-person p { margin: 0; }

.faq-map {
  padding: 0 0 92px;
  background: #fff;
}
.faq-map-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 24px;
  align-items: stretch;
}
.faq-card,
.map-card,
.doc-card,
.prose-card,
.page-side-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 45, 24, .055);
}
.faq-card,
.map-card { padding: 28px; }
.faq-card h2,
.map-card h2 {
  margin: 0 0 22px;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 950;
}
.accordion {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.accordion-item + .accordion-item { border-top: 1px solid var(--line); }
.accordion-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  border: 0;
  background: #fff;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
}
.accordion-item button::before {
  content: "?";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}
.accordion-item i {
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease;
}
.accordion-item.is-open i { transform: rotate(180deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .24s ease;
}
.accordion-item.is-open .accordion-panel { max-height: 220px; }
.accordion-panel > p {
  margin: 0;
  padding: 0 24px 0 58px;
  color: #4d5b52;
  font-size: 14px;
}
.accordion-item.is-open .accordion-panel > p { padding-bottom: 18px; }
.service-map {
  height: 264px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #d8eadf;
  background: #f4fbf6;
}
.service-map svg { width: 100%; height: 100%; }
.pin path { fill: var(--green); }
.pin.main path { fill: #0a9d29; }
.map-labels text {
  font: 900 17px/1 Inter, system-ui, sans-serif;
  fill: #1e3226;
  paint-order: stroke;
  stroke: #eaf7ee;
  stroke-width: 4px;
}
.map-labels .main-label { font-size: 19px; }
.map-card p {
  margin: 18px 0 0;
  color: #34443a;
  font-weight: 780;
}

.site-footer {
  padding: 58px 0 26px;
  background: radial-gradient(circle at 18% 8%, rgba(20, 184, 61, .16), transparent 24%), linear-gradient(135deg, var(--dark-green), var(--deep-green));
  color: rgba(255, 255, 255, .75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr 1.05fr .85fr .85fr;
  gap: 30px;
  align-items: start;
}
.footer-brand .brand-mark {
  background: #fff;
  color: var(--green);
  box-shadow: none;
}
.footer-brand .brand-icon { color: var(--green); }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text strong { color: #7ee083; }
.footer-about p {
  max-width: 280px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  list-style: none;
}
.footer-tags li {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255, 255, 255, .78);
}
.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}
.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  list-style: none;
  font-size: 14px;
}
.footer-list a:hover { color: #fff; text-decoration: underline; }
.hours-list {
  display: grid;
  gap: 7px;
  margin: 0;
  font-size: 13px;
}
.hours-list div {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto;
  gap: 12px;
  align-items: baseline;
}
.hours-list dt { color: rgba(255, 255, 255, .66); }
.hours-list dd { margin: 0; color: #fff; font-weight: 850; white-space: nowrap; }
.copyright {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .78);
}
.copyright p { margin: 0; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--dark-green);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity .22s ease, transform .22s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Content pages */
.page-main { background: #fff; }
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 92px 0 82px;
  background: var(--dark-green);
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--page-image);
  background-size: cover;
  background-position: var(--page-position, center right);
  opacity: .78;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 89% 18%, rgba(127, 220, 121, .26), transparent 28%),
    linear-gradient(90deg, rgba(0, 33, 20, .96) 0%, rgba(0, 56, 32, .82) 47%, rgba(0, 56, 32, .45) 100%);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 48px;
  align-items: end;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 850;
}
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 950;
}
.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
  line-height: 1.55;
}
.page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.quick-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}
.quick-card strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}
.quick-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .84);
  font-weight: 760;
}
.quick-card a {
  margin-top: 22px;
  display: inline-flex;
  color: #fff;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 335px;
  gap: 26px;
  align-items: start;
}
.prose-card {
  padding: clamp(28px, 4vw, 48px);
}
.prose-card h2,
.prose-card h3 {
  color: var(--ink);
  letter-spacing: -.035em;
  font-weight: 950;
}
.prose-card h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}
.prose-card h3 {
  margin: 34px 0 14px;
  font-size: 27px;
  line-height: 1.14;
}
.prose-card p {
  margin: 0 0 18px;
  color: #39473e;
  font-size: 17px;
  line-height: 1.72;
}
.prose-card strong { color: #102018; }
.inline-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}
.info-tile {
  padding: 20px;
  border-radius: 18px;
  background: #f2fbf4;
  border: 1px solid #dceee2;
}
.info-tile strong {
  display: block;
  color: var(--green);
  font-size: 23px;
  font-weight: 950;
}
.info-tile span {
  display: block;
  margin-top: 6px;
  color: #405049;
  font-weight: 750;
}
.process-list,
.page-checks {
  display: grid;
  gap: 12px;
  margin: 18px 0 28px;
  list-style: none;
}
.process-list li,
.page-checks li {
  position: relative;
  padding-left: 34px;
  color: #18251d;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 760;
}
.process-list li::before,
.page-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f8ec;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}
.article-final {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #effaf2, #ffffff);
  color: #123a22 !important;
  font-weight: 820;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--dark-green), #006033);
  color: #fff;
}
.cta-band h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
}
.cta-band p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
}
.page-side-card {
  position: sticky;
  top: 96px;
  padding: 26px;
}
.page-side-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 950;
}
.page-side-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}
.side-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  list-style: none;
}
.side-list li {
  position: relative;
  padding-left: 28px;
  color: #223026;
  font-size: 14.5px;
  font-weight: 780;
}
.side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px #eaf8ee;
}
.side-hours {
  margin: 22px 0;
  padding: 18px;
  border-radius: 16px;
  background: #f3fbf5;
  border: 1px solid #ddede2;
}
.side-hours h4 {
  margin: 0 0 12px;
  color: var(--dark-green);
  font-size: 16px;
  font-weight: 950;
}
.side-hours .hours-list { color: #24352a; }
.side-hours .hours-list div { grid-template-columns: 1fr auto; }
.side-hours .hours-list dt { color: #56665d; }
.side-hours .hours-list dd { color: #12271b; }
.side-hours .hours-list dd.closed { color: #a42727; }
.side-contact {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 850;
}
.side-contact a { color: var(--green); }

.documents-page-section {
  padding-top: 0;
}
.docs-heading { text-align: left; margin: 0 0 28px; max-width: none; }
.docs-heading h2::after { margin-left: 0; margin-right: 0; }
.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.doc-card { padding: 28px; }
.doc-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(11, 141, 36, .22);
}
.doc-card h3 {
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 950;
}
.doc-subtitle {
  margin: 0 0 15px !important;
  color: var(--green) !important;
  font-weight: 900 !important;
}
.doc-card p {
  margin: 0 0 14px;
  color: #45534a;
  font-size: 15.5px;
  line-height: 1.62;
}
.doc-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
  color: #18251d;
  font-weight: 720;
}
.doc-card li {
  position: relative;
  padding-left: 31px;
}
.doc-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf8ee;
  color: var(--green);
  font-weight: 950;
  font-size: 11px;
  line-height: 1;
}
.doc-note {
  margin-top: 16px !important;
  padding: 15px 16px;
  border-radius: 14px;
  background: #f4fbf6;
  color: #26362d !important;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .brand { min-width: 190px; }
  .brand-text { font-size: 13px; }
  .main-nav { gap: 8px; font-size: 10.2px; }
  .call-pill { padding-inline: 13px; font-size: 13px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 78px; }
  .section-anchor { scroll-margin-top: 78px; }
  .header-inner {
    grid-template-columns: auto auto 1fr;
    min-height: 70px;
  }
  .brand { min-width: 0; }
  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    order: 3;
  }
  .main-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 82px;
    z-index: 101;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    font-size: 13px;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a {
    padding: 14px 14px;
    border-radius: 12px;
  }
  .main-nav a::after { display: none; }
  .main-nav a.is-active { background: #edf8ef; }
  .call-pill {
    justify-self: end;
    order: 2;
  }
  .hero { min-height: auto; }
  .hero-inner { min-height: 590px; padding-top: 54px; }
  .hero-image { width: 100%; opacity: .35; }
  .hero-image::before { background: linear-gradient(90deg, #fbfdfc 0%, rgba(251,253,252,.82) 55%, rgba(251,253,252,.3)); }
  .hero-badge { left: 0; right: auto; bottom: 62px; }
  .hero-ribbon { margin-top: 0; }
  .ribbon-card { grid-template-columns: repeat(2, 1fr); }
  .ribbon-card article:nth-child(odd) { border-left: 0; }
  .ribbon-card article:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .13); }
  .about-grid,
  .pickup-inner,
  .faq-map-grid,
  .page-hero-grid,
  .page-layout { grid-template-columns: 1fr; }
  .about-media { min-height: 390px; }
  .about-media img { min-height: 390px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .step-card::after { display: none; }
  .pickup-inner { gap: 34px; padding: 62px 0; }
  .form-shell { max-width: 560px; }
  .reviews { grid-auto-columns: calc((100% - 16px) / 2); }
  .page-side-card { position: static; }
  .doc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1200px); }
  .section-pad { padding: 66px 0; }
  .section-heading { margin-bottom: 32px; }
  .brand-text { font-size: 12px; }
  .brand-mark { width: 42px; min-width: 42px; border-radius: 14px; }
  .brand-icon { width: 29px; height: 29px; }
  .call-pill { min-height: 42px; width: 42px; padding: 0; border-radius: 12px; font-size: 0; }
  .call-pill span { display: grid; place-items: center; }
  .hero-inner { min-height: 620px; padding-top: 44px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-badge { position: relative; bottom: auto; min-width: 0; width: 100%; margin-top: 26px; }
  .hero-ribbon { margin-top: 0; }
  .ribbon-card { grid-template-columns: 1fr; padding: 10px; }
  .ribbon-card article { padding: 16px; }
  .ribbon-card article + article { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .13); }
  .service-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pickup-inner { grid-template-columns: 1fr; }
  .phone-card { min-width: 0; width: 100%; }
  .form-shell { padding: 20px; }
  .reviews { grid-auto-columns: 100%; padding: 0 8px; }
  .faq-card,
  .map-card,
  .prose-card,
  .doc-card { padding: 22px; }
  .accordion-item button { grid-template-columns: 26px minmax(0, 1fr) 20px; gap: 10px; padding: 14px 13px; font-size: 14px; }
  .accordion-panel > p { padding: 0 14px 16px 50px; }
  .service-map { height: 210px; }
  .map-labels text { font-size: 13px; stroke-width: 3px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hours-list div { grid-template-columns: 110px auto; justify-content: start; }
  .toast { width: calc(100% - 28px); border-radius: 14px; text-align: center; }
  .page-hero { padding: 58px 0 52px; }
  .page-hero h1 { font-size: clamp(38px, 12vw, 52px); }
  .quick-card { padding: 22px; }
  .inline-cards { grid-template-columns: 1fr; }
  .cta-band { display: grid; }
  .cta-band .btn { width: 100%; }
}

/* Shared shell generated by script.js + final UX refinements */
.logo-icon {
  width: 42px;
  height: 42px;
}
.logo-circle {
  fill: transparent;
}
.logo-symbol {
  fill: #fff;
  font: 900 31px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  dominant-baseline: middle;
}
.footer-brand .logo-symbol { fill: var(--green); }

.header-inner {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 1.3vw, 24px);
}
.brand { min-width: 196px; }
.main-nav {
  gap: clamp(10px, 1vw, 18px);
  font-size: 11.2px;
}
.main-nav a { padding-inline: 1px; }

.footer-grid {
  grid-template-columns: 1.25fr .95fr 1.05fr .95fr;
  gap: 42px;
}
.footer-hours { gap: 7px; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  max-width: 280px;
}
.footer-hours span,
.footer-hours strong {
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.footer-hours strong {
  color: #fff;
  white-space: nowrap;
}
.footer-hours .is-closed strong { color: #ffb4ae; }

.contact-hours-card {
  width: min(100%, 390px);
  margin-top: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(11, 141, 36, .18);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px rgba(0, 45, 24, .08);
  backdrop-filter: blur(10px);
}
.contact-hours-card h3 {
  margin: 0 0 12px;
  color: #101820;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -.02em;
}
.contact-hours-card .hours-list {
  display: grid;
  gap: 8px;
  margin: 0;
}
.contact-hours-card .hours-list div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
}
.contact-hours-card .hours-list dt,
.contact-hours-card .hours-list dd {
  margin: 0;
}
.contact-hours-card .hours-list dt {
  color: #425149;
  font-size: 14px;
  font-weight: 780;
}
.contact-hours-card .hours-list dd {
  color: #10251a;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}
.contact-hours-card .is-closed dd { color: #c7382f; }
.contact-hours-card > a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-hero::before {
  opacity: .42;
  background-position: var(--page-position, center right);
  filter: saturate(1.05) contrast(1.03);
}
.documents-page-section,
.page-docs-section {
  background: radial-gradient(circle at 90% 8%, rgba(20,184,61,.10), transparent 24%), linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
}

@media (max-width: 1240px) {
  .brand { min-width: 176px; }
  .brand-text { font-size: 13px; }
  .main-nav { gap: 8px; font-size: 10.2px; letter-spacing: .025em; }
  .call-pill { padding-inline: 13px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1.15fr 1fr 1fr 1fr; gap: 28px; }
}
@media (max-width: 1100px) {
  .call-pill { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
}
@media (max-width: 980px) {
  .brand { min-width: 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
  .contact-hours-card { padding: 18px; }
  .contact-hours-card .hours-list div { gap: 12px; }
}

/* Footer uses five shared columns from the script-generated component. */
.footer-grid {
  grid-template-columns: 1.25fr .9fr 1.05fr .85fr .85fr;
  gap: 30px;
}
@media (max-width: 1240px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Keep page hero photography clearly visible behind the green overlay. */
.page-hero::before { opacity: .78; }

/* 2026 polish pass: shared navigation, brand, spacing, footer and SEO-ready pages. */
.brand {
  min-width: 242px;
  gap: 12px;
  text-transform: none;
  letter-spacing: 0;
}
.brand-mark {
  width: 48px;
  min-width: 48px;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}
.brand-icon {
  width: 48px;
  height: 48px;
  display: block;
  color: #fff;
  filter: drop-shadow(0 12px 22px rgba(11, 141, 36, .22));
}
.brand-icon-bg { fill: url(#unused, var(--green)); }
.brand-icon .brand-icon-bg { fill: #0b8d24; }
.brand-icon-arrow,
.brand-icon-car {
  stroke: #fff;
  stroke-width: 3.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.brand-icon-car { stroke-width: 2.8; }
.brand-text {
  display: grid;
  gap: 2px;
  color: #0d1720;
  line-height: 1;
}
.brand-text span {
  font-size: 17px;
  font-weight: 1000;
  letter-spacing: -.03em;
}
.brand-text small {
  color: var(--green);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-brand .brand-mark { background: transparent; color: #fff; }
.footer-brand .brand-icon { filter: none; }
.footer-brand .brand-icon .brand-icon-bg { fill: #fff; }
.footer-brand .brand-icon-arrow,
.footer-brand .brand-icon-car { stroke: var(--green); }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text small { color: #8ff29f; }
.main-nav {
  gap: clamp(8px, .82vw, 14px);
  font-size: 10.6px;
  letter-spacing: .035em;
}
.call-pill { white-space: nowrap; }

.hero-inner {
  min-height: 590px;
  padding: 76px 0 52px;
}
.hero-ribbon {
  margin-top: 26px;
  margin-bottom: 30px;
}
.hero-actions { margin-bottom: 0; }
.ribbon-card { min-height: 138px; }

.services-section { position: relative; }
.service-card { text-decoration: none; }
.service-card a { text-decoration: none; }
.service-icon i {
  font-size: 30px;
  line-height: 1;
}
.service-card:hover a { text-decoration: underline; text-underline-offset: 4px; }

.about-section .feature-list strong { font-weight: 950; }
.about-section .about-copy { min-width: 0; }
.about-media img { object-position: center; }

.hours-list .is-closed dd,
.side-hours .hours-list dd.closed,
.contact-hours-card .is-closed dd { color: #c7382f; }
.footer-grid {
  grid-template-columns: minmax(250px, 1.25fr) minmax(180px, .9fr) minmax(210px, 1fr) minmax(210px, .92fr);
  gap: clamp(28px, 4vw, 54px);
}
.footer-about .footer-brand { margin-bottom: 4px; }
.site-footer h3 { margin-bottom: 18px; }
.copyright { position: relative; }
#privacy { position: absolute; top: -96px; }

.page-side-card .btn { width: 100%; justify-content: center; }
.page-hero::before { opacity: .78; }
.page-hero::after {
  background:
    radial-gradient(circle at 89% 18%, rgba(127, 220, 121, .26), transparent 28%),
    linear-gradient(90deg, rgba(0, 33, 20, .96) 0%, rgba(0, 56, 32, .80) 46%, rgba(0, 56, 32, .40) 100%);
}

@media (max-width: 1240px) {
  .brand { min-width: 218px; }
  .brand-text span { font-size: 15px; }
  .brand-text small { font-size: 9px; }
  .main-nav { gap: 7px; font-size: 9.7px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
  .brand { min-width: 0; }
  .brand-text span { font-size: 16px; }
}
@media (max-width: 980px) {
  .hero-inner { min-height: auto; padding: 92px 0 42px; }
  .hero-ribbon { margin-top: 18px; }
  .brand { min-width: 0; }
  .brand-text small { display: none; }
  .brand-mark, .brand-icon { width: 44px; min-width: 44px; height: 44px; }
}
@media (max-width: 720px) {
  .brand-text span { font-size: 14px; }
  .brand-mark, .brand-icon { width: 40px; min-width: 40px; height: 40px; }
  .hero-ribbon { margin-top: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Final shared-site refinements */
.brand {
  min-width: 224px;
  gap: 11px;
  text-transform: none;
  letter-spacing: 0;
}
.brand-mark {
  width: 48px;
  min-width: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, #13b83e 0%, #087722 100%);
  box-shadow: 0 14px 32px rgba(11, 141, 36, .24);
}
.brand-icon { width: 35px; height: 35px; color: #fff; }
.brand-icon path { stroke-width: initial; }
.brand-icon .logo-leaf { fill: rgba(255,255,255,.98); stroke: none; }
.brand-icon .logo-vein { fill: none; stroke: #0b8d24; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.brand-icon .logo-car { fill: none; stroke: #fff; stroke-width: 3.1; stroke-linecap: round; stroke-linejoin: round; }
.brand-text {
  display: grid;
  gap: 2px;
  color: #0d1712;
  font-size: initial;
  line-height: 1;
}
.brand-name {
  display: block;
  color: #0e1712;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.035em;
}
.brand-subline {
  display: block;
  color: var(--green);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-brand .brand-mark { background: #fff; color: var(--green); }
.footer-brand .brand-icon .logo-leaf { fill: var(--green); }
.footer-brand .brand-icon .logo-vein { stroke: #fff; }
.footer-brand .brand-icon .logo-car { stroke: var(--green); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-subline { color: #7ee083; }
.header-inner { gap: clamp(12px, 1.2vw, 18px); }
.main-nav { gap: clamp(8px, .8vw, 13px); font-size: 10.6px; letter-spacing: .035em; }
.main-nav a { padding-inline: 1px; }
.call-pill { font-size: 13.5px; }

/* Give hero actions breathing room before the dark green feature banner. */
.hero-inner { min-height: 588px; padding-bottom: 80px; }
.hero-actions { margin-top: 30px; margin-bottom: 18px; }
.hero-ribbon { margin-top: -8px; margin-bottom: 48px; }
.ribbon-card { min-height: 134px; }
.ribbon-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 7px;
  color: #d7ffe0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.ribbon-card a:hover { color: #fff; }

.about-section {
  background: radial-gradient(circle at 88% 12%, rgba(20,184,61,.10), transparent 24%), linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .62fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.about-copy h2 {
  margin: 0 0 20px;
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 950;
}
.about-copy p {
  margin: 0 0 18px;
  color: #39473e;
  font-size: 17px;
  line-height: 1.72;
}
.about-list {
  display: grid;
  gap: 11px;
  margin: 24px 0;
  list-style: none;
}
.about-list li {
  position: relative;
  padding-left: 34px;
  color: #18251d;
  font-weight: 800;
  line-height: 1.5;
}
.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f8eb;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}
.about-panel {
  position: relative;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--dark-green), #006034);
  color: #fff;
  box-shadow: 0 28px 70px rgba(0, 45, 24, .18);
  overflow: hidden;
}
.about-panel::before {
  content: "";
  position: absolute;
  inset: -35% -30% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(126,224,131,.18);
}
.about-stat { position: relative; }
.about-stat strong {
  display: block;
  font-size: clamp(64px, 9vw, 104px);
  line-height: .82;
  font-weight: 950;
  letter-spacing: -.08em;
}
.about-stat span {
  display: block;
  max-width: 330px;
  margin-top: 18px;
  color: rgba(255,255,255,.83);
  font-weight: 760;
}
.about-mini-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.about-mini-grid span {
  min-height: 78px;
  display: flex;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.services-section { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 305px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
  box-shadow: 0 18px 48px rgba(0,45,24,.07);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(11,141,36,.08);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11,141,36,.28);
  box-shadow: 0 28px 70px rgba(0,45,24,.12);
}
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #e8f8ec;
  color: var(--green);
}
.service-icon i {
  font-size: 33px;
  line-height: 1;
}
.service-card h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 950;
}
.service-card p {
  margin: 0;
  color: #4b5b52;
  font-size: 15px;
  line-height: 1.62;
}
.service-card a {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 2;
  color: var(--green);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-hours-card .hours-list .is-closed dd,
.hours-list .is-closed dd { color: #ffb4ae; }
.side-hours .hours-list .is-closed dd,
.side-hours .hours-list dd.closed { color: #a42727; }
.service-map { height: 236px; }
.map-labels text { font-size: 15px; }

/* Footer has no quick-links block; it contains brand, contacts, hours, services and legal information. */
.footer-grid { grid-template-columns: 1.22fr .9fr 1.08fr .9fr .85fr; gap: 30px; }
.footer-contact a { overflow-wrap: anywhere; }

@media (max-width: 1240px) {
  .brand { min-width: 202px; }
  .brand-name { font-size: 16px; }
  .brand-subline { font-size: 9.6px; }
  .main-nav { gap: 7px; font-size: 9.7px; letter-spacing: .018em; }
  .call-pill { padding-inline: 11px; font-size: 12.6px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
@media (max-width: 1100px) {
  .call-pill { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
}
@media (max-width: 980px) {
  .brand { min-width: 0; }
  .brand-name { font-size: 17px; }
  .brand-subline { font-size: 9.8px; }
  .hero-inner { min-height: auto; padding-bottom: 56px; }
  .hero-ribbon { margin-top: 0; margin-bottom: 34px; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .brand-mark { width: 42px; min-width: 42px; border-radius: 13px; }
  .brand-icon { width: 30px; height: 30px; }
  .brand-name { font-size: 15px; }
  .brand-subline { font-size: 8.7px; letter-spacing: .045em; }
  .hero-actions { gap: 10px; margin-bottom: 10px; }
  .hero-ribbon { margin-top: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .about-panel { padding: 24px; }
  .about-mini-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Final QA overrides for shared production build. */
.hero-inner { min-height: 590px; padding-bottom: 58px; }
.hero-actions { margin-top: 30px; margin-bottom: 0; }
.hero-ribbon { margin-top: 28px; margin-bottom: 48px; }
.btn-full { width: 100%; justify-content: center; }
.footer-grid {
  grid-template-columns: minmax(255px, 1.25fr) minmax(180px, .9fr) minmax(220px, 1fr) minmax(220px, .95fr);
  gap: clamp(28px, 4vw, 54px);
}
.footer-brand .brand-icon { width: 48px; height: 48px; }
.footer-brand .brand-mark { width: 48px; min-width: 48px; }
.footer-contact a { overflow-wrap: anywhere; }
.hours-list .is-closed dd { color: #ffb4ae; }
.contact-hours-card .hours-list .is-closed dd { color: #c7382f; }
@media (max-width: 1240px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .hero-inner { min-height: auto; padding-bottom: 44px; }
  .hero-ribbon { margin-top: 18px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .hero-ribbon { margin-top: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-icon { width: 40px; height: 40px; }
}

/* Asset-based logo override */
.brand {
  min-width: 0;
  gap: 0;
}
.brand-mark {
  width: clamp(168px, 17vw, 235px);
  min-width: 168px;
  aspect-ratio: 235 / 55;
  display: block;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}
.brand-text {
  display: none;
}
.footer-brand .brand-mark {
  background: transparent;
  width: min(100%, 420px);
  min-width: 420px;
}
.footer-brand {
  display: inline-block;
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.04em;
}
@media (max-width: 720px) {
  .brand-mark,
  .footer-brand .brand-mark {
    width: min(48vw, 185px);
    min-width: 150px;
  }
  .footer-brand .brand-mark {
    width: min(100%, 320px);
    min-width: 220px;
  }
  .footer-brand {
    font-size: clamp(24px, 8vw, 32px);
  }
}
